diff --git a/postgresql/PostgreSQLParser.g4 b/postgresql/PostgreSQLParser.g4 index 5fa34cd..8d8535d 100755 --- a/postgresql/PostgreSQLParser.g4 +++ b/postgresql/PostgreSQLParser.g4 @@ -3048,16 +3048,14 @@ table_ref | func_table func_alias_clause? | select_with_parens opt_alias_clause? ) - | OPEN_PAREN table_ref ( - CROSS JOIN table_ref - | NATURAL join_type? JOIN table_ref - | join_type? JOIN table_ref join_qual - )? CLOSE_PAREN opt_alias_clause? - ) ( - CROSS JOIN table_ref - | NATURAL join_type? JOIN table_ref - | join_type? JOIN table_ref join_qual - )* + | OPEN_PAREN table_ref joined_table? CLOSE_PAREN opt_alias_clause? + ) joined_table* + ; + +joined_table + : CROSS JOIN table_ref + | NATURAL join_type? JOIN table_ref + | join_type? JOIN table_ref join_qual ; alias_clause diff --git a/postgresql/postgresql_parser.go b/postgresql/postgresql_parser.go index 9e172a7..e8a09e5 100644 --- a/postgresql/postgresql_parser.go +++ b/postgresql/postgresql_parser.go @@ -401,32 +401,32 @@ func postgresqlparserParserInit() { "rollup_clause", "cube_clause", "grouping_sets_clause", "having_clause", "for_locking_clause", "opt_for_locking_clause", "for_locking_items", "for_locking_item", "for_locking_strength", "locked_rels_list", "values_clause", - "from_clause", "from_list", "table_ref", "alias_clause", "opt_alias_clause", - "table_alias_clause", "func_alias_clause", "join_type", "join_qual", - "relation_expr", "relation_expr_list", "relation_expr_opt_alias", "tablesample_clause", - "opt_repeatable_clause", "func_table", "rowsfrom_item", "rowsfrom_list", - "opt_col_def_list", "opt_ordinality", "where_clause", "where_or_current_clause", - "opttablefuncelementlist", "tablefuncelementlist", "tablefuncelement", - "xmltable", "xmltable_column_list", "xmltable_column_el", "xmltable_column_option_list", - "xmltable_column_option_el", "xml_namespace_list", "xml_namespace_el", - "typename", "opt_array_bounds", "simpletypename", "consttypename", "generictype", - "opt_type_modifiers", "numeric", "opt_float", "bit", "constbit", "bitwithlength", - "bitwithoutlength", "character", "constcharacter", "character_c", "opt_varying", - "constdatetime", "constinterval", "opt_timezone", "opt_interval", "interval_second", - "opt_escape", "a_expr", "a_expr_qual", "a_expr_lessless", "a_expr_or", - "a_expr_and", "a_expr_between", "a_expr_in", "a_expr_unary_not", "a_expr_isnull", - "a_expr_is_not", "a_expr_compare", "a_expr_like", "a_expr_qual_op", - "a_expr_unary_qualop", "a_expr_add", "a_expr_mul", "a_expr_caret", "a_expr_unary_sign", - "a_expr_at_time_zone", "a_expr_collate", "a_expr_typecast", "b_expr", - "c_expr", "plsqlvariablename", "func_application", "func_expr", "func_expr_windowless", - "json_aggregate_func", "json_output_clause", "json_array_aggregate_order_by_clause", - "func_expr_common_subexpr", "json_on_error_clause", "json_behavior_clause", - "json_behavior", "json_behavior_type", "json_quotes_clause", "json_wrapper_behavior", - "json_passing_clause", "json_arguments", "json_argument", "json_format_clause_opt", - "json_value_expr_list", "json_returning_clause", "json_key_uniqueness_constraint", - "json_array_constructor_null_clause", "json_object_constructor_null_clause", - "json_name_and_value_list", "json_name_and_value", "json_value_expr", - "json_format_clause", "xml_root_version", "opt_xml_root_standalone", + "from_clause", "from_list", "table_ref", "joined_table", "alias_clause", + "opt_alias_clause", "table_alias_clause", "func_alias_clause", "join_type", + "join_qual", "relation_expr", "relation_expr_list", "relation_expr_opt_alias", + "tablesample_clause", "opt_repeatable_clause", "func_table", "rowsfrom_item", + "rowsfrom_list", "opt_col_def_list", "opt_ordinality", "where_clause", + "where_or_current_clause", "opttablefuncelementlist", "tablefuncelementlist", + "tablefuncelement", "xmltable", "xmltable_column_list", "xmltable_column_el", + "xmltable_column_option_list", "xmltable_column_option_el", "xml_namespace_list", + "xml_namespace_el", "typename", "opt_array_bounds", "simpletypename", + "consttypename", "generictype", "opt_type_modifiers", "numeric", "opt_float", + "bit", "constbit", "bitwithlength", "bitwithoutlength", "character", + "constcharacter", "character_c", "opt_varying", "constdatetime", "constinterval", + "opt_timezone", "opt_interval", "interval_second", "opt_escape", "a_expr", + "a_expr_qual", "a_expr_lessless", "a_expr_or", "a_expr_and", "a_expr_between", + "a_expr_in", "a_expr_unary_not", "a_expr_isnull", "a_expr_is_not", "a_expr_compare", + "a_expr_like", "a_expr_qual_op", "a_expr_unary_qualop", "a_expr_add", + "a_expr_mul", "a_expr_caret", "a_expr_unary_sign", "a_expr_at_time_zone", + "a_expr_collate", "a_expr_typecast", "b_expr", "c_expr", "plsqlvariablename", + "func_application", "func_expr", "func_expr_windowless", "json_aggregate_func", + "json_output_clause", "json_array_aggregate_order_by_clause", "func_expr_common_subexpr", + "json_on_error_clause", "json_behavior_clause", "json_behavior", "json_behavior_type", + "json_quotes_clause", "json_wrapper_behavior", "json_passing_clause", + "json_arguments", "json_argument", "json_format_clause_opt", "json_value_expr_list", + "json_returning_clause", "json_key_uniqueness_constraint", "json_array_constructor_null_clause", + "json_object_constructor_null_clause", "json_name_and_value_list", "json_name_and_value", + "json_value_expr", "json_format_clause", "xml_root_version", "opt_xml_root_standalone", "xml_attributes", "xml_attribute_list", "xml_attribute_el", "document_or_content", "xml_whitespace_option", "xmlexists_argument", "xml_passing_mech", "within_group_clause", "filter_clause", "window_clause", "window_definition_list", "window_definition", @@ -475,7 +475,7 @@ func postgresqlparserParserInit() { } staticData.PredictionContextCache = antlr.NewPredictionContextCache() staticData.serializedATN = []int32{ - 4, 1, 707, 11600, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, + 4, 1, 707, 11590, 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, @@ -658,89 +658,89 @@ func postgresqlparserParserInit() { 824, 7, 824, 2, 825, 7, 825, 2, 826, 7, 826, 2, 827, 7, 827, 2, 828, 7, 828, 2, 829, 7, 829, 2, 830, 7, 830, 2, 831, 7, 831, 2, 832, 7, 832, 2, 833, 7, 833, 2, 834, 7, 834, 2, 835, 7, 835, 2, 836, 7, 836, 2, 837, 7, - 837, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, 3, 3, 3, 1686, - 8, 3, 5, 3, 1688, 8, 3, 10, 3, 12, 3, 1691, 9, 3, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, - 4, 1, 4, 3, 4, 1818, 8, 4, 1, 5, 1, 5, 3, 5, 1822, 8, 5, 1, 6, 1, 6, 1, - 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1831, 8, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, - 9, 5, 9, 1838, 8, 9, 10, 9, 12, 9, 1841, 9, 9, 1, 10, 5, 10, 1844, 8, 10, - 10, 10, 12, 10, 1847, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, 1852, 8, 11, 1, - 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, - 1, 11, 1, 11, 3, 11, 1867, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, - 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1879, 8, 12, 1, 13, 1, 13, 1, 13, - 1, 13, 3, 13, 1885, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 3, - 14, 1893, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, - 1, 16, 3, 16, 1904, 8, 16, 1, 16, 1, 16, 3, 16, 1908, 8, 16, 1, 16, 1, - 16, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1916, 8, 17, 1, 17, 1, 17, 1, 18, - 1, 18, 1, 18, 1, 18, 3, 18, 1924, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, - 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, - 1, 21, 3, 21, 1942, 8, 21, 1, 21, 3, 21, 1945, 8, 21, 1, 21, 1, 21, 1, - 21, 3, 21, 1950, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 23, 5, 23, 1957, - 8, 23, 10, 23, 12, 23, 1960, 9, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, - 1, 24, 3, 24, 1968, 8, 24, 1, 25, 1, 25, 3, 25, 1972, 8, 25, 1, 25, 1, - 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1984, - 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, - 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 2004, - 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, - 28, 1, 28, 3, 28, 2017, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, 2022, 8, 29, - 10, 29, 12, 29, 2025, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 2030, 8, 30, 10, - 30, 12, 30, 2033, 9, 30, 1, 31, 1, 31, 3, 31, 2037, 8, 31, 1, 32, 1, 32, - 1, 32, 1, 32, 1, 32, 3, 32, 2044, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, - 33, 2050, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2057, 8, 34, - 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2068, - 8, 34, 1, 35, 1, 35, 3, 35, 2072, 8, 35, 1, 36, 1, 36, 3, 36, 2076, 8, - 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, - 1, 38, 3, 38, 2089, 8, 38, 1, 39, 1, 39, 3, 39, 2093, 8, 39, 1, 40, 1, - 40, 1, 40, 3, 40, 2098, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 2103, 8, 41, - 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, - 42, 2115, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, - 2124, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, - 48, 1, 48, 1, 48, 3, 48, 2137, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2142, - 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, - 48, 2153, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2159, 8, 48, 1, 48, - 1, 48, 1, 48, 1, 48, 3, 48, 2165, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2170, - 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, - 48, 2181, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2187, 8, 48, 1, 48, - 1, 48, 1, 48, 1, 48, 3, 48, 2193, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, - 48, 1, 48, 1, 48, 3, 48, 2202, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, - 1, 48, 1, 48, 1, 48, 3, 48, 2212, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, - 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2227, - 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2233, 8, 48, 1, 48, 1, 48, 1, - 48, 1, 48, 1, 48, 3, 48, 2240, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2245, - 8, 48, 1, 49, 1, 49, 1, 49, 5, 49, 2250, 8, 49, 10, 49, 12, 49, 2253, 9, - 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 2263, - 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, - 1, 52, 1, 52, 3, 52, 2287, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, - 52, 2294, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, - 2303, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2312, - 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2320, 8, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2330, 8, 52, - 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2339, 8, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2348, 8, 52, 1, 52, - 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2356, 8, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 3, 52, 2364, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, - 1, 52, 1, 52, 1, 52, 3, 52, 2373, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 3, 52, 2382, 8, 52, 1, 52, 1, 52, 3, 52, 2386, 8, 52, - 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2393, 8, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 1, 52, 1, 52, 3, 52, 2401, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, - 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2411, 8, 52, 1, 52, 1, 52, 1, 52, 1, - 52, 3, 52, 2417, 8, 52, 1, 52, 1, 52, 3, 52, 2421, 8, 52, 1, 52, 1, 52, - 3, 52, 2425, 8, 52, 1, 52, 1, 52, 3, 52, 2429, 8, 52, 1, 52, 1, 52, 3, - 52, 2433, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2438, 8, 52, 1, 52, 3, 52, - 2441, 8, 52, 1, 52, 1, 52, 3, 52, 2445, 8, 52, 1, 52, 1, 52, 1, 52, 1, + 837, 2, 838, 7, 838, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 2, 1, 2, 1, 3, 1, + 3, 3, 3, 1688, 8, 3, 5, 3, 1690, 8, 3, 10, 3, 12, 3, 1693, 9, 3, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, + 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1820, 8, 4, 1, 5, 1, 5, 3, 5, 1824, 8, 5, + 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1833, 8, 7, 1, 7, 1, 7, + 1, 8, 1, 8, 1, 9, 5, 9, 1840, 8, 9, 10, 9, 12, 9, 1843, 9, 9, 1, 10, 5, + 10, 1846, 8, 10, 10, 10, 12, 10, 1849, 9, 10, 1, 11, 1, 11, 1, 11, 3, 11, + 1854, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, + 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1869, 8, 11, 1, 12, 1, 12, 1, 12, + 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1881, 8, 12, 1, + 13, 1, 13, 1, 13, 1, 13, 3, 13, 1887, 8, 13, 1, 13, 1, 13, 1, 14, 1, 14, + 1, 14, 1, 14, 3, 14, 1895, 8, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, + 15, 1, 16, 1, 16, 1, 16, 3, 16, 1906, 8, 16, 1, 16, 1, 16, 3, 16, 1910, + 8, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1918, 8, 17, 1, + 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 1926, 8, 18, 1, 18, 1, 18, + 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 21, 1, + 21, 1, 21, 1, 21, 1, 21, 3, 21, 1944, 8, 21, 1, 21, 3, 21, 1947, 8, 21, + 1, 21, 1, 21, 1, 21, 3, 21, 1952, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, + 23, 5, 23, 1959, 8, 23, 10, 23, 12, 23, 1962, 9, 23, 1, 24, 1, 24, 1, 24, + 1, 24, 1, 24, 1, 24, 3, 24, 1970, 8, 24, 1, 25, 1, 25, 3, 25, 1974, 8, + 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, + 3, 26, 1986, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, + 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, + 3, 28, 2006, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, + 28, 1, 28, 1, 28, 1, 28, 3, 28, 2019, 8, 28, 1, 29, 1, 29, 1, 29, 5, 29, + 2024, 8, 29, 10, 29, 12, 29, 2027, 9, 29, 1, 30, 1, 30, 1, 30, 5, 30, 2032, + 8, 30, 10, 30, 12, 30, 2035, 9, 30, 1, 31, 1, 31, 3, 31, 2039, 8, 31, 1, + 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 2046, 8, 32, 1, 33, 1, 33, 1, 33, + 1, 33, 3, 33, 2052, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 2059, + 8, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, + 34, 2070, 8, 34, 1, 35, 1, 35, 3, 35, 2074, 8, 35, 1, 36, 1, 36, 3, 36, + 2078, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, + 38, 1, 38, 1, 38, 3, 38, 2091, 8, 38, 1, 39, 1, 39, 3, 39, 2095, 8, 39, + 1, 40, 1, 40, 1, 40, 3, 40, 2100, 8, 40, 1, 41, 1, 41, 1, 41, 3, 41, 2105, + 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, + 42, 3, 42, 2117, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, + 3, 44, 2126, 8, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, + 48, 1, 48, 1, 48, 1, 48, 3, 48, 2139, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, + 2144, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, + 48, 3, 48, 2155, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2161, 8, 48, + 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2167, 8, 48, 1, 48, 1, 48, 1, 48, 3, + 48, 2172, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, + 1, 48, 3, 48, 2183, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2189, 8, + 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2195, 8, 48, 1, 48, 1, 48, 1, 48, + 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2204, 8, 48, 1, 48, 1, 48, 1, 48, 1, + 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2214, 8, 48, 1, 48, 1, 48, 1, 48, + 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, + 48, 2229, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2235, 8, 48, 1, 48, + 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 2242, 8, 48, 1, 48, 1, 48, 1, 48, 3, + 48, 2247, 8, 48, 1, 49, 1, 49, 1, 49, 5, 49, 2252, 8, 49, 10, 49, 12, 49, + 2255, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, + 50, 2265, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, + 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 1, 52, 3, 52, 2289, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, + 1, 52, 3, 52, 2296, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, + 52, 3, 52, 2305, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, + 3, 52, 2314, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2322, + 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2332, + 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2341, 8, + 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2350, 8, 52, + 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2358, 8, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2366, 8, 52, 1, 52, 1, 52, 1, 52, + 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2375, 8, 52, 1, 52, 1, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 1, 52, 3, 52, 2384, 8, 52, 1, 52, 1, 52, 3, 52, 2388, + 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2395, 8, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2403, 8, 52, 1, 52, 1, 52, 1, 52, + 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2413, 8, 52, 1, 52, 1, 52, 1, + 52, 1, 52, 3, 52, 2419, 8, 52, 1, 52, 1, 52, 3, 52, 2423, 8, 52, 1, 52, + 1, 52, 3, 52, 2427, 8, 52, 1, 52, 1, 52, 3, 52, 2431, 8, 52, 1, 52, 1, + 52, 3, 52, 2435, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2440, 8, 52, 1, 52, + 3, 52, 2443, 8, 52, 1, 52, 1, 52, 3, 52, 2447, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, - 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2466, 8, 52, 1, 52, 1, 52, 1, - 52, 1, 52, 3, 52, 2472, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, + 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2468, 8, 52, 1, 52, 1, + 52, 1, 52, 1, 52, 3, 52, 2474, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, @@ -749,136 +749,136 @@ func postgresqlparserParserInit() { 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, - 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2571, 8, 52, 1, - 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2578, 8, 53, 1, 54, 1, 54, 1, 55, - 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, - 57, 3, 57, 2594, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, - 1, 60, 1, 60, 1, 60, 5, 60, 2606, 8, 60, 10, 60, 12, 60, 2609, 9, 60, 1, - 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2618, 8, 61, 3, 61, - 2620, 8, 61, 1, 62, 4, 62, 2623, 8, 62, 11, 62, 12, 62, 2624, 1, 63, 1, - 63, 3, 63, 2629, 8, 63, 1, 63, 3, 63, 2632, 8, 63, 1, 63, 1, 63, 1, 63, - 1, 63, 3, 63, 2638, 8, 63, 3, 63, 2640, 8, 63, 1, 64, 1, 64, 1, 64, 1, + 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2573, 8, + 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 2580, 8, 53, 1, 54, 1, 54, + 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, + 57, 1, 57, 3, 57, 2596, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, + 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2608, 8, 60, 10, 60, 12, 60, 2611, 9, + 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 3, 61, 2620, 8, 61, + 3, 61, 2622, 8, 61, 1, 62, 4, 62, 2625, 8, 62, 11, 62, 12, 62, 2626, 1, + 63, 1, 63, 3, 63, 2631, 8, 63, 1, 63, 3, 63, 2634, 8, 63, 1, 63, 1, 63, + 1, 63, 1, 63, 3, 63, 2640, 8, 63, 3, 63, 2642, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, - 64, 1, 64, 3, 64, 2668, 8, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, - 5, 66, 2676, 8, 66, 10, 66, 12, 66, 2679, 9, 66, 1, 67, 1, 67, 1, 67, 1, - 67, 1, 67, 1, 68, 1, 68, 1, 68, 5, 68, 2689, 8, 68, 10, 68, 12, 68, 2692, - 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2698, 8, 69, 1, 69, 1, 69, 1, - 69, 1, 69, 3, 69, 2704, 8, 69, 1, 69, 1, 69, 3, 69, 2708, 8, 69, 1, 69, - 1, 69, 1, 69, 1, 69, 3, 69, 2714, 8, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2719, - 8, 69, 1, 69, 3, 69, 2722, 8, 69, 3, 69, 2724, 8, 69, 1, 70, 1, 70, 1, - 70, 3, 70, 2729, 8, 70, 1, 71, 1, 71, 3, 71, 2733, 8, 71, 1, 71, 1, 71, - 3, 71, 2737, 8, 71, 1, 71, 1, 71, 3, 71, 2741, 8, 71, 1, 71, 1, 71, 3, - 71, 2745, 8, 71, 1, 71, 3, 71, 2748, 8, 71, 1, 71, 1, 71, 3, 71, 2752, - 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2760, 8, 71, 1, - 71, 1, 71, 3, 71, 2764, 8, 71, 1, 71, 1, 71, 3, 71, 2768, 8, 71, 1, 72, - 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 2777, 8, 74, 1, 75, 1, - 75, 1, 75, 1, 75, 1, 75, 3, 75, 2784, 8, 75, 1, 76, 5, 76, 2787, 8, 76, - 10, 76, 12, 76, 2790, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2796, 8, - 77, 1, 77, 1, 77, 1, 77, 3, 77, 2801, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, - 1, 77, 3, 77, 2808, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2813, 8, 77, 1, - 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, - 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2831, 8, 77, 1, 78, 1, 78, 1, - 79, 3, 79, 2836, 8, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 81, 1, 81, - 1, 81, 5, 81, 2846, 8, 81, 10, 81, 12, 81, 2849, 9, 81, 1, 82, 1, 82, 3, - 82, 2853, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, - 2862, 8, 83, 1, 84, 1, 84, 1, 84, 5, 84, 2867, 8, 84, 10, 84, 12, 84, 2870, - 9, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2876, 8, 86, 1, 86, 1, 86, 1, - 86, 1, 86, 3, 86, 2882, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2887, 8, 86, - 1, 86, 1, 86, 3, 86, 2891, 8, 86, 1, 86, 3, 86, 2894, 8, 86, 1, 86, 3, - 86, 2897, 8, 86, 1, 86, 3, 86, 2900, 8, 86, 1, 86, 3, 86, 2903, 8, 86, - 1, 86, 3, 86, 2906, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2911, 8, 86, 1, - 86, 3, 86, 2914, 8, 86, 1, 86, 3, 86, 2917, 8, 86, 1, 86, 3, 86, 2920, - 8, 86, 1, 86, 3, 86, 2923, 8, 86, 1, 86, 3, 86, 2926, 8, 86, 1, 86, 1, - 86, 1, 86, 1, 86, 3, 86, 2932, 8, 86, 1, 86, 1, 86, 3, 86, 2936, 8, 86, - 1, 86, 3, 86, 2939, 8, 86, 1, 86, 3, 86, 2942, 8, 86, 1, 86, 3, 86, 2945, - 8, 86, 1, 86, 3, 86, 2948, 8, 86, 3, 86, 2950, 8, 86, 1, 87, 1, 87, 1, - 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2959, 8, 87, 1, 88, 1, 88, 1, 89, - 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 5, 90, 2970, 8, 90, 10, 90, 12, - 90, 2973, 9, 90, 1, 91, 1, 91, 1, 91, 5, 91, 2978, 8, 91, 10, 91, 12, 91, - 2981, 9, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2986, 8, 92, 1, 93, 1, 93, 3, - 93, 2990, 8, 93, 1, 94, 1, 94, 1, 94, 3, 94, 2995, 8, 94, 1, 94, 1, 94, - 1, 95, 1, 95, 1, 95, 3, 95, 3002, 8, 95, 1, 95, 1, 95, 1, 96, 5, 96, 3007, - 8, 96, 10, 96, 12, 96, 3010, 9, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, - 1, 97, 1, 97, 1, 97, 3, 97, 3020, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, - 98, 3, 98, 3027, 8, 98, 1, 98, 3, 98, 3030, 8, 98, 1, 98, 3, 98, 3033, - 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3038, 8, 98, 1, 98, 3, 98, 3041, 8, - 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3048, 8, 98, 1, 98, 1, 98, - 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3057, 8, 98, 1, 98, 1, 98, 1, - 98, 1, 98, 1, 98, 3, 98, 3064, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3069, - 8, 98, 1, 98, 3, 98, 3072, 8, 98, 1, 98, 3, 98, 3075, 8, 98, 3, 98, 3077, - 8, 98, 1, 99, 1, 99, 3, 99, 3081, 8, 99, 1, 99, 1, 99, 1, 100, 1, 100, - 1, 100, 3, 100, 3088, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, - 101, 3095, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 5, 103, - 3103, 8, 103, 10, 103, 12, 103, 3106, 9, 103, 1, 104, 1, 104, 1, 105, 1, - 105, 1, 105, 1, 105, 1, 105, 3, 105, 3115, 8, 105, 1, 106, 1, 106, 1, 106, - 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3125, 8, 106, 1, 106, 1, - 106, 1, 106, 1, 106, 3, 106, 3131, 8, 106, 1, 106, 3, 106, 3134, 8, 106, - 1, 106, 3, 106, 3137, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, - 106, 3144, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, - 3152, 8, 106, 1, 106, 3, 106, 3155, 8, 106, 1, 106, 3, 106, 3158, 8, 106, - 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3165, 8, 106, 1, 106, 1, - 106, 3, 106, 3169, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3175, - 8, 106, 1, 106, 3, 106, 3178, 8, 106, 1, 106, 3, 106, 3181, 8, 106, 1, - 106, 3, 106, 3184, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, - 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3196, 8, 106, 1, 106, 3, 106, 3199, - 8, 106, 1, 106, 3, 106, 3202, 8, 106, 1, 106, 1, 106, 3, 106, 3206, 8, + 64, 1, 64, 1, 64, 3, 64, 2670, 8, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, + 1, 66, 5, 66, 2678, 8, 66, 10, 66, 12, 66, 2681, 9, 66, 1, 67, 1, 67, 1, + 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 5, 68, 2691, 8, 68, 10, 68, 12, + 68, 2694, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2700, 8, 69, 1, 69, + 1, 69, 1, 69, 1, 69, 3, 69, 2706, 8, 69, 1, 69, 1, 69, 3, 69, 2710, 8, + 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2716, 8, 69, 1, 69, 1, 69, 1, 69, + 3, 69, 2721, 8, 69, 1, 69, 3, 69, 2724, 8, 69, 3, 69, 2726, 8, 69, 1, 70, + 1, 70, 1, 70, 3, 70, 2731, 8, 70, 1, 71, 1, 71, 3, 71, 2735, 8, 71, 1, + 71, 1, 71, 3, 71, 2739, 8, 71, 1, 71, 1, 71, 3, 71, 2743, 8, 71, 1, 71, + 1, 71, 3, 71, 2747, 8, 71, 1, 71, 3, 71, 2750, 8, 71, 1, 71, 1, 71, 3, + 71, 2754, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2762, + 8, 71, 1, 71, 1, 71, 3, 71, 2766, 8, 71, 1, 71, 1, 71, 3, 71, 2770, 8, + 71, 1, 72, 1, 72, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 3, 74, 2779, 8, 74, + 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 2786, 8, 75, 1, 76, 5, 76, 2789, + 8, 76, 10, 76, 12, 76, 2792, 9, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, + 2798, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2803, 8, 77, 1, 77, 1, 77, 1, + 77, 1, 77, 1, 77, 3, 77, 2810, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2815, + 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, + 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2833, 8, 77, 1, 78, + 1, 78, 1, 79, 3, 79, 2838, 8, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, + 81, 1, 81, 1, 81, 5, 81, 2848, 8, 81, 10, 81, 12, 81, 2851, 9, 81, 1, 82, + 1, 82, 3, 82, 2855, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, + 83, 3, 83, 2864, 8, 83, 1, 84, 1, 84, 1, 84, 5, 84, 2869, 8, 84, 10, 84, + 12, 84, 2872, 9, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2878, 8, 86, 1, + 86, 1, 86, 1, 86, 1, 86, 3, 86, 2884, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, + 2889, 8, 86, 1, 86, 1, 86, 3, 86, 2893, 8, 86, 1, 86, 3, 86, 2896, 8, 86, + 1, 86, 3, 86, 2899, 8, 86, 1, 86, 3, 86, 2902, 8, 86, 1, 86, 3, 86, 2905, + 8, 86, 1, 86, 3, 86, 2908, 8, 86, 1, 86, 1, 86, 1, 86, 3, 86, 2913, 8, + 86, 1, 86, 3, 86, 2916, 8, 86, 1, 86, 3, 86, 2919, 8, 86, 1, 86, 3, 86, + 2922, 8, 86, 1, 86, 3, 86, 2925, 8, 86, 1, 86, 3, 86, 2928, 8, 86, 1, 86, + 1, 86, 1, 86, 1, 86, 3, 86, 2934, 8, 86, 1, 86, 1, 86, 3, 86, 2938, 8, + 86, 1, 86, 3, 86, 2941, 8, 86, 1, 86, 3, 86, 2944, 8, 86, 1, 86, 3, 86, + 2947, 8, 86, 1, 86, 3, 86, 2950, 8, 86, 3, 86, 2952, 8, 86, 1, 87, 1, 87, + 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2961, 8, 87, 1, 88, 1, 88, 1, + 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 5, 90, 2972, 8, 90, 10, 90, + 12, 90, 2975, 9, 90, 1, 91, 1, 91, 1, 91, 5, 91, 2980, 8, 91, 10, 91, 12, + 91, 2983, 9, 91, 1, 92, 1, 92, 1, 92, 3, 92, 2988, 8, 92, 1, 93, 1, 93, + 3, 93, 2992, 8, 93, 1, 94, 1, 94, 1, 94, 3, 94, 2997, 8, 94, 1, 94, 1, + 94, 1, 95, 1, 95, 1, 95, 3, 95, 3004, 8, 95, 1, 95, 1, 95, 1, 96, 5, 96, + 3009, 8, 96, 10, 96, 12, 96, 3012, 9, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, + 97, 1, 97, 1, 97, 1, 97, 3, 97, 3022, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, + 1, 98, 3, 98, 3029, 8, 98, 1, 98, 3, 98, 3032, 8, 98, 1, 98, 3, 98, 3035, + 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3040, 8, 98, 1, 98, 3, 98, 3043, 8, + 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3050, 8, 98, 1, 98, 1, 98, + 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3059, 8, 98, 1, 98, 1, 98, 1, + 98, 1, 98, 1, 98, 3, 98, 3066, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3071, + 8, 98, 1, 98, 3, 98, 3074, 8, 98, 1, 98, 3, 98, 3077, 8, 98, 3, 98, 3079, + 8, 98, 1, 99, 1, 99, 3, 99, 3083, 8, 99, 1, 99, 1, 99, 1, 100, 1, 100, + 1, 100, 3, 100, 3090, 8, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, + 101, 3097, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 5, 103, + 3105, 8, 103, 10, 103, 12, 103, 3108, 9, 103, 1, 104, 1, 104, 1, 105, 1, + 105, 1, 105, 1, 105, 1, 105, 3, 105, 3117, 8, 105, 1, 106, 1, 106, 1, 106, + 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3127, 8, 106, 1, 106, 1, + 106, 1, 106, 1, 106, 3, 106, 3133, 8, 106, 1, 106, 3, 106, 3136, 8, 106, + 1, 106, 3, 106, 3139, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, + 106, 3146, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, + 3154, 8, 106, 1, 106, 3, 106, 3157, 8, 106, 1, 106, 3, 106, 3160, 8, 106, + 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3167, 8, 106, 1, 106, 1, + 106, 3, 106, 3171, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3177, + 8, 106, 1, 106, 3, 106, 3180, 8, 106, 1, 106, 3, 106, 3183, 8, 106, 1, + 106, 3, 106, 3186, 8, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, + 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 3198, 8, 106, 1, 106, 3, 106, 3201, + 8, 106, 1, 106, 3, 106, 3204, 8, 106, 1, 106, 1, 106, 3, 106, 3208, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, - 109, 1, 109, 5, 109, 3218, 8, 109, 10, 109, 12, 109, 3221, 9, 109, 1, 110, + 109, 1, 109, 5, 109, 3220, 8, 109, 10, 109, 12, 109, 3223, 9, 109, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, - 1, 113, 1, 113, 1, 113, 5, 113, 3236, 8, 113, 10, 113, 12, 113, 3239, 9, + 1, 113, 1, 113, 1, 113, 5, 113, 3238, 8, 113, 10, 113, 12, 113, 3241, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, - 114, 3249, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, - 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3264, 8, 116, 1, + 114, 3251, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, + 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3266, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, - 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3281, 8, 119, 3, 119, - 3283, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, + 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3283, 8, 119, 3, 119, + 3285, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, - 123, 5, 123, 3302, 8, 123, 10, 123, 12, 123, 3305, 9, 123, 1, 124, 1, 124, - 3, 124, 3309, 8, 124, 1, 124, 3, 124, 3312, 8, 124, 1, 124, 1, 124, 3, - 124, 3316, 8, 124, 1, 124, 3, 124, 3319, 8, 124, 1, 124, 1, 124, 1, 124, - 1, 124, 3, 124, 3325, 8, 124, 1, 124, 3, 124, 3328, 8, 124, 3, 124, 3330, + 123, 5, 123, 3304, 8, 123, 10, 123, 12, 123, 3307, 9, 123, 1, 124, 1, 124, + 3, 124, 3311, 8, 124, 1, 124, 3, 124, 3314, 8, 124, 1, 124, 1, 124, 3, + 124, 3318, 8, 124, 1, 124, 3, 124, 3321, 8, 124, 1, 124, 1, 124, 1, 124, + 1, 124, 3, 124, 3327, 8, 124, 1, 124, 3, 124, 3330, 8, 124, 3, 124, 3332, 8, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, - 3339, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, - 127, 3348, 8, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, + 3341, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, + 127, 3350, 8, 127, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, - 1, 131, 3, 131, 3367, 8, 131, 1, 131, 1, 131, 3, 131, 3371, 8, 131, 1, + 1, 131, 3, 131, 3369, 8, 131, 1, 131, 1, 131, 3, 131, 3373, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, - 132, 3382, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, - 3, 133, 3391, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3397, 8, - 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3403, 8, 133, 1, 134, 1, 134, - 3, 134, 3407, 8, 134, 1, 134, 3, 134, 3410, 8, 134, 1, 134, 3, 134, 3413, - 8, 134, 1, 134, 3, 134, 3416, 8, 134, 1, 134, 3, 134, 3419, 8, 134, 1, - 135, 1, 135, 1, 135, 1, 135, 3, 135, 3425, 8, 135, 1, 136, 1, 136, 3, 136, - 3429, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3436, 8, - 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3442, 8, 136, 1, 137, 1, 137, - 3, 137, 3446, 8, 137, 1, 137, 3, 137, 3449, 8, 137, 1, 137, 3, 137, 3452, - 8, 137, 1, 137, 3, 137, 3455, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, - 139, 1, 139, 3, 139, 3463, 8, 139, 1, 139, 1, 139, 3, 139, 3467, 8, 139, - 1, 140, 1, 140, 3, 140, 3471, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, - 140, 3477, 8, 140, 1, 140, 1, 140, 3, 140, 3481, 8, 140, 1, 141, 1, 141, - 1, 141, 1, 141, 3, 141, 3487, 8, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, - 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 4, 144, 3499, 8, 144, 11, - 144, 12, 144, 3500, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, - 145, 3, 145, 3510, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, + 132, 3384, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, + 3, 133, 3393, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3399, 8, + 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3405, 8, 133, 1, 134, 1, 134, + 3, 134, 3409, 8, 134, 1, 134, 3, 134, 3412, 8, 134, 1, 134, 3, 134, 3415, + 8, 134, 1, 134, 3, 134, 3418, 8, 134, 1, 134, 3, 134, 3421, 8, 134, 1, + 135, 1, 135, 1, 135, 1, 135, 3, 135, 3427, 8, 135, 1, 136, 1, 136, 3, 136, + 3431, 8, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3438, 8, + 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3444, 8, 136, 1, 137, 1, 137, + 3, 137, 3448, 8, 137, 1, 137, 3, 137, 3451, 8, 137, 1, 137, 3, 137, 3454, + 8, 137, 1, 137, 3, 137, 3457, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, + 139, 1, 139, 3, 139, 3465, 8, 139, 1, 139, 1, 139, 3, 139, 3469, 8, 139, + 1, 140, 1, 140, 3, 140, 3473, 8, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, + 140, 3479, 8, 140, 1, 140, 1, 140, 3, 140, 3483, 8, 140, 1, 141, 1, 141, + 1, 141, 1, 141, 3, 141, 3489, 8, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, + 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 4, 144, 3501, 8, 144, 11, + 144, 12, 144, 3502, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, + 145, 3, 145, 3512, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, - 1, 145, 3, 145, 3528, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3533, 8, - 145, 1, 145, 3, 145, 3536, 8, 145, 1, 145, 3, 145, 3539, 8, 145, 1, 146, - 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3549, 8, - 147, 1, 148, 1, 148, 1, 148, 5, 148, 3554, 8, 148, 10, 148, 12, 148, 3557, - 9, 148, 1, 149, 1, 149, 3, 149, 3561, 8, 149, 1, 149, 3, 149, 3564, 8, - 149, 1, 149, 3, 149, 3567, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, - 3, 149, 3574, 8, 149, 1, 149, 3, 149, 3577, 8, 149, 3, 149, 3579, 8, 149, - 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 3585, 8, 151, 1, 152, 1, 152, 1, - 152, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3594, 8, 153, 1, 154, 1, 154, - 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3604, 8, 156, 1, - 156, 1, 156, 1, 156, 3, 156, 3609, 8, 156, 1, 157, 1, 157, 1, 157, 1, 158, - 1, 158, 1, 158, 1, 158, 3, 158, 3618, 8, 158, 1, 158, 1, 158, 1, 159, 1, - 159, 1, 159, 1, 159, 1, 159, 3, 159, 3627, 8, 159, 1, 159, 1, 159, 3, 159, - 3631, 8, 159, 1, 159, 1, 159, 1, 160, 5, 160, 3636, 8, 160, 10, 160, 12, - 160, 3639, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, - 3, 161, 3648, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, - 163, 5, 163, 3657, 8, 163, 10, 163, 12, 163, 3660, 9, 163, 1, 164, 1, 164, + 1, 145, 3, 145, 3530, 8, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3535, 8, + 145, 1, 145, 3, 145, 3538, 8, 145, 1, 145, 3, 145, 3541, 8, 145, 1, 146, + 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3551, 8, + 147, 1, 148, 1, 148, 1, 148, 5, 148, 3556, 8, 148, 10, 148, 12, 148, 3559, + 9, 148, 1, 149, 1, 149, 3, 149, 3563, 8, 149, 1, 149, 3, 149, 3566, 8, + 149, 1, 149, 3, 149, 3569, 8, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, + 3, 149, 3576, 8, 149, 1, 149, 3, 149, 3579, 8, 149, 3, 149, 3581, 8, 149, + 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 3587, 8, 151, 1, 152, 1, 152, 1, + 152, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3596, 8, 153, 1, 154, 1, 154, + 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 3606, 8, 156, 1, + 156, 1, 156, 1, 156, 3, 156, 3611, 8, 156, 1, 157, 1, 157, 1, 157, 1, 158, + 1, 158, 1, 158, 1, 158, 3, 158, 3620, 8, 158, 1, 158, 1, 158, 1, 159, 1, + 159, 1, 159, 1, 159, 1, 159, 3, 159, 3629, 8, 159, 1, 159, 1, 159, 3, 159, + 3633, 8, 159, 1, 159, 1, 159, 1, 160, 5, 160, 3638, 8, 160, 10, 160, 12, + 160, 3641, 9, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, + 3, 161, 3650, 8, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, + 163, 5, 163, 3659, 8, 163, 10, 163, 12, 163, 3662, 9, 163, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, @@ -890,148 +890,148 @@ func postgresqlparserParserInit() { 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, - 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3769, 8, 165, 1, - 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3777, 8, 166, 1, 166, - 3, 166, 3780, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, - 167, 1, 167, 3, 167, 3790, 8, 167, 1, 168, 4, 168, 3793, 8, 168, 11, 168, - 12, 168, 3794, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, - 1, 170, 3, 170, 3805, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, - 170, 1, 170, 1, 170, 1, 170, 3, 170, 3816, 8, 170, 1, 171, 1, 171, 1, 171, - 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3826, 8, 172, 10, 172, - 12, 172, 3829, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, - 1, 174, 1, 174, 5, 174, 3839, 8, 174, 10, 174, 12, 174, 3842, 9, 174, 1, - 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 3851, 8, 175, + 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 3771, 8, 165, 1, + 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 3779, 8, 166, 1, 166, + 3, 166, 3782, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, + 167, 1, 167, 3, 167, 3792, 8, 167, 1, 168, 4, 168, 3795, 8, 168, 11, 168, + 12, 168, 3796, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, + 1, 170, 3, 170, 3807, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, + 170, 1, 170, 1, 170, 1, 170, 3, 170, 3818, 8, 170, 1, 171, 1, 171, 1, 171, + 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 5, 172, 3828, 8, 172, 10, 172, + 12, 172, 3831, 9, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, + 1, 174, 1, 174, 5, 174, 3841, 8, 174, 10, 174, 12, 174, 3844, 9, 174, 1, + 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 3853, 8, 175, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, - 1, 179, 1, 179, 3, 179, 3864, 8, 179, 1, 179, 3, 179, 3867, 8, 179, 1, - 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3874, 8, 179, 1, 179, 1, 179, - 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3883, 8, 179, 1, 179, 3, - 179, 3886, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3893, - 8, 179, 3, 179, 3895, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, - 181, 3, 181, 3903, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, - 1, 183, 1, 183, 3, 183, 3913, 8, 183, 3, 183, 3915, 8, 183, 1, 184, 1, - 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3923, 8, 184, 1, 184, 1, 184, - 3, 184, 3927, 8, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3932, 8, 184, 1, + 1, 179, 1, 179, 3, 179, 3866, 8, 179, 1, 179, 3, 179, 3869, 8, 179, 1, + 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3876, 8, 179, 1, 179, 1, 179, + 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3885, 8, 179, 1, 179, 3, + 179, 3888, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 3895, + 8, 179, 3, 179, 3897, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, + 181, 3, 181, 3905, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, + 1, 183, 1, 183, 3, 183, 3915, 8, 183, 3, 183, 3917, 8, 183, 1, 184, 1, + 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3925, 8, 184, 1, 184, 1, 184, + 3, 184, 3929, 8, 184, 1, 184, 1, 184, 1, 184, 3, 184, 3934, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, - 184, 3943, 8, 184, 1, 184, 1, 184, 3, 184, 3947, 8, 184, 1, 184, 1, 184, - 1, 184, 3, 184, 3952, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, - 184, 1, 184, 1, 184, 3, 184, 3962, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, - 3, 184, 3968, 8, 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, 3981, 8, 184, 1, 184, 1, 184, - 1, 184, 1, 184, 3, 184, 3987, 8, 184, 3, 184, 3989, 8, 184, 1, 185, 1, - 185, 1, 185, 1, 185, 1, 185, 3, 185, 3996, 8, 185, 1, 185, 1, 185, 1, 185, - 1, 185, 1, 185, 1, 185, 3, 185, 4004, 8, 185, 1, 186, 1, 186, 1, 186, 3, - 186, 4009, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, - 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4024, 8, 188, 1, + 184, 3945, 8, 184, 1, 184, 1, 184, 3, 184, 3949, 8, 184, 1, 184, 1, 184, + 1, 184, 3, 184, 3954, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, + 184, 1, 184, 1, 184, 3, 184, 3964, 8, 184, 1, 184, 1, 184, 1, 184, 1, 184, + 3, 184, 3970, 8, 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, 3983, 8, 184, 1, 184, 1, 184, + 1, 184, 1, 184, 3, 184, 3989, 8, 184, 3, 184, 3991, 8, 184, 1, 185, 1, + 185, 1, 185, 1, 185, 1, 185, 3, 185, 3998, 8, 185, 1, 185, 1, 185, 1, 185, + 1, 185, 1, 185, 1, 185, 3, 185, 4006, 8, 185, 1, 186, 1, 186, 1, 186, 3, + 186, 4011, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, + 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4026, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, - 188, 1, 188, 3, 188, 4037, 8, 188, 3, 188, 4039, 8, 188, 1, 189, 1, 189, - 3, 189, 4043, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, + 188, 1, 188, 3, 188, 4039, 8, 188, 3, 188, 4041, 8, 188, 1, 189, 1, 189, + 3, 189, 4045, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, - 190, 1, 190, 1, 190, 3, 190, 4063, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, + 190, 1, 190, 1, 190, 3, 190, 4065, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, - 1, 192, 1, 192, 3, 192, 4080, 8, 192, 1, 192, 3, 192, 4083, 8, 192, 1, - 192, 3, 192, 4086, 8, 192, 1, 192, 3, 192, 4089, 8, 192, 1, 192, 3, 192, - 4092, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4100, - 8, 193, 1, 193, 3, 193, 4103, 8, 193, 1, 193, 3, 193, 4106, 8, 193, 1, + 1, 192, 1, 192, 3, 192, 4082, 8, 192, 1, 192, 3, 192, 4085, 8, 192, 1, + 192, 3, 192, 4088, 8, 192, 1, 192, 3, 192, 4091, 8, 192, 1, 192, 3, 192, + 4094, 8, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4102, + 8, 193, 1, 193, 3, 193, 4105, 8, 193, 1, 193, 3, 193, 4108, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, - 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4152, - 8, 203, 1, 203, 3, 203, 4155, 8, 203, 1, 203, 3, 203, 4158, 8, 203, 1, + 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4154, + 8, 203, 1, 203, 3, 203, 4157, 8, 203, 1, 203, 3, 203, 4160, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, - 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4176, 8, 203, - 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4183, 8, 203, 1, 203, 1, - 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4192, 8, 203, 1, 204, - 1, 204, 1, 204, 1, 204, 3, 204, 4198, 8, 204, 1, 205, 1, 205, 1, 205, 5, - 205, 4203, 8, 205, 10, 205, 12, 205, 4206, 9, 205, 1, 206, 1, 206, 1, 206, - 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4215, 8, 206, 1, 207, 1, 207, 1, - 207, 1, 208, 4, 208, 4221, 8, 208, 11, 208, 12, 208, 4222, 1, 209, 1, 209, - 1, 209, 3, 209, 4228, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, - 211, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 4240, 8, 213, 1, 213, 1, 213, + 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4178, 8, 203, + 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4185, 8, 203, 1, 203, 1, + 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4194, 8, 203, 1, 204, + 1, 204, 1, 204, 1, 204, 3, 204, 4200, 8, 204, 1, 205, 1, 205, 1, 205, 5, + 205, 4205, 8, 205, 10, 205, 12, 205, 4208, 9, 205, 1, 206, 1, 206, 1, 206, + 1, 206, 1, 206, 1, 206, 1, 206, 3, 206, 4217, 8, 206, 1, 207, 1, 207, 1, + 207, 1, 208, 4, 208, 4223, 8, 208, 11, 208, 12, 208, 4224, 1, 209, 1, 209, + 1, 209, 3, 209, 4230, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, + 211, 1, 212, 1, 212, 1, 213, 1, 213, 3, 213, 4242, 8, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, - 1, 217, 1, 217, 1, 218, 1, 218, 3, 218, 4257, 8, 218, 1, 218, 1, 218, 5, - 218, 4261, 8, 218, 10, 218, 12, 218, 4264, 9, 218, 1, 219, 1, 219, 1, 219, - 1, 219, 3, 219, 4270, 8, 219, 1, 220, 1, 220, 1, 220, 1, 221, 5, 221, 4276, - 8, 221, 10, 221, 12, 221, 4279, 9, 221, 1, 222, 1, 222, 1, 222, 1, 222, - 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4292, 8, + 1, 217, 1, 217, 1, 218, 1, 218, 3, 218, 4259, 8, 218, 1, 218, 1, 218, 5, + 218, 4263, 8, 218, 10, 218, 12, 218, 4266, 9, 218, 1, 219, 1, 219, 1, 219, + 1, 219, 3, 219, 4272, 8, 219, 1, 220, 1, 220, 1, 220, 1, 221, 5, 221, 4278, + 8, 221, 10, 221, 12, 221, 4281, 9, 221, 1, 222, 1, 222, 1, 222, 1, 222, + 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 3, 222, 4294, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, - 223, 4320, 8, 223, 1, 224, 1, 224, 1, 224, 5, 224, 4325, 8, 224, 10, 224, - 12, 224, 4328, 9, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, - 1, 226, 1, 226, 1, 226, 5, 226, 4339, 8, 226, 10, 226, 12, 226, 4342, 9, + 223, 4322, 8, 223, 1, 224, 1, 224, 1, 224, 5, 224, 4327, 8, 224, 10, 224, + 12, 224, 4330, 9, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, + 1, 226, 1, 226, 1, 226, 5, 226, 4341, 8, 226, 10, 226, 12, 226, 4344, 9, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, - 228, 1, 228, 1, 228, 1, 228, 3, 228, 4356, 8, 228, 1, 229, 1, 229, 1, 229, + 228, 1, 228, 1, 228, 1, 228, 3, 228, 4358, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 3, 230, - 4369, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, - 230, 4378, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, + 4371, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, + 230, 4380, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, - 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 4403, 8, + 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 4405, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, - 230, 3, 230, 4414, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, + 230, 3, 230, 4416, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, - 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 4481, 8, 230, 1, 231, 1, - 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 5, 232, 4490, 8, 232, 10, - 232, 12, 232, 4493, 9, 232, 1, 233, 1, 233, 1, 233, 3, 233, 4498, 8, 233, - 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 4506, 8, 234, 1, - 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 5, 236, 4515, 8, 236, - 10, 236, 12, 236, 4518, 9, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, - 1, 238, 1, 239, 1, 239, 1, 239, 5, 239, 4529, 8, 239, 10, 239, 12, 239, - 4532, 9, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 4540, + 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 4483, 8, 230, 1, 231, 1, + 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 5, 232, 4492, 8, 232, 10, + 232, 12, 232, 4495, 9, 232, 1, 233, 1, 233, 1, 233, 3, 233, 4500, 8, 233, + 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 1, 234, 3, 234, 4508, 8, 234, 1, + 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 5, 236, 4517, 8, 236, + 10, 236, 12, 236, 4520, 9, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, + 1, 238, 1, 239, 1, 239, 1, 239, 5, 239, 4531, 8, 239, 10, 239, 12, 239, + 4534, 9, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 4542, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, - 3, 240, 4550, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, - 240, 1, 240, 1, 240, 1, 240, 3, 240, 4562, 8, 240, 1, 240, 1, 240, 1, 240, + 3, 240, 4552, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, + 240, 1, 240, 1, 240, 1, 240, 3, 240, 4564, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, - 1, 240, 3, 240, 4577, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, - 242, 1, 242, 1, 242, 1, 242, 3, 242, 4588, 8, 242, 1, 242, 1, 242, 1, 242, - 1, 242, 1, 242, 1, 242, 3, 242, 4596, 8, 242, 1, 242, 1, 242, 1, 242, 1, - 243, 1, 243, 1, 243, 5, 243, 4604, 8, 243, 10, 243, 12, 243, 4607, 9, 243, - 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4613, 8, 244, 1, 244, 3, 244, 4616, - 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4622, 8, 244, 1, 244, 3, - 244, 4625, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, - 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4640, 8, 244, 1, + 1, 240, 3, 240, 4579, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, + 242, 1, 242, 1, 242, 1, 242, 3, 242, 4590, 8, 242, 1, 242, 1, 242, 1, 242, + 1, 242, 1, 242, 1, 242, 3, 242, 4598, 8, 242, 1, 242, 1, 242, 1, 242, 1, + 243, 1, 243, 1, 243, 5, 243, 4606, 8, 243, 10, 243, 12, 243, 4609, 9, 243, + 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4615, 8, 244, 1, 244, 3, 244, 4618, + 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4624, 8, 244, 1, 244, 3, + 244, 4627, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, + 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 4642, 8, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, - 247, 1, 247, 3, 247, 4653, 8, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, + 247, 1, 247, 3, 247, 4655, 8, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, 1, 250, - 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4682, 8, 250, 1, 251, 1, 251, 1, - 251, 5, 251, 4687, 8, 251, 10, 251, 12, 251, 4690, 9, 251, 1, 252, 1, 252, + 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 4684, 8, 250, 1, 251, 1, 251, 1, + 251, 5, 251, 4689, 8, 251, 10, 251, 12, 251, 4692, 9, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, - 1, 252, 3, 252, 4704, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, - 253, 1, 253, 3, 253, 4713, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, - 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 4724, 8, 253, 3, 253, 4726, 8, - 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 4735, + 1, 252, 3, 252, 4706, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, + 253, 1, 253, 3, 253, 4715, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, + 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 4726, 8, 253, 3, 253, 4728, 8, + 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 4737, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, - 1, 254, 3, 254, 4746, 8, 254, 3, 254, 4748, 8, 254, 1, 255, 1, 255, 1, - 255, 1, 255, 1, 255, 3, 255, 4755, 8, 255, 1, 256, 1, 256, 1, 256, 1, 256, + 1, 254, 3, 254, 4748, 8, 254, 3, 254, 4750, 8, 254, 1, 255, 1, 255, 1, + 255, 1, 255, 1, 255, 3, 255, 4757, 8, 255, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, - 3, 257, 4770, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4776, 8, - 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4784, 8, 257, - 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4790, 8, 257, 1, 257, 1, 257, 1, - 257, 1, 257, 1, 257, 1, 257, 3, 257, 4798, 8, 257, 1, 257, 1, 257, 1, 257, - 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4808, 8, 257, 1, 257, 1, - 257, 1, 257, 1, 257, 3, 257, 4814, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, - 1, 257, 1, 257, 3, 257, 4822, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, - 257, 4828, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, - 4836, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4843, 8, - 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4852, - 8, 257, 3, 257, 4854, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, + 3, 257, 4772, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4778, 8, + 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4786, 8, 257, + 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4792, 8, 257, 1, 257, 1, 257, 1, + 257, 1, 257, 1, 257, 1, 257, 3, 257, 4800, 8, 257, 1, 257, 1, 257, 1, 257, + 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4810, 8, 257, 1, 257, 1, + 257, 1, 257, 1, 257, 3, 257, 4816, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, + 1, 257, 1, 257, 3, 257, 4824, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, + 257, 4830, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, + 4838, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4845, 8, + 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 4854, + 8, 257, 3, 257, 4856, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, - 258, 4879, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4886, + 258, 4881, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4888, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, - 1, 260, 3, 260, 4897, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4903, - 8, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 5, 262, 4910, 8, 262, 10, - 262, 12, 262, 4913, 9, 262, 1, 263, 1, 263, 3, 263, 4917, 8, 263, 1, 264, - 1, 264, 4, 264, 4921, 8, 264, 11, 264, 12, 264, 4922, 1, 265, 1, 265, 1, - 265, 5, 265, 4928, 8, 265, 10, 265, 12, 265, 4931, 9, 265, 1, 266, 1, 266, - 3, 266, 4935, 8, 266, 1, 266, 1, 266, 3, 266, 4939, 8, 266, 1, 266, 3, - 266, 4942, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4948, 8, 267, + 1, 260, 3, 260, 4899, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 4905, + 8, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 5, 262, 4912, 8, 262, 10, + 262, 12, 262, 4915, 9, 262, 1, 263, 1, 263, 3, 263, 4919, 8, 263, 1, 264, + 1, 264, 4, 264, 4923, 8, 264, 11, 264, 12, 264, 4924, 1, 265, 1, 265, 1, + 265, 5, 265, 4930, 8, 265, 10, 265, 12, 265, 4933, 9, 265, 1, 266, 1, 266, + 3, 266, 4937, 8, 266, 1, 266, 1, 266, 3, 266, 4941, 8, 266, 1, 266, 3, + 266, 4944, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 4950, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, @@ -1048,159 +1048,159 @@ func postgresqlparserParserInit() { 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, - 1, 268, 1, 268, 1, 268, 3, 268, 5097, 8, 268, 1, 269, 1, 269, 3, 269, 5101, - 8, 269, 1, 270, 1, 270, 1, 270, 3, 270, 5106, 8, 270, 1, 270, 1, 270, 1, - 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5117, 8, 270, + 1, 268, 1, 268, 1, 268, 3, 268, 5099, 8, 268, 1, 269, 1, 269, 3, 269, 5103, + 8, 269, 1, 270, 1, 270, 1, 270, 3, 270, 5108, 8, 270, 1, 270, 1, 270, 1, + 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5119, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, - 3, 270, 5128, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, - 270, 1, 270, 1, 270, 3, 270, 5139, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, - 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5150, 8, 270, 1, 270, 1, - 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5161, + 3, 270, 5130, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, + 270, 1, 270, 1, 270, 3, 270, 5141, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, + 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5152, 8, 270, 1, 270, 1, + 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5163, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, - 1, 270, 3, 270, 5172, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, - 270, 1, 270, 1, 270, 1, 270, 3, 270, 5183, 8, 270, 1, 270, 1, 270, 1, 270, - 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5195, 8, + 1, 270, 3, 270, 5174, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, + 270, 1, 270, 1, 270, 1, 270, 3, 270, 5185, 8, 270, 1, 270, 1, 270, 1, 270, + 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 3, 270, 5197, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, - 270, 3, 270, 5206, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, - 3, 270, 5214, 8, 270, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 3, 272, 5221, - 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5227, 8, 273, 1, 274, 1, - 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5235, 8, 274, 1, 274, 1, 274, - 1, 274, 3, 274, 5240, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5245, 8, - 274, 1, 274, 1, 274, 1, 274, 3, 274, 5250, 8, 274, 1, 274, 1, 274, 1, 274, - 1, 274, 3, 274, 5256, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, - 274, 5263, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5269, 8, 274, - 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5275, 8, 274, 1, 274, 1, 274, 1, - 274, 3, 274, 5280, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5286, - 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5293, 8, 274, 1, - 274, 1, 274, 1, 274, 3, 274, 5298, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, - 3, 274, 5304, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5311, - 8, 274, 1, 274, 3, 274, 5314, 8, 274, 1, 275, 1, 275, 1, 276, 1, 276, 1, - 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 5327, 8, 277, - 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 5336, 8, + 270, 3, 270, 5208, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, + 3, 270, 5216, 8, 270, 1, 271, 1, 271, 1, 271, 1, 272, 1, 272, 3, 272, 5223, + 8, 272, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5229, 8, 273, 1, 274, 1, + 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5237, 8, 274, 1, 274, 1, 274, + 1, 274, 3, 274, 5242, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5247, 8, + 274, 1, 274, 1, 274, 1, 274, 3, 274, 5252, 8, 274, 1, 274, 1, 274, 1, 274, + 1, 274, 3, 274, 5258, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, + 274, 5265, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5271, 8, 274, + 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5277, 8, 274, 1, 274, 1, 274, 1, + 274, 3, 274, 5282, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5288, + 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5295, 8, 274, 1, + 274, 1, 274, 1, 274, 3, 274, 5300, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, + 3, 274, 5306, 8, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 3, 274, 5313, + 8, 274, 1, 274, 3, 274, 5316, 8, 274, 1, 275, 1, 275, 1, 276, 1, 276, 1, + 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 3, 277, 5329, 8, 277, + 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 3, 278, 5338, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, - 278, 1, 278, 3, 278, 5348, 8, 278, 3, 278, 5350, 8, 278, 1, 279, 1, 279, + 278, 1, 278, 3, 278, 5350, 8, 278, 3, 278, 5352, 8, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, - 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 5367, 8, 279, 1, 280, 1, 280, 1, - 280, 5, 280, 5372, 8, 280, 10, 280, 12, 280, 5375, 9, 280, 1, 281, 1, 281, - 3, 281, 5379, 8, 281, 1, 281, 1, 281, 3, 281, 5383, 8, 281, 1, 281, 1, - 281, 3, 281, 5387, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 5393, - 8, 281, 3, 281, 5395, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, + 1, 279, 1, 279, 1, 279, 1, 279, 3, 279, 5369, 8, 279, 1, 280, 1, 280, 1, + 280, 5, 280, 5374, 8, 280, 10, 280, 12, 280, 5377, 9, 280, 1, 281, 1, 281, + 3, 281, 5381, 8, 281, 1, 281, 1, 281, 3, 281, 5385, 8, 281, 1, 281, 1, + 281, 3, 281, 5389, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 5395, + 8, 281, 3, 281, 5397, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, - 282, 3, 282, 5457, 8, 282, 1, 283, 1, 283, 1, 283, 5, 283, 5462, 8, 283, - 10, 283, 12, 283, 5465, 9, 283, 1, 284, 1, 284, 1, 284, 3, 284, 5470, 8, - 284, 1, 285, 1, 285, 1, 285, 5, 285, 5475, 8, 285, 10, 285, 12, 285, 5478, - 9, 285, 1, 286, 1, 286, 1, 286, 3, 286, 5483, 8, 286, 1, 287, 1, 287, 1, - 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5494, 8, 288, - 1, 288, 3, 288, 5497, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, - 289, 5504, 8, 289, 1, 289, 3, 289, 5507, 8, 289, 1, 289, 1, 289, 1, 289, - 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5517, 8, 289, 1, 289, 3, - 289, 5520, 8, 289, 3, 289, 5522, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, + 282, 3, 282, 5459, 8, 282, 1, 283, 1, 283, 1, 283, 5, 283, 5464, 8, 283, + 10, 283, 12, 283, 5467, 9, 283, 1, 284, 1, 284, 1, 284, 3, 284, 5472, 8, + 284, 1, 285, 1, 285, 1, 285, 5, 285, 5477, 8, 285, 10, 285, 12, 285, 5480, + 9, 285, 1, 286, 1, 286, 1, 286, 3, 286, 5485, 8, 286, 1, 287, 1, 287, 1, + 287, 1, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 5496, 8, 288, + 1, 288, 3, 288, 5499, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, + 289, 5506, 8, 289, 1, 289, 3, 289, 5509, 8, 289, 1, 289, 1, 289, 1, 289, + 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 5519, 8, 289, 1, 289, 3, + 289, 5522, 8, 289, 3, 289, 5524, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, - 1, 292, 1, 293, 5, 293, 5539, 8, 293, 10, 293, 12, 293, 5542, 9, 293, 1, + 1, 292, 1, 293, 5, 293, 5541, 8, 293, 10, 293, 12, 293, 5544, 9, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, - 294, 5553, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, - 3, 295, 5562, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, - 295, 3, 295, 5571, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, - 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 5583, 8, 295, 3, 295, 5585, 8, - 295, 1, 296, 1, 296, 1, 297, 1, 297, 3, 297, 5591, 8, 297, 1, 297, 1, 297, - 3, 297, 5595, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5600, 8, 297, 1, - 297, 3, 297, 5603, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5608, 8, 297, - 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5614, 8, 297, 1, 297, 3, 297, 5617, - 8, 297, 1, 297, 3, 297, 5620, 8, 297, 1, 297, 3, 297, 5623, 8, 297, 1, - 297, 3, 297, 5626, 8, 297, 1, 298, 1, 298, 1, 299, 1, 299, 1, 300, 1, 300, - 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 5, 302, 5640, 8, 302, 10, - 302, 12, 302, 5643, 9, 302, 1, 303, 3, 303, 5646, 8, 303, 1, 303, 3, 303, - 5649, 8, 303, 1, 303, 3, 303, 5652, 8, 303, 1, 303, 3, 303, 5655, 8, 303, - 1, 303, 3, 303, 5658, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5663, 8, - 303, 1, 303, 3, 303, 5666, 8, 303, 3, 303, 5668, 8, 303, 1, 304, 1, 304, + 294, 5555, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, + 3, 295, 5564, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, + 295, 3, 295, 5573, 8, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, + 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 5585, 8, 295, 3, 295, 5587, 8, + 295, 1, 296, 1, 296, 1, 297, 1, 297, 3, 297, 5593, 8, 297, 1, 297, 1, 297, + 3, 297, 5597, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5602, 8, 297, 1, + 297, 3, 297, 5605, 8, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5610, 8, 297, + 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 5616, 8, 297, 1, 297, 3, 297, 5619, + 8, 297, 1, 297, 3, 297, 5622, 8, 297, 1, 297, 3, 297, 5625, 8, 297, 1, + 297, 3, 297, 5628, 8, 297, 1, 298, 1, 298, 1, 299, 1, 299, 1, 300, 1, 300, + 1, 301, 1, 301, 1, 301, 1, 302, 1, 302, 1, 302, 5, 302, 5642, 8, 302, 10, + 302, 12, 302, 5645, 9, 302, 1, 303, 3, 303, 5648, 8, 303, 1, 303, 3, 303, + 5651, 8, 303, 1, 303, 3, 303, 5654, 8, 303, 1, 303, 3, 303, 5657, 8, 303, + 1, 303, 3, 303, 5660, 8, 303, 1, 303, 1, 303, 1, 303, 3, 303, 5665, 8, + 303, 1, 303, 3, 303, 5668, 8, 303, 3, 303, 5670, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, - 3, 304, 5681, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, - 306, 1, 306, 5, 306, 5691, 8, 306, 10, 306, 12, 306, 5694, 9, 306, 1, 307, + 3, 304, 5683, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 1, 305, 1, 306, 1, + 306, 1, 306, 5, 306, 5693, 8, 306, 10, 306, 12, 306, 5696, 9, 306, 1, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, - 1, 310, 3, 310, 5707, 8, 310, 1, 311, 1, 311, 3, 311, 5711, 8, 311, 1, + 1, 310, 3, 310, 5709, 8, 310, 1, 311, 1, 311, 3, 311, 5713, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, - 311, 3, 311, 5723, 8, 311, 3, 311, 5725, 8, 311, 1, 311, 1, 311, 1, 312, - 1, 312, 1, 312, 1, 313, 1, 313, 3, 313, 5734, 8, 313, 1, 313, 1, 313, 1, - 314, 1, 314, 1, 314, 5, 314, 5741, 8, 314, 10, 314, 12, 314, 5744, 9, 314, - 1, 315, 1, 315, 1, 315, 5, 315, 5749, 8, 315, 10, 315, 12, 315, 5752, 9, - 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 5760, 8, 316, - 3, 316, 5762, 8, 316, 1, 317, 1, 317, 3, 317, 5766, 8, 317, 1, 317, 1, - 317, 1, 318, 1, 318, 1, 318, 5, 318, 5773, 8, 318, 10, 318, 12, 318, 5776, - 9, 318, 1, 319, 1, 319, 3, 319, 5780, 8, 319, 1, 319, 1, 319, 1, 319, 1, - 319, 3, 319, 5786, 8, 319, 1, 319, 1, 319, 1, 319, 3, 319, 5791, 8, 319, - 1, 320, 1, 320, 3, 320, 5795, 8, 320, 1, 320, 1, 320, 1, 320, 3, 320, 5800, - 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5806, 8, 321, 1, 322, 1, - 322, 1, 323, 1, 323, 3, 323, 5812, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, - 3, 323, 5818, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 5824, 8, - 323, 1, 324, 1, 324, 1, 324, 3, 324, 5829, 8, 324, 1, 325, 1, 325, 1, 326, + 311, 3, 311, 5725, 8, 311, 3, 311, 5727, 8, 311, 1, 311, 1, 311, 1, 312, + 1, 312, 1, 312, 1, 313, 1, 313, 3, 313, 5736, 8, 313, 1, 313, 1, 313, 1, + 314, 1, 314, 1, 314, 5, 314, 5743, 8, 314, 10, 314, 12, 314, 5746, 9, 314, + 1, 315, 1, 315, 1, 315, 5, 315, 5751, 8, 315, 10, 315, 12, 315, 5754, 9, + 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 5762, 8, 316, + 3, 316, 5764, 8, 316, 1, 317, 1, 317, 3, 317, 5768, 8, 317, 1, 317, 1, + 317, 1, 318, 1, 318, 1, 318, 5, 318, 5775, 8, 318, 10, 318, 12, 318, 5778, + 9, 318, 1, 319, 1, 319, 3, 319, 5782, 8, 319, 1, 319, 1, 319, 1, 319, 1, + 319, 3, 319, 5788, 8, 319, 1, 319, 1, 319, 1, 319, 3, 319, 5793, 8, 319, + 1, 320, 1, 320, 3, 320, 5797, 8, 320, 1, 320, 1, 320, 1, 320, 3, 320, 5802, + 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 3, 321, 5808, 8, 321, 1, 322, 1, + 322, 1, 323, 1, 323, 3, 323, 5814, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, + 3, 323, 5820, 8, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 5826, 8, + 323, 1, 324, 1, 324, 1, 324, 3, 324, 5831, 8, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, - 1, 326, 3, 326, 5844, 8, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 5, - 327, 5851, 8, 327, 10, 327, 12, 327, 5854, 9, 327, 1, 328, 1, 328, 1, 328, - 1, 329, 1, 329, 1, 329, 5, 329, 5862, 8, 329, 10, 329, 12, 329, 5865, 9, - 329, 1, 330, 4, 330, 5868, 8, 330, 11, 330, 12, 330, 5869, 1, 330, 1, 330, + 1, 326, 3, 326, 5846, 8, 326, 1, 326, 1, 326, 1, 327, 1, 327, 1, 327, 5, + 327, 5853, 8, 327, 10, 327, 12, 327, 5856, 9, 327, 1, 328, 1, 328, 1, 328, + 1, 329, 1, 329, 1, 329, 5, 329, 5864, 8, 329, 10, 329, 12, 329, 5867, 9, + 329, 1, 330, 4, 330, 5870, 8, 330, 11, 330, 12, 330, 5871, 1, 330, 1, 330, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 1, 331, 3, 331, - 5909, 8, 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, 3, 332, 5924, 8, 332, 1, 333, - 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 5931, 8, 333, 1, 334, 1, 334, 1, - 334, 1, 334, 1, 334, 1, 334, 1, 334, 5, 334, 5940, 8, 334, 10, 334, 12, - 334, 5943, 9, 334, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 337, - 1, 337, 1, 337, 5, 337, 5954, 8, 337, 10, 337, 12, 337, 5957, 9, 337, 1, - 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 5964, 8, 338, 1, 339, 4, 339, - 5967, 8, 339, 11, 339, 12, 339, 5968, 1, 340, 1, 340, 1, 341, 1, 341, 1, - 341, 1, 341, 3, 341, 5977, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, - 1, 341, 3, 341, 5985, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 5991, - 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 5999, 8, - 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6005, 8, 341, 1, 341, 1, 341, - 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6013, 8, 341, 3, 341, 6015, 8, - 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6021, 8, 342, 1, 342, 1, 342, - 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6029, 8, 342, 3, 342, 6031, 8, - 342, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6037, 8, 343, 1, 343, 1, 343, - 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6045, 8, 343, 3, 343, 6047, 8, + 5911, 8, 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, 3, 332, 5926, 8, 332, 1, 333, + 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 5933, 8, 333, 1, 334, 1, 334, 1, + 334, 1, 334, 1, 334, 1, 334, 1, 334, 5, 334, 5942, 8, 334, 10, 334, 12, + 334, 5945, 9, 334, 1, 335, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 1, 337, + 1, 337, 1, 337, 5, 337, 5956, 8, 337, 10, 337, 12, 337, 5959, 9, 337, 1, + 338, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 5966, 8, 338, 1, 339, 4, 339, + 5969, 8, 339, 11, 339, 12, 339, 5970, 1, 340, 1, 340, 1, 341, 1, 341, 1, + 341, 1, 341, 3, 341, 5979, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, + 1, 341, 3, 341, 5987, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 5993, + 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6001, 8, + 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6007, 8, 341, 1, 341, 1, 341, + 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 6015, 8, 341, 3, 341, 6017, 8, + 341, 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6023, 8, 342, 1, 342, 1, 342, + 1, 342, 1, 342, 1, 342, 1, 342, 3, 342, 6031, 8, 342, 3, 342, 6033, 8, + 342, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6039, 8, 343, 1, 343, 1, 343, + 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 6047, 8, 343, 3, 343, 6049, 8, 343, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, 344, 1, - 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 6071, 8, 344, 1, 345, 1, 345, - 1, 345, 5, 345, 6076, 8, 345, 10, 345, 12, 345, 6079, 9, 345, 1, 345, 1, - 345, 1, 346, 1, 346, 1, 346, 5, 346, 6086, 8, 346, 10, 346, 12, 346, 6089, + 344, 1, 344, 1, 344, 1, 344, 1, 344, 3, 344, 6073, 8, 344, 1, 345, 1, 345, + 1, 345, 5, 345, 6078, 8, 345, 10, 345, 12, 345, 6081, 9, 345, 1, 345, 1, + 345, 1, 346, 1, 346, 1, 346, 5, 346, 6088, 8, 346, 10, 346, 12, 346, 6091, 9, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 349, 4, 349, - 6098, 8, 349, 11, 349, 12, 349, 6099, 1, 350, 1, 350, 1, 350, 3, 350, 6105, + 6100, 8, 349, 11, 349, 12, 349, 6101, 1, 350, 1, 350, 1, 350, 3, 350, 6107, 8, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, - 1, 351, 1, 351, 1, 351, 3, 351, 6118, 8, 351, 1, 351, 1, 351, 1, 351, 1, - 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 6130, 8, 351, + 1, 351, 1, 351, 1, 351, 3, 351, 6120, 8, 351, 1, 351, 1, 351, 1, 351, 1, + 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 3, 351, 6132, 8, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, - 1, 351, 3, 351, 6142, 8, 351, 3, 351, 6144, 8, 351, 1, 352, 1, 352, 1, - 352, 1, 352, 3, 352, 6150, 8, 352, 1, 353, 1, 353, 1, 353, 3, 353, 6155, - 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6163, 8, - 353, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 3, 355, 6170, 8, 355, 1, 355, + 1, 351, 3, 351, 6144, 8, 351, 3, 351, 6146, 8, 351, 1, 352, 1, 352, 1, + 352, 1, 352, 3, 352, 6152, 8, 352, 1, 353, 1, 353, 1, 353, 3, 353, 6157, + 8, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 6165, 8, + 353, 1, 354, 1, 354, 1, 354, 1, 355, 1, 355, 3, 355, 6172, 8, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, - 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 6215, 8, 356, 1, - 357, 1, 357, 1, 357, 3, 357, 6220, 8, 357, 1, 357, 1, 357, 1, 357, 1, 357, - 1, 357, 3, 357, 6227, 8, 357, 1, 358, 1, 358, 1, 358, 3, 358, 6232, 8, - 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6239, 8, 358, 1, 358, - 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6249, 8, + 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 6217, 8, 356, 1, + 357, 1, 357, 1, 357, 3, 357, 6222, 8, 357, 1, 357, 1, 357, 1, 357, 1, 357, + 1, 357, 3, 357, 6229, 8, 357, 1, 358, 1, 358, 1, 358, 3, 358, 6234, 8, + 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6241, 8, 358, 1, 358, + 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, 358, 6251, 8, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, - 358, 6259, 8, 358, 1, 358, 1, 358, 3, 358, 6263, 8, 358, 1, 359, 1, 359, - 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 5, 361, 6272, 8, 361, 10, 361, - 12, 361, 6275, 9, 361, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, + 358, 6261, 8, 358, 1, 358, 1, 358, 3, 358, 6265, 8, 358, 1, 359, 1, 359, + 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 5, 361, 6274, 8, 361, 10, 361, + 12, 361, 6277, 9, 361, 1, 362, 1, 362, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, - 6291, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, + 6293, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, - 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6362, + 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6364, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, @@ -1222,20 +1222,20 @@ func postgresqlparserParserInit() { 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, - 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6557, 8, 364, 1, 364, 1, + 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6559, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, - 364, 3, 364, 6570, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, - 1, 364, 1, 364, 1, 364, 3, 364, 6581, 8, 364, 1, 364, 1, 364, 1, 364, 1, - 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6594, + 364, 3, 364, 6572, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, + 1, 364, 1, 364, 1, 364, 3, 364, 6583, 8, 364, 1, 364, 1, 364, 1, 364, 1, + 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6596, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, - 1, 364, 1, 364, 3, 364, 6606, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, - 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6620, + 1, 364, 1, 364, 3, 364, 6608, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, + 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6622, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, - 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6652, 8, 364, 1, 364, 1, 364, 1, + 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6654, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, - 364, 3, 364, 6666, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, + 364, 3, 364, 6668, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, @@ -1247,16 +1247,16 @@ func postgresqlparserParserInit() { 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, - 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6778, 8, 364, 3, 364, 6780, + 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6780, 8, 364, 3, 364, 6782, 8, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, - 1, 367, 3, 367, 6791, 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, - 367, 1, 367, 1, 367, 1, 367, 3, 367, 6802, 8, 367, 1, 367, 1, 367, 1, 367, - 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6813, 8, 367, 1, + 1, 367, 3, 367, 6793, 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, + 367, 1, 367, 1, 367, 1, 367, 3, 367, 6804, 8, 367, 1, 367, 1, 367, 1, 367, + 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6815, 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, - 367, 1, 367, 3, 367, 6826, 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, - 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6838, 8, 367, 1, 367, 1, - 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6849, - 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6856, 8, 367, 1, + 367, 1, 367, 3, 367, 6828, 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, + 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6840, 8, 367, 1, 367, 1, + 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6851, + 8, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 6858, 8, 367, 1, 368, 1, 368, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, @@ -1281,17 +1281,17 @@ func postgresqlparserParserInit() { 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, 369, 1, - 369, 1, 369, 1, 369, 3, 369, 7077, 8, 369, 1, 370, 1, 370, 1, 370, 1, 370, - 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 5, 371, 7090, 8, - 371, 10, 371, 12, 371, 7093, 9, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, - 372, 1, 372, 1, 372, 1, 372, 3, 372, 7103, 8, 372, 1, 373, 1, 373, 1, 373, - 1, 373, 1, 373, 3, 373, 7110, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, + 369, 1, 369, 1, 369, 3, 369, 7079, 8, 369, 1, 370, 1, 370, 1, 370, 1, 370, + 1, 370, 1, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 5, 371, 7092, 8, + 371, 10, 371, 12, 371, 7095, 9, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, + 372, 1, 372, 1, 372, 1, 372, 3, 372, 7105, 8, 372, 1, 373, 1, 373, 1, 373, + 1, 373, 1, 373, 3, 373, 7112, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, - 375, 1, 375, 1, 375, 3, 375, 7164, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, + 375, 1, 375, 1, 375, 3, 375, 7166, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, @@ -1307,72 +1307,72 @@ func postgresqlparserParserInit() { 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, - 3, 375, 7305, 8, 375, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7311, 8, - 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7320, - 8, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7328, 8, - 376, 3, 376, 7330, 8, 376, 1, 377, 1, 377, 1, 377, 5, 377, 7335, 8, 377, - 10, 377, 12, 377, 7338, 9, 377, 1, 378, 1, 378, 1, 378, 3, 378, 7343, 8, - 378, 1, 378, 3, 378, 7346, 8, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, - 3, 378, 7353, 8, 378, 1, 378, 1, 378, 3, 378, 7357, 8, 378, 1, 378, 3, - 378, 7360, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7365, 8, 378, 1, 378, - 3, 378, 7368, 8, 378, 1, 378, 1, 378, 3, 378, 7372, 8, 378, 1, 378, 3, - 378, 7375, 8, 378, 1, 378, 3, 378, 7378, 8, 378, 1, 379, 1, 379, 1, 379, + 3, 375, 7307, 8, 375, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7313, 8, + 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7322, + 8, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7330, 8, + 376, 3, 376, 7332, 8, 376, 1, 377, 1, 377, 1, 377, 5, 377, 7337, 8, 377, + 10, 377, 12, 377, 7340, 9, 377, 1, 378, 1, 378, 1, 378, 3, 378, 7345, 8, + 378, 1, 378, 3, 378, 7348, 8, 378, 1, 378, 1, 378, 1, 378, 1, 378, 1, 378, + 3, 378, 7355, 8, 378, 1, 378, 1, 378, 3, 378, 7359, 8, 378, 1, 378, 3, + 378, 7362, 8, 378, 1, 378, 1, 378, 1, 378, 3, 378, 7367, 8, 378, 1, 378, + 3, 378, 7370, 8, 378, 1, 378, 1, 378, 3, 378, 7374, 8, 378, 1, 378, 3, + 378, 7377, 8, 378, 1, 378, 3, 378, 7380, 8, 378, 1, 379, 1, 379, 1, 379, 1, 379, 1, 379, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, - 7409, 8, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, - 381, 3, 381, 7419, 8, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7424, 8, 382, - 10, 382, 12, 382, 7427, 9, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, + 7411, 8, 380, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, 381, 1, + 381, 3, 381, 7421, 8, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7426, 8, 382, + 10, 382, 12, 382, 7429, 9, 382, 1, 383, 1, 383, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, - 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7449, 8, 384, 1, - 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7458, 8, 384, + 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7451, 8, 384, 1, + 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7460, 8, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, - 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7476, 8, - 384, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7482, 8, 385, 1, 385, 1, 385, - 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7490, 8, 385, 3, 385, 7492, 8, - 385, 1, 386, 1, 386, 3, 386, 7496, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, - 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7506, 8, 386, 1, 386, 1, 386, 3, - 386, 7510, 8, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, - 1, 387, 3, 387, 7520, 8, 387, 1, 388, 3, 388, 7523, 8, 388, 1, 388, 1, - 388, 3, 388, 7527, 8, 388, 5, 388, 7529, 8, 388, 10, 388, 12, 388, 7532, - 9, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7539, 8, 389, 1, + 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 1, 384, 3, 384, 7478, 8, + 384, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7484, 8, 385, 1, 385, 1, 385, + 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7492, 8, 385, 3, 385, 7494, 8, + 385, 1, 386, 1, 386, 3, 386, 7498, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, + 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7508, 8, 386, 1, 386, 1, 386, 3, + 386, 7512, 8, 386, 1, 386, 1, 386, 1, 387, 1, 387, 1, 387, 1, 387, 1, 387, + 1, 387, 3, 387, 7522, 8, 387, 1, 388, 3, 388, 7525, 8, 388, 1, 388, 1, + 388, 3, 388, 7529, 8, 388, 5, 388, 7531, 8, 388, 10, 388, 12, 388, 7534, + 9, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 389, 3, 389, 7541, 8, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 3, - 393, 7550, 8, 393, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 396, - 1, 396, 1, 396, 1, 396, 3, 396, 7562, 8, 396, 1, 397, 1, 397, 3, 397, 7566, - 8, 397, 1, 397, 3, 397, 7569, 8, 397, 1, 397, 1, 397, 3, 397, 7573, 8, - 397, 1, 397, 3, 397, 7576, 8, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7581, - 8, 397, 1, 397, 1, 397, 3, 397, 7585, 8, 397, 1, 397, 3, 397, 7588, 8, - 397, 1, 397, 1, 397, 3, 397, 7592, 8, 397, 1, 397, 3, 397, 7595, 8, 397, - 1, 397, 1, 397, 3, 397, 7599, 8, 397, 1, 397, 3, 397, 7602, 8, 397, 1, + 393, 7552, 8, 393, 1, 394, 1, 394, 1, 394, 1, 395, 1, 395, 1, 395, 1, 396, + 1, 396, 1, 396, 1, 396, 3, 396, 7564, 8, 396, 1, 397, 1, 397, 3, 397, 7568, + 8, 397, 1, 397, 3, 397, 7571, 8, 397, 1, 397, 1, 397, 3, 397, 7575, 8, + 397, 1, 397, 3, 397, 7578, 8, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7583, + 8, 397, 1, 397, 1, 397, 3, 397, 7587, 8, 397, 1, 397, 3, 397, 7590, 8, + 397, 1, 397, 1, 397, 3, 397, 7594, 8, 397, 1, 397, 3, 397, 7597, 8, 397, + 1, 397, 1, 397, 3, 397, 7601, 8, 397, 1, 397, 3, 397, 7604, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, - 397, 7613, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7620, + 397, 7615, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7622, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, - 1, 397, 1, 397, 1, 397, 3, 397, 7633, 8, 397, 1, 398, 1, 398, 1, 399, 1, + 1, 397, 1, 397, 1, 397, 3, 397, 7635, 8, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 1, 399, 3, - 399, 7647, 8, 399, 1, 400, 1, 400, 3, 400, 7651, 8, 400, 1, 400, 5, 400, - 7654, 8, 400, 10, 400, 12, 400, 7657, 9, 400, 1, 401, 1, 401, 1, 402, 1, - 402, 3, 402, 7663, 8, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 3, 403, - 7670, 8, 403, 1, 403, 3, 403, 7673, 8, 403, 1, 403, 1, 403, 1, 403, 3, - 403, 7678, 8, 403, 1, 403, 3, 403, 7681, 8, 403, 1, 403, 1, 403, 1, 403, - 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7690, 8, 403, 3, 403, 7692, 8, - 403, 1, 403, 1, 403, 1, 403, 3, 403, 7697, 8, 403, 1, 404, 1, 404, 3, 404, - 7701, 8, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 406, 1, - 406, 1, 406, 1, 406, 3, 406, 7713, 8, 406, 1, 406, 3, 406, 7716, 8, 406, - 1, 407, 1, 407, 1, 408, 4, 408, 7721, 8, 408, 11, 408, 12, 408, 7722, 1, - 409, 1, 409, 3, 409, 7727, 8, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7732, + 399, 7649, 8, 399, 1, 400, 1, 400, 3, 400, 7653, 8, 400, 1, 400, 5, 400, + 7656, 8, 400, 10, 400, 12, 400, 7659, 9, 400, 1, 401, 1, 401, 1, 402, 1, + 402, 3, 402, 7665, 8, 402, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 3, 403, + 7672, 8, 403, 1, 403, 3, 403, 7675, 8, 403, 1, 403, 1, 403, 1, 403, 3, + 403, 7680, 8, 403, 1, 403, 3, 403, 7683, 8, 403, 1, 403, 1, 403, 1, 403, + 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7692, 8, 403, 3, 403, 7694, 8, + 403, 1, 403, 1, 403, 1, 403, 3, 403, 7699, 8, 403, 1, 404, 1, 404, 3, 404, + 7703, 8, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 406, 1, + 406, 1, 406, 1, 406, 3, 406, 7715, 8, 406, 1, 406, 3, 406, 7718, 8, 406, + 1, 407, 1, 407, 1, 408, 4, 408, 7723, 8, 408, 11, 408, 12, 408, 7724, 1, + 409, 1, 409, 3, 409, 7729, 8, 409, 1, 409, 1, 409, 1, 409, 3, 409, 7734, 8, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, - 3, 410, 7742, 8, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, - 412, 3, 412, 7751, 8, 412, 1, 412, 3, 412, 7754, 8, 412, 1, 412, 1, 412, - 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7762, 8, 412, 1, 413, 1, 413, 1, - 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7773, 8, 414, - 1, 414, 1, 414, 3, 414, 7777, 8, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, - 414, 7783, 8, 414, 1, 415, 1, 415, 1, 415, 5, 415, 7788, 8, 415, 10, 415, - 12, 415, 7791, 9, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, + 3, 410, 7744, 8, 410, 1, 411, 1, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, + 412, 3, 412, 7753, 8, 412, 1, 412, 3, 412, 7756, 8, 412, 1, 412, 1, 412, + 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7764, 8, 412, 1, 413, 1, 413, 1, + 413, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 7775, 8, 414, + 1, 414, 1, 414, 3, 414, 7779, 8, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, + 414, 7785, 8, 414, 1, 415, 1, 415, 1, 415, 5, 415, 7790, 8, 415, 10, 415, + 12, 415, 7793, 9, 415, 1, 416, 1, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, - 1, 419, 1, 419, 3, 419, 7810, 8, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, + 1, 419, 1, 419, 3, 419, 7812, 8, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, - 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7831, 8, 420, 1, 420, - 1, 420, 3, 420, 7835, 8, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7840, 8, + 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7833, 8, 420, 1, 420, + 1, 420, 3, 420, 7837, 8, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7842, 8, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, @@ -1382,466 +1382,465 @@ func postgresqlparserParserInit() { 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, 423, 1, - 423, 3, 423, 7923, 8, 423, 1, 424, 1, 424, 1, 425, 1, 425, 3, 425, 7929, + 423, 3, 423, 7925, 8, 423, 1, 424, 1, 424, 1, 425, 1, 425, 3, 425, 7931, 8, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, - 1, 425, 1, 426, 1, 426, 3, 426, 7942, 8, 426, 1, 426, 1, 426, 3, 426, 7946, - 8, 426, 1, 426, 1, 426, 3, 426, 7950, 8, 426, 1, 426, 1, 426, 3, 426, 7954, - 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 3, 426, 7960, 8, 426, 1, 427, 1, - 427, 1, 427, 1, 428, 1, 428, 3, 428, 7967, 8, 428, 1, 428, 3, 428, 7970, - 8, 428, 1, 428, 3, 428, 7973, 8, 428, 1, 428, 3, 428, 7976, 8, 428, 1, - 428, 3, 428, 7979, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, - 7986, 8, 428, 3, 428, 7988, 8, 428, 1, 429, 1, 429, 3, 429, 7992, 8, 429, - 1, 429, 3, 429, 7995, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 3, - 429, 8002, 8, 429, 3, 429, 8004, 8, 429, 1, 430, 1, 430, 1, 430, 5, 430, - 8009, 8, 430, 10, 430, 12, 430, 8012, 9, 430, 1, 431, 1, 431, 1, 432, 1, - 432, 3, 432, 8018, 8, 432, 1, 433, 1, 433, 3, 433, 8022, 8, 433, 1, 434, - 1, 434, 3, 434, 8026, 8, 434, 1, 435, 1, 435, 1, 436, 1, 436, 1, 437, 1, + 1, 425, 1, 426, 1, 426, 3, 426, 7944, 8, 426, 1, 426, 1, 426, 3, 426, 7948, + 8, 426, 1, 426, 1, 426, 3, 426, 7952, 8, 426, 1, 426, 1, 426, 3, 426, 7956, + 8, 426, 1, 426, 1, 426, 1, 426, 1, 426, 3, 426, 7962, 8, 426, 1, 427, 1, + 427, 1, 427, 1, 428, 1, 428, 3, 428, 7969, 8, 428, 1, 428, 3, 428, 7972, + 8, 428, 1, 428, 3, 428, 7975, 8, 428, 1, 428, 3, 428, 7978, 8, 428, 1, + 428, 3, 428, 7981, 8, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, + 7988, 8, 428, 3, 428, 7990, 8, 428, 1, 429, 1, 429, 3, 429, 7994, 8, 429, + 1, 429, 3, 429, 7997, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 1, 429, 3, + 429, 8004, 8, 429, 3, 429, 8006, 8, 429, 1, 430, 1, 430, 1, 430, 5, 430, + 8011, 8, 430, 10, 430, 12, 430, 8014, 9, 430, 1, 431, 1, 431, 1, 432, 1, + 432, 3, 432, 8020, 8, 432, 1, 433, 1, 433, 3, 433, 8024, 8, 433, 1, 434, + 1, 434, 3, 434, 8028, 8, 434, 1, 435, 1, 435, 1, 436, 1, 436, 1, 437, 1, 437, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, - 440, 8042, 8, 440, 1, 441, 1, 441, 1, 441, 5, 441, 8047, 8, 441, 10, 441, - 12, 441, 8050, 9, 441, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, - 1, 443, 3, 443, 8059, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, - 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8072, 8, 443, 1, 444, + 440, 8044, 8, 440, 1, 441, 1, 441, 1, 441, 5, 441, 8049, 8, 441, 10, 441, + 12, 441, 8052, 9, 441, 1, 442, 1, 442, 1, 443, 1, 443, 1, 443, 1, 443, + 1, 443, 3, 443, 8061, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, + 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 3, 443, 8074, 8, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, - 8083, 8, 444, 1, 445, 1, 445, 1, 445, 5, 445, 8088, 8, 445, 10, 445, 12, - 445, 8091, 9, 445, 1, 446, 1, 446, 3, 446, 8095, 8, 446, 1, 447, 1, 447, - 3, 447, 8099, 8, 447, 1, 448, 1, 448, 3, 448, 8103, 8, 448, 1, 449, 1, - 449, 1, 449, 3, 449, 8108, 8, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, - 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8122, 8, - 451, 1, 452, 1, 452, 1, 452, 3, 452, 8127, 8, 452, 1, 452, 1, 452, 3, 452, - 8131, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8139, - 8, 452, 1, 452, 3, 452, 8142, 8, 452, 1, 452, 1, 452, 3, 452, 8146, 8, + 8085, 8, 444, 1, 445, 1, 445, 1, 445, 5, 445, 8090, 8, 445, 10, 445, 12, + 445, 8093, 9, 445, 1, 446, 1, 446, 3, 446, 8097, 8, 446, 1, 447, 1, 447, + 3, 447, 8101, 8, 447, 1, 448, 1, 448, 3, 448, 8105, 8, 448, 1, 449, 1, + 449, 1, 449, 3, 449, 8110, 8, 449, 1, 449, 1, 449, 1, 449, 1, 450, 1, 450, + 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 3, 451, 8124, 8, + 451, 1, 452, 1, 452, 1, 452, 3, 452, 8129, 8, 452, 1, 452, 1, 452, 3, 452, + 8133, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8141, + 8, 452, 1, 452, 3, 452, 8144, 8, 452, 1, 452, 1, 452, 3, 452, 8148, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, - 452, 3, 452, 8157, 8, 452, 1, 452, 3, 452, 8160, 8, 452, 3, 452, 8162, + 452, 3, 452, 8159, 8, 452, 1, 452, 3, 452, 8162, 8, 452, 3, 452, 8164, 8, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 454, 1, 454, 1, 454, 1, 454, - 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8178, 8, 454, 1, - 455, 3, 455, 8181, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, - 8188, 8, 455, 1, 455, 3, 455, 8191, 8, 455, 1, 456, 1, 456, 1, 456, 3, - 456, 8196, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, - 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8211, 8, 457, 1, - 457, 1, 457, 1, 457, 1, 457, 3, 457, 8217, 8, 457, 1, 458, 1, 458, 1, 459, - 1, 459, 1, 459, 5, 459, 8224, 8, 459, 10, 459, 12, 459, 8227, 9, 459, 1, - 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 3, 461, 8235, 8, 461, 1, 461, - 1, 461, 1, 461, 1, 461, 1, 461, 3, 461, 8242, 8, 461, 1, 461, 3, 461, 8245, - 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8251, 8, 462, 1, 462, 1, - 462, 1, 462, 3, 462, 8256, 8, 462, 1, 463, 1, 463, 1, 463, 1, 464, 3, 464, - 8262, 8, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8267, 8, 464, 1, 464, 1, - 464, 3, 464, 8271, 8, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8276, 8, 464, - 1, 464, 3, 464, 8279, 8, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8285, - 8, 464, 1, 464, 1, 464, 3, 464, 8289, 8, 464, 3, 464, 8291, 8, 464, 1, - 464, 3, 464, 8294, 8, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 3, 465, - 8301, 8, 465, 1, 465, 3, 465, 8304, 8, 465, 1, 465, 1, 465, 1, 465, 1, - 465, 1, 465, 3, 465, 8311, 8, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, - 1, 466, 3, 466, 8319, 8, 466, 1, 466, 3, 466, 8322, 8, 466, 1, 466, 1, - 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 3, 467, 8331, 8, 467, 1, 467, - 1, 467, 1, 468, 3, 468, 8336, 8, 468, 1, 468, 1, 468, 1, 468, 1, 468, 3, - 468, 8342, 8, 468, 1, 468, 3, 468, 8345, 8, 468, 1, 468, 3, 468, 8348, - 8, 468, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 3, 470, 8355, 8, 470, 1, - 470, 1, 470, 3, 470, 8359, 8, 470, 1, 470, 3, 470, 8362, 8, 470, 1, 471, + 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8180, 8, 454, 1, + 455, 3, 455, 8183, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 3, 455, + 8190, 8, 455, 1, 455, 3, 455, 8193, 8, 455, 1, 456, 1, 456, 1, 456, 3, + 456, 8198, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, + 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8213, 8, 457, 1, + 457, 1, 457, 1, 457, 1, 457, 3, 457, 8219, 8, 457, 1, 458, 1, 458, 1, 459, + 1, 459, 1, 459, 5, 459, 8226, 8, 459, 10, 459, 12, 459, 8229, 9, 459, 1, + 460, 1, 460, 1, 460, 1, 461, 1, 461, 1, 461, 3, 461, 8237, 8, 461, 1, 461, + 1, 461, 1, 461, 1, 461, 1, 461, 3, 461, 8244, 8, 461, 1, 461, 3, 461, 8247, + 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 3, 462, 8253, 8, 462, 1, 462, 1, + 462, 1, 462, 3, 462, 8258, 8, 462, 1, 463, 1, 463, 1, 463, 1, 464, 3, 464, + 8264, 8, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8269, 8, 464, 1, 464, 1, + 464, 3, 464, 8273, 8, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8278, 8, 464, + 1, 464, 3, 464, 8281, 8, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8287, + 8, 464, 1, 464, 1, 464, 3, 464, 8291, 8, 464, 3, 464, 8293, 8, 464, 1, + 464, 3, 464, 8296, 8, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 3, 465, + 8303, 8, 465, 1, 465, 3, 465, 8306, 8, 465, 1, 465, 1, 465, 1, 465, 1, + 465, 1, 465, 3, 465, 8313, 8, 465, 1, 465, 1, 465, 1, 466, 1, 466, 1, 466, + 1, 466, 3, 466, 8321, 8, 466, 1, 466, 3, 466, 8324, 8, 466, 1, 466, 1, + 466, 1, 466, 1, 466, 1, 467, 1, 467, 1, 467, 3, 467, 8333, 8, 467, 1, 467, + 1, 467, 1, 468, 3, 468, 8338, 8, 468, 1, 468, 1, 468, 1, 468, 1, 468, 3, + 468, 8344, 8, 468, 1, 468, 3, 468, 8347, 8, 468, 1, 468, 3, 468, 8350, + 8, 468, 1, 469, 1, 469, 1, 469, 1, 470, 1, 470, 3, 470, 8357, 8, 470, 1, + 470, 1, 470, 3, 470, 8361, 8, 470, 1, 470, 3, 470, 8364, 8, 470, 1, 471, 1, 471, 1, 471, 1, 471, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, 1, 472, - 1, 472, 1, 472, 1, 472, 3, 472, 8377, 8, 472, 1, 472, 3, 472, 8380, 8, - 472, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 3, 474, 8387, 8, 474, 1, 475, - 3, 475, 8390, 8, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 3, 475, 8397, - 8, 475, 1, 475, 3, 475, 8400, 8, 475, 1, 475, 3, 475, 8403, 8, 475, 1, - 476, 1, 476, 1, 476, 5, 476, 8408, 8, 476, 10, 476, 12, 476, 8411, 9, 476, + 1, 472, 1, 472, 1, 472, 3, 472, 8379, 8, 472, 1, 472, 3, 472, 8382, 8, + 472, 1, 473, 1, 473, 1, 474, 1, 474, 1, 474, 3, 474, 8389, 8, 474, 1, 475, + 3, 475, 8392, 8, 475, 1, 475, 1, 475, 1, 475, 1, 475, 1, 475, 3, 475, 8399, + 8, 475, 1, 475, 3, 475, 8402, 8, 475, 1, 475, 3, 475, 8405, 8, 475, 1, + 476, 1, 476, 1, 476, 5, 476, 8410, 8, 476, 10, 476, 12, 476, 8413, 9, 476, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, - 1, 477, 3, 477, 8423, 8, 477, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, - 479, 5, 479, 8431, 8, 479, 10, 479, 12, 479, 8434, 9, 479, 1, 480, 1, 480, - 1, 480, 1, 480, 1, 480, 3, 480, 8441, 8, 480, 1, 480, 1, 480, 1, 480, 1, - 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 5, 482, 8453, 8, 482, - 10, 482, 12, 482, 8456, 9, 482, 1, 483, 1, 483, 1, 483, 1, 483, 3, 483, - 8462, 8, 483, 1, 484, 1, 484, 3, 484, 8466, 8, 484, 1, 485, 1, 485, 1, - 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 3, 485, 8476, 8, 485, 1, 486, - 1, 486, 3, 486, 8480, 8, 486, 1, 486, 1, 486, 3, 486, 8484, 8, 486, 1, - 486, 1, 486, 3, 486, 8488, 8, 486, 3, 486, 8490, 8, 486, 1, 486, 1, 486, - 1, 486, 3, 486, 8495, 8, 486, 1, 486, 1, 486, 3, 486, 8499, 8, 486, 1, - 486, 1, 486, 3, 486, 8503, 8, 486, 3, 486, 8505, 8, 486, 3, 486, 8507, - 8, 486, 1, 487, 1, 487, 1, 487, 3, 487, 8512, 8, 487, 1, 487, 5, 487, 8515, - 8, 487, 10, 487, 12, 487, 8518, 9, 487, 1, 488, 1, 488, 1, 488, 3, 488, - 8523, 8, 488, 1, 488, 5, 488, 8526, 8, 488, 10, 488, 12, 488, 8529, 9, - 488, 1, 489, 1, 489, 3, 489, 8533, 8, 489, 1, 489, 3, 489, 8536, 8, 489, - 1, 489, 3, 489, 8539, 8, 489, 1, 489, 1, 489, 1, 489, 3, 489, 8544, 8, - 489, 1, 489, 3, 489, 8547, 8, 489, 1, 489, 3, 489, 8550, 8, 489, 1, 489, - 3, 489, 8553, 8, 489, 1, 489, 3, 489, 8556, 8, 489, 1, 489, 3, 489, 8559, - 8, 489, 1, 489, 3, 489, 8562, 8, 489, 1, 489, 1, 489, 1, 489, 1, 489, 3, - 489, 8568, 8, 489, 1, 490, 1, 490, 3, 490, 8572, 8, 490, 1, 490, 1, 490, - 1, 491, 1, 491, 1, 491, 5, 491, 8579, 8, 491, 10, 491, 12, 491, 8582, 9, - 491, 1, 492, 1, 492, 3, 492, 8586, 8, 492, 1, 492, 1, 492, 3, 492, 8590, + 1, 477, 3, 477, 8425, 8, 477, 1, 478, 1, 478, 1, 478, 1, 479, 1, 479, 1, + 479, 5, 479, 8433, 8, 479, 10, 479, 12, 479, 8436, 9, 479, 1, 480, 1, 480, + 1, 480, 1, 480, 1, 480, 3, 480, 8443, 8, 480, 1, 480, 1, 480, 1, 480, 1, + 481, 1, 481, 1, 482, 1, 482, 1, 482, 1, 482, 1, 482, 5, 482, 8455, 8, 482, + 10, 482, 12, 482, 8458, 9, 482, 1, 483, 1, 483, 1, 483, 1, 483, 3, 483, + 8464, 8, 483, 1, 484, 1, 484, 3, 484, 8468, 8, 484, 1, 485, 1, 485, 1, + 485, 1, 485, 1, 485, 1, 485, 1, 485, 1, 485, 3, 485, 8478, 8, 485, 1, 486, + 1, 486, 3, 486, 8482, 8, 486, 1, 486, 1, 486, 3, 486, 8486, 8, 486, 1, + 486, 1, 486, 3, 486, 8490, 8, 486, 3, 486, 8492, 8, 486, 1, 486, 1, 486, + 1, 486, 3, 486, 8497, 8, 486, 1, 486, 1, 486, 3, 486, 8501, 8, 486, 1, + 486, 1, 486, 3, 486, 8505, 8, 486, 3, 486, 8507, 8, 486, 3, 486, 8509, + 8, 486, 1, 487, 1, 487, 1, 487, 3, 487, 8514, 8, 487, 1, 487, 5, 487, 8517, + 8, 487, 10, 487, 12, 487, 8520, 9, 487, 1, 488, 1, 488, 1, 488, 3, 488, + 8525, 8, 488, 1, 488, 5, 488, 8528, 8, 488, 10, 488, 12, 488, 8531, 9, + 488, 1, 489, 1, 489, 3, 489, 8535, 8, 489, 1, 489, 3, 489, 8538, 8, 489, + 1, 489, 3, 489, 8541, 8, 489, 1, 489, 1, 489, 1, 489, 3, 489, 8546, 8, + 489, 1, 489, 3, 489, 8549, 8, 489, 1, 489, 3, 489, 8552, 8, 489, 1, 489, + 3, 489, 8555, 8, 489, 1, 489, 3, 489, 8558, 8, 489, 1, 489, 3, 489, 8561, + 8, 489, 1, 489, 3, 489, 8564, 8, 489, 1, 489, 1, 489, 1, 489, 1, 489, 3, + 489, 8570, 8, 489, 1, 490, 1, 490, 3, 490, 8574, 8, 490, 1, 490, 1, 490, + 1, 491, 1, 491, 1, 491, 5, 491, 8581, 8, 491, 10, 491, 12, 491, 8584, 9, + 491, 1, 492, 1, 492, 3, 492, 8588, 8, 492, 1, 492, 1, 492, 3, 492, 8592, 8, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 3, 493, - 8599, 8, 493, 1, 494, 1, 494, 1, 495, 1, 495, 3, 495, 8605, 8, 495, 1, - 495, 1, 495, 3, 495, 8609, 8, 495, 1, 496, 1, 496, 1, 497, 3, 497, 8614, - 8, 497, 1, 497, 1, 497, 3, 497, 8618, 8, 497, 1, 497, 1, 497, 1, 497, 3, - 497, 8623, 8, 497, 1, 497, 1, 497, 1, 497, 1, 497, 3, 497, 8629, 8, 497, + 8601, 8, 493, 1, 494, 1, 494, 1, 495, 1, 495, 3, 495, 8607, 8, 495, 1, + 495, 1, 495, 3, 495, 8611, 8, 495, 1, 496, 1, 496, 1, 497, 3, 497, 8616, + 8, 497, 1, 497, 1, 497, 3, 497, 8620, 8, 497, 1, 497, 1, 497, 1, 497, 3, + 497, 8625, 8, 497, 1, 497, 1, 497, 1, 497, 1, 497, 3, 497, 8631, 8, 497, 1, 498, 1, 498, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, - 1, 500, 3, 500, 8641, 8, 500, 1, 501, 1, 501, 1, 502, 1, 502, 1, 503, 1, - 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 5, 504, 8654, 8, 504, 10, - 504, 12, 504, 8657, 9, 504, 1, 505, 1, 505, 1, 505, 1, 505, 3, 505, 8663, - 8, 505, 3, 505, 8665, 8, 505, 1, 505, 3, 505, 8668, 8, 505, 1, 506, 1, - 506, 3, 506, 8672, 8, 506, 1, 506, 1, 506, 3, 506, 8676, 8, 506, 3, 506, - 8678, 8, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8686, + 1, 500, 3, 500, 8643, 8, 500, 1, 501, 1, 501, 1, 502, 1, 502, 1, 503, 1, + 503, 1, 503, 1, 503, 1, 504, 1, 504, 1, 504, 5, 504, 8656, 8, 504, 10, + 504, 12, 504, 8659, 9, 504, 1, 505, 1, 505, 1, 505, 1, 505, 3, 505, 8665, + 8, 505, 3, 505, 8667, 8, 505, 1, 505, 3, 505, 8670, 8, 505, 1, 506, 1, + 506, 3, 506, 8674, 8, 506, 1, 506, 1, 506, 3, 506, 8678, 8, 506, 3, 506, + 8680, 8, 506, 1, 507, 1, 507, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8688, 8, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, - 8695, 8, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8701, 8, 508, 3, - 508, 8703, 8, 508, 3, 508, 8705, 8, 508, 1, 509, 1, 509, 1, 509, 1, 509, - 1, 509, 3, 509, 8712, 8, 509, 1, 510, 1, 510, 3, 510, 8716, 8, 510, 1, - 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 3, 512, 8725, 8, 512, - 1, 513, 1, 513, 3, 513, 8729, 8, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, - 516, 1, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 5, 517, 8742, 8, 517, - 10, 517, 12, 517, 8745, 9, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, - 3, 518, 8752, 8, 518, 1, 519, 1, 519, 1, 519, 1, 520, 1, 520, 1, 520, 1, + 8697, 8, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, 8703, 8, 508, 3, + 508, 8705, 8, 508, 3, 508, 8707, 8, 508, 1, 509, 1, 509, 1, 509, 1, 509, + 1, 509, 3, 509, 8714, 8, 509, 1, 510, 1, 510, 3, 510, 8718, 8, 510, 1, + 511, 1, 511, 1, 512, 1, 512, 1, 512, 1, 512, 1, 512, 3, 512, 8727, 8, 512, + 1, 513, 1, 513, 3, 513, 8731, 8, 513, 1, 514, 1, 514, 1, 515, 1, 515, 1, + 516, 1, 516, 1, 516, 1, 516, 1, 517, 1, 517, 1, 517, 5, 517, 8744, 8, 517, + 10, 517, 12, 517, 8747, 9, 517, 1, 518, 1, 518, 1, 518, 1, 518, 1, 518, + 3, 518, 8754, 8, 518, 1, 519, 1, 519, 1, 519, 1, 520, 1, 520, 1, 520, 1, 520, 1, 520, 1, 521, 1, 521, 1, 521, 1, 521, 1, 521, 1, 522, 1, 522, 1, 522, 1, 522, 1, 522, 1, 522, 1, 523, 1, 523, 1, 523, 1, 524, 1, 524, 1, - 524, 1, 524, 3, 524, 8780, 8, 524, 1, 525, 1, 525, 1, 526, 4, 526, 8785, - 8, 526, 11, 526, 12, 526, 8786, 1, 527, 1, 527, 3, 527, 8791, 8, 527, 1, - 527, 3, 527, 8794, 8, 527, 1, 528, 1, 528, 1, 528, 3, 528, 8799, 8, 528, - 1, 528, 1, 528, 3, 528, 8803, 8, 528, 1, 528, 3, 528, 8806, 8, 528, 1, + 524, 1, 524, 3, 524, 8782, 8, 524, 1, 525, 1, 525, 1, 526, 4, 526, 8787, + 8, 526, 11, 526, 12, 526, 8788, 1, 527, 1, 527, 3, 527, 8793, 8, 527, 1, + 527, 3, 527, 8796, 8, 527, 1, 528, 1, 528, 1, 528, 3, 528, 8801, 8, 528, + 1, 528, 1, 528, 3, 528, 8805, 8, 528, 1, 528, 3, 528, 8808, 8, 528, 1, 529, 1, 529, 1, 529, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, 530, 1, - 530, 1, 530, 1, 530, 5, 530, 8820, 8, 530, 10, 530, 12, 530, 8823, 9, 530, - 1, 531, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 5, 532, 8831, 8, 532, 10, - 532, 12, 532, 8834, 9, 532, 1, 533, 1, 533, 3, 533, 8838, 8, 533, 1, 533, - 3, 533, 8841, 8, 533, 1, 533, 1, 533, 3, 533, 8845, 8, 533, 1, 533, 1, - 533, 3, 533, 8849, 8, 533, 1, 533, 1, 533, 3, 533, 8853, 8, 533, 1, 533, - 1, 533, 1, 533, 3, 533, 8858, 8, 533, 1, 533, 1, 533, 3, 533, 8862, 8, - 533, 1, 533, 1, 533, 3, 533, 8866, 8, 533, 3, 533, 8868, 8, 533, 1, 533, - 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 3, 533, 8877, 8, 533, 1, - 533, 1, 533, 1, 533, 3, 533, 8882, 8, 533, 1, 533, 1, 533, 1, 533, 1, 533, - 3, 533, 8888, 8, 533, 1, 533, 1, 533, 3, 533, 8892, 8, 533, 3, 533, 8894, - 8, 533, 1, 533, 1, 533, 1, 533, 1, 533, 1, 533, 3, 533, 8901, 8, 533, 1, - 533, 1, 533, 1, 533, 3, 533, 8906, 8, 533, 1, 533, 1, 533, 1, 533, 1, 533, - 5, 533, 8912, 8, 533, 10, 533, 12, 533, 8915, 9, 533, 1, 534, 3, 534, 8918, - 8, 534, 1, 534, 1, 534, 1, 534, 1, 534, 1, 534, 3, 534, 8925, 8, 534, 1, - 535, 1, 535, 1, 536, 3, 536, 8930, 8, 536, 1, 536, 1, 536, 1, 536, 1, 536, - 1, 536, 3, 536, 8937, 8, 536, 1, 537, 1, 537, 1, 537, 3, 537, 8942, 8, - 537, 1, 537, 3, 537, 8945, 8, 537, 1, 537, 1, 537, 1, 537, 1, 537, 3, 537, - 8951, 8, 537, 1, 538, 1, 538, 3, 538, 8955, 8, 538, 1, 539, 1, 539, 1, - 539, 1, 539, 1, 539, 1, 539, 1, 539, 3, 539, 8964, 8, 539, 1, 540, 1, 540, - 3, 540, 8968, 8, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 3, - 540, 8976, 8, 540, 3, 540, 8978, 8, 540, 1, 541, 1, 541, 1, 541, 5, 541, - 8983, 8, 541, 10, 541, 12, 541, 8986, 9, 541, 1, 542, 1, 542, 3, 542, 8990, - 8, 542, 1, 542, 3, 542, 8993, 8, 542, 1, 543, 1, 543, 1, 543, 1, 543, 1, - 543, 1, 543, 3, 543, 9001, 8, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, - 1, 545, 1, 545, 3, 545, 9010, 8, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, - 545, 1, 545, 3, 545, 9018, 8, 545, 3, 545, 9020, 8, 545, 1, 546, 1, 546, - 3, 546, 9024, 8, 546, 1, 547, 1, 547, 1, 547, 5, 547, 9029, 8, 547, 10, - 547, 12, 547, 9032, 9, 547, 1, 548, 1, 548, 1, 548, 1, 548, 1, 548, 1, - 549, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 551, 1, 551, 1, 551, 1, - 551, 1, 551, 3, 551, 9050, 8, 551, 1, 552, 1, 552, 1, 553, 1, 553, 1, 553, - 5, 553, 9057, 8, 553, 10, 553, 12, 553, 9060, 9, 553, 1, 554, 1, 554, 1, - 554, 3, 554, 9065, 8, 554, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, - 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, 1, 555, - 1, 555, 1, 555, 3, 555, 9084, 8, 555, 1, 555, 1, 555, 1, 556, 1, 556, 1, - 556, 5, 556, 9091, 8, 556, 10, 556, 12, 556, 9094, 9, 556, 1, 557, 1, 557, - 1, 557, 3, 557, 9099, 8, 557, 1, 557, 1, 557, 3, 557, 9103, 8, 557, 1, - 558, 4, 558, 9106, 8, 558, 11, 558, 12, 558, 9107, 1, 559, 1, 559, 1, 559, - 1, 559, 1, 559, 1, 559, 1, 559, 1, 559, 3, 559, 9118, 8, 559, 1, 560, 1, - 560, 1, 560, 5, 560, 9123, 8, 560, 10, 560, 12, 560, 9126, 9, 560, 1, 561, - 1, 561, 1, 561, 1, 561, 1, 561, 1, 561, 3, 561, 9134, 8, 561, 1, 562, 3, - 562, 9137, 8, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, 1, 562, - 3, 562, 9146, 8, 562, 3, 562, 9148, 8, 562, 1, 562, 1, 562, 1, 562, 1, - 562, 3, 562, 9154, 8, 562, 1, 563, 1, 563, 3, 563, 9158, 8, 563, 1, 563, - 5, 563, 9161, 8, 563, 10, 563, 12, 563, 9164, 9, 563, 1, 564, 1, 564, 1, - 564, 1, 564, 1, 564, 1, 564, 1, 564, 3, 564, 9173, 8, 564, 1, 564, 1, 564, - 1, 564, 1, 564, 3, 564, 9179, 8, 564, 3, 564, 9181, 8, 564, 1, 565, 1, - 565, 1, 565, 1, 565, 3, 565, 9187, 8, 565, 1, 566, 1, 566, 1, 566, 1, 566, - 3, 566, 9193, 8, 566, 1, 566, 3, 566, 9196, 8, 566, 1, 566, 3, 566, 9199, - 8, 566, 1, 567, 1, 567, 1, 567, 1, 567, 1, 568, 1, 568, 1, 568, 1, 568, - 1, 568, 1, 568, 1, 568, 3, 568, 9212, 8, 568, 1, 568, 1, 568, 1, 568, 1, - 568, 3, 568, 9218, 8, 568, 1, 568, 1, 568, 3, 568, 9222, 8, 568, 1, 568, - 1, 568, 3, 568, 9226, 8, 568, 1, 568, 3, 568, 9229, 8, 568, 1, 569, 1, - 569, 1, 569, 1, 569, 1, 570, 1, 570, 3, 570, 9237, 8, 570, 1, 571, 1, 571, - 3, 571, 9241, 8, 571, 1, 572, 1, 572, 3, 572, 9245, 8, 572, 1, 572, 1, - 572, 1, 572, 1, 572, 1, 573, 1, 573, 3, 573, 9253, 8, 573, 1, 574, 1, 574, - 1, 574, 1, 574, 1, 574, 3, 574, 9260, 8, 574, 1, 575, 1, 575, 1, 575, 1, - 575, 1, 575, 3, 575, 9267, 8, 575, 1, 576, 1, 576, 3, 576, 9271, 8, 576, - 1, 576, 1, 576, 1, 576, 1, 576, 3, 576, 9277, 8, 576, 3, 576, 9279, 8, - 576, 1, 577, 1, 577, 1, 578, 1, 578, 1, 578, 1, 578, 1, 578, 3, 578, 9288, - 8, 578, 1, 578, 3, 578, 9291, 8, 578, 1, 579, 1, 579, 1, 580, 1, 580, 1, - 580, 1, 580, 1, 580, 1, 580, 3, 580, 9301, 8, 580, 1, 581, 1, 581, 1, 581, - 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, - 1, 581, 1, 581, 3, 581, 9317, 8, 581, 1, 581, 1, 581, 1, 581, 1, 581, 3, - 581, 9323, 8, 581, 1, 581, 1, 581, 1, 581, 3, 581, 9328, 8, 581, 1, 582, - 1, 582, 1, 582, 1, 582, 1, 582, 3, 582, 9335, 8, 582, 1, 583, 1, 583, 1, - 583, 1, 584, 1, 584, 1, 585, 1, 585, 3, 585, 9344, 8, 585, 1, 586, 1, 586, - 1, 586, 5, 586, 9349, 8, 586, 10, 586, 12, 586, 9352, 9, 586, 1, 587, 1, - 587, 1, 587, 5, 587, 9357, 8, 587, 10, 587, 12, 587, 9360, 9, 587, 1, 588, - 1, 588, 1, 588, 5, 588, 9365, 8, 588, 10, 588, 12, 588, 9368, 9, 588, 1, - 589, 1, 589, 3, 589, 9372, 8, 589, 1, 589, 1, 589, 3, 589, 9376, 8, 589, - 1, 589, 1, 589, 1, 589, 1, 589, 3, 589, 9382, 8, 589, 1, 590, 1, 590, 3, - 590, 9386, 8, 590, 1, 590, 1, 590, 3, 590, 9390, 8, 590, 1, 591, 3, 591, - 9393, 8, 591, 1, 591, 1, 591, 1, 592, 1, 592, 3, 592, 9399, 8, 592, 1, - 593, 1, 593, 1, 593, 3, 593, 9404, 8, 593, 1, 593, 1, 593, 1, 593, 1, 593, - 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, 1, 593, - 1, 593, 3, 593, 9420, 8, 593, 1, 593, 3, 593, 9423, 8, 593, 3, 593, 9425, - 8, 593, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, - 1, 594, 1, 594, 3, 594, 9437, 8, 594, 3, 594, 9439, 8, 594, 1, 595, 1, - 595, 3, 595, 9443, 8, 595, 1, 595, 1, 595, 1, 595, 1, 595, 3, 595, 9449, - 8, 595, 1, 595, 1, 595, 3, 595, 9453, 8, 595, 3, 595, 9455, 8, 595, 1, - 596, 1, 596, 1, 596, 1, 596, 5, 596, 9461, 8, 596, 10, 596, 12, 596, 9464, - 9, 596, 1, 597, 3, 597, 9467, 8, 597, 1, 597, 1, 597, 1, 598, 1, 598, 1, - 598, 5, 598, 9474, 8, 598, 10, 598, 12, 598, 9477, 9, 598, 1, 599, 1, 599, - 1, 599, 5, 599, 9482, 8, 599, 10, 599, 12, 599, 9485, 9, 599, 1, 600, 1, - 600, 1, 600, 3, 600, 9490, 8, 600, 1, 601, 3, 601, 9493, 8, 601, 1, 601, - 1, 601, 1, 602, 1, 602, 1, 602, 1, 602, 1, 602, 3, 602, 9502, 8, 602, 1, - 603, 1, 603, 1, 603, 3, 603, 9507, 8, 603, 1, 604, 1, 604, 1, 604, 5, 604, - 9512, 8, 604, 10, 604, 12, 604, 9515, 9, 604, 1, 605, 1, 605, 1, 605, 1, - 605, 1, 605, 1, 605, 1, 605, 3, 605, 9524, 8, 605, 1, 605, 1, 605, 1, 605, - 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, - 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, - 1, 605, 1, 605, 1, 605, 3, 605, 9550, 8, 605, 1, 605, 1, 605, 1, 605, 1, - 605, 1, 605, 1, 605, 1, 605, 1, 605, 1, 605, 3, 605, 9561, 8, 605, 5, 605, - 9563, 8, 605, 10, 605, 12, 605, 9566, 9, 605, 1, 606, 1, 606, 1, 606, 1, - 606, 1, 606, 3, 606, 9573, 8, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, - 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, - 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 3, 606, 9596, 8, - 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 3, 606, 9604, 8, 606, - 1, 607, 1, 607, 1, 608, 1, 608, 1, 608, 1, 608, 1, 608, 1, 608, 3, 608, - 9614, 8, 608, 1, 608, 3, 608, 9617, 8, 608, 1, 608, 1, 608, 1, 608, 3, - 608, 9622, 8, 608, 1, 608, 1, 608, 1, 608, 3, 608, 9627, 8, 608, 1, 608, - 1, 608, 3, 608, 9631, 8, 608, 1, 608, 1, 608, 1, 609, 1, 609, 3, 609, 9637, - 8, 609, 1, 609, 3, 609, 9640, 8, 609, 1, 609, 3, 609, 9643, 8, 609, 1, - 609, 1, 609, 3, 609, 9647, 8, 609, 1, 609, 3, 609, 9650, 8, 609, 1, 609, - 3, 609, 9653, 8, 609, 1, 610, 1, 610, 1, 610, 3, 610, 9658, 8, 610, 1, - 611, 1, 611, 1, 611, 1, 611, 3, 611, 9664, 8, 611, 1, 611, 3, 611, 9667, - 8, 611, 1, 611, 3, 611, 9670, 8, 611, 1, 611, 1, 611, 1, 611, 1, 611, 1, - 611, 1, 611, 3, 611, 9678, 8, 611, 1, 611, 3, 611, 9681, 8, 611, 1, 611, - 3, 611, 9684, 8, 611, 1, 611, 1, 611, 3, 611, 9688, 8, 611, 1, 612, 1, - 612, 1, 612, 3, 612, 9693, 8, 612, 1, 613, 1, 613, 1, 613, 1, 613, 1, 614, - 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 1, 614, 1, 614, 3, 614, 9711, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 3, 614, 9718, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, - 9725, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9732, 8, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9750, - 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9758, 8, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 3, 614, 9770, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 1, 614, 1, 614, 3, 614, 9788, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9827, 8, 614, 3, 614, - 9829, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 3, 614, 9849, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 1, 614, 1, 614, 1, 614, 3, 614, 9859, 8, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9870, 8, 614, 1, 614, - 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 3, 614, 9891, 8, 614, 1, 614, 3, 614, 9894, 8, 614, 1, 614, 3, 614, 9897, - 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9904, 8, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9911, 8, 614, 1, 614, 3, 614, - 9914, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, 9922, - 8, 614, 1, 614, 3, 614, 9925, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 3, 614, 9932, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, - 9939, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 3, 614, 9952, 8, 614, 1, 614, 1, 614, 1, 614, - 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 3, 614, - 9965, 8, 614, 1, 614, 3, 614, 9968, 8, 614, 1, 614, 1, 614, 3, 614, 9972, - 8, 614, 1, 614, 3, 614, 9975, 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, - 614, 1, 614, 1, 614, 1, 614, 3, 614, 9985, 8, 614, 1, 614, 3, 614, 9988, - 8, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, 1, 614, - 3, 614, 9998, 8, 614, 1, 614, 3, 614, 10001, 8, 614, 1, 614, 3, 614, 10004, - 8, 614, 1, 614, 1, 614, 3, 614, 10008, 8, 614, 1, 615, 1, 615, 1, 615, - 1, 615, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, - 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 1, 616, 3, 616, 10029, - 8, 616, 1, 617, 1, 617, 1, 617, 3, 617, 10034, 8, 617, 1, 618, 1, 618, - 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 1, 618, 3, 618, - 10046, 8, 618, 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, 1, 620, - 1, 620, 3, 620, 10056, 8, 620, 1, 620, 1, 620, 1, 620, 3, 620, 10061, 8, - 620, 1, 620, 3, 620, 10064, 8, 620, 1, 620, 3, 620, 10067, 8, 620, 1, 621, - 1, 621, 1, 621, 1, 622, 1, 622, 1, 622, 5, 622, 10075, 8, 622, 10, 622, - 12, 622, 10078, 9, 622, 1, 623, 1, 623, 1, 623, 1, 623, 1, 624, 1, 624, - 1, 624, 1, 624, 1, 624, 1, 624, 3, 624, 10090, 8, 624, 1, 625, 1, 625, - 1, 625, 5, 625, 10095, 8, 625, 10, 625, 12, 625, 10098, 9, 625, 1, 626, - 1, 626, 1, 626, 3, 626, 10103, 8, 626, 1, 627, 1, 627, 1, 627, 3, 627, - 10108, 8, 627, 1, 627, 1, 627, 1, 627, 3, 627, 10113, 8, 627, 3, 627, 10115, - 8, 627, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 1, 628, 3, 628, 10123, - 8, 628, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 3, 629, 10131, - 8, 629, 1, 630, 1, 630, 1, 630, 5, 630, 10136, 8, 630, 10, 630, 12, 630, - 10139, 9, 630, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, 1, 631, - 1, 631, 3, 631, 10149, 8, 631, 1, 632, 1, 632, 3, 632, 10153, 8, 632, 1, - 633, 1, 633, 1, 633, 1, 633, 1, 633, 1, 633, 3, 633, 10161, 8, 633, 1, - 634, 1, 634, 1, 634, 1, 634, 1, 634, 3, 634, 10168, 8, 634, 1, 635, 1, - 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 1, 635, 3, - 635, 10180, 8, 635, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 637, 1, - 637, 1, 637, 5, 637, 10190, 8, 637, 10, 637, 12, 637, 10193, 9, 637, 1, - 638, 1, 638, 1, 638, 3, 638, 10198, 8, 638, 1, 639, 1, 639, 1, 640, 1, - 640, 1, 640, 1, 640, 3, 640, 10206, 8, 640, 1, 641, 1, 641, 1, 641, 1, - 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, 641, 1, - 641, 1, 641, 1, 641, 3, 641, 10223, 8, 641, 1, 642, 1, 642, 1, 642, 1, - 643, 1, 643, 1, 643, 1, 643, 1, 643, 1, 643, 1, 644, 1, 644, 1, 644, 1, - 644, 1, 644, 1, 644, 1, 645, 1, 645, 1, 645, 1, 646, 1, 646, 1, 646, 5, - 646, 10246, 8, 646, 10, 646, 12, 646, 10249, 9, 646, 1, 647, 1, 647, 1, - 647, 1, 647, 1, 648, 1, 648, 1, 648, 3, 648, 10258, 8, 648, 1, 649, 1, - 649, 3, 649, 10262, 8, 649, 1, 649, 3, 649, 10265, 8, 649, 1, 649, 3, 649, - 10268, 8, 649, 1, 649, 3, 649, 10271, 8, 649, 1, 649, 1, 649, 1, 650, 1, - 650, 1, 651, 1, 651, 1, 651, 1, 651, 1, 652, 1, 652, 1, 652, 3, 652, 10284, - 8, 652, 1, 652, 1, 652, 1, 652, 3, 652, 10289, 8, 652, 1, 652, 1, 652, - 1, 652, 3, 652, 10294, 8, 652, 3, 652, 10296, 8, 652, 1, 653, 1, 653, 1, - 653, 1, 653, 1, 653, 1, 653, 3, 653, 10304, 8, 653, 1, 654, 1, 654, 1, - 654, 1, 654, 1, 654, 1, 654, 1, 654, 3, 654, 10313, 8, 654, 1, 655, 1, - 655, 1, 655, 1, 655, 1, 655, 1, 655, 1, 655, 3, 655, 10322, 8, 655, 1, - 656, 1, 656, 1, 656, 3, 656, 10327, 8, 656, 1, 656, 1, 656, 1, 656, 1, - 656, 1, 656, 1, 656, 1, 656, 3, 656, 10336, 8, 656, 1, 657, 1, 657, 1, - 657, 3, 657, 10341, 8, 657, 1, 657, 1, 657, 1, 658, 1, 658, 1, 658, 1, - 658, 1, 658, 1, 658, 1, 659, 1, 659, 1, 660, 1, 660, 3, 660, 10355, 8, - 660, 1, 661, 1, 661, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 1, 662, 3, - 662, 10365, 8, 662, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 3, - 663, 10373, 8, 663, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, - 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 3, 664, 10387, 8, 664, 1, - 665, 1, 665, 1, 665, 5, 665, 10392, 8, 665, 10, 665, 12, 665, 10395, 9, - 665, 1, 666, 1, 666, 1, 666, 5, 666, 10400, 8, 666, 10, 666, 12, 666, 10403, - 9, 666, 1, 667, 1, 667, 1, 667, 1, 667, 1, 667, 3, 667, 10410, 8, 667, - 1, 668, 1, 668, 1, 668, 5, 668, 10415, 8, 668, 10, 668, 12, 668, 10418, - 9, 668, 1, 669, 1, 669, 1, 669, 3, 669, 10423, 8, 669, 1, 669, 1, 669, - 1, 670, 1, 670, 1, 670, 5, 670, 10430, 8, 670, 10, 670, 12, 670, 10433, - 9, 670, 1, 671, 1, 671, 1, 671, 1, 671, 1, 672, 1, 672, 1, 672, 1, 672, - 1, 672, 1, 672, 1, 672, 1, 672, 3, 672, 10447, 8, 672, 1, 673, 1, 673, - 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 1, 674, 3, 674, 10458, - 8, 674, 1, 675, 1, 675, 1, 675, 1, 675, 1, 676, 1, 676, 1, 676, 1, 676, - 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, - 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, - 1, 676, 1, 676, 1, 676, 1, 676, 1, 676, 3, 676, 10491, 8, 676, 1, 677, - 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 3, 677, 10500, 8, 677, - 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 3, 678, 10507, 8, 678, 1, 679, - 1, 679, 3, 679, 10511, 8, 679, 1, 679, 1, 679, 3, 679, 10515, 8, 679, 1, - 679, 1, 679, 1, 680, 4, 680, 10520, 8, 680, 11, 680, 12, 680, 10521, 1, - 681, 1, 681, 1, 681, 1, 681, 1, 681, 1, 682, 1, 682, 1, 682, 1, 683, 1, - 683, 1, 684, 1, 684, 3, 684, 10536, 8, 684, 1, 685, 1, 685, 1, 685, 3, - 685, 10541, 8, 685, 1, 685, 1, 685, 1, 685, 3, 685, 10546, 8, 685, 1, 685, - 1, 685, 3, 685, 10550, 8, 685, 3, 685, 10552, 8, 685, 1, 685, 3, 685, 10555, - 8, 685, 1, 686, 1, 686, 1, 687, 4, 687, 10560, 8, 687, 11, 687, 12, 687, - 10561, 1, 688, 5, 688, 10565, 8, 688, 10, 688, 12, 688, 10568, 9, 688, - 1, 689, 1, 689, 1, 690, 1, 690, 1, 690, 5, 690, 10575, 8, 690, 10, 690, - 12, 690, 10578, 9, 690, 1, 691, 1, 691, 3, 691, 10582, 8, 691, 1, 691, - 3, 691, 10585, 8, 691, 1, 692, 1, 692, 1, 692, 3, 692, 10590, 8, 692, 1, - 693, 1, 693, 1, 693, 5, 693, 10595, 8, 693, 10, 693, 12, 693, 10598, 9, - 693, 1, 694, 1, 694, 3, 694, 10602, 8, 694, 1, 695, 1, 695, 1, 695, 5, - 695, 10607, 8, 695, 10, 695, 12, 695, 10610, 9, 695, 1, 696, 1, 696, 1, - 697, 1, 697, 1, 698, 1, 698, 1, 699, 1, 699, 1, 699, 1, 699, 1, 699, 1, - 699, 1, 699, 3, 699, 10625, 8, 699, 1, 700, 1, 700, 1, 700, 1, 700, 1, - 700, 1, 700, 1, 700, 1, 700, 1, 700, 1, 700, 3, 700, 10637, 8, 700, 1, - 700, 1, 700, 1, 700, 3, 700, 10642, 8, 700, 1, 700, 1, 700, 1, 700, 1, - 700, 1, 700, 1, 700, 3, 700, 10650, 8, 700, 1, 700, 1, 700, 1, 700, 1, - 700, 1, 700, 3, 700, 10657, 8, 700, 1, 700, 1, 700, 1, 700, 3, 700, 10662, - 8, 700, 1, 701, 1, 701, 1, 702, 1, 702, 1, 703, 1, 703, 1, 704, 1, 704, - 1, 705, 1, 705, 3, 705, 10674, 8, 705, 1, 706, 1, 706, 1, 706, 1, 706, - 5, 706, 10680, 8, 706, 10, 706, 12, 706, 10683, 9, 706, 1, 706, 1, 706, - 3, 706, 10687, 8, 706, 1, 707, 1, 707, 1, 707, 1, 708, 1, 708, 1, 708, - 1, 708, 1, 708, 3, 708, 10697, 8, 708, 1, 709, 1, 709, 1, 710, 1, 710, - 1, 710, 3, 710, 10704, 8, 710, 1, 711, 1, 711, 1, 711, 5, 711, 10709, 8, - 711, 10, 711, 12, 711, 10712, 9, 711, 1, 712, 1, 712, 1, 712, 1, 712, 1, - 712, 1, 712, 3, 712, 10720, 8, 712, 1, 713, 1, 713, 1, 713, 1, 713, 3, - 713, 10726, 8, 713, 1, 714, 1, 714, 1, 714, 1, 714, 3, 714, 10732, 8, 714, - 1, 715, 1, 715, 1, 715, 1, 715, 3, 715, 10738, 8, 715, 1, 716, 1, 716, - 1, 716, 1, 716, 1, 716, 1, 716, 3, 716, 10746, 8, 716, 1, 717, 1, 717, - 3, 717, 10750, 8, 717, 1, 717, 1, 717, 1, 717, 1, 717, 1, 717, 3, 717, - 10757, 8, 717, 1, 718, 1, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 720, - 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, - 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, - 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, - 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, - 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, - 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 1, 720, 3, 720, - 10819, 8, 720, 1, 721, 1, 721, 1, 722, 1, 722, 1, 723, 1, 723, 1, 724, - 1, 724, 1, 724, 3, 724, 10830, 8, 724, 1, 725, 5, 725, 10833, 8, 725, 10, - 725, 12, 725, 10836, 9, 725, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, - 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, - 726, 1, 726, 1, 726, 1, 726, 1, 726, 1, 726, 3, 726, 10858, 8, 726, 1, - 727, 1, 727, 1, 728, 1, 728, 1, 728, 1, 728, 3, 728, 10866, 8, 728, 1, - 729, 1, 729, 1, 730, 1, 730, 1, 730, 1, 730, 3, 730, 10874, 8, 730, 1, - 730, 1, 730, 3, 730, 10878, 8, 730, 1, 731, 3, 731, 10881, 8, 731, 1, 731, - 1, 731, 3, 731, 10885, 8, 731, 3, 731, 10887, 8, 731, 1, 732, 1, 732, 1, - 733, 4, 733, 10892, 8, 733, 11, 733, 12, 733, 10893, 1, 734, 1, 734, 1, - 734, 1, 734, 1, 735, 1, 735, 1, 735, 3, 735, 10903, 8, 735, 1, 736, 1, - 736, 1, 736, 1, 736, 1, 736, 3, 736, 10910, 8, 736, 1, 736, 1, 736, 3, - 736, 10914, 8, 736, 1, 736, 3, 736, 10917, 8, 736, 1, 736, 3, 736, 10920, - 8, 736, 1, 736, 3, 736, 10923, 8, 736, 1, 736, 1, 736, 3, 736, 10927, 8, - 736, 1, 736, 1, 736, 1, 736, 3, 736, 10932, 8, 736, 1, 736, 1, 736, 1, - 737, 1, 737, 1, 737, 3, 737, 10939, 8, 737, 1, 738, 1, 738, 1, 739, 1, - 739, 1, 739, 1, 739, 1, 740, 1, 740, 1, 740, 5, 740, 10950, 8, 740, 10, - 740, 12, 740, 10953, 9, 740, 1, 741, 1, 741, 1, 741, 1, 742, 1, 742, 1, - 743, 1, 743, 3, 743, 10962, 8, 743, 1, 744, 1, 744, 1, 745, 1, 745, 1, - 746, 1, 746, 1, 747, 1, 747, 1, 747, 1, 748, 1, 748, 1, 748, 1, 749, 1, - 749, 1, 749, 1, 750, 1, 750, 3, 750, 10981, 8, 750, 1, 751, 1, 751, 1, - 752, 5, 752, 10986, 8, 752, 10, 752, 12, 752, 10989, 9, 752, 1, 753, 1, - 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, - 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, - 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 1, 753, 3, 753, 11018, - 8, 753, 1, 754, 1, 754, 1, 754, 1, 754, 1, 755, 1, 755, 1, 755, 1, 755, - 3, 755, 11028, 8, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, 1, 755, - 1, 755, 3, 755, 11037, 8, 755, 1, 755, 1, 755, 1, 755, 3, 755, 11042, 8, - 755, 1, 756, 1, 756, 1, 757, 1, 757, 1, 757, 1, 757, 1, 757, 1, 758, 1, - 758, 3, 758, 11053, 8, 758, 1, 758, 1, 758, 1, 758, 1, 758, 1, 759, 1, - 759, 1, 760, 1, 760, 1, 760, 5, 760, 11064, 8, 760, 10, 760, 12, 760, 11067, - 9, 760, 1, 761, 1, 761, 1, 761, 1, 761, 1, 762, 1, 762, 1, 763, 1, 763, - 1, 764, 1, 764, 3, 764, 11079, 8, 764, 1, 764, 1, 764, 1, 764, 1, 764, - 5, 764, 11085, 8, 764, 10, 764, 12, 764, 11088, 9, 764, 1, 765, 1, 765, - 1, 765, 1, 765, 1, 765, 1, 765, 3, 765, 11096, 8, 765, 1, 765, 1, 765, - 1, 765, 1, 765, 1, 766, 1, 766, 1, 766, 1, 766, 1, 766, 5, 766, 11107, - 8, 766, 10, 766, 12, 766, 11110, 9, 766, 1, 767, 1, 767, 1, 767, 1, 768, - 1, 768, 3, 768, 11117, 8, 768, 1, 768, 1, 768, 3, 768, 11121, 8, 768, 1, - 768, 1, 768, 1, 768, 1, 768, 1, 769, 1, 769, 1, 770, 4, 770, 11130, 8, - 770, 11, 770, 12, 770, 11131, 1, 771, 1, 771, 1, 771, 1, 771, 1, 771, 1, - 772, 1, 772, 1, 772, 1, 773, 3, 773, 11143, 8, 773, 1, 773, 1, 773, 1, - 774, 3, 774, 11148, 8, 774, 1, 774, 1, 774, 1, 774, 1, 774, 1, 775, 3, - 775, 11155, 8, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 776, 1, 776, 1, - 776, 1, 776, 3, 776, 11165, 8, 776, 1, 776, 1, 776, 1, 776, 1, 776, 1, - 776, 3, 776, 11172, 8, 776, 1, 776, 3, 776, 11175, 8, 776, 1, 776, 1, 776, - 1, 776, 1, 776, 3, 776, 11181, 8, 776, 3, 776, 11183, 8, 776, 1, 777, 1, - 777, 1, 777, 1, 778, 1, 778, 1, 778, 1, 778, 5, 778, 11192, 8, 778, 10, - 778, 12, 778, 11195, 9, 778, 1, 778, 1, 778, 1, 779, 1, 779, 1, 780, 1, - 780, 1, 780, 1, 781, 1, 781, 1, 782, 3, 782, 11207, 8, 782, 1, 782, 1, - 782, 1, 782, 3, 782, 11212, 8, 782, 1, 782, 1, 782, 1, 782, 1, 782, 1, - 782, 1, 783, 1, 783, 1, 783, 1, 784, 1, 784, 3, 784, 11224, 8, 784, 1, - 784, 3, 784, 11227, 8, 784, 1, 784, 1, 784, 1, 785, 1, 785, 1, 786, 1, - 786, 1, 786, 1, 786, 1, 786, 1, 786, 1, 786, 3, 786, 11240, 8, 786, 1, - 786, 3, 786, 11243, 8, 786, 1, 786, 3, 786, 11246, 8, 786, 3, 786, 11248, - 8, 786, 1, 786, 1, 786, 1, 787, 1, 787, 1, 788, 1, 788, 3, 788, 11256, - 8, 788, 1, 788, 1, 788, 3, 788, 11260, 8, 788, 1, 788, 3, 788, 11263, 8, - 788, 1, 788, 1, 788, 1, 788, 1, 788, 3, 788, 11269, 8, 788, 1, 788, 1, - 788, 3, 788, 11273, 8, 788, 1, 788, 1, 788, 1, 788, 1, 788, 3, 788, 11279, - 8, 788, 1, 788, 1, 788, 1, 788, 3, 788, 11284, 8, 788, 1, 788, 1, 788, - 1, 788, 1, 788, 3, 788, 11290, 8, 788, 1, 788, 3, 788, 11293, 8, 788, 1, - 788, 1, 788, 3, 788, 11297, 8, 788, 1, 789, 1, 789, 1, 790, 1, 790, 4, - 790, 11303, 8, 790, 11, 790, 12, 790, 11304, 1, 791, 1, 791, 1, 791, 1, - 792, 1, 792, 1, 792, 1, 792, 1, 793, 1, 793, 1, 793, 5, 793, 11317, 8, - 793, 10, 793, 12, 793, 11320, 9, 793, 1, 794, 1, 794, 1, 794, 3, 794, 11325, - 8, 794, 1, 794, 1, 794, 1, 795, 1, 795, 1, 795, 1, 796, 1, 796, 1, 796, - 1, 796, 1, 796, 3, 796, 11337, 8, 796, 1, 796, 1, 796, 1, 797, 1, 797, - 1, 797, 1, 798, 1, 798, 1, 798, 3, 798, 11347, 8, 798, 1, 798, 3, 798, - 11350, 8, 798, 1, 798, 3, 798, 11353, 8, 798, 1, 798, 3, 798, 11356, 8, - 798, 1, 798, 3, 798, 11359, 8, 798, 1, 798, 1, 798, 1, 799, 1, 799, 1, - 799, 1, 800, 1, 800, 1, 800, 5, 800, 11369, 8, 800, 10, 800, 12, 800, 11372, - 9, 800, 1, 801, 1, 801, 3, 801, 11376, 8, 801, 1, 801, 1, 801, 1, 802, - 1, 802, 1, 802, 3, 802, 11383, 8, 802, 1, 802, 1, 802, 1, 802, 1, 802, - 1, 802, 3, 802, 11390, 8, 802, 3, 802, 11392, 8, 802, 1, 802, 1, 802, 1, - 802, 1, 802, 1, 802, 3, 802, 11399, 8, 802, 3, 802, 11401, 8, 802, 1, 802, - 1, 802, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 3, 803, 11410, 8, 803, - 1, 804, 1, 804, 1, 804, 5, 804, 11415, 8, 804, 10, 804, 12, 804, 11418, - 9, 804, 1, 805, 1, 805, 1, 805, 1, 806, 3, 806, 11424, 8, 806, 1, 806, - 1, 806, 1, 807, 1, 807, 1, 808, 1, 808, 3, 808, 11432, 8, 808, 1, 808, - 3, 808, 11435, 8, 808, 1, 808, 1, 808, 1, 808, 1, 808, 1, 808, 1, 809, - 1, 809, 1, 810, 1, 810, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, - 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 1, 811, 3, 811, 11459, - 8, 811, 3, 811, 11461, 8, 811, 1, 812, 1, 812, 3, 812, 11465, 8, 812, 1, - 812, 1, 812, 1, 812, 1, 813, 1, 813, 1, 813, 1, 813, 1, 814, 1, 814, 1, - 814, 1, 815, 1, 815, 3, 815, 11479, 8, 815, 1, 815, 1, 815, 1, 816, 1, - 816, 3, 816, 11485, 8, 816, 1, 816, 1, 816, 1, 817, 1, 817, 3, 817, 11491, - 8, 817, 1, 817, 1, 817, 1, 818, 1, 818, 1, 818, 1, 818, 1, 818, 1, 818, - 1, 818, 1, 818, 1, 818, 3, 818, 11504, 8, 818, 1, 818, 3, 818, 11507, 8, - 818, 1, 819, 1, 819, 3, 819, 11511, 8, 819, 1, 820, 1, 820, 1, 820, 1, - 821, 4, 821, 11517, 8, 821, 11, 821, 12, 821, 11518, 1, 822, 1, 822, 1, - 822, 1, 822, 1, 822, 1, 823, 1, 823, 1, 823, 5, 823, 11529, 8, 823, 10, - 823, 12, 823, 11532, 9, 823, 1, 824, 1, 824, 1, 824, 3, 824, 11537, 8, - 824, 1, 825, 1, 825, 1, 826, 1, 826, 1, 827, 1, 827, 1, 828, 1, 828, 1, - 828, 1, 829, 1, 829, 3, 829, 11550, 8, 829, 1, 830, 1, 830, 1, 831, 3, - 831, 11555, 8, 831, 1, 831, 1, 831, 3, 831, 11559, 8, 831, 1, 831, 3, 831, - 11562, 8, 831, 1, 831, 3, 831, 11565, 8, 831, 1, 831, 3, 831, 11568, 8, - 831, 1, 831, 3, 831, 11571, 8, 831, 1, 831, 3, 831, 11574, 8, 831, 1, 831, - 3, 831, 11577, 8, 831, 1, 831, 3, 831, 11580, 8, 831, 1, 832, 1, 832, 1, - 833, 1, 833, 1, 834, 1, 834, 1, 835, 1, 835, 1, 836, 1, 836, 3, 836, 11592, - 8, 836, 1, 837, 1, 837, 3, 837, 11596, 8, 837, 1, 837, 1, 837, 1, 837, - 0, 1, 1210, 838, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, + 530, 1, 530, 1, 530, 5, 530, 8822, 8, 530, 10, 530, 12, 530, 8825, 9, 530, + 1, 531, 1, 531, 1, 531, 1, 532, 1, 532, 1, 532, 5, 532, 8833, 8, 532, 10, + 532, 12, 532, 8836, 9, 532, 1, 533, 1, 533, 3, 533, 8840, 8, 533, 1, 533, + 3, 533, 8843, 8, 533, 1, 533, 1, 533, 3, 533, 8847, 8, 533, 1, 533, 1, + 533, 3, 533, 8851, 8, 533, 1, 533, 1, 533, 3, 533, 8855, 8, 533, 1, 533, + 1, 533, 1, 533, 3, 533, 8860, 8, 533, 1, 533, 1, 533, 3, 533, 8864, 8, + 533, 1, 533, 1, 533, 3, 533, 8868, 8, 533, 3, 533, 8870, 8, 533, 1, 533, + 1, 533, 1, 533, 3, 533, 8875, 8, 533, 1, 533, 1, 533, 3, 533, 8879, 8, + 533, 3, 533, 8881, 8, 533, 1, 533, 5, 533, 8884, 8, 533, 10, 533, 12, 533, + 8887, 9, 533, 1, 534, 1, 534, 1, 534, 1, 534, 1, 534, 3, 534, 8894, 8, + 534, 1, 534, 1, 534, 1, 534, 3, 534, 8899, 8, 534, 1, 534, 1, 534, 1, 534, + 1, 534, 3, 534, 8905, 8, 534, 1, 535, 3, 535, 8908, 8, 535, 1, 535, 1, + 535, 1, 535, 1, 535, 1, 535, 3, 535, 8915, 8, 535, 1, 536, 1, 536, 1, 537, + 3, 537, 8920, 8, 537, 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 3, 537, 8927, + 8, 537, 1, 538, 1, 538, 1, 538, 3, 538, 8932, 8, 538, 1, 538, 3, 538, 8935, + 8, 538, 1, 538, 1, 538, 1, 538, 1, 538, 3, 538, 8941, 8, 538, 1, 539, 1, + 539, 3, 539, 8945, 8, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, + 1, 540, 3, 540, 8954, 8, 540, 1, 541, 1, 541, 3, 541, 8958, 8, 541, 1, + 541, 1, 541, 1, 541, 1, 541, 1, 541, 1, 541, 3, 541, 8966, 8, 541, 3, 541, + 8968, 8, 541, 1, 542, 1, 542, 1, 542, 5, 542, 8973, 8, 542, 10, 542, 12, + 542, 8976, 9, 542, 1, 543, 1, 543, 3, 543, 8980, 8, 543, 1, 543, 3, 543, + 8983, 8, 543, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 8991, + 8, 544, 1, 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 546, 1, 546, 3, 546, + 9000, 8, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 3, 546, 9008, + 8, 546, 3, 546, 9010, 8, 546, 1, 547, 1, 547, 3, 547, 9014, 8, 547, 1, + 548, 1, 548, 1, 548, 5, 548, 9019, 8, 548, 10, 548, 12, 548, 9022, 9, 548, + 1, 549, 1, 549, 1, 549, 1, 549, 1, 549, 1, 550, 1, 550, 1, 550, 1, 551, + 1, 551, 1, 551, 1, 552, 1, 552, 1, 552, 1, 552, 1, 552, 3, 552, 9040, 8, + 552, 1, 553, 1, 553, 1, 554, 1, 554, 1, 554, 5, 554, 9047, 8, 554, 10, + 554, 12, 554, 9050, 9, 554, 1, 555, 1, 555, 1, 555, 3, 555, 9055, 8, 555, + 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, + 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 1, 556, 3, 556, + 9074, 8, 556, 1, 556, 1, 556, 1, 557, 1, 557, 1, 557, 5, 557, 9081, 8, + 557, 10, 557, 12, 557, 9084, 9, 557, 1, 558, 1, 558, 1, 558, 3, 558, 9089, + 8, 558, 1, 558, 1, 558, 3, 558, 9093, 8, 558, 1, 559, 4, 559, 9096, 8, + 559, 11, 559, 12, 559, 9097, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, + 560, 1, 560, 1, 560, 3, 560, 9108, 8, 560, 1, 561, 1, 561, 1, 561, 5, 561, + 9113, 8, 561, 10, 561, 12, 561, 9116, 9, 561, 1, 562, 1, 562, 1, 562, 1, + 562, 1, 562, 1, 562, 3, 562, 9124, 8, 562, 1, 563, 3, 563, 9127, 8, 563, + 1, 563, 1, 563, 1, 563, 1, 563, 1, 563, 1, 563, 1, 563, 3, 563, 9136, 8, + 563, 3, 563, 9138, 8, 563, 1, 563, 1, 563, 1, 563, 1, 563, 3, 563, 9144, + 8, 563, 1, 564, 1, 564, 3, 564, 9148, 8, 564, 1, 564, 5, 564, 9151, 8, + 564, 10, 564, 12, 564, 9154, 9, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, + 565, 1, 565, 1, 565, 3, 565, 9163, 8, 565, 1, 565, 1, 565, 1, 565, 1, 565, + 3, 565, 9169, 8, 565, 3, 565, 9171, 8, 565, 1, 566, 1, 566, 1, 566, 1, + 566, 3, 566, 9177, 8, 566, 1, 567, 1, 567, 1, 567, 1, 567, 3, 567, 9183, + 8, 567, 1, 567, 3, 567, 9186, 8, 567, 1, 567, 3, 567, 9189, 8, 567, 1, + 568, 1, 568, 1, 568, 1, 568, 1, 569, 1, 569, 1, 569, 1, 569, 1, 569, 1, + 569, 1, 569, 3, 569, 9202, 8, 569, 1, 569, 1, 569, 1, 569, 1, 569, 3, 569, + 9208, 8, 569, 1, 569, 1, 569, 3, 569, 9212, 8, 569, 1, 569, 1, 569, 3, + 569, 9216, 8, 569, 1, 569, 3, 569, 9219, 8, 569, 1, 570, 1, 570, 1, 570, + 1, 570, 1, 571, 1, 571, 3, 571, 9227, 8, 571, 1, 572, 1, 572, 3, 572, 9231, + 8, 572, 1, 573, 1, 573, 3, 573, 9235, 8, 573, 1, 573, 1, 573, 1, 573, 1, + 573, 1, 574, 1, 574, 3, 574, 9243, 8, 574, 1, 575, 1, 575, 1, 575, 1, 575, + 1, 575, 3, 575, 9250, 8, 575, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 3, + 576, 9257, 8, 576, 1, 577, 1, 577, 3, 577, 9261, 8, 577, 1, 577, 1, 577, + 1, 577, 1, 577, 3, 577, 9267, 8, 577, 3, 577, 9269, 8, 577, 1, 578, 1, + 578, 1, 579, 1, 579, 1, 579, 1, 579, 1, 579, 3, 579, 9278, 8, 579, 1, 579, + 3, 579, 9281, 8, 579, 1, 580, 1, 580, 1, 581, 1, 581, 1, 581, 1, 581, 1, + 581, 1, 581, 3, 581, 9291, 8, 581, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, + 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, 1, 582, + 3, 582, 9307, 8, 582, 1, 582, 1, 582, 1, 582, 1, 582, 3, 582, 9313, 8, + 582, 1, 582, 1, 582, 1, 582, 3, 582, 9318, 8, 582, 1, 583, 1, 583, 1, 583, + 1, 583, 1, 583, 3, 583, 9325, 8, 583, 1, 584, 1, 584, 1, 584, 1, 585, 1, + 585, 1, 586, 1, 586, 3, 586, 9334, 8, 586, 1, 587, 1, 587, 1, 587, 5, 587, + 9339, 8, 587, 10, 587, 12, 587, 9342, 9, 587, 1, 588, 1, 588, 1, 588, 5, + 588, 9347, 8, 588, 10, 588, 12, 588, 9350, 9, 588, 1, 589, 1, 589, 1, 589, + 5, 589, 9355, 8, 589, 10, 589, 12, 589, 9358, 9, 589, 1, 590, 1, 590, 3, + 590, 9362, 8, 590, 1, 590, 1, 590, 3, 590, 9366, 8, 590, 1, 590, 1, 590, + 1, 590, 1, 590, 3, 590, 9372, 8, 590, 1, 591, 1, 591, 3, 591, 9376, 8, + 591, 1, 591, 1, 591, 3, 591, 9380, 8, 591, 1, 592, 3, 592, 9383, 8, 592, + 1, 592, 1, 592, 1, 593, 1, 593, 3, 593, 9389, 8, 593, 1, 594, 1, 594, 1, + 594, 3, 594, 9394, 8, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, + 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 1, 594, 3, 594, + 9410, 8, 594, 1, 594, 3, 594, 9413, 8, 594, 3, 594, 9415, 8, 594, 1, 595, + 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, + 3, 595, 9427, 8, 595, 3, 595, 9429, 8, 595, 1, 596, 1, 596, 3, 596, 9433, + 8, 596, 1, 596, 1, 596, 1, 596, 1, 596, 3, 596, 9439, 8, 596, 1, 596, 1, + 596, 3, 596, 9443, 8, 596, 3, 596, 9445, 8, 596, 1, 597, 1, 597, 1, 597, + 1, 597, 5, 597, 9451, 8, 597, 10, 597, 12, 597, 9454, 9, 597, 1, 598, 3, + 598, 9457, 8, 598, 1, 598, 1, 598, 1, 599, 1, 599, 1, 599, 5, 599, 9464, + 8, 599, 10, 599, 12, 599, 9467, 9, 599, 1, 600, 1, 600, 1, 600, 5, 600, + 9472, 8, 600, 10, 600, 12, 600, 9475, 9, 600, 1, 601, 1, 601, 1, 601, 3, + 601, 9480, 8, 601, 1, 602, 3, 602, 9483, 8, 602, 1, 602, 1, 602, 1, 603, + 1, 603, 1, 603, 1, 603, 1, 603, 3, 603, 9492, 8, 603, 1, 604, 1, 604, 1, + 604, 3, 604, 9497, 8, 604, 1, 605, 1, 605, 1, 605, 5, 605, 9502, 8, 605, + 10, 605, 12, 605, 9505, 9, 605, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, + 1, 606, 1, 606, 3, 606, 9514, 8, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, + 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, + 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, + 606, 1, 606, 3, 606, 9540, 8, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, + 1, 606, 1, 606, 1, 606, 1, 606, 3, 606, 9551, 8, 606, 5, 606, 9553, 8, + 606, 10, 606, 12, 606, 9556, 9, 606, 1, 607, 1, 607, 1, 607, 1, 607, 1, + 607, 3, 607, 9563, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, + 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, + 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9586, 8, 607, 1, + 607, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9594, 8, 607, 1, 608, + 1, 608, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 1, 609, 3, 609, 9604, 8, + 609, 1, 609, 3, 609, 9607, 8, 609, 1, 609, 1, 609, 1, 609, 3, 609, 9612, + 8, 609, 1, 609, 1, 609, 1, 609, 3, 609, 9617, 8, 609, 1, 609, 1, 609, 3, + 609, 9621, 8, 609, 1, 609, 1, 609, 1, 610, 1, 610, 3, 610, 9627, 8, 610, + 1, 610, 3, 610, 9630, 8, 610, 1, 610, 3, 610, 9633, 8, 610, 1, 610, 1, + 610, 3, 610, 9637, 8, 610, 1, 610, 3, 610, 9640, 8, 610, 1, 610, 3, 610, + 9643, 8, 610, 1, 611, 1, 611, 1, 611, 3, 611, 9648, 8, 611, 1, 612, 1, + 612, 1, 612, 1, 612, 3, 612, 9654, 8, 612, 1, 612, 3, 612, 9657, 8, 612, + 1, 612, 3, 612, 9660, 8, 612, 1, 612, 1, 612, 1, 612, 1, 612, 1, 612, 1, + 612, 3, 612, 9668, 8, 612, 1, 612, 3, 612, 9671, 8, 612, 1, 612, 3, 612, + 9674, 8, 612, 1, 612, 1, 612, 3, 612, 9678, 8, 612, 1, 613, 1, 613, 1, + 613, 3, 613, 9683, 8, 613, 1, 614, 1, 614, 1, 614, 1, 614, 1, 615, 1, 615, + 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 3, 615, 9701, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, + 615, 9708, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9715, + 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9722, 8, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9740, 8, 615, + 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9748, 8, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 3, 615, 9760, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 3, 615, 9778, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9817, 8, 615, 3, 615, 9819, + 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 3, 615, 9839, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 3, 615, 9849, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9860, 8, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, + 615, 9881, 8, 615, 1, 615, 3, 615, 9884, 8, 615, 1, 615, 3, 615, 9887, + 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9894, 8, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9901, 8, 615, 1, 615, 3, 615, + 9904, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9912, + 8, 615, 1, 615, 3, 615, 9915, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 3, 615, 9922, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, + 9929, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 3, 615, 9942, 8, 615, 1, 615, 1, 615, 1, 615, + 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, + 9955, 8, 615, 1, 615, 3, 615, 9958, 8, 615, 1, 615, 1, 615, 3, 615, 9962, + 8, 615, 1, 615, 3, 615, 9965, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, + 615, 1, 615, 1, 615, 1, 615, 3, 615, 9975, 8, 615, 1, 615, 3, 615, 9978, + 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, + 3, 615, 9988, 8, 615, 1, 615, 3, 615, 9991, 8, 615, 1, 615, 3, 615, 9994, + 8, 615, 1, 615, 1, 615, 3, 615, 9998, 8, 615, 1, 616, 1, 616, 1, 616, 1, + 616, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, + 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 1, 617, 3, 617, 10019, 8, + 617, 1, 618, 1, 618, 1, 618, 3, 618, 10024, 8, 618, 1, 619, 1, 619, 1, + 619, 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, 3, 619, 10036, + 8, 619, 1, 620, 1, 620, 1, 620, 1, 620, 1, 620, 1, 620, 1, 621, 1, 621, + 3, 621, 10046, 8, 621, 1, 621, 1, 621, 1, 621, 3, 621, 10051, 8, 621, 1, + 621, 3, 621, 10054, 8, 621, 1, 621, 3, 621, 10057, 8, 621, 1, 622, 1, 622, + 1, 622, 1, 623, 1, 623, 1, 623, 5, 623, 10065, 8, 623, 10, 623, 12, 623, + 10068, 9, 623, 1, 624, 1, 624, 1, 624, 1, 624, 1, 625, 1, 625, 1, 625, + 1, 625, 1, 625, 1, 625, 3, 625, 10080, 8, 625, 1, 626, 1, 626, 1, 626, + 5, 626, 10085, 8, 626, 10, 626, 12, 626, 10088, 9, 626, 1, 627, 1, 627, + 1, 627, 3, 627, 10093, 8, 627, 1, 628, 1, 628, 1, 628, 3, 628, 10098, 8, + 628, 1, 628, 1, 628, 1, 628, 3, 628, 10103, 8, 628, 3, 628, 10105, 8, 628, + 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 1, 629, 3, 629, 10113, 8, 629, + 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 1, 630, 3, 630, 10121, 8, 630, + 1, 631, 1, 631, 1, 631, 5, 631, 10126, 8, 631, 10, 631, 12, 631, 10129, + 9, 631, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, + 3, 632, 10139, 8, 632, 1, 633, 1, 633, 3, 633, 10143, 8, 633, 1, 634, 1, + 634, 1, 634, 1, 634, 1, 634, 1, 634, 3, 634, 10151, 8, 634, 1, 635, 1, + 635, 1, 635, 1, 635, 1, 635, 3, 635, 10158, 8, 635, 1, 636, 1, 636, 1, + 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 3, 636, 10170, + 8, 636, 1, 637, 1, 637, 1, 637, 1, 637, 1, 637, 1, 638, 1, 638, 1, 638, + 5, 638, 10180, 8, 638, 10, 638, 12, 638, 10183, 9, 638, 1, 639, 1, 639, + 1, 639, 3, 639, 10188, 8, 639, 1, 640, 1, 640, 1, 641, 1, 641, 1, 641, + 1, 641, 3, 641, 10196, 8, 641, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, + 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, 1, 642, + 1, 642, 3, 642, 10213, 8, 642, 1, 643, 1, 643, 1, 643, 1, 644, 1, 644, + 1, 644, 1, 644, 1, 644, 1, 644, 1, 645, 1, 645, 1, 645, 1, 645, 1, 645, + 1, 645, 1, 646, 1, 646, 1, 646, 1, 647, 1, 647, 1, 647, 5, 647, 10236, + 8, 647, 10, 647, 12, 647, 10239, 9, 647, 1, 648, 1, 648, 1, 648, 1, 648, + 1, 649, 1, 649, 1, 649, 3, 649, 10248, 8, 649, 1, 650, 1, 650, 3, 650, + 10252, 8, 650, 1, 650, 3, 650, 10255, 8, 650, 1, 650, 3, 650, 10258, 8, + 650, 1, 650, 3, 650, 10261, 8, 650, 1, 650, 1, 650, 1, 651, 1, 651, 1, + 652, 1, 652, 1, 652, 1, 652, 1, 653, 1, 653, 1, 653, 3, 653, 10274, 8, + 653, 1, 653, 1, 653, 1, 653, 3, 653, 10279, 8, 653, 1, 653, 1, 653, 1, + 653, 3, 653, 10284, 8, 653, 3, 653, 10286, 8, 653, 1, 654, 1, 654, 1, 654, + 1, 654, 1, 654, 1, 654, 3, 654, 10294, 8, 654, 1, 655, 1, 655, 1, 655, + 1, 655, 1, 655, 1, 655, 1, 655, 3, 655, 10303, 8, 655, 1, 656, 1, 656, + 1, 656, 1, 656, 1, 656, 1, 656, 1, 656, 3, 656, 10312, 8, 656, 1, 657, + 1, 657, 1, 657, 3, 657, 10317, 8, 657, 1, 657, 1, 657, 1, 657, 1, 657, + 1, 657, 1, 657, 1, 657, 3, 657, 10326, 8, 657, 1, 658, 1, 658, 1, 658, + 3, 658, 10331, 8, 658, 1, 658, 1, 658, 1, 659, 1, 659, 1, 659, 1, 659, + 1, 659, 1, 659, 1, 660, 1, 660, 1, 661, 1, 661, 3, 661, 10345, 8, 661, + 1, 662, 1, 662, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 3, 663, + 10355, 8, 663, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 3, 664, + 10363, 8, 664, 1, 665, 1, 665, 1, 665, 1, 665, 1, 665, 1, 665, 1, 665, + 1, 665, 1, 665, 1, 665, 1, 665, 1, 665, 3, 665, 10377, 8, 665, 1, 666, + 1, 666, 1, 666, 5, 666, 10382, 8, 666, 10, 666, 12, 666, 10385, 9, 666, + 1, 667, 1, 667, 1, 667, 5, 667, 10390, 8, 667, 10, 667, 12, 667, 10393, + 9, 667, 1, 668, 1, 668, 1, 668, 1, 668, 1, 668, 3, 668, 10400, 8, 668, + 1, 669, 1, 669, 1, 669, 5, 669, 10405, 8, 669, 10, 669, 12, 669, 10408, + 9, 669, 1, 670, 1, 670, 1, 670, 3, 670, 10413, 8, 670, 1, 670, 1, 670, + 1, 671, 1, 671, 1, 671, 5, 671, 10420, 8, 671, 10, 671, 12, 671, 10423, + 9, 671, 1, 672, 1, 672, 1, 672, 1, 672, 1, 673, 1, 673, 1, 673, 1, 673, + 1, 673, 1, 673, 1, 673, 1, 673, 3, 673, 10437, 8, 673, 1, 674, 1, 674, + 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 3, 675, 10448, + 8, 675, 1, 676, 1, 676, 1, 676, 1, 676, 1, 677, 1, 677, 1, 677, 1, 677, + 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, + 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, + 1, 677, 1, 677, 1, 677, 1, 677, 1, 677, 3, 677, 10481, 8, 677, 1, 678, + 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 1, 678, 3, 678, 10490, 8, 678, + 1, 679, 1, 679, 1, 679, 1, 679, 1, 679, 3, 679, 10497, 8, 679, 1, 680, + 1, 680, 3, 680, 10501, 8, 680, 1, 680, 1, 680, 3, 680, 10505, 8, 680, 1, + 680, 1, 680, 1, 681, 4, 681, 10510, 8, 681, 11, 681, 12, 681, 10511, 1, + 682, 1, 682, 1, 682, 1, 682, 1, 682, 1, 683, 1, 683, 1, 683, 1, 684, 1, + 684, 1, 685, 1, 685, 3, 685, 10526, 8, 685, 1, 686, 1, 686, 1, 686, 3, + 686, 10531, 8, 686, 1, 686, 1, 686, 1, 686, 3, 686, 10536, 8, 686, 1, 686, + 1, 686, 3, 686, 10540, 8, 686, 3, 686, 10542, 8, 686, 1, 686, 3, 686, 10545, + 8, 686, 1, 687, 1, 687, 1, 688, 4, 688, 10550, 8, 688, 11, 688, 12, 688, + 10551, 1, 689, 5, 689, 10555, 8, 689, 10, 689, 12, 689, 10558, 9, 689, + 1, 690, 1, 690, 1, 691, 1, 691, 1, 691, 5, 691, 10565, 8, 691, 10, 691, + 12, 691, 10568, 9, 691, 1, 692, 1, 692, 3, 692, 10572, 8, 692, 1, 692, + 3, 692, 10575, 8, 692, 1, 693, 1, 693, 1, 693, 3, 693, 10580, 8, 693, 1, + 694, 1, 694, 1, 694, 5, 694, 10585, 8, 694, 10, 694, 12, 694, 10588, 9, + 694, 1, 695, 1, 695, 3, 695, 10592, 8, 695, 1, 696, 1, 696, 1, 696, 5, + 696, 10597, 8, 696, 10, 696, 12, 696, 10600, 9, 696, 1, 697, 1, 697, 1, + 698, 1, 698, 1, 699, 1, 699, 1, 700, 1, 700, 1, 700, 1, 700, 1, 700, 1, + 700, 1, 700, 3, 700, 10615, 8, 700, 1, 701, 1, 701, 1, 701, 1, 701, 1, + 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 3, 701, 10627, 8, 701, 1, + 701, 1, 701, 1, 701, 3, 701, 10632, 8, 701, 1, 701, 1, 701, 1, 701, 1, + 701, 1, 701, 1, 701, 3, 701, 10640, 8, 701, 1, 701, 1, 701, 1, 701, 1, + 701, 1, 701, 3, 701, 10647, 8, 701, 1, 701, 1, 701, 1, 701, 3, 701, 10652, + 8, 701, 1, 702, 1, 702, 1, 703, 1, 703, 1, 704, 1, 704, 1, 705, 1, 705, + 1, 706, 1, 706, 3, 706, 10664, 8, 706, 1, 707, 1, 707, 1, 707, 1, 707, + 5, 707, 10670, 8, 707, 10, 707, 12, 707, 10673, 9, 707, 1, 707, 1, 707, + 3, 707, 10677, 8, 707, 1, 708, 1, 708, 1, 708, 1, 709, 1, 709, 1, 709, + 1, 709, 1, 709, 3, 709, 10687, 8, 709, 1, 710, 1, 710, 1, 711, 1, 711, + 1, 711, 3, 711, 10694, 8, 711, 1, 712, 1, 712, 1, 712, 5, 712, 10699, 8, + 712, 10, 712, 12, 712, 10702, 9, 712, 1, 713, 1, 713, 1, 713, 1, 713, 1, + 713, 1, 713, 3, 713, 10710, 8, 713, 1, 714, 1, 714, 1, 714, 1, 714, 3, + 714, 10716, 8, 714, 1, 715, 1, 715, 1, 715, 1, 715, 3, 715, 10722, 8, 715, + 1, 716, 1, 716, 1, 716, 1, 716, 3, 716, 10728, 8, 716, 1, 717, 1, 717, + 1, 717, 1, 717, 1, 717, 1, 717, 3, 717, 10736, 8, 717, 1, 718, 1, 718, + 3, 718, 10740, 8, 718, 1, 718, 1, 718, 1, 718, 1, 718, 1, 718, 3, 718, + 10747, 8, 718, 1, 719, 1, 719, 1, 720, 1, 720, 1, 721, 1, 721, 1, 721, + 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, + 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, + 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, + 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, + 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, + 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 1, 721, 3, 721, + 10809, 8, 721, 1, 722, 1, 722, 1, 723, 1, 723, 1, 724, 1, 724, 1, 725, + 1, 725, 1, 725, 3, 725, 10820, 8, 725, 1, 726, 5, 726, 10823, 8, 726, 10, + 726, 12, 726, 10826, 9, 726, 1, 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, + 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, + 727, 1, 727, 1, 727, 1, 727, 1, 727, 1, 727, 3, 727, 10848, 8, 727, 1, + 728, 1, 728, 1, 729, 1, 729, 1, 729, 1, 729, 3, 729, 10856, 8, 729, 1, + 730, 1, 730, 1, 731, 1, 731, 1, 731, 1, 731, 3, 731, 10864, 8, 731, 1, + 731, 1, 731, 3, 731, 10868, 8, 731, 1, 732, 3, 732, 10871, 8, 732, 1, 732, + 1, 732, 3, 732, 10875, 8, 732, 3, 732, 10877, 8, 732, 1, 733, 1, 733, 1, + 734, 4, 734, 10882, 8, 734, 11, 734, 12, 734, 10883, 1, 735, 1, 735, 1, + 735, 1, 735, 1, 736, 1, 736, 1, 736, 3, 736, 10893, 8, 736, 1, 737, 1, + 737, 1, 737, 1, 737, 1, 737, 3, 737, 10900, 8, 737, 1, 737, 1, 737, 3, + 737, 10904, 8, 737, 1, 737, 3, 737, 10907, 8, 737, 1, 737, 3, 737, 10910, + 8, 737, 1, 737, 3, 737, 10913, 8, 737, 1, 737, 1, 737, 3, 737, 10917, 8, + 737, 1, 737, 1, 737, 1, 737, 3, 737, 10922, 8, 737, 1, 737, 1, 737, 1, + 738, 1, 738, 1, 738, 3, 738, 10929, 8, 738, 1, 739, 1, 739, 1, 740, 1, + 740, 1, 740, 1, 740, 1, 741, 1, 741, 1, 741, 5, 741, 10940, 8, 741, 10, + 741, 12, 741, 10943, 9, 741, 1, 742, 1, 742, 1, 742, 1, 743, 1, 743, 1, + 744, 1, 744, 3, 744, 10952, 8, 744, 1, 745, 1, 745, 1, 746, 1, 746, 1, + 747, 1, 747, 1, 748, 1, 748, 1, 748, 1, 749, 1, 749, 1, 749, 1, 750, 1, + 750, 1, 750, 1, 751, 1, 751, 3, 751, 10971, 8, 751, 1, 752, 1, 752, 1, + 753, 5, 753, 10976, 8, 753, 10, 753, 12, 753, 10979, 9, 753, 1, 754, 1, + 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, + 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, + 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 1, 754, 3, 754, 11008, + 8, 754, 1, 755, 1, 755, 1, 755, 1, 755, 1, 756, 1, 756, 1, 756, 1, 756, + 3, 756, 11018, 8, 756, 1, 756, 1, 756, 1, 756, 1, 756, 1, 756, 1, 756, + 1, 756, 3, 756, 11027, 8, 756, 1, 756, 1, 756, 1, 756, 3, 756, 11032, 8, + 756, 1, 757, 1, 757, 1, 758, 1, 758, 1, 758, 1, 758, 1, 758, 1, 759, 1, + 759, 3, 759, 11043, 8, 759, 1, 759, 1, 759, 1, 759, 1, 759, 1, 760, 1, + 760, 1, 761, 1, 761, 1, 761, 5, 761, 11054, 8, 761, 10, 761, 12, 761, 11057, + 9, 761, 1, 762, 1, 762, 1, 762, 1, 762, 1, 763, 1, 763, 1, 764, 1, 764, + 1, 765, 1, 765, 3, 765, 11069, 8, 765, 1, 765, 1, 765, 1, 765, 1, 765, + 5, 765, 11075, 8, 765, 10, 765, 12, 765, 11078, 9, 765, 1, 766, 1, 766, + 1, 766, 1, 766, 1, 766, 1, 766, 3, 766, 11086, 8, 766, 1, 766, 1, 766, + 1, 766, 1, 766, 1, 767, 1, 767, 1, 767, 1, 767, 1, 767, 5, 767, 11097, + 8, 767, 10, 767, 12, 767, 11100, 9, 767, 1, 768, 1, 768, 1, 768, 1, 769, + 1, 769, 3, 769, 11107, 8, 769, 1, 769, 1, 769, 3, 769, 11111, 8, 769, 1, + 769, 1, 769, 1, 769, 1, 769, 1, 770, 1, 770, 1, 771, 4, 771, 11120, 8, + 771, 11, 771, 12, 771, 11121, 1, 772, 1, 772, 1, 772, 1, 772, 1, 772, 1, + 773, 1, 773, 1, 773, 1, 774, 3, 774, 11133, 8, 774, 1, 774, 1, 774, 1, + 775, 3, 775, 11138, 8, 775, 1, 775, 1, 775, 1, 775, 1, 775, 1, 776, 3, + 776, 11145, 8, 776, 1, 776, 1, 776, 1, 776, 1, 776, 1, 777, 1, 777, 1, + 777, 1, 777, 3, 777, 11155, 8, 777, 1, 777, 1, 777, 1, 777, 1, 777, 1, + 777, 3, 777, 11162, 8, 777, 1, 777, 3, 777, 11165, 8, 777, 1, 777, 1, 777, + 1, 777, 1, 777, 3, 777, 11171, 8, 777, 3, 777, 11173, 8, 777, 1, 778, 1, + 778, 1, 778, 1, 779, 1, 779, 1, 779, 1, 779, 5, 779, 11182, 8, 779, 10, + 779, 12, 779, 11185, 9, 779, 1, 779, 1, 779, 1, 780, 1, 780, 1, 781, 1, + 781, 1, 781, 1, 782, 1, 782, 1, 783, 3, 783, 11197, 8, 783, 1, 783, 1, + 783, 1, 783, 3, 783, 11202, 8, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, + 783, 1, 784, 1, 784, 1, 784, 1, 785, 1, 785, 3, 785, 11214, 8, 785, 1, + 785, 3, 785, 11217, 8, 785, 1, 785, 1, 785, 1, 786, 1, 786, 1, 787, 1, + 787, 1, 787, 1, 787, 1, 787, 1, 787, 1, 787, 3, 787, 11230, 8, 787, 1, + 787, 3, 787, 11233, 8, 787, 1, 787, 3, 787, 11236, 8, 787, 3, 787, 11238, + 8, 787, 1, 787, 1, 787, 1, 788, 1, 788, 1, 789, 1, 789, 3, 789, 11246, + 8, 789, 1, 789, 1, 789, 3, 789, 11250, 8, 789, 1, 789, 3, 789, 11253, 8, + 789, 1, 789, 1, 789, 1, 789, 1, 789, 3, 789, 11259, 8, 789, 1, 789, 1, + 789, 3, 789, 11263, 8, 789, 1, 789, 1, 789, 1, 789, 1, 789, 3, 789, 11269, + 8, 789, 1, 789, 1, 789, 1, 789, 3, 789, 11274, 8, 789, 1, 789, 1, 789, + 1, 789, 1, 789, 3, 789, 11280, 8, 789, 1, 789, 3, 789, 11283, 8, 789, 1, + 789, 1, 789, 3, 789, 11287, 8, 789, 1, 790, 1, 790, 1, 791, 1, 791, 4, + 791, 11293, 8, 791, 11, 791, 12, 791, 11294, 1, 792, 1, 792, 1, 792, 1, + 793, 1, 793, 1, 793, 1, 793, 1, 794, 1, 794, 1, 794, 5, 794, 11307, 8, + 794, 10, 794, 12, 794, 11310, 9, 794, 1, 795, 1, 795, 1, 795, 3, 795, 11315, + 8, 795, 1, 795, 1, 795, 1, 796, 1, 796, 1, 796, 1, 797, 1, 797, 1, 797, + 1, 797, 1, 797, 3, 797, 11327, 8, 797, 1, 797, 1, 797, 1, 798, 1, 798, + 1, 798, 1, 799, 1, 799, 1, 799, 3, 799, 11337, 8, 799, 1, 799, 3, 799, + 11340, 8, 799, 1, 799, 3, 799, 11343, 8, 799, 1, 799, 3, 799, 11346, 8, + 799, 1, 799, 3, 799, 11349, 8, 799, 1, 799, 1, 799, 1, 800, 1, 800, 1, + 800, 1, 801, 1, 801, 1, 801, 5, 801, 11359, 8, 801, 10, 801, 12, 801, 11362, + 9, 801, 1, 802, 1, 802, 3, 802, 11366, 8, 802, 1, 802, 1, 802, 1, 803, + 1, 803, 1, 803, 3, 803, 11373, 8, 803, 1, 803, 1, 803, 1, 803, 1, 803, + 1, 803, 3, 803, 11380, 8, 803, 3, 803, 11382, 8, 803, 1, 803, 1, 803, 1, + 803, 1, 803, 1, 803, 3, 803, 11389, 8, 803, 3, 803, 11391, 8, 803, 1, 803, + 1, 803, 1, 804, 1, 804, 1, 804, 1, 804, 1, 804, 3, 804, 11400, 8, 804, + 1, 805, 1, 805, 1, 805, 5, 805, 11405, 8, 805, 10, 805, 12, 805, 11408, + 9, 805, 1, 806, 1, 806, 1, 806, 1, 807, 3, 807, 11414, 8, 807, 1, 807, + 1, 807, 1, 808, 1, 808, 1, 809, 1, 809, 3, 809, 11422, 8, 809, 1, 809, + 3, 809, 11425, 8, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 809, 1, 810, + 1, 810, 1, 811, 1, 811, 1, 812, 1, 812, 1, 812, 1, 812, 1, 812, 1, 812, + 1, 812, 1, 812, 1, 812, 1, 812, 1, 812, 1, 812, 1, 812, 3, 812, 11449, + 8, 812, 3, 812, 11451, 8, 812, 1, 813, 1, 813, 3, 813, 11455, 8, 813, 1, + 813, 1, 813, 1, 813, 1, 814, 1, 814, 1, 814, 1, 814, 1, 815, 1, 815, 1, + 815, 1, 816, 1, 816, 3, 816, 11469, 8, 816, 1, 816, 1, 816, 1, 817, 1, + 817, 3, 817, 11475, 8, 817, 1, 817, 1, 817, 1, 818, 1, 818, 3, 818, 11481, + 8, 818, 1, 818, 1, 818, 1, 819, 1, 819, 1, 819, 1, 819, 1, 819, 1, 819, + 1, 819, 1, 819, 1, 819, 3, 819, 11494, 8, 819, 1, 819, 3, 819, 11497, 8, + 819, 1, 820, 1, 820, 3, 820, 11501, 8, 820, 1, 821, 1, 821, 1, 821, 1, + 822, 4, 822, 11507, 8, 822, 11, 822, 12, 822, 11508, 1, 823, 1, 823, 1, + 823, 1, 823, 1, 823, 1, 824, 1, 824, 1, 824, 5, 824, 11519, 8, 824, 10, + 824, 12, 824, 11522, 9, 824, 1, 825, 1, 825, 1, 825, 3, 825, 11527, 8, + 825, 1, 826, 1, 826, 1, 827, 1, 827, 1, 828, 1, 828, 1, 829, 1, 829, 1, + 829, 1, 830, 1, 830, 3, 830, 11540, 8, 830, 1, 831, 1, 831, 1, 832, 3, + 832, 11545, 8, 832, 1, 832, 1, 832, 3, 832, 11549, 8, 832, 1, 832, 3, 832, + 11552, 8, 832, 1, 832, 3, 832, 11555, 8, 832, 1, 832, 3, 832, 11558, 8, + 832, 1, 832, 3, 832, 11561, 8, 832, 1, 832, 3, 832, 11564, 8, 832, 1, 832, + 3, 832, 11567, 8, 832, 1, 832, 3, 832, 11570, 8, 832, 1, 833, 1, 833, 1, + 834, 1, 834, 1, 835, 1, 835, 1, 836, 1, 836, 1, 837, 1, 837, 3, 837, 11582, + 8, 837, 1, 838, 1, 838, 3, 838, 11586, 8, 838, 1, 838, 1, 838, 1, 838, + 0, 1, 1212, 839, 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, @@ -1902,19 +1901,19 @@ func postgresqlparserParserInit() { 1602, 1604, 1606, 1608, 1610, 1612, 1614, 1616, 1618, 1620, 1622, 1624, 1626, 1628, 1630, 1632, 1634, 1636, 1638, 1640, 1642, 1644, 1646, 1648, 1650, 1652, 1654, 1656, 1658, 1660, 1662, 1664, 1666, 1668, 1670, 1672, - 1674, 0, 77, 2, 0, 214, 214, 376, 376, 2, 0, 66, 66, 330, 330, 2, 0, 99, - 99, 330, 330, 3, 0, 66, 66, 99, 99, 330, 330, 2, 0, 152, 152, 210, 210, - 2, 0, 264, 264, 344, 344, 2, 0, 10, 10, 94, 94, 2, 0, 181, 181, 375, 375, - 2, 0, 199, 199, 240, 240, 5, 0, 30, 30, 300, 300, 341, 341, 364, 364, 366, - 366, 2, 0, 169, 169, 327, 327, 2, 0, 64, 64, 94, 94, 2, 0, 364, 364, 366, - 366, 2, 0, 219, 219, 243, 243, 9, 0, 30, 30, 179, 179, 184, 184, 198, 198, - 238, 238, 246, 246, 354, 354, 357, 357, 459, 459, 3, 0, 132, 132, 296, - 296, 348, 348, 2, 0, 53, 53, 78, 78, 3, 0, 192, 192, 271, 271, 274, 274, - 5, 0, 30, 30, 88, 88, 201, 201, 251, 251, 381, 381, 2, 0, 92, 92, 245, - 245, 1, 0, 469, 470, 2, 0, 92, 92, 428, 428, 2, 0, 353, 353, 428, 428, - 2, 0, 230, 230, 308, 308, 3, 0, 333, 333, 369, 369, 466, 466, 2, 0, 64, - 64, 68, 68, 5, 0, 231, 231, 341, 341, 362, 362, 373, 373, 476, 477, 2, - 0, 37, 37, 55, 55, 2, 0, 10, 10, 53, 53, 3, 0, 230, 230, 308, 308, 463, + 1674, 1676, 0, 77, 2, 0, 214, 214, 376, 376, 2, 0, 66, 66, 330, 330, 2, + 0, 99, 99, 330, 330, 3, 0, 66, 66, 99, 99, 330, 330, 2, 0, 152, 152, 210, + 210, 2, 0, 264, 264, 344, 344, 2, 0, 10, 10, 94, 94, 2, 0, 181, 181, 375, + 375, 2, 0, 199, 199, 240, 240, 5, 0, 30, 30, 300, 300, 341, 341, 364, 364, + 366, 366, 2, 0, 169, 169, 327, 327, 2, 0, 64, 64, 94, 94, 2, 0, 364, 364, + 366, 366, 2, 0, 219, 219, 243, 243, 9, 0, 30, 30, 179, 179, 184, 184, 198, + 198, 238, 238, 246, 246, 354, 354, 357, 357, 459, 459, 3, 0, 132, 132, + 296, 296, 348, 348, 2, 0, 53, 53, 78, 78, 3, 0, 192, 192, 271, 271, 274, + 274, 5, 0, 30, 30, 88, 88, 201, 201, 251, 251, 381, 381, 2, 0, 92, 92, + 245, 245, 1, 0, 469, 470, 2, 0, 92, 92, 428, 428, 2, 0, 353, 353, 428, + 428, 2, 0, 230, 230, 308, 308, 3, 0, 333, 333, 369, 369, 466, 466, 2, 0, + 64, 64, 68, 68, 5, 0, 231, 231, 341, 341, 362, 362, 373, 373, 476, 477, + 2, 0, 37, 37, 55, 55, 2, 0, 10, 10, 53, 53, 3, 0, 230, 230, 308, 308, 463, 463, 5, 0, 92, 92, 194, 194, 245, 245, 335, 335, 361, 361, 3, 0, 194, 194, 335, 335, 361, 361, 3, 0, 128, 128, 147, 147, 363, 363, 4, 0, 88, 88, 201, 201, 251, 251, 381, 381, 2, 0, 156, 156, 252, 252, 2, 0, 368, 368, 392, @@ -1939,4628 +1938,4623 @@ func postgresqlparserParserInit() { 149, 149, 163, 163, 172, 172, 176, 176, 180, 180, 186, 186, 191, 191, 226, 226, 229, 229, 251, 251, 259, 259, 277, 277, 280, 281, 291, 291, 305, 305, 319, 319, 325, 325, 331, 331, 335, 336, 345, 345, 372, 372, 454, 455, 498, - 498, 511, 523, 527, 533, 535, 539, 541, 541, 12860, 0, 1676, 1, 0, 0, 0, - 2, 1679, 1, 0, 0, 0, 4, 1681, 1, 0, 0, 0, 6, 1689, 1, 0, 0, 0, 8, 1817, - 1, 0, 0, 0, 10, 1819, 1, 0, 0, 0, 12, 1823, 1, 0, 0, 0, 14, 1826, 1, 0, - 0, 0, 16, 1834, 1, 0, 0, 0, 18, 1839, 1, 0, 0, 0, 20, 1845, 1, 0, 0, 0, - 22, 1866, 1, 0, 0, 0, 24, 1878, 1, 0, 0, 0, 26, 1880, 1, 0, 0, 0, 28, 1888, - 1, 0, 0, 0, 30, 1896, 1, 0, 0, 0, 32, 1900, 1, 0, 0, 0, 34, 1911, 1, 0, - 0, 0, 36, 1919, 1, 0, 0, 0, 38, 1927, 1, 0, 0, 0, 40, 1934, 1, 0, 0, 0, - 42, 1936, 1, 0, 0, 0, 44, 1953, 1, 0, 0, 0, 46, 1958, 1, 0, 0, 0, 48, 1967, - 1, 0, 0, 0, 50, 1969, 1, 0, 0, 0, 52, 1983, 1, 0, 0, 0, 54, 1985, 1, 0, - 0, 0, 56, 2016, 1, 0, 0, 0, 58, 2018, 1, 0, 0, 0, 60, 2026, 1, 0, 0, 0, - 62, 2036, 1, 0, 0, 0, 64, 2043, 1, 0, 0, 0, 66, 2049, 1, 0, 0, 0, 68, 2067, - 1, 0, 0, 0, 70, 2071, 1, 0, 0, 0, 72, 2075, 1, 0, 0, 0, 74, 2077, 1, 0, - 0, 0, 76, 2088, 1, 0, 0, 0, 78, 2092, 1, 0, 0, 0, 80, 2097, 1, 0, 0, 0, - 82, 2102, 1, 0, 0, 0, 84, 2104, 1, 0, 0, 0, 86, 2116, 1, 0, 0, 0, 88, 2123, - 1, 0, 0, 0, 90, 2125, 1, 0, 0, 0, 92, 2127, 1, 0, 0, 0, 94, 2129, 1, 0, - 0, 0, 96, 2244, 1, 0, 0, 0, 98, 2246, 1, 0, 0, 0, 100, 2262, 1, 0, 0, 0, - 102, 2264, 1, 0, 0, 0, 104, 2570, 1, 0, 0, 0, 106, 2577, 1, 0, 0, 0, 108, - 2579, 1, 0, 0, 0, 110, 2581, 1, 0, 0, 0, 112, 2584, 1, 0, 0, 0, 114, 2593, - 1, 0, 0, 0, 116, 2595, 1, 0, 0, 0, 118, 2599, 1, 0, 0, 0, 120, 2602, 1, - 0, 0, 0, 122, 2610, 1, 0, 0, 0, 124, 2622, 1, 0, 0, 0, 126, 2639, 1, 0, - 0, 0, 128, 2667, 1, 0, 0, 0, 130, 2669, 1, 0, 0, 0, 132, 2672, 1, 0, 0, - 0, 134, 2680, 1, 0, 0, 0, 136, 2685, 1, 0, 0, 0, 138, 2723, 1, 0, 0, 0, - 140, 2725, 1, 0, 0, 0, 142, 2767, 1, 0, 0, 0, 144, 2769, 1, 0, 0, 0, 146, - 2771, 1, 0, 0, 0, 148, 2776, 1, 0, 0, 0, 150, 2783, 1, 0, 0, 0, 152, 2788, - 1, 0, 0, 0, 154, 2830, 1, 0, 0, 0, 156, 2832, 1, 0, 0, 0, 158, 2835, 1, - 0, 0, 0, 160, 2840, 1, 0, 0, 0, 162, 2842, 1, 0, 0, 0, 164, 2850, 1, 0, - 0, 0, 166, 2861, 1, 0, 0, 0, 168, 2863, 1, 0, 0, 0, 170, 2871, 1, 0, 0, - 0, 172, 2873, 1, 0, 0, 0, 174, 2958, 1, 0, 0, 0, 176, 2960, 1, 0, 0, 0, - 178, 2962, 1, 0, 0, 0, 180, 2966, 1, 0, 0, 0, 182, 2974, 1, 0, 0, 0, 184, - 2985, 1, 0, 0, 0, 186, 2989, 1, 0, 0, 0, 188, 2991, 1, 0, 0, 0, 190, 2998, - 1, 0, 0, 0, 192, 3008, 1, 0, 0, 0, 194, 3019, 1, 0, 0, 0, 196, 3076, 1, - 0, 0, 0, 198, 3078, 1, 0, 0, 0, 200, 3087, 1, 0, 0, 0, 202, 3094, 1, 0, - 0, 0, 204, 3096, 1, 0, 0, 0, 206, 3104, 1, 0, 0, 0, 208, 3107, 1, 0, 0, - 0, 210, 3114, 1, 0, 0, 0, 212, 3205, 1, 0, 0, 0, 214, 3207, 1, 0, 0, 0, - 216, 3210, 1, 0, 0, 0, 218, 3214, 1, 0, 0, 0, 220, 3222, 1, 0, 0, 0, 222, - 3224, 1, 0, 0, 0, 224, 3229, 1, 0, 0, 0, 226, 3232, 1, 0, 0, 0, 228, 3240, - 1, 0, 0, 0, 230, 3250, 1, 0, 0, 0, 232, 3263, 1, 0, 0, 0, 234, 3265, 1, - 0, 0, 0, 236, 3269, 1, 0, 0, 0, 238, 3282, 1, 0, 0, 0, 240, 3284, 1, 0, - 0, 0, 242, 3289, 1, 0, 0, 0, 244, 3291, 1, 0, 0, 0, 246, 3298, 1, 0, 0, - 0, 248, 3329, 1, 0, 0, 0, 250, 3331, 1, 0, 0, 0, 252, 3338, 1, 0, 0, 0, - 254, 3340, 1, 0, 0, 0, 256, 3349, 1, 0, 0, 0, 258, 3352, 1, 0, 0, 0, 260, - 3357, 1, 0, 0, 0, 262, 3361, 1, 0, 0, 0, 264, 3377, 1, 0, 0, 0, 266, 3388, - 1, 0, 0, 0, 268, 3404, 1, 0, 0, 0, 270, 3420, 1, 0, 0, 0, 272, 3426, 1, - 0, 0, 0, 274, 3443, 1, 0, 0, 0, 276, 3456, 1, 0, 0, 0, 278, 3458, 1, 0, - 0, 0, 280, 3468, 1, 0, 0, 0, 282, 3482, 1, 0, 0, 0, 284, 3491, 1, 0, 0, - 0, 286, 3493, 1, 0, 0, 0, 288, 3498, 1, 0, 0, 0, 290, 3538, 1, 0, 0, 0, - 292, 3540, 1, 0, 0, 0, 294, 3548, 1, 0, 0, 0, 296, 3550, 1, 0, 0, 0, 298, - 3558, 1, 0, 0, 0, 300, 3580, 1, 0, 0, 0, 302, 3582, 1, 0, 0, 0, 304, 3586, - 1, 0, 0, 0, 306, 3593, 1, 0, 0, 0, 308, 3595, 1, 0, 0, 0, 310, 3597, 1, - 0, 0, 0, 312, 3599, 1, 0, 0, 0, 314, 3610, 1, 0, 0, 0, 316, 3613, 1, 0, - 0, 0, 318, 3621, 1, 0, 0, 0, 320, 3637, 1, 0, 0, 0, 322, 3647, 1, 0, 0, - 0, 324, 3649, 1, 0, 0, 0, 326, 3658, 1, 0, 0, 0, 328, 3661, 1, 0, 0, 0, - 330, 3768, 1, 0, 0, 0, 332, 3770, 1, 0, 0, 0, 334, 3789, 1, 0, 0, 0, 336, - 3792, 1, 0, 0, 0, 338, 3796, 1, 0, 0, 0, 340, 3815, 1, 0, 0, 0, 342, 3817, - 1, 0, 0, 0, 344, 3822, 1, 0, 0, 0, 346, 3830, 1, 0, 0, 0, 348, 3835, 1, - 0, 0, 0, 350, 3850, 1, 0, 0, 0, 352, 3852, 1, 0, 0, 0, 354, 3855, 1, 0, - 0, 0, 356, 3857, 1, 0, 0, 0, 358, 3894, 1, 0, 0, 0, 360, 3896, 1, 0, 0, - 0, 362, 3899, 1, 0, 0, 0, 364, 3904, 1, 0, 0, 0, 366, 3906, 1, 0, 0, 0, - 368, 3988, 1, 0, 0, 0, 370, 3990, 1, 0, 0, 0, 372, 4008, 1, 0, 0, 0, 374, - 4010, 1, 0, 0, 0, 376, 4038, 1, 0, 0, 0, 378, 4042, 1, 0, 0, 0, 380, 4062, - 1, 0, 0, 0, 382, 4064, 1, 0, 0, 0, 384, 4073, 1, 0, 0, 0, 386, 4093, 1, - 0, 0, 0, 388, 4107, 1, 0, 0, 0, 390, 4112, 1, 0, 0, 0, 392, 4118, 1, 0, - 0, 0, 394, 4121, 1, 0, 0, 0, 396, 4124, 1, 0, 0, 0, 398, 4127, 1, 0, 0, - 0, 400, 4130, 1, 0, 0, 0, 402, 4132, 1, 0, 0, 0, 404, 4141, 1, 0, 0, 0, - 406, 4191, 1, 0, 0, 0, 408, 4197, 1, 0, 0, 0, 410, 4199, 1, 0, 0, 0, 412, - 4214, 1, 0, 0, 0, 414, 4216, 1, 0, 0, 0, 416, 4220, 1, 0, 0, 0, 418, 4224, - 1, 0, 0, 0, 420, 4231, 1, 0, 0, 0, 422, 4233, 1, 0, 0, 0, 424, 4235, 1, - 0, 0, 0, 426, 4237, 1, 0, 0, 0, 428, 4243, 1, 0, 0, 0, 430, 4245, 1, 0, - 0, 0, 432, 4247, 1, 0, 0, 0, 434, 4252, 1, 0, 0, 0, 436, 4256, 1, 0, 0, - 0, 438, 4269, 1, 0, 0, 0, 440, 4271, 1, 0, 0, 0, 442, 4277, 1, 0, 0, 0, - 444, 4291, 1, 0, 0, 0, 446, 4319, 1, 0, 0, 0, 448, 4321, 1, 0, 0, 0, 450, - 4329, 1, 0, 0, 0, 452, 4335, 1, 0, 0, 0, 454, 4343, 1, 0, 0, 0, 456, 4355, - 1, 0, 0, 0, 458, 4357, 1, 0, 0, 0, 460, 4480, 1, 0, 0, 0, 462, 4482, 1, - 0, 0, 0, 464, 4486, 1, 0, 0, 0, 466, 4494, 1, 0, 0, 0, 468, 4505, 1, 0, - 0, 0, 470, 4507, 1, 0, 0, 0, 472, 4511, 1, 0, 0, 0, 474, 4519, 1, 0, 0, - 0, 476, 4523, 1, 0, 0, 0, 478, 4525, 1, 0, 0, 0, 480, 4576, 1, 0, 0, 0, - 482, 4578, 1, 0, 0, 0, 484, 4582, 1, 0, 0, 0, 486, 4600, 1, 0, 0, 0, 488, - 4639, 1, 0, 0, 0, 490, 4641, 1, 0, 0, 0, 492, 4643, 1, 0, 0, 0, 494, 4652, - 1, 0, 0, 0, 496, 4654, 1, 0, 0, 0, 498, 4656, 1, 0, 0, 0, 500, 4681, 1, - 0, 0, 0, 502, 4683, 1, 0, 0, 0, 504, 4703, 1, 0, 0, 0, 506, 4725, 1, 0, - 0, 0, 508, 4747, 1, 0, 0, 0, 510, 4749, 1, 0, 0, 0, 512, 4756, 1, 0, 0, - 0, 514, 4853, 1, 0, 0, 0, 516, 4878, 1, 0, 0, 0, 518, 4885, 1, 0, 0, 0, - 520, 4902, 1, 0, 0, 0, 522, 4904, 1, 0, 0, 0, 524, 4906, 1, 0, 0, 0, 526, - 4914, 1, 0, 0, 0, 528, 4920, 1, 0, 0, 0, 530, 4924, 1, 0, 0, 0, 532, 4932, - 1, 0, 0, 0, 534, 4947, 1, 0, 0, 0, 536, 5096, 1, 0, 0, 0, 538, 5100, 1, - 0, 0, 0, 540, 5213, 1, 0, 0, 0, 542, 5215, 1, 0, 0, 0, 544, 5220, 1, 0, - 0, 0, 546, 5226, 1, 0, 0, 0, 548, 5313, 1, 0, 0, 0, 550, 5315, 1, 0, 0, - 0, 552, 5317, 1, 0, 0, 0, 554, 5319, 1, 0, 0, 0, 556, 5349, 1, 0, 0, 0, - 558, 5366, 1, 0, 0, 0, 560, 5368, 1, 0, 0, 0, 562, 5394, 1, 0, 0, 0, 564, - 5456, 1, 0, 0, 0, 566, 5458, 1, 0, 0, 0, 568, 5466, 1, 0, 0, 0, 570, 5471, - 1, 0, 0, 0, 572, 5482, 1, 0, 0, 0, 574, 5484, 1, 0, 0, 0, 576, 5488, 1, - 0, 0, 0, 578, 5521, 1, 0, 0, 0, 580, 5523, 1, 0, 0, 0, 582, 5527, 1, 0, - 0, 0, 584, 5531, 1, 0, 0, 0, 586, 5540, 1, 0, 0, 0, 588, 5552, 1, 0, 0, - 0, 590, 5584, 1, 0, 0, 0, 592, 5586, 1, 0, 0, 0, 594, 5588, 1, 0, 0, 0, - 596, 5627, 1, 0, 0, 0, 598, 5629, 1, 0, 0, 0, 600, 5631, 1, 0, 0, 0, 602, - 5633, 1, 0, 0, 0, 604, 5636, 1, 0, 0, 0, 606, 5667, 1, 0, 0, 0, 608, 5680, - 1, 0, 0, 0, 610, 5682, 1, 0, 0, 0, 612, 5687, 1, 0, 0, 0, 614, 5695, 1, - 0, 0, 0, 616, 5698, 1, 0, 0, 0, 618, 5700, 1, 0, 0, 0, 620, 5706, 1, 0, - 0, 0, 622, 5708, 1, 0, 0, 0, 624, 5728, 1, 0, 0, 0, 626, 5731, 1, 0, 0, - 0, 628, 5737, 1, 0, 0, 0, 630, 5745, 1, 0, 0, 0, 632, 5761, 1, 0, 0, 0, - 634, 5763, 1, 0, 0, 0, 636, 5769, 1, 0, 0, 0, 638, 5790, 1, 0, 0, 0, 640, - 5799, 1, 0, 0, 0, 642, 5805, 1, 0, 0, 0, 644, 5807, 1, 0, 0, 0, 646, 5823, - 1, 0, 0, 0, 648, 5825, 1, 0, 0, 0, 650, 5830, 1, 0, 0, 0, 652, 5832, 1, - 0, 0, 0, 654, 5847, 1, 0, 0, 0, 656, 5855, 1, 0, 0, 0, 658, 5858, 1, 0, - 0, 0, 660, 5867, 1, 0, 0, 0, 662, 5908, 1, 0, 0, 0, 664, 5923, 1, 0, 0, - 0, 666, 5930, 1, 0, 0, 0, 668, 5932, 1, 0, 0, 0, 670, 5944, 1, 0, 0, 0, - 672, 5947, 1, 0, 0, 0, 674, 5950, 1, 0, 0, 0, 676, 5958, 1, 0, 0, 0, 678, - 5966, 1, 0, 0, 0, 680, 5970, 1, 0, 0, 0, 682, 6014, 1, 0, 0, 0, 684, 6030, - 1, 0, 0, 0, 686, 6046, 1, 0, 0, 0, 688, 6070, 1, 0, 0, 0, 690, 6077, 1, - 0, 0, 0, 692, 6082, 1, 0, 0, 0, 694, 6090, 1, 0, 0, 0, 696, 6093, 1, 0, - 0, 0, 698, 6097, 1, 0, 0, 0, 700, 6104, 1, 0, 0, 0, 702, 6143, 1, 0, 0, - 0, 704, 6149, 1, 0, 0, 0, 706, 6151, 1, 0, 0, 0, 708, 6164, 1, 0, 0, 0, - 710, 6167, 1, 0, 0, 0, 712, 6214, 1, 0, 0, 0, 714, 6216, 1, 0, 0, 0, 716, - 6262, 1, 0, 0, 0, 718, 6264, 1, 0, 0, 0, 720, 6266, 1, 0, 0, 0, 722, 6268, - 1, 0, 0, 0, 724, 6276, 1, 0, 0, 0, 726, 6290, 1, 0, 0, 0, 728, 6779, 1, - 0, 0, 0, 730, 6781, 1, 0, 0, 0, 732, 6783, 1, 0, 0, 0, 734, 6855, 1, 0, - 0, 0, 736, 6857, 1, 0, 0, 0, 738, 7076, 1, 0, 0, 0, 740, 7078, 1, 0, 0, - 0, 742, 7086, 1, 0, 0, 0, 744, 7102, 1, 0, 0, 0, 746, 7109, 1, 0, 0, 0, - 748, 7111, 1, 0, 0, 0, 750, 7304, 1, 0, 0, 0, 752, 7329, 1, 0, 0, 0, 754, - 7331, 1, 0, 0, 0, 756, 7377, 1, 0, 0, 0, 758, 7379, 1, 0, 0, 0, 760, 7408, - 1, 0, 0, 0, 762, 7410, 1, 0, 0, 0, 764, 7420, 1, 0, 0, 0, 766, 7428, 1, - 0, 0, 0, 768, 7475, 1, 0, 0, 0, 770, 7491, 1, 0, 0, 0, 772, 7493, 1, 0, - 0, 0, 774, 7519, 1, 0, 0, 0, 776, 7522, 1, 0, 0, 0, 778, 7538, 1, 0, 0, - 0, 780, 7540, 1, 0, 0, 0, 782, 7542, 1, 0, 0, 0, 784, 7544, 1, 0, 0, 0, - 786, 7546, 1, 0, 0, 0, 788, 7551, 1, 0, 0, 0, 790, 7554, 1, 0, 0, 0, 792, - 7561, 1, 0, 0, 0, 794, 7632, 1, 0, 0, 0, 796, 7634, 1, 0, 0, 0, 798, 7646, - 1, 0, 0, 0, 800, 7648, 1, 0, 0, 0, 802, 7658, 1, 0, 0, 0, 804, 7660, 1, - 0, 0, 0, 806, 7666, 1, 0, 0, 0, 808, 7698, 1, 0, 0, 0, 810, 7705, 1, 0, - 0, 0, 812, 7708, 1, 0, 0, 0, 814, 7717, 1, 0, 0, 0, 816, 7720, 1, 0, 0, - 0, 818, 7724, 1, 0, 0, 0, 820, 7741, 1, 0, 0, 0, 822, 7743, 1, 0, 0, 0, - 824, 7745, 1, 0, 0, 0, 826, 7763, 1, 0, 0, 0, 828, 7768, 1, 0, 0, 0, 830, - 7784, 1, 0, 0, 0, 832, 7792, 1, 0, 0, 0, 834, 7794, 1, 0, 0, 0, 836, 7800, - 1, 0, 0, 0, 838, 7805, 1, 0, 0, 0, 840, 7814, 1, 0, 0, 0, 842, 7841, 1, - 0, 0, 0, 844, 7843, 1, 0, 0, 0, 846, 7922, 1, 0, 0, 0, 848, 7924, 1, 0, - 0, 0, 850, 7926, 1, 0, 0, 0, 852, 7959, 1, 0, 0, 0, 854, 7961, 1, 0, 0, - 0, 856, 7987, 1, 0, 0, 0, 858, 8003, 1, 0, 0, 0, 860, 8005, 1, 0, 0, 0, - 862, 8013, 1, 0, 0, 0, 864, 8015, 1, 0, 0, 0, 866, 8021, 1, 0, 0, 0, 868, - 8025, 1, 0, 0, 0, 870, 8027, 1, 0, 0, 0, 872, 8029, 1, 0, 0, 0, 874, 8031, - 1, 0, 0, 0, 876, 8033, 1, 0, 0, 0, 878, 8035, 1, 0, 0, 0, 880, 8039, 1, - 0, 0, 0, 882, 8043, 1, 0, 0, 0, 884, 8051, 1, 0, 0, 0, 886, 8071, 1, 0, - 0, 0, 888, 8082, 1, 0, 0, 0, 890, 8084, 1, 0, 0, 0, 892, 8092, 1, 0, 0, - 0, 894, 8098, 1, 0, 0, 0, 896, 8102, 1, 0, 0, 0, 898, 8104, 1, 0, 0, 0, - 900, 8112, 1, 0, 0, 0, 902, 8121, 1, 0, 0, 0, 904, 8161, 1, 0, 0, 0, 906, - 8163, 1, 0, 0, 0, 908, 8177, 1, 0, 0, 0, 910, 8180, 1, 0, 0, 0, 912, 8192, - 1, 0, 0, 0, 914, 8216, 1, 0, 0, 0, 916, 8218, 1, 0, 0, 0, 918, 8220, 1, - 0, 0, 0, 920, 8228, 1, 0, 0, 0, 922, 8231, 1, 0, 0, 0, 924, 8255, 1, 0, - 0, 0, 926, 8257, 1, 0, 0, 0, 928, 8261, 1, 0, 0, 0, 930, 8295, 1, 0, 0, - 0, 932, 8314, 1, 0, 0, 0, 934, 8327, 1, 0, 0, 0, 936, 8335, 1, 0, 0, 0, - 938, 8349, 1, 0, 0, 0, 940, 8352, 1, 0, 0, 0, 942, 8363, 1, 0, 0, 0, 944, - 8379, 1, 0, 0, 0, 946, 8381, 1, 0, 0, 0, 948, 8386, 1, 0, 0, 0, 950, 8389, - 1, 0, 0, 0, 952, 8404, 1, 0, 0, 0, 954, 8422, 1, 0, 0, 0, 956, 8424, 1, - 0, 0, 0, 958, 8427, 1, 0, 0, 0, 960, 8435, 1, 0, 0, 0, 962, 8445, 1, 0, - 0, 0, 964, 8454, 1, 0, 0, 0, 966, 8461, 1, 0, 0, 0, 968, 8465, 1, 0, 0, - 0, 970, 8475, 1, 0, 0, 0, 972, 8506, 1, 0, 0, 0, 974, 8508, 1, 0, 0, 0, - 976, 8519, 1, 0, 0, 0, 978, 8567, 1, 0, 0, 0, 980, 8569, 1, 0, 0, 0, 982, - 8575, 1, 0, 0, 0, 984, 8583, 1, 0, 0, 0, 986, 8598, 1, 0, 0, 0, 988, 8600, - 1, 0, 0, 0, 990, 8602, 1, 0, 0, 0, 992, 8610, 1, 0, 0, 0, 994, 8628, 1, - 0, 0, 0, 996, 8630, 1, 0, 0, 0, 998, 8632, 1, 0, 0, 0, 1000, 8634, 1, 0, - 0, 0, 1002, 8642, 1, 0, 0, 0, 1004, 8644, 1, 0, 0, 0, 1006, 8646, 1, 0, - 0, 0, 1008, 8650, 1, 0, 0, 0, 1010, 8658, 1, 0, 0, 0, 1012, 8677, 1, 0, - 0, 0, 1014, 8679, 1, 0, 0, 0, 1016, 8704, 1, 0, 0, 0, 1018, 8706, 1, 0, - 0, 0, 1020, 8715, 1, 0, 0, 0, 1022, 8717, 1, 0, 0, 0, 1024, 8724, 1, 0, - 0, 0, 1026, 8728, 1, 0, 0, 0, 1028, 8730, 1, 0, 0, 0, 1030, 8732, 1, 0, - 0, 0, 1032, 8734, 1, 0, 0, 0, 1034, 8738, 1, 0, 0, 0, 1036, 8751, 1, 0, - 0, 0, 1038, 8753, 1, 0, 0, 0, 1040, 8756, 1, 0, 0, 0, 1042, 8761, 1, 0, - 0, 0, 1044, 8766, 1, 0, 0, 0, 1046, 8772, 1, 0, 0, 0, 1048, 8779, 1, 0, - 0, 0, 1050, 8781, 1, 0, 0, 0, 1052, 8784, 1, 0, 0, 0, 1054, 8788, 1, 0, - 0, 0, 1056, 8795, 1, 0, 0, 0, 1058, 8807, 1, 0, 0, 0, 1060, 8810, 1, 0, - 0, 0, 1062, 8824, 1, 0, 0, 0, 1064, 8827, 1, 0, 0, 0, 1066, 8893, 1, 0, - 0, 0, 1068, 8917, 1, 0, 0, 0, 1070, 8926, 1, 0, 0, 0, 1072, 8929, 1, 0, - 0, 0, 1074, 8950, 1, 0, 0, 0, 1076, 8952, 1, 0, 0, 0, 1078, 8963, 1, 0, - 0, 0, 1080, 8977, 1, 0, 0, 0, 1082, 8979, 1, 0, 0, 0, 1084, 8987, 1, 0, - 0, 0, 1086, 8994, 1, 0, 0, 0, 1088, 9002, 1, 0, 0, 0, 1090, 9019, 1, 0, - 0, 0, 1092, 9021, 1, 0, 0, 0, 1094, 9025, 1, 0, 0, 0, 1096, 9033, 1, 0, - 0, 0, 1098, 9038, 1, 0, 0, 0, 1100, 9041, 1, 0, 0, 0, 1102, 9044, 1, 0, - 0, 0, 1104, 9051, 1, 0, 0, 0, 1106, 9053, 1, 0, 0, 0, 1108, 9061, 1, 0, - 0, 0, 1110, 9066, 1, 0, 0, 0, 1112, 9087, 1, 0, 0, 0, 1114, 9095, 1, 0, - 0, 0, 1116, 9105, 1, 0, 0, 0, 1118, 9117, 1, 0, 0, 0, 1120, 9119, 1, 0, - 0, 0, 1122, 9133, 1, 0, 0, 0, 1124, 9153, 1, 0, 0, 0, 1126, 9162, 1, 0, - 0, 0, 1128, 9180, 1, 0, 0, 0, 1130, 9186, 1, 0, 0, 0, 1132, 9192, 1, 0, - 0, 0, 1134, 9200, 1, 0, 0, 0, 1136, 9228, 1, 0, 0, 0, 1138, 9230, 1, 0, - 0, 0, 1140, 9236, 1, 0, 0, 0, 1142, 9240, 1, 0, 0, 0, 1144, 9242, 1, 0, - 0, 0, 1146, 9250, 1, 0, 0, 0, 1148, 9254, 1, 0, 0, 0, 1150, 9261, 1, 0, - 0, 0, 1152, 9278, 1, 0, 0, 0, 1154, 9280, 1, 0, 0, 0, 1156, 9282, 1, 0, - 0, 0, 1158, 9292, 1, 0, 0, 0, 1160, 9300, 1, 0, 0, 0, 1162, 9327, 1, 0, - 0, 0, 1164, 9329, 1, 0, 0, 0, 1166, 9336, 1, 0, 0, 0, 1168, 9339, 1, 0, - 0, 0, 1170, 9341, 1, 0, 0, 0, 1172, 9345, 1, 0, 0, 0, 1174, 9353, 1, 0, - 0, 0, 1176, 9361, 1, 0, 0, 0, 1178, 9369, 1, 0, 0, 0, 1180, 9383, 1, 0, - 0, 0, 1182, 9392, 1, 0, 0, 0, 1184, 9396, 1, 0, 0, 0, 1186, 9400, 1, 0, - 0, 0, 1188, 9426, 1, 0, 0, 0, 1190, 9440, 1, 0, 0, 0, 1192, 9456, 1, 0, - 0, 0, 1194, 9466, 1, 0, 0, 0, 1196, 9470, 1, 0, 0, 0, 1198, 9478, 1, 0, - 0, 0, 1200, 9486, 1, 0, 0, 0, 1202, 9492, 1, 0, 0, 0, 1204, 9496, 1, 0, - 0, 0, 1206, 9503, 1, 0, 0, 0, 1208, 9508, 1, 0, 0, 0, 1210, 9523, 1, 0, - 0, 0, 1212, 9603, 1, 0, 0, 0, 1214, 9605, 1, 0, 0, 0, 1216, 9607, 1, 0, - 0, 0, 1218, 9652, 1, 0, 0, 0, 1220, 9657, 1, 0, 0, 0, 1222, 9687, 1, 0, - 0, 0, 1224, 9689, 1, 0, 0, 0, 1226, 9694, 1, 0, 0, 0, 1228, 10007, 1, 0, - 0, 0, 1230, 10009, 1, 0, 0, 0, 1232, 10028, 1, 0, 0, 0, 1234, 10033, 1, - 0, 0, 0, 1236, 10045, 1, 0, 0, 0, 1238, 10047, 1, 0, 0, 0, 1240, 10066, - 1, 0, 0, 0, 1242, 10068, 1, 0, 0, 0, 1244, 10071, 1, 0, 0, 0, 1246, 10079, - 1, 0, 0, 0, 1248, 10089, 1, 0, 0, 0, 1250, 10091, 1, 0, 0, 0, 1252, 10099, - 1, 0, 0, 0, 1254, 10114, 1, 0, 0, 0, 1256, 10122, 1, 0, 0, 0, 1258, 10130, - 1, 0, 0, 0, 1260, 10132, 1, 0, 0, 0, 1262, 10148, 1, 0, 0, 0, 1264, 10150, - 1, 0, 0, 0, 1266, 10160, 1, 0, 0, 0, 1268, 10167, 1, 0, 0, 0, 1270, 10179, - 1, 0, 0, 0, 1272, 10181, 1, 0, 0, 0, 1274, 10186, 1, 0, 0, 0, 1276, 10194, - 1, 0, 0, 0, 1278, 10199, 1, 0, 0, 0, 1280, 10205, 1, 0, 0, 0, 1282, 10222, - 1, 0, 0, 0, 1284, 10224, 1, 0, 0, 0, 1286, 10227, 1, 0, 0, 0, 1288, 10233, - 1, 0, 0, 0, 1290, 10239, 1, 0, 0, 0, 1292, 10242, 1, 0, 0, 0, 1294, 10250, - 1, 0, 0, 0, 1296, 10254, 1, 0, 0, 0, 1298, 10259, 1, 0, 0, 0, 1300, 10274, - 1, 0, 0, 0, 1302, 10276, 1, 0, 0, 0, 1304, 10295, 1, 0, 0, 0, 1306, 10303, - 1, 0, 0, 0, 1308, 10312, 1, 0, 0, 0, 1310, 10314, 1, 0, 0, 0, 1312, 10335, - 1, 0, 0, 0, 1314, 10337, 1, 0, 0, 0, 1316, 10344, 1, 0, 0, 0, 1318, 10350, - 1, 0, 0, 0, 1320, 10354, 1, 0, 0, 0, 1322, 10356, 1, 0, 0, 0, 1324, 10364, - 1, 0, 0, 0, 1326, 10372, 1, 0, 0, 0, 1328, 10386, 1, 0, 0, 0, 1330, 10388, - 1, 0, 0, 0, 1332, 10396, 1, 0, 0, 0, 1334, 10409, 1, 0, 0, 0, 1336, 10411, - 1, 0, 0, 0, 1338, 10419, 1, 0, 0, 0, 1340, 10426, 1, 0, 0, 0, 1342, 10434, - 1, 0, 0, 0, 1344, 10446, 1, 0, 0, 0, 1346, 10448, 1, 0, 0, 0, 1348, 10450, - 1, 0, 0, 0, 1350, 10459, 1, 0, 0, 0, 1352, 10490, 1, 0, 0, 0, 1354, 10499, - 1, 0, 0, 0, 1356, 10506, 1, 0, 0, 0, 1358, 10508, 1, 0, 0, 0, 1360, 10519, - 1, 0, 0, 0, 1362, 10523, 1, 0, 0, 0, 1364, 10528, 1, 0, 0, 0, 1366, 10531, - 1, 0, 0, 0, 1368, 10533, 1, 0, 0, 0, 1370, 10554, 1, 0, 0, 0, 1372, 10556, - 1, 0, 0, 0, 1374, 10559, 1, 0, 0, 0, 1376, 10566, 1, 0, 0, 0, 1378, 10569, - 1, 0, 0, 0, 1380, 10571, 1, 0, 0, 0, 1382, 10584, 1, 0, 0, 0, 1384, 10589, - 1, 0, 0, 0, 1386, 10591, 1, 0, 0, 0, 1388, 10599, 1, 0, 0, 0, 1390, 10603, - 1, 0, 0, 0, 1392, 10611, 1, 0, 0, 0, 1394, 10613, 1, 0, 0, 0, 1396, 10615, - 1, 0, 0, 0, 1398, 10624, 1, 0, 0, 0, 1400, 10661, 1, 0, 0, 0, 1402, 10663, - 1, 0, 0, 0, 1404, 10665, 1, 0, 0, 0, 1406, 10667, 1, 0, 0, 0, 1408, 10669, - 1, 0, 0, 0, 1410, 10671, 1, 0, 0, 0, 1412, 10686, 1, 0, 0, 0, 1414, 10688, - 1, 0, 0, 0, 1416, 10696, 1, 0, 0, 0, 1418, 10698, 1, 0, 0, 0, 1420, 10703, - 1, 0, 0, 0, 1422, 10705, 1, 0, 0, 0, 1424, 10719, 1, 0, 0, 0, 1426, 10725, - 1, 0, 0, 0, 1428, 10731, 1, 0, 0, 0, 1430, 10737, 1, 0, 0, 0, 1432, 10745, - 1, 0, 0, 0, 1434, 10756, 1, 0, 0, 0, 1436, 10758, 1, 0, 0, 0, 1438, 10760, - 1, 0, 0, 0, 1440, 10818, 1, 0, 0, 0, 1442, 10820, 1, 0, 0, 0, 1444, 10822, - 1, 0, 0, 0, 1446, 10824, 1, 0, 0, 0, 1448, 10826, 1, 0, 0, 0, 1450, 10834, - 1, 0, 0, 0, 1452, 10857, 1, 0, 0, 0, 1454, 10859, 1, 0, 0, 0, 1456, 10865, - 1, 0, 0, 0, 1458, 10867, 1, 0, 0, 0, 1460, 10869, 1, 0, 0, 0, 1462, 10880, - 1, 0, 0, 0, 1464, 10888, 1, 0, 0, 0, 1466, 10891, 1, 0, 0, 0, 1468, 10895, - 1, 0, 0, 0, 1470, 10902, 1, 0, 0, 0, 1472, 10904, 1, 0, 0, 0, 1474, 10938, - 1, 0, 0, 0, 1476, 10940, 1, 0, 0, 0, 1478, 10942, 1, 0, 0, 0, 1480, 10946, - 1, 0, 0, 0, 1482, 10954, 1, 0, 0, 0, 1484, 10957, 1, 0, 0, 0, 1486, 10961, - 1, 0, 0, 0, 1488, 10963, 1, 0, 0, 0, 1490, 10965, 1, 0, 0, 0, 1492, 10967, - 1, 0, 0, 0, 1494, 10969, 1, 0, 0, 0, 1496, 10972, 1, 0, 0, 0, 1498, 10975, - 1, 0, 0, 0, 1500, 10980, 1, 0, 0, 0, 1502, 10982, 1, 0, 0, 0, 1504, 10987, - 1, 0, 0, 0, 1506, 11017, 1, 0, 0, 0, 1508, 11019, 1, 0, 0, 0, 1510, 11041, - 1, 0, 0, 0, 1512, 11043, 1, 0, 0, 0, 1514, 11045, 1, 0, 0, 0, 1516, 11050, - 1, 0, 0, 0, 1518, 11058, 1, 0, 0, 0, 1520, 11060, 1, 0, 0, 0, 1522, 11068, - 1, 0, 0, 0, 1524, 11072, 1, 0, 0, 0, 1526, 11074, 1, 0, 0, 0, 1528, 11078, - 1, 0, 0, 0, 1530, 11089, 1, 0, 0, 0, 1532, 11108, 1, 0, 0, 0, 1534, 11111, - 1, 0, 0, 0, 1536, 11114, 1, 0, 0, 0, 1538, 11126, 1, 0, 0, 0, 1540, 11129, - 1, 0, 0, 0, 1542, 11133, 1, 0, 0, 0, 1544, 11138, 1, 0, 0, 0, 1546, 11142, - 1, 0, 0, 0, 1548, 11147, 1, 0, 0, 0, 1550, 11154, 1, 0, 0, 0, 1552, 11160, - 1, 0, 0, 0, 1554, 11184, 1, 0, 0, 0, 1556, 11187, 1, 0, 0, 0, 1558, 11198, - 1, 0, 0, 0, 1560, 11200, 1, 0, 0, 0, 1562, 11203, 1, 0, 0, 0, 1564, 11206, - 1, 0, 0, 0, 1566, 11218, 1, 0, 0, 0, 1568, 11221, 1, 0, 0, 0, 1570, 11230, - 1, 0, 0, 0, 1572, 11232, 1, 0, 0, 0, 1574, 11251, 1, 0, 0, 0, 1576, 11296, - 1, 0, 0, 0, 1578, 11298, 1, 0, 0, 0, 1580, 11302, 1, 0, 0, 0, 1582, 11306, - 1, 0, 0, 0, 1584, 11309, 1, 0, 0, 0, 1586, 11313, 1, 0, 0, 0, 1588, 11321, - 1, 0, 0, 0, 1590, 11328, 1, 0, 0, 0, 1592, 11331, 1, 0, 0, 0, 1594, 11340, - 1, 0, 0, 0, 1596, 11343, 1, 0, 0, 0, 1598, 11362, 1, 0, 0, 0, 1600, 11365, - 1, 0, 0, 0, 1602, 11373, 1, 0, 0, 0, 1604, 11379, 1, 0, 0, 0, 1606, 11409, - 1, 0, 0, 0, 1608, 11411, 1, 0, 0, 0, 1610, 11419, 1, 0, 0, 0, 1612, 11423, - 1, 0, 0, 0, 1614, 11427, 1, 0, 0, 0, 1616, 11429, 1, 0, 0, 0, 1618, 11441, - 1, 0, 0, 0, 1620, 11443, 1, 0, 0, 0, 1622, 11460, 1, 0, 0, 0, 1624, 11462, - 1, 0, 0, 0, 1626, 11469, 1, 0, 0, 0, 1628, 11473, 1, 0, 0, 0, 1630, 11476, - 1, 0, 0, 0, 1632, 11482, 1, 0, 0, 0, 1634, 11488, 1, 0, 0, 0, 1636, 11506, - 1, 0, 0, 0, 1638, 11510, 1, 0, 0, 0, 1640, 11512, 1, 0, 0, 0, 1642, 11516, - 1, 0, 0, 0, 1644, 11520, 1, 0, 0, 0, 1646, 11525, 1, 0, 0, 0, 1648, 11536, - 1, 0, 0, 0, 1650, 11538, 1, 0, 0, 0, 1652, 11540, 1, 0, 0, 0, 1654, 11542, - 1, 0, 0, 0, 1656, 11544, 1, 0, 0, 0, 1658, 11549, 1, 0, 0, 0, 1660, 11551, - 1, 0, 0, 0, 1662, 11554, 1, 0, 0, 0, 1664, 11581, 1, 0, 0, 0, 1666, 11583, - 1, 0, 0, 0, 1668, 11585, 1, 0, 0, 0, 1670, 11587, 1, 0, 0, 0, 1672, 11589, - 1, 0, 0, 0, 1674, 11593, 1, 0, 0, 0, 1676, 1677, 3, 4, 2, 0, 1677, 1678, - 5, 0, 0, 1, 1678, 1, 1, 0, 0, 0, 1679, 1680, 3, 1448, 724, 0, 1680, 3, - 1, 0, 0, 0, 1681, 1682, 3, 6, 3, 0, 1682, 5, 1, 0, 0, 0, 1683, 1685, 3, - 8, 4, 0, 1684, 1686, 5, 7, 0, 0, 1685, 1684, 1, 0, 0, 0, 1685, 1686, 1, - 0, 0, 0, 1686, 1688, 1, 0, 0, 0, 1687, 1683, 1, 0, 0, 0, 1688, 1691, 1, - 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 7, 1, 0, - 0, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1818, 3, 454, 227, 0, 1693, 1818, 3, - 834, 417, 0, 1694, 1818, 3, 824, 412, 0, 1695, 1818, 3, 826, 413, 0, 1696, - 1818, 3, 584, 292, 0, 1697, 1818, 3, 840, 420, 0, 1698, 1818, 3, 480, 240, - 0, 1699, 1818, 3, 324, 162, 0, 1700, 1818, 3, 330, 165, 0, 1701, 1818, - 3, 340, 170, 0, 1702, 1818, 3, 366, 183, 0, 1703, 1818, 3, 676, 338, 0, - 1704, 1818, 3, 38, 19, 0, 1705, 1818, 3, 734, 367, 0, 1706, 1818, 3, 738, - 369, 0, 1707, 1818, 3, 750, 375, 0, 1708, 1818, 3, 740, 370, 0, 1709, 1818, - 3, 748, 374, 0, 1710, 1818, 3, 386, 193, 0, 1711, 1818, 3, 282, 141, 0, - 1712, 1818, 3, 836, 418, 0, 1713, 1818, 3, 96, 48, 0, 1714, 1818, 3, 726, - 363, 0, 1715, 1818, 3, 134, 67, 0, 1716, 1818, 3, 760, 380, 0, 1717, 1818, - 3, 32, 16, 0, 1718, 1818, 3, 28, 14, 0, 1719, 1818, 3, 768, 384, 0, 1720, - 1818, 3, 264, 132, 0, 1721, 1818, 3, 846, 423, 0, 1722, 1818, 3, 844, 422, - 0, 1723, 1818, 3, 382, 191, 0, 1724, 1818, 3, 858, 429, 0, 1725, 1818, - 3, 12, 6, 0, 1726, 1818, 3, 92, 46, 0, 1727, 1818, 3, 140, 70, 0, 1728, - 1818, 3, 852, 426, 0, 1729, 1818, 3, 536, 268, 0, 1730, 1818, 3, 86, 43, - 0, 1731, 1818, 3, 142, 71, 0, 1732, 1818, 3, 402, 201, 0, 1733, 1818, 3, - 266, 133, 0, 1734, 1818, 3, 458, 229, 0, 1735, 1818, 3, 702, 351, 0, 1736, - 1818, 3, 850, 425, 0, 1737, 1818, 3, 838, 419, 0, 1738, 1818, 3, 318, 159, - 0, 1739, 1818, 3, 332, 166, 0, 1740, 1818, 3, 358, 179, 0, 1741, 1818, - 3, 368, 184, 0, 1742, 1818, 3, 622, 311, 0, 1743, 1818, 3, 36, 18, 0, 1744, - 1818, 3, 272, 136, 0, 1745, 1818, 3, 484, 242, 0, 1746, 1818, 3, 498, 249, - 0, 1747, 1818, 3, 752, 376, 0, 1748, 1818, 3, 500, 250, 0, 1749, 1818, - 3, 384, 192, 0, 1750, 1818, 3, 298, 149, 0, 1751, 1818, 3, 42, 21, 0, 1752, - 1818, 3, 280, 140, 0, 1753, 1818, 3, 172, 86, 0, 1754, 1818, 3, 762, 381, - 0, 1755, 1818, 3, 262, 131, 0, 1756, 1818, 3, 312, 156, 0, 1757, 1818, - 3, 710, 355, 0, 1758, 1818, 3, 406, 203, 0, 1759, 1818, 3, 446, 223, 0, - 1760, 1818, 3, 14, 7, 0, 1761, 1818, 3, 26, 13, 0, 1762, 1818, 3, 376, - 188, 0, 1763, 1818, 3, 812, 406, 0, 1764, 1818, 3, 908, 454, 0, 1765, 1818, - 3, 960, 480, 0, 1766, 1818, 3, 460, 230, 0, 1767, 1818, 3, 936, 468, 0, - 1768, 1818, 3, 94, 47, 0, 1769, 1818, 3, 696, 348, 0, 1770, 1818, 3, 706, - 353, 0, 1771, 1818, 3, 506, 253, 0, 1772, 1818, 3, 508, 254, 0, 1773, 1818, - 3, 510, 255, 0, 1774, 1818, 3, 514, 257, 0, 1775, 1818, 3, 770, 385, 0, - 1776, 1818, 3, 316, 158, 0, 1777, 1818, 3, 714, 357, 0, 1778, 1818, 3, - 34, 17, 0, 1779, 1818, 3, 380, 190, 0, 1780, 1818, 3, 828, 414, 0, 1781, - 1818, 3, 904, 452, 0, 1782, 1818, 3, 886, 443, 0, 1783, 1818, 3, 546, 273, - 0, 1784, 1818, 3, 554, 277, 0, 1785, 1818, 3, 576, 288, 0, 1786, 1818, - 3, 370, 185, 0, 1787, 1818, 3, 594, 297, 0, 1788, 1818, 3, 910, 455, 0, - 1789, 1818, 3, 928, 464, 0, 1790, 1818, 3, 790, 395, 0, 1791, 1818, 3, - 278, 139, 0, 1792, 1818, 3, 810, 405, 0, 1793, 1818, 3, 940, 470, 0, 1794, - 1818, 3, 786, 393, 0, 1795, 1818, 3, 898, 449, 0, 1796, 1818, 3, 512, 256, - 0, 1797, 1818, 3, 716, 358, 0, 1798, 1818, 3, 684, 342, 0, 1799, 1818, - 3, 682, 341, 0, 1800, 1818, 3, 686, 343, 0, 1801, 1818, 3, 728, 364, 0, - 1802, 1818, 3, 556, 278, 0, 1803, 1818, 3, 578, 289, 0, 1804, 1818, 3, - 772, 386, 0, 1805, 1818, 3, 540, 270, 0, 1806, 1818, 3, 968, 484, 0, 1807, - 1818, 3, 794, 397, 0, 1808, 1818, 3, 532, 266, 0, 1809, 1818, 3, 792, 396, - 0, 1810, 1818, 3, 950, 475, 0, 1811, 1818, 3, 856, 428, 0, 1812, 1818, - 3, 74, 37, 0, 1813, 1818, 3, 50, 25, 0, 1814, 1818, 3, 84, 42, 0, 1815, - 1818, 3, 806, 403, 0, 1816, 1818, 3, 10, 5, 0, 1817, 1692, 1, 0, 0, 0, - 1817, 1693, 1, 0, 0, 0, 1817, 1694, 1, 0, 0, 0, 1817, 1695, 1, 0, 0, 0, - 1817, 1696, 1, 0, 0, 0, 1817, 1697, 1, 0, 0, 0, 1817, 1698, 1, 0, 0, 0, - 1817, 1699, 1, 0, 0, 0, 1817, 1700, 1, 0, 0, 0, 1817, 1701, 1, 0, 0, 0, - 1817, 1702, 1, 0, 0, 0, 1817, 1703, 1, 0, 0, 0, 1817, 1704, 1, 0, 0, 0, - 1817, 1705, 1, 0, 0, 0, 1817, 1706, 1, 0, 0, 0, 1817, 1707, 1, 0, 0, 0, - 1817, 1708, 1, 0, 0, 0, 1817, 1709, 1, 0, 0, 0, 1817, 1710, 1, 0, 0, 0, - 1817, 1711, 1, 0, 0, 0, 1817, 1712, 1, 0, 0, 0, 1817, 1713, 1, 0, 0, 0, - 1817, 1714, 1, 0, 0, 0, 1817, 1715, 1, 0, 0, 0, 1817, 1716, 1, 0, 0, 0, - 1817, 1717, 1, 0, 0, 0, 1817, 1718, 1, 0, 0, 0, 1817, 1719, 1, 0, 0, 0, - 1817, 1720, 1, 0, 0, 0, 1817, 1721, 1, 0, 0, 0, 1817, 1722, 1, 0, 0, 0, - 1817, 1723, 1, 0, 0, 0, 1817, 1724, 1, 0, 0, 0, 1817, 1725, 1, 0, 0, 0, - 1817, 1726, 1, 0, 0, 0, 1817, 1727, 1, 0, 0, 0, 1817, 1728, 1, 0, 0, 0, - 1817, 1729, 1, 0, 0, 0, 1817, 1730, 1, 0, 0, 0, 1817, 1731, 1, 0, 0, 0, - 1817, 1732, 1, 0, 0, 0, 1817, 1733, 1, 0, 0, 0, 1817, 1734, 1, 0, 0, 0, - 1817, 1735, 1, 0, 0, 0, 1817, 1736, 1, 0, 0, 0, 1817, 1737, 1, 0, 0, 0, - 1817, 1738, 1, 0, 0, 0, 1817, 1739, 1, 0, 0, 0, 1817, 1740, 1, 0, 0, 0, - 1817, 1741, 1, 0, 0, 0, 1817, 1742, 1, 0, 0, 0, 1817, 1743, 1, 0, 0, 0, - 1817, 1744, 1, 0, 0, 0, 1817, 1745, 1, 0, 0, 0, 1817, 1746, 1, 0, 0, 0, - 1817, 1747, 1, 0, 0, 0, 1817, 1748, 1, 0, 0, 0, 1817, 1749, 1, 0, 0, 0, - 1817, 1750, 1, 0, 0, 0, 1817, 1751, 1, 0, 0, 0, 1817, 1752, 1, 0, 0, 0, - 1817, 1753, 1, 0, 0, 0, 1817, 1754, 1, 0, 0, 0, 1817, 1755, 1, 0, 0, 0, - 1817, 1756, 1, 0, 0, 0, 1817, 1757, 1, 0, 0, 0, 1817, 1758, 1, 0, 0, 0, - 1817, 1759, 1, 0, 0, 0, 1817, 1760, 1, 0, 0, 0, 1817, 1761, 1, 0, 0, 0, - 1817, 1762, 1, 0, 0, 0, 1817, 1763, 1, 0, 0, 0, 1817, 1764, 1, 0, 0, 0, - 1817, 1765, 1, 0, 0, 0, 1817, 1766, 1, 0, 0, 0, 1817, 1767, 1, 0, 0, 0, - 1817, 1768, 1, 0, 0, 0, 1817, 1769, 1, 0, 0, 0, 1817, 1770, 1, 0, 0, 0, - 1817, 1771, 1, 0, 0, 0, 1817, 1772, 1, 0, 0, 0, 1817, 1773, 1, 0, 0, 0, - 1817, 1774, 1, 0, 0, 0, 1817, 1775, 1, 0, 0, 0, 1817, 1776, 1, 0, 0, 0, - 1817, 1777, 1, 0, 0, 0, 1817, 1778, 1, 0, 0, 0, 1817, 1779, 1, 0, 0, 0, - 1817, 1780, 1, 0, 0, 0, 1817, 1781, 1, 0, 0, 0, 1817, 1782, 1, 0, 0, 0, - 1817, 1783, 1, 0, 0, 0, 1817, 1784, 1, 0, 0, 0, 1817, 1785, 1, 0, 0, 0, - 1817, 1786, 1, 0, 0, 0, 1817, 1787, 1, 0, 0, 0, 1817, 1788, 1, 0, 0, 0, - 1817, 1789, 1, 0, 0, 0, 1817, 1790, 1, 0, 0, 0, 1817, 1791, 1, 0, 0, 0, - 1817, 1792, 1, 0, 0, 0, 1817, 1793, 1, 0, 0, 0, 1817, 1794, 1, 0, 0, 0, - 1817, 1795, 1, 0, 0, 0, 1817, 1796, 1, 0, 0, 0, 1817, 1797, 1, 0, 0, 0, - 1817, 1798, 1, 0, 0, 0, 1817, 1799, 1, 0, 0, 0, 1817, 1800, 1, 0, 0, 0, - 1817, 1801, 1, 0, 0, 0, 1817, 1802, 1, 0, 0, 0, 1817, 1803, 1, 0, 0, 0, - 1817, 1804, 1, 0, 0, 0, 1817, 1805, 1, 0, 0, 0, 1817, 1806, 1, 0, 0, 0, - 1817, 1807, 1, 0, 0, 0, 1817, 1808, 1, 0, 0, 0, 1817, 1809, 1, 0, 0, 0, - 1817, 1810, 1, 0, 0, 0, 1817, 1811, 1, 0, 0, 0, 1817, 1812, 1, 0, 0, 0, - 1817, 1813, 1, 0, 0, 0, 1817, 1814, 1, 0, 0, 0, 1817, 1815, 1, 0, 0, 0, - 1817, 1816, 1, 0, 0, 0, 1818, 9, 1, 0, 0, 0, 1819, 1821, 5, 696, 0, 0, - 1820, 1822, 5, 697, 0, 0, 1821, 1820, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, - 0, 1822, 11, 1, 0, 0, 0, 1823, 1824, 5, 454, 0, 0, 1824, 1825, 3, 1216, - 608, 0, 1825, 13, 1, 0, 0, 0, 1826, 1827, 5, 46, 0, 0, 1827, 1828, 5, 330, - 0, 0, 1828, 1830, 3, 1418, 709, 0, 1829, 1831, 3, 16, 8, 0, 1830, 1829, - 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, - 3, 18, 9, 0, 1833, 15, 1, 0, 0, 0, 1834, 1835, 5, 105, 0, 0, 1835, 17, - 1, 0, 0, 0, 1836, 1838, 3, 24, 12, 0, 1837, 1836, 1, 0, 0, 0, 1838, 1841, - 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 19, 1, - 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1842, 1844, 3, 22, 11, 0, 1843, 1842, - 1, 0, 0, 0, 1844, 1847, 1, 0, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, - 1, 0, 0, 0, 1846, 21, 1, 0, 0, 0, 1847, 1845, 1, 0, 0, 0, 1848, 1851, 5, - 299, 0, 0, 1849, 1852, 3, 1410, 705, 0, 1850, 1852, 5, 78, 0, 0, 1851, - 1849, 1, 0, 0, 0, 1851, 1850, 1, 0, 0, 0, 1852, 1867, 1, 0, 0, 0, 1853, - 1854, 7, 0, 0, 0, 1854, 1855, 5, 299, 0, 0, 1855, 1867, 3, 1410, 705, 0, - 1856, 1867, 5, 247, 0, 0, 1857, 1858, 5, 183, 0, 0, 1858, 1859, 5, 74, - 0, 0, 1859, 1867, 3, 1416, 708, 0, 1860, 1861, 5, 383, 0, 0, 1861, 1862, - 5, 380, 0, 0, 1862, 1867, 3, 1410, 705, 0, 1863, 1864, 5, 99, 0, 0, 1864, - 1867, 3, 1422, 711, 0, 1865, 1867, 3, 1434, 717, 0, 1866, 1848, 1, 0, 0, - 0, 1866, 1853, 1, 0, 0, 0, 1866, 1856, 1, 0, 0, 0, 1866, 1857, 1, 0, 0, - 0, 1866, 1860, 1, 0, 0, 0, 1866, 1863, 1, 0, 0, 0, 1866, 1865, 1, 0, 0, - 0, 1867, 23, 1, 0, 0, 0, 1868, 1879, 3, 22, 11, 0, 1869, 1870, 5, 360, - 0, 0, 1870, 1879, 3, 1408, 704, 0, 1871, 1872, 5, 153, 0, 0, 1872, 1879, - 3, 1422, 711, 0, 1873, 1874, 5, 330, 0, 0, 1874, 1879, 3, 1422, 711, 0, - 1875, 1876, 5, 68, 0, 0, 1876, 1877, 7, 1, 0, 0, 1877, 1879, 3, 1422, 711, - 0, 1878, 1868, 1, 0, 0, 0, 1878, 1869, 1, 0, 0, 0, 1878, 1871, 1, 0, 0, - 0, 1878, 1873, 1, 0, 0, 0, 1878, 1875, 1, 0, 0, 0, 1879, 25, 1, 0, 0, 0, - 1880, 1881, 5, 46, 0, 0, 1881, 1882, 5, 99, 0, 0, 1882, 1884, 3, 1418, - 709, 0, 1883, 1885, 3, 16, 8, 0, 1884, 1883, 1, 0, 0, 0, 1884, 1885, 1, - 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1887, 3, 18, 9, 0, 1887, 27, 1, - 0, 0, 0, 1888, 1889, 5, 157, 0, 0, 1889, 1890, 7, 2, 0, 0, 1890, 1892, - 3, 1420, 710, 0, 1891, 1893, 3, 16, 8, 0, 1892, 1891, 1, 0, 0, 0, 1892, - 1893, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 3, 20, 10, 0, 1895, - 29, 1, 0, 0, 0, 1896, 1897, 5, 68, 0, 0, 1897, 1898, 5, 194, 0, 0, 1898, - 1899, 3, 1392, 696, 0, 1899, 31, 1, 0, 0, 0, 1900, 1901, 5, 157, 0, 0, - 1901, 1903, 7, 2, 0, 0, 1902, 1904, 5, 30, 0, 0, 1903, 1902, 1, 0, 0, 0, - 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1907, 3, 1420, 710, - 0, 1906, 1908, 3, 30, 15, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, - 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1910, 3, 80, 40, 0, 1910, 33, 1, 0, - 0, 0, 1911, 1912, 5, 210, 0, 0, 1912, 1915, 7, 3, 0, 0, 1913, 1914, 5, - 239, 0, 0, 1914, 1916, 5, 409, 0, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1916, - 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1918, 3, 1422, 711, 0, 1918, - 35, 1, 0, 0, 0, 1919, 1920, 5, 46, 0, 0, 1920, 1921, 5, 66, 0, 0, 1921, - 1923, 3, 1418, 709, 0, 1922, 1924, 3, 16, 8, 0, 1923, 1922, 1, 0, 0, 0, - 1923, 1924, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1926, 3, 18, 9, 0, - 1926, 37, 1, 0, 0, 0, 1927, 1928, 5, 157, 0, 0, 1928, 1929, 5, 66, 0, 0, - 1929, 1930, 3, 1420, 710, 0, 1930, 1931, 3, 40, 20, 0, 1931, 1932, 5, 99, - 0, 0, 1932, 1933, 3, 1422, 711, 0, 1933, 39, 1, 0, 0, 0, 1934, 1935, 7, - 4, 0, 0, 1935, 41, 1, 0, 0, 0, 1936, 1937, 5, 46, 0, 0, 1937, 1941, 5, - 335, 0, 0, 1938, 1939, 5, 239, 0, 0, 1939, 1940, 5, 77, 0, 0, 1940, 1942, - 5, 409, 0, 0, 1941, 1938, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1949, - 1, 0, 0, 0, 1943, 1945, 3, 44, 22, 0, 1944, 1943, 1, 0, 0, 0, 1944, 1945, - 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1947, 5, 125, 0, 0, 1947, 1950, - 3, 1420, 710, 0, 1948, 1950, 3, 1424, 712, 0, 1949, 1944, 1, 0, 0, 0, 1949, - 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1952, 3, 46, 23, 0, 1952, - 43, 1, 0, 0, 0, 1953, 1954, 3, 1424, 712, 0, 1954, 45, 1, 0, 0, 0, 1955, - 1957, 3, 48, 24, 0, 1956, 1955, 1, 0, 0, 0, 1957, 1960, 1, 0, 0, 0, 1958, - 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 47, 1, 0, 0, 0, 1960, 1958, - 1, 0, 0, 0, 1961, 1968, 3, 172, 86, 0, 1962, 1968, 3, 594, 297, 0, 1963, - 1968, 3, 280, 140, 0, 1964, 1968, 3, 406, 203, 0, 1965, 1968, 3, 554, 277, - 0, 1966, 1968, 3, 806, 403, 0, 1967, 1961, 1, 0, 0, 0, 1967, 1962, 1, 0, - 0, 0, 1967, 1963, 1, 0, 0, 0, 1967, 1964, 1, 0, 0, 0, 1967, 1965, 1, 0, - 0, 0, 1967, 1966, 1, 0, 0, 0, 1968, 49, 1, 0, 0, 0, 1969, 1971, 5, 345, - 0, 0, 1970, 1972, 7, 5, 0, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, - 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 3, 52, 26, 0, 1974, 51, 1, 0, - 0, 0, 1975, 1976, 5, 368, 0, 0, 1976, 1984, 3, 800, 400, 0, 1977, 1978, - 5, 344, 0, 0, 1978, 1979, 5, 173, 0, 0, 1979, 1980, 5, 36, 0, 0, 1980, - 1981, 5, 368, 0, 0, 1981, 1984, 3, 800, 400, 0, 1982, 1984, 3, 56, 28, - 0, 1983, 1975, 1, 0, 0, 0, 1983, 1977, 1, 0, 0, 0, 1983, 1982, 1, 0, 0, - 0, 1984, 53, 1, 0, 0, 0, 1985, 1986, 3, 58, 29, 0, 1986, 1987, 7, 6, 0, - 0, 1987, 1988, 3, 60, 30, 0, 1988, 55, 1, 0, 0, 0, 1989, 2017, 3, 54, 27, - 0, 1990, 1991, 3, 58, 29, 0, 1991, 1992, 5, 64, 0, 0, 1992, 1993, 5, 455, - 0, 0, 1993, 2017, 1, 0, 0, 0, 1994, 1995, 5, 432, 0, 0, 1995, 1996, 5, - 398, 0, 0, 1996, 2017, 3, 68, 34, 0, 1997, 1998, 5, 171, 0, 0, 1998, 2017, - 3, 1410, 705, 0, 1999, 2000, 5, 335, 0, 0, 2000, 2017, 3, 1410, 705, 0, - 2001, 2003, 5, 279, 0, 0, 2002, 2004, 3, 70, 35, 0, 2003, 2002, 1, 0, 0, - 0, 2003, 2004, 1, 0, 0, 0, 2004, 2017, 1, 0, 0, 0, 2005, 2006, 5, 330, - 0, 0, 2006, 2017, 3, 72, 36, 0, 2007, 2008, 5, 344, 0, 0, 2008, 2009, 5, - 125, 0, 0, 2009, 2017, 3, 72, 36, 0, 2010, 2011, 5, 395, 0, 0, 2011, 2012, - 5, 291, 0, 0, 2012, 2017, 3, 1278, 639, 0, 2013, 2014, 5, 368, 0, 0, 2014, - 2015, 5, 349, 0, 0, 2015, 2017, 3, 1410, 705, 0, 2016, 1989, 1, 0, 0, 0, - 2016, 1990, 1, 0, 0, 0, 2016, 1994, 1, 0, 0, 0, 2016, 1997, 1, 0, 0, 0, - 2016, 1999, 1, 0, 0, 0, 2016, 2001, 1, 0, 0, 0, 2016, 2005, 1, 0, 0, 0, - 2016, 2007, 1, 0, 0, 0, 2016, 2010, 1, 0, 0, 0, 2016, 2013, 1, 0, 0, 0, - 2017, 57, 1, 0, 0, 0, 2018, 2023, 3, 1424, 712, 0, 2019, 2020, 5, 11, 0, - 0, 2020, 2022, 3, 1424, 712, 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, 59, 1, 0, - 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2031, 3, 62, 31, 0, 2027, 2028, 5, - 6, 0, 0, 2028, 2030, 3, 62, 31, 0, 2029, 2027, 1, 0, 0, 0, 2030, 2033, - 1, 0, 0, 0, 2031, 2029, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 61, 1, - 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2034, 2037, 3, 66, 33, 0, 2035, 2037, - 3, 294, 147, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2035, 1, 0, 0, 0, 2037, 63, - 1, 0, 0, 0, 2038, 2039, 5, 312, 0, 0, 2039, 2044, 7, 7, 0, 0, 2040, 2041, - 5, 322, 0, 0, 2041, 2044, 5, 312, 0, 0, 2042, 2044, 5, 342, 0, 0, 2043, - 2038, 1, 0, 0, 0, 2043, 2040, 1, 0, 0, 0, 2043, 2042, 1, 0, 0, 0, 2044, - 65, 1, 0, 0, 0, 2045, 2050, 5, 96, 0, 0, 2046, 2050, 5, 60, 0, 0, 2047, - 2050, 5, 80, 0, 0, 2048, 2050, 3, 72, 36, 0, 2049, 2045, 1, 0, 0, 0, 2049, - 2046, 1, 0, 0, 0, 2049, 2047, 1, 0, 0, 0, 2049, 2048, 1, 0, 0, 0, 2050, - 67, 1, 0, 0, 0, 2051, 2068, 3, 1410, 705, 0, 2052, 2068, 3, 1434, 717, - 0, 2053, 2054, 3, 1158, 579, 0, 2054, 2056, 3, 1410, 705, 0, 2055, 2057, - 3, 1162, 581, 0, 2056, 2055, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, - 2068, 1, 0, 0, 0, 2058, 2059, 3, 1158, 579, 0, 2059, 2060, 5, 2, 0, 0, - 2060, 2061, 3, 1408, 704, 0, 2061, 2062, 5, 3, 0, 0, 2062, 2063, 3, 1410, - 705, 0, 2063, 2068, 1, 0, 0, 0, 2064, 2068, 3, 294, 147, 0, 2065, 2068, - 5, 53, 0, 0, 2066, 2068, 5, 264, 0, 0, 2067, 2051, 1, 0, 0, 0, 2067, 2052, - 1, 0, 0, 0, 2067, 2053, 1, 0, 0, 0, 2067, 2058, 1, 0, 0, 0, 2067, 2064, - 1, 0, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2066, 1, 0, 0, 0, 2068, 69, 1, - 0, 0, 0, 2069, 2072, 3, 1410, 705, 0, 2070, 2072, 5, 53, 0, 0, 2071, 2069, - 1, 0, 0, 0, 2071, 2070, 1, 0, 0, 0, 2072, 71, 1, 0, 0, 0, 2073, 2076, 3, - 1430, 715, 0, 2074, 2076, 3, 1410, 705, 0, 2075, 2073, 1, 0, 0, 0, 2075, - 2074, 1, 0, 0, 0, 2076, 73, 1, 0, 0, 0, 2077, 2078, 5, 325, 0, 0, 2078, - 2079, 3, 76, 38, 0, 2079, 75, 1, 0, 0, 0, 2080, 2089, 3, 78, 39, 0, 2081, - 2082, 5, 432, 0, 0, 2082, 2089, 5, 398, 0, 0, 2083, 2084, 5, 368, 0, 0, - 2084, 2085, 5, 254, 0, 0, 2085, 2089, 5, 261, 0, 0, 2086, 2087, 5, 344, - 0, 0, 2087, 2089, 5, 125, 0, 0, 2088, 2080, 1, 0, 0, 0, 2088, 2081, 1, - 0, 0, 0, 2088, 2083, 1, 0, 0, 0, 2088, 2086, 1, 0, 0, 0, 2089, 77, 1, 0, - 0, 0, 2090, 2093, 3, 58, 29, 0, 2091, 2093, 5, 30, 0, 0, 2092, 2090, 1, - 0, 0, 0, 2092, 2091, 1, 0, 0, 0, 2093, 79, 1, 0, 0, 0, 2094, 2095, 5, 345, - 0, 0, 2095, 2098, 3, 52, 26, 0, 2096, 2098, 3, 74, 37, 0, 2097, 2094, 1, - 0, 0, 0, 2097, 2096, 1, 0, 0, 0, 2098, 81, 1, 0, 0, 0, 2099, 2100, 5, 345, - 0, 0, 2100, 2103, 3, 56, 28, 0, 2101, 2103, 3, 74, 37, 0, 2102, 2099, 1, - 0, 0, 0, 2102, 2101, 1, 0, 0, 0, 2103, 83, 1, 0, 0, 0, 2104, 2114, 5, 347, - 0, 0, 2105, 2115, 3, 58, 29, 0, 2106, 2107, 5, 432, 0, 0, 2107, 2115, 5, - 398, 0, 0, 2108, 2109, 5, 368, 0, 0, 2109, 2110, 5, 254, 0, 0, 2110, 2115, - 5, 261, 0, 0, 2111, 2112, 5, 344, 0, 0, 2112, 2115, 5, 125, 0, 0, 2113, - 2115, 5, 30, 0, 0, 2114, 2105, 1, 0, 0, 0, 2114, 2106, 1, 0, 0, 0, 2114, - 2108, 1, 0, 0, 0, 2114, 2111, 1, 0, 0, 0, 2114, 2113, 1, 0, 0, 0, 2115, - 85, 1, 0, 0, 0, 2116, 2117, 5, 345, 0, 0, 2117, 2118, 5, 184, 0, 0, 2118, - 2119, 3, 88, 44, 0, 2119, 2120, 3, 90, 45, 0, 2120, 87, 1, 0, 0, 0, 2121, - 2124, 5, 30, 0, 0, 2122, 2124, 3, 1386, 693, 0, 2123, 2121, 1, 0, 0, 0, - 2123, 2122, 1, 0, 0, 0, 2124, 89, 1, 0, 0, 0, 2125, 2126, 7, 8, 0, 0, 2126, - 91, 1, 0, 0, 0, 2127, 2128, 5, 174, 0, 0, 2128, 93, 1, 0, 0, 0, 2129, 2130, - 5, 206, 0, 0, 2130, 2131, 7, 9, 0, 0, 2131, 95, 1, 0, 0, 0, 2132, 2133, - 5, 157, 0, 0, 2133, 2136, 5, 92, 0, 0, 2134, 2135, 5, 239, 0, 0, 2135, - 2137, 5, 409, 0, 0, 2136, 2134, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, - 2138, 1, 0, 0, 0, 2138, 2141, 3, 1080, 540, 0, 2139, 2142, 3, 98, 49, 0, - 2140, 2142, 3, 100, 50, 0, 2141, 2139, 1, 0, 0, 0, 2141, 2140, 1, 0, 0, - 0, 2142, 2245, 1, 0, 0, 0, 2143, 2144, 5, 157, 0, 0, 2144, 2145, 5, 92, - 0, 0, 2145, 2146, 5, 30, 0, 0, 2146, 2147, 5, 68, 0, 0, 2147, 2148, 5, - 363, 0, 0, 2148, 2152, 3, 1392, 696, 0, 2149, 2150, 5, 293, 0, 0, 2150, - 2151, 5, 166, 0, 0, 2151, 2153, 3, 1422, 711, 0, 2152, 2149, 1, 0, 0, 0, - 2152, 2153, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2155, 5, 345, 0, - 0, 2155, 2156, 5, 363, 0, 0, 2156, 2158, 3, 1392, 696, 0, 2157, 2159, 3, - 946, 473, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2245, - 1, 0, 0, 0, 2160, 2161, 5, 157, 0, 0, 2161, 2164, 5, 245, 0, 0, 2162, 2163, - 5, 239, 0, 0, 2163, 2165, 5, 409, 0, 0, 2164, 2162, 1, 0, 0, 0, 2164, 2165, - 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2169, 3, 1388, 694, 0, 2167, - 2170, 3, 98, 49, 0, 2168, 2170, 3, 102, 51, 0, 2169, 2167, 1, 0, 0, 0, - 2169, 2168, 1, 0, 0, 0, 2170, 2245, 1, 0, 0, 0, 2171, 2172, 5, 157, 0, - 0, 2172, 2173, 5, 245, 0, 0, 2173, 2174, 5, 30, 0, 0, 2174, 2175, 5, 68, - 0, 0, 2175, 2176, 5, 363, 0, 0, 2176, 2180, 3, 1392, 696, 0, 2177, 2178, - 5, 293, 0, 0, 2178, 2179, 5, 166, 0, 0, 2179, 2181, 3, 1422, 711, 0, 2180, - 2177, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, - 2183, 5, 345, 0, 0, 2183, 2184, 5, 363, 0, 0, 2184, 2186, 3, 1392, 696, - 0, 2185, 2187, 3, 946, 473, 0, 2186, 2185, 1, 0, 0, 0, 2186, 2187, 1, 0, - 0, 0, 2187, 2245, 1, 0, 0, 0, 2188, 2189, 5, 157, 0, 0, 2189, 2192, 5, - 340, 0, 0, 2190, 2191, 5, 239, 0, 0, 2191, 2193, 5, 409, 0, 0, 2192, 2190, - 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2195, - 3, 1388, 694, 0, 2195, 2196, 3, 98, 49, 0, 2196, 2245, 1, 0, 0, 0, 2197, - 2198, 5, 157, 0, 0, 2198, 2201, 5, 388, 0, 0, 2199, 2200, 5, 239, 0, 0, - 2200, 2202, 5, 409, 0, 0, 2201, 2199, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, - 0, 2202, 2203, 1, 0, 0, 0, 2203, 2204, 3, 1388, 694, 0, 2204, 2205, 3, - 98, 49, 0, 2205, 2245, 1, 0, 0, 0, 2206, 2207, 5, 157, 0, 0, 2207, 2208, - 5, 270, 0, 0, 2208, 2211, 5, 388, 0, 0, 2209, 2210, 5, 239, 0, 0, 2210, - 2212, 5, 409, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, - 2213, 1, 0, 0, 0, 2213, 2214, 3, 1388, 694, 0, 2214, 2215, 3, 98, 49, 0, - 2215, 2245, 1, 0, 0, 0, 2216, 2217, 5, 157, 0, 0, 2217, 2218, 5, 270, 0, - 0, 2218, 2219, 5, 388, 0, 0, 2219, 2220, 5, 30, 0, 0, 2220, 2221, 5, 68, - 0, 0, 2221, 2222, 5, 363, 0, 0, 2222, 2226, 3, 1392, 696, 0, 2223, 2224, - 5, 293, 0, 0, 2224, 2225, 5, 166, 0, 0, 2225, 2227, 3, 1422, 711, 0, 2226, - 2223, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, - 2229, 5, 345, 0, 0, 2229, 2230, 5, 363, 0, 0, 2230, 2232, 3, 1392, 696, - 0, 2231, 2233, 3, 946, 473, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, - 0, 0, 2233, 2245, 1, 0, 0, 0, 2234, 2235, 5, 157, 0, 0, 2235, 2236, 5, - 63, 0, 0, 2236, 2239, 5, 92, 0, 0, 2237, 2238, 5, 239, 0, 0, 2238, 2240, - 5, 409, 0, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, - 1, 0, 0, 0, 2241, 2242, 3, 1080, 540, 0, 2242, 2243, 3, 98, 49, 0, 2243, - 2245, 1, 0, 0, 0, 2244, 2132, 1, 0, 0, 0, 2244, 2143, 1, 0, 0, 0, 2244, - 2160, 1, 0, 0, 0, 2244, 2171, 1, 0, 0, 0, 2244, 2188, 1, 0, 0, 0, 2244, - 2197, 1, 0, 0, 0, 2244, 2206, 1, 0, 0, 0, 2244, 2216, 1, 0, 0, 0, 2244, - 2234, 1, 0, 0, 0, 2245, 97, 1, 0, 0, 0, 2246, 2251, 3, 104, 52, 0, 2247, - 2248, 5, 6, 0, 0, 2248, 2250, 3, 104, 52, 0, 2249, 2247, 1, 0, 0, 0, 2250, - 2253, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, - 99, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2255, 5, 456, 0, 0, 2255, - 2256, 5, 297, 0, 0, 2256, 2257, 3, 1388, 694, 0, 2257, 2258, 3, 128, 64, - 0, 2258, 2263, 1, 0, 0, 0, 2259, 2260, 5, 457, 0, 0, 2260, 2261, 5, 297, - 0, 0, 2261, 2263, 3, 1388, 694, 0, 2262, 2254, 1, 0, 0, 0, 2262, 2259, - 1, 0, 0, 0, 2263, 101, 1, 0, 0, 0, 2264, 2265, 5, 456, 0, 0, 2265, 2266, - 5, 297, 0, 0, 2266, 2267, 3, 1388, 694, 0, 2267, 103, 1, 0, 0, 0, 2268, - 2269, 5, 152, 0, 0, 2269, 2571, 3, 188, 94, 0, 2270, 2271, 5, 152, 0, 0, - 2271, 2272, 5, 239, 0, 0, 2272, 2273, 5, 77, 0, 0, 2273, 2274, 5, 409, - 0, 0, 2274, 2571, 3, 188, 94, 0, 2275, 2276, 5, 152, 0, 0, 2276, 2277, - 5, 44, 0, 0, 2277, 2571, 3, 188, 94, 0, 2278, 2279, 5, 152, 0, 0, 2279, - 2280, 5, 44, 0, 0, 2280, 2281, 5, 239, 0, 0, 2281, 2282, 5, 77, 0, 0, 2282, - 2283, 5, 409, 0, 0, 2283, 2571, 3, 188, 94, 0, 2284, 2286, 5, 157, 0, 0, - 2285, 2287, 3, 730, 365, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, - 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 3, 1424, 712, 0, 2289, 2290, 3, - 106, 53, 0, 2290, 2571, 1, 0, 0, 0, 2291, 2293, 5, 157, 0, 0, 2292, 2294, - 3, 730, 365, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2295, - 1, 0, 0, 0, 2295, 2296, 3, 1424, 712, 0, 2296, 2297, 5, 210, 0, 0, 2297, - 2298, 5, 77, 0, 0, 2298, 2299, 5, 78, 0, 0, 2299, 2571, 1, 0, 0, 0, 2300, - 2302, 5, 157, 0, 0, 2301, 2303, 3, 730, 365, 0, 2302, 2301, 1, 0, 0, 0, - 2302, 2303, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 3, 1424, 712, - 0, 2305, 2306, 5, 345, 0, 0, 2306, 2307, 5, 77, 0, 0, 2307, 2308, 5, 78, - 0, 0, 2308, 2571, 1, 0, 0, 0, 2309, 2311, 5, 157, 0, 0, 2310, 2312, 3, - 730, 365, 0, 2311, 2310, 1, 0, 0, 0, 2311, 2312, 1, 0, 0, 0, 2312, 2313, - 1, 0, 0, 0, 2313, 2314, 3, 1424, 712, 0, 2314, 2315, 5, 210, 0, 0, 2315, - 2316, 5, 458, 0, 0, 2316, 2571, 1, 0, 0, 0, 2317, 2319, 5, 157, 0, 0, 2318, - 2320, 3, 730, 365, 0, 2319, 2318, 1, 0, 0, 0, 2319, 2320, 1, 0, 0, 0, 2320, - 2321, 1, 0, 0, 0, 2321, 2322, 3, 1424, 712, 0, 2322, 2323, 5, 210, 0, 0, - 2323, 2324, 5, 458, 0, 0, 2324, 2325, 5, 239, 0, 0, 2325, 2326, 5, 409, - 0, 0, 2326, 2571, 1, 0, 0, 0, 2327, 2329, 5, 157, 0, 0, 2328, 2330, 3, - 730, 365, 0, 2329, 2328, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2331, - 1, 0, 0, 0, 2331, 2332, 3, 1424, 712, 0, 2332, 2333, 5, 345, 0, 0, 2333, - 2334, 5, 354, 0, 0, 2334, 2335, 3, 1416, 708, 0, 2335, 2571, 1, 0, 0, 0, - 2336, 2338, 5, 157, 0, 0, 2337, 2339, 3, 730, 365, 0, 2338, 2337, 1, 0, - 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2340, 1, 0, 0, 0, 2340, 2341, 3, 1408, - 704, 0, 2341, 2342, 5, 345, 0, 0, 2342, 2343, 5, 354, 0, 0, 2343, 2344, - 3, 1416, 708, 0, 2344, 2571, 1, 0, 0, 0, 2345, 2347, 5, 157, 0, 0, 2346, - 2348, 3, 730, 365, 0, 2347, 2346, 1, 0, 0, 0, 2347, 2348, 1, 0, 0, 0, 2348, - 2349, 1, 0, 0, 0, 2349, 2350, 3, 1424, 712, 0, 2350, 2351, 5, 345, 0, 0, - 2351, 2352, 3, 116, 58, 0, 2352, 2571, 1, 0, 0, 0, 2353, 2355, 5, 157, - 0, 0, 2354, 2356, 3, 730, 365, 0, 2355, 2354, 1, 0, 0, 0, 2355, 2356, 1, - 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2358, 3, 1424, 712, 0, 2358, 2359, - 5, 325, 0, 0, 2359, 2360, 3, 116, 58, 0, 2360, 2571, 1, 0, 0, 0, 2361, - 2363, 5, 157, 0, 0, 2362, 2364, 3, 730, 365, 0, 2363, 2362, 1, 0, 0, 0, - 2363, 2364, 1, 0, 0, 0, 2364, 2365, 1, 0, 0, 0, 2365, 2366, 3, 1424, 712, - 0, 2366, 2367, 5, 345, 0, 0, 2367, 2368, 5, 357, 0, 0, 2368, 2369, 3, 1424, - 712, 0, 2369, 2571, 1, 0, 0, 0, 2370, 2372, 5, 157, 0, 0, 2371, 2373, 3, - 730, 365, 0, 2372, 2371, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2374, - 1, 0, 0, 0, 2374, 2375, 3, 1424, 712, 0, 2375, 2376, 5, 152, 0, 0, 2376, - 2377, 5, 459, 0, 0, 2377, 2378, 3, 200, 100, 0, 2378, 2379, 5, 36, 0, 0, - 2379, 2381, 5, 238, 0, 0, 2380, 2382, 3, 286, 143, 0, 2381, 2380, 1, 0, - 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2571, 1, 0, 0, 0, 2383, 2385, 5, 157, - 0, 0, 2384, 2386, 3, 730, 365, 0, 2385, 2384, 1, 0, 0, 0, 2385, 2386, 1, - 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2388, 3, 1424, 712, 0, 2388, 2389, - 3, 124, 62, 0, 2389, 2571, 1, 0, 0, 0, 2390, 2392, 5, 157, 0, 0, 2391, - 2393, 3, 730, 365, 0, 2392, 2391, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, - 2394, 1, 0, 0, 0, 2394, 2395, 3, 1424, 712, 0, 2395, 2396, 5, 210, 0, 0, - 2396, 2397, 5, 238, 0, 0, 2397, 2571, 1, 0, 0, 0, 2398, 2400, 5, 157, 0, - 0, 2399, 2401, 3, 730, 365, 0, 2400, 2399, 1, 0, 0, 0, 2400, 2401, 1, 0, - 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2403, 3, 1424, 712, 0, 2403, 2404, - 5, 210, 0, 0, 2404, 2405, 5, 238, 0, 0, 2405, 2406, 5, 239, 0, 0, 2406, - 2407, 5, 409, 0, 0, 2407, 2571, 1, 0, 0, 0, 2408, 2410, 5, 210, 0, 0, 2409, - 2411, 3, 730, 365, 0, 2410, 2409, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, - 2412, 1, 0, 0, 0, 2412, 2413, 5, 239, 0, 0, 2413, 2414, 5, 409, 0, 0, 2414, - 2416, 3, 1424, 712, 0, 2415, 2417, 3, 108, 54, 0, 2416, 2415, 1, 0, 0, - 0, 2416, 2417, 1, 0, 0, 0, 2417, 2571, 1, 0, 0, 0, 2418, 2420, 5, 210, - 0, 0, 2419, 2421, 3, 730, 365, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, - 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2424, 3, 1424, 712, 0, 2423, 2425, - 3, 108, 54, 0, 2424, 2423, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2571, - 1, 0, 0, 0, 2426, 2428, 5, 157, 0, 0, 2427, 2429, 3, 730, 365, 0, 2428, - 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, - 2432, 3, 1424, 712, 0, 2431, 2433, 3, 732, 366, 0, 2432, 2431, 1, 0, 0, - 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2435, 5, 372, - 0, 0, 2435, 2437, 3, 1124, 562, 0, 2436, 2438, 3, 110, 55, 0, 2437, 2436, - 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2440, 1, 0, 0, 0, 2439, 2441, - 3, 112, 56, 0, 2440, 2439, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2571, - 1, 0, 0, 0, 2442, 2444, 5, 157, 0, 0, 2443, 2445, 3, 730, 365, 0, 2444, - 2443, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, - 2447, 3, 1424, 712, 0, 2447, 2448, 3, 346, 173, 0, 2448, 2571, 1, 0, 0, - 0, 2449, 2450, 5, 152, 0, 0, 2450, 2571, 3, 210, 105, 0, 2451, 2452, 5, - 157, 0, 0, 2452, 2453, 5, 45, 0, 0, 2453, 2454, 3, 1392, 696, 0, 2454, - 2455, 3, 442, 221, 0, 2455, 2571, 1, 0, 0, 0, 2456, 2457, 5, 384, 0, 0, - 2457, 2458, 5, 45, 0, 0, 2458, 2571, 3, 1392, 696, 0, 2459, 2460, 5, 210, - 0, 0, 2460, 2461, 5, 45, 0, 0, 2461, 2462, 5, 239, 0, 0, 2462, 2463, 5, - 409, 0, 0, 2463, 2465, 3, 1392, 696, 0, 2464, 2466, 3, 108, 54, 0, 2465, - 2464, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2571, 1, 0, 0, 0, 2467, - 2468, 5, 210, 0, 0, 2468, 2469, 5, 45, 0, 0, 2469, 2471, 3, 1392, 696, - 0, 2470, 2472, 3, 108, 54, 0, 2471, 2470, 1, 0, 0, 0, 2471, 2472, 1, 0, - 0, 0, 2472, 2571, 1, 0, 0, 0, 2473, 2474, 5, 345, 0, 0, 2474, 2475, 5, - 391, 0, 0, 2475, 2571, 5, 289, 0, 0, 2476, 2477, 5, 177, 0, 0, 2477, 2478, - 5, 80, 0, 0, 2478, 2571, 3, 1392, 696, 0, 2479, 2480, 5, 345, 0, 0, 2480, - 2481, 5, 391, 0, 0, 2481, 2571, 5, 177, 0, 0, 2482, 2483, 5, 345, 0, 0, - 2483, 2571, 5, 460, 0, 0, 2484, 2485, 5, 345, 0, 0, 2485, 2571, 5, 379, - 0, 0, 2486, 2487, 5, 212, 0, 0, 2487, 2488, 5, 369, 0, 0, 2488, 2571, 3, - 1392, 696, 0, 2489, 2490, 5, 212, 0, 0, 2490, 2491, 5, 158, 0, 0, 2491, - 2492, 5, 369, 0, 0, 2492, 2571, 3, 1392, 696, 0, 2493, 2494, 5, 212, 0, - 0, 2494, 2495, 5, 324, 0, 0, 2495, 2496, 5, 369, 0, 0, 2496, 2571, 3, 1392, - 696, 0, 2497, 2498, 5, 212, 0, 0, 2498, 2499, 5, 369, 0, 0, 2499, 2571, - 5, 30, 0, 0, 2500, 2501, 5, 212, 0, 0, 2501, 2502, 5, 369, 0, 0, 2502, - 2571, 5, 99, 0, 0, 2503, 2504, 5, 205, 0, 0, 2504, 2505, 5, 369, 0, 0, - 2505, 2571, 3, 1392, 696, 0, 2506, 2507, 5, 205, 0, 0, 2507, 2508, 5, 369, - 0, 0, 2508, 2571, 5, 30, 0, 0, 2509, 2510, 5, 205, 0, 0, 2510, 2511, 5, - 369, 0, 0, 2511, 2571, 5, 99, 0, 0, 2512, 2513, 5, 212, 0, 0, 2513, 2514, - 5, 333, 0, 0, 2514, 2571, 3, 1392, 696, 0, 2515, 2516, 5, 212, 0, 0, 2516, - 2517, 5, 158, 0, 0, 2517, 2518, 5, 333, 0, 0, 2518, 2571, 3, 1392, 696, - 0, 2519, 2520, 5, 212, 0, 0, 2520, 2521, 5, 324, 0, 0, 2521, 2522, 5, 333, - 0, 0, 2522, 2571, 3, 1392, 696, 0, 2523, 2524, 5, 205, 0, 0, 2524, 2525, - 5, 333, 0, 0, 2525, 2571, 3, 1392, 696, 0, 2526, 2527, 5, 247, 0, 0, 2527, - 2571, 3, 1388, 694, 0, 2528, 2529, 5, 281, 0, 0, 2529, 2530, 5, 247, 0, - 0, 2530, 2571, 3, 1388, 694, 0, 2531, 2532, 5, 287, 0, 0, 2532, 2571, 3, - 526, 263, 0, 2533, 2534, 5, 77, 0, 0, 2534, 2571, 5, 287, 0, 0, 2535, 2536, - 5, 294, 0, 0, 2536, 2537, 5, 94, 0, 0, 2537, 2571, 3, 1420, 710, 0, 2538, - 2539, 5, 345, 0, 0, 2539, 2540, 5, 150, 0, 0, 2540, 2541, 5, 467, 0, 0, - 2541, 2571, 3, 1392, 696, 0, 2542, 2543, 5, 345, 0, 0, 2543, 2544, 5, 363, - 0, 0, 2544, 2571, 3, 1392, 696, 0, 2545, 2546, 5, 345, 0, 0, 2546, 2571, - 3, 116, 58, 0, 2547, 2548, 5, 325, 0, 0, 2548, 2571, 3, 116, 58, 0, 2549, - 2550, 5, 324, 0, 0, 2550, 2551, 5, 238, 0, 0, 2551, 2571, 3, 114, 57, 0, - 2552, 2553, 5, 212, 0, 0, 2553, 2554, 5, 428, 0, 0, 2554, 2555, 5, 261, - 0, 0, 2555, 2571, 5, 339, 0, 0, 2556, 2557, 5, 205, 0, 0, 2557, 2558, 5, - 428, 0, 0, 2558, 2559, 5, 261, 0, 0, 2559, 2571, 5, 339, 0, 0, 2560, 2561, - 5, 228, 0, 0, 2561, 2562, 5, 428, 0, 0, 2562, 2563, 5, 261, 0, 0, 2563, - 2571, 5, 339, 0, 0, 2564, 2565, 5, 281, 0, 0, 2565, 2566, 5, 228, 0, 0, - 2566, 2567, 5, 428, 0, 0, 2567, 2568, 5, 261, 0, 0, 2568, 2571, 5, 339, - 0, 0, 2569, 2571, 3, 346, 173, 0, 2570, 2268, 1, 0, 0, 0, 2570, 2270, 1, - 0, 0, 0, 2570, 2275, 1, 0, 0, 0, 2570, 2278, 1, 0, 0, 0, 2570, 2284, 1, - 0, 0, 0, 2570, 2291, 1, 0, 0, 0, 2570, 2300, 1, 0, 0, 0, 2570, 2309, 1, - 0, 0, 0, 2570, 2317, 1, 0, 0, 0, 2570, 2327, 1, 0, 0, 0, 2570, 2336, 1, - 0, 0, 0, 2570, 2345, 1, 0, 0, 0, 2570, 2353, 1, 0, 0, 0, 2570, 2361, 1, - 0, 0, 0, 2570, 2370, 1, 0, 0, 0, 2570, 2383, 1, 0, 0, 0, 2570, 2390, 1, - 0, 0, 0, 2570, 2398, 1, 0, 0, 0, 2570, 2408, 1, 0, 0, 0, 2570, 2418, 1, - 0, 0, 0, 2570, 2426, 1, 0, 0, 0, 2570, 2442, 1, 0, 0, 0, 2570, 2449, 1, - 0, 0, 0, 2570, 2451, 1, 0, 0, 0, 2570, 2456, 1, 0, 0, 0, 2570, 2459, 1, - 0, 0, 0, 2570, 2467, 1, 0, 0, 0, 2570, 2473, 1, 0, 0, 0, 2570, 2476, 1, - 0, 0, 0, 2570, 2479, 1, 0, 0, 0, 2570, 2482, 1, 0, 0, 0, 2570, 2484, 1, - 0, 0, 0, 2570, 2486, 1, 0, 0, 0, 2570, 2489, 1, 0, 0, 0, 2570, 2493, 1, - 0, 0, 0, 2570, 2497, 1, 0, 0, 0, 2570, 2500, 1, 0, 0, 0, 2570, 2503, 1, - 0, 0, 0, 2570, 2506, 1, 0, 0, 0, 2570, 2509, 1, 0, 0, 0, 2570, 2512, 1, - 0, 0, 0, 2570, 2515, 1, 0, 0, 0, 2570, 2519, 1, 0, 0, 0, 2570, 2523, 1, - 0, 0, 0, 2570, 2526, 1, 0, 0, 0, 2570, 2528, 1, 0, 0, 0, 2570, 2531, 1, - 0, 0, 0, 2570, 2533, 1, 0, 0, 0, 2570, 2535, 1, 0, 0, 0, 2570, 2538, 1, - 0, 0, 0, 2570, 2542, 1, 0, 0, 0, 2570, 2545, 1, 0, 0, 0, 2570, 2547, 1, - 0, 0, 0, 2570, 2549, 1, 0, 0, 0, 2570, 2552, 1, 0, 0, 0, 2570, 2556, 1, - 0, 0, 0, 2570, 2560, 1, 0, 0, 0, 2570, 2564, 1, 0, 0, 0, 2570, 2569, 1, - 0, 0, 0, 2571, 105, 1, 0, 0, 0, 2572, 2573, 5, 345, 0, 0, 2573, 2574, 5, - 53, 0, 0, 2574, 2578, 3, 1168, 584, 0, 2575, 2576, 5, 210, 0, 0, 2576, - 2578, 5, 53, 0, 0, 2577, 2572, 1, 0, 0, 0, 2577, 2575, 1, 0, 0, 0, 2578, - 107, 1, 0, 0, 0, 2579, 2580, 7, 10, 0, 0, 2580, 109, 1, 0, 0, 0, 2581, - 2582, 5, 43, 0, 0, 2582, 2583, 3, 526, 263, 0, 2583, 111, 1, 0, 0, 0, 2584, - 2585, 5, 100, 0, 0, 2585, 2586, 3, 1168, 584, 0, 2586, 113, 1, 0, 0, 0, - 2587, 2594, 5, 282, 0, 0, 2588, 2594, 5, 132, 0, 0, 2589, 2594, 5, 53, - 0, 0, 2590, 2591, 5, 100, 0, 0, 2591, 2592, 5, 245, 0, 0, 2592, 2594, 3, - 1392, 696, 0, 2593, 2587, 1, 0, 0, 0, 2593, 2588, 1, 0, 0, 0, 2593, 2589, - 1, 0, 0, 0, 2593, 2590, 1, 0, 0, 0, 2594, 115, 1, 0, 0, 0, 2595, 2596, - 5, 2, 0, 0, 2596, 2597, 3, 120, 60, 0, 2597, 2598, 5, 3, 0, 0, 2598, 117, - 1, 0, 0, 0, 2599, 2600, 5, 105, 0, 0, 2600, 2601, 3, 116, 58, 0, 2601, - 119, 1, 0, 0, 0, 2602, 2607, 3, 122, 61, 0, 2603, 2604, 5, 6, 0, 0, 2604, - 2606, 3, 122, 61, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2609, 1, 0, 0, 0, 2607, - 2605, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 121, 1, 0, 0, 0, 2609, - 2607, 1, 0, 0, 0, 2610, 2619, 3, 1432, 716, 0, 2611, 2612, 5, 10, 0, 0, - 2612, 2620, 3, 468, 234, 0, 2613, 2614, 5, 11, 0, 0, 2614, 2617, 3, 1432, - 716, 0, 2615, 2616, 5, 10, 0, 0, 2616, 2618, 3, 468, 234, 0, 2617, 2615, - 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2620, 1, 0, 0, 0, 2619, 2611, - 1, 0, 0, 0, 2619, 2613, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 123, - 1, 0, 0, 0, 2621, 2623, 3, 126, 63, 0, 2622, 2621, 1, 0, 0, 0, 2623, 2624, - 1, 0, 0, 0, 2624, 2622, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 125, - 1, 0, 0, 0, 2626, 2631, 5, 326, 0, 0, 2627, 2629, 3, 16, 8, 0, 2628, 2627, - 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2632, - 3, 294, 147, 0, 2631, 2628, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2640, - 1, 0, 0, 0, 2633, 2637, 5, 345, 0, 0, 2634, 2638, 3, 290, 145, 0, 2635, - 2636, 5, 459, 0, 0, 2636, 2638, 3, 200, 100, 0, 2637, 2634, 1, 0, 0, 0, - 2637, 2635, 1, 0, 0, 0, 2638, 2640, 1, 0, 0, 0, 2639, 2626, 1, 0, 0, 0, - 2639, 2633, 1, 0, 0, 0, 2640, 127, 1, 0, 0, 0, 2641, 2642, 5, 62, 0, 0, - 2642, 2643, 5, 436, 0, 0, 2643, 2644, 5, 105, 0, 0, 2644, 2645, 5, 2, 0, - 0, 2645, 2646, 3, 132, 66, 0, 2646, 2647, 5, 3, 0, 0, 2647, 2668, 1, 0, - 0, 0, 2648, 2649, 5, 62, 0, 0, 2649, 2650, 5, 436, 0, 0, 2650, 2651, 5, - 68, 0, 0, 2651, 2652, 5, 2, 0, 0, 2652, 2653, 3, 1330, 665, 0, 2653, 2654, - 5, 3, 0, 0, 2654, 2668, 1, 0, 0, 0, 2655, 2656, 5, 62, 0, 0, 2656, 2657, - 5, 436, 0, 0, 2657, 2658, 5, 64, 0, 0, 2658, 2659, 5, 2, 0, 0, 2659, 2660, - 3, 1330, 665, 0, 2660, 2661, 5, 3, 0, 0, 2661, 2662, 5, 94, 0, 0, 2662, - 2663, 5, 2, 0, 0, 2663, 2664, 3, 1330, 665, 0, 2664, 2665, 5, 3, 0, 0, - 2665, 2668, 1, 0, 0, 0, 2666, 2668, 5, 53, 0, 0, 2667, 2641, 1, 0, 0, 0, - 2667, 2648, 1, 0, 0, 0, 2667, 2655, 1, 0, 0, 0, 2667, 2666, 1, 0, 0, 0, - 2668, 129, 1, 0, 0, 0, 2669, 2670, 3, 1430, 715, 0, 2670, 2671, 3, 1408, - 704, 0, 2671, 131, 1, 0, 0, 0, 2672, 2677, 3, 130, 65, 0, 2673, 2674, 5, - 6, 0, 0, 2674, 2676, 3, 130, 65, 0, 2675, 2673, 1, 0, 0, 0, 2676, 2679, - 1, 0, 0, 0, 2677, 2675, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 133, - 1, 0, 0, 0, 2679, 2677, 1, 0, 0, 0, 2680, 2681, 5, 157, 0, 0, 2681, 2682, - 5, 372, 0, 0, 2682, 2683, 3, 526, 263, 0, 2683, 2684, 3, 136, 68, 0, 2684, - 135, 1, 0, 0, 0, 2685, 2690, 3, 138, 69, 0, 2686, 2687, 5, 6, 0, 0, 2687, - 2689, 3, 138, 69, 0, 2688, 2686, 1, 0, 0, 0, 2689, 2692, 1, 0, 0, 0, 2690, - 2688, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 137, 1, 0, 0, 0, 2692, - 2690, 1, 0, 0, 0, 2693, 2694, 5, 152, 0, 0, 2694, 2695, 5, 162, 0, 0, 2695, - 2697, 3, 1108, 554, 0, 2696, 2698, 3, 108, 54, 0, 2697, 2696, 1, 0, 0, - 0, 2697, 2698, 1, 0, 0, 0, 2698, 2724, 1, 0, 0, 0, 2699, 2700, 5, 210, - 0, 0, 2700, 2703, 5, 162, 0, 0, 2701, 2702, 5, 239, 0, 0, 2702, 2704, 5, - 409, 0, 0, 2703, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2705, - 1, 0, 0, 0, 2705, 2707, 3, 1424, 712, 0, 2706, 2708, 3, 108, 54, 0, 2707, - 2706, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2724, 1, 0, 0, 0, 2709, - 2710, 5, 157, 0, 0, 2710, 2711, 5, 162, 0, 0, 2711, 2713, 3, 1424, 712, - 0, 2712, 2714, 3, 732, 366, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, - 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2716, 5, 372, 0, 0, 2716, 2718, 3, - 1124, 562, 0, 2717, 2719, 3, 110, 55, 0, 2718, 2717, 1, 0, 0, 0, 2718, - 2719, 1, 0, 0, 0, 2719, 2721, 1, 0, 0, 0, 2720, 2722, 3, 108, 54, 0, 2721, - 2720, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2724, 1, 0, 0, 0, 2723, - 2693, 1, 0, 0, 0, 2723, 2699, 1, 0, 0, 0, 2723, 2709, 1, 0, 0, 0, 2724, - 139, 1, 0, 0, 0, 2725, 2728, 5, 176, 0, 0, 2726, 2729, 3, 962, 481, 0, - 2727, 2729, 5, 30, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2727, 1, 0, 0, 0, - 2729, 141, 1, 0, 0, 0, 2730, 2732, 5, 188, 0, 0, 2731, 2733, 3, 156, 78, - 0, 2732, 2731, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2734, 1, 0, 0, - 0, 2734, 2736, 3, 1388, 694, 0, 2735, 2737, 3, 216, 108, 0, 2736, 2735, - 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, - 3, 144, 72, 0, 2739, 2741, 3, 146, 73, 0, 2740, 2739, 1, 0, 0, 0, 2740, - 2741, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2744, 3, 148, 74, 0, 2743, - 2745, 3, 158, 79, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, - 2747, 1, 0, 0, 0, 2746, 2748, 3, 16, 8, 0, 2747, 2746, 1, 0, 0, 0, 2747, - 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2751, 3, 150, 75, 0, 2750, - 2752, 3, 1100, 550, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, - 2752, 2768, 1, 0, 0, 0, 2753, 2754, 5, 188, 0, 0, 2754, 2755, 5, 2, 0, - 0, 2755, 2756, 3, 902, 451, 0, 2756, 2757, 5, 3, 0, 0, 2757, 2759, 5, 94, - 0, 0, 2758, 2760, 3, 146, 73, 0, 2759, 2758, 1, 0, 0, 0, 2759, 2760, 1, - 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2763, 3, 148, 74, 0, 2762, 2764, - 3, 16, 8, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, - 1, 0, 0, 0, 2765, 2766, 3, 150, 75, 0, 2766, 2768, 1, 0, 0, 0, 2767, 2730, - 1, 0, 0, 0, 2767, 2753, 1, 0, 0, 0, 2768, 143, 1, 0, 0, 0, 2769, 2770, - 7, 11, 0, 0, 2770, 145, 1, 0, 0, 0, 2771, 2772, 5, 309, 0, 0, 2772, 147, - 1, 0, 0, 0, 2773, 2777, 3, 1410, 705, 0, 2774, 2777, 5, 355, 0, 0, 2775, - 2777, 5, 356, 0, 0, 2776, 2773, 1, 0, 0, 0, 2776, 2774, 1, 0, 0, 0, 2776, - 2775, 1, 0, 0, 0, 2777, 149, 1, 0, 0, 0, 2778, 2784, 3, 152, 76, 0, 2779, - 2780, 5, 2, 0, 0, 2780, 2781, 3, 162, 81, 0, 2781, 2782, 5, 3, 0, 0, 2782, - 2784, 1, 0, 0, 0, 2783, 2778, 1, 0, 0, 0, 2783, 2779, 1, 0, 0, 0, 2784, - 151, 1, 0, 0, 0, 2785, 2787, 3, 154, 77, 0, 2786, 2785, 1, 0, 0, 0, 2787, - 2790, 1, 0, 0, 0, 2788, 2786, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, - 153, 1, 0, 0, 0, 2790, 2788, 1, 0, 0, 0, 2791, 2831, 5, 126, 0, 0, 2792, - 2831, 5, 131, 0, 0, 2793, 2795, 5, 202, 0, 0, 2794, 2796, 3, 842, 421, - 0, 2795, 2794, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, - 0, 2797, 2831, 3, 1410, 705, 0, 2798, 2800, 5, 78, 0, 0, 2799, 2801, 3, - 842, 421, 0, 2800, 2799, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2802, - 1, 0, 0, 0, 2802, 2831, 3, 1410, 705, 0, 2803, 2831, 5, 190, 0, 0, 2804, - 2831, 5, 235, 0, 0, 2805, 2807, 5, 310, 0, 0, 2806, 2808, 3, 842, 421, - 0, 2807, 2806, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2809, 1, 0, 0, - 0, 2809, 2831, 3, 1410, 705, 0, 2810, 2812, 5, 216, 0, 0, 2811, 2813, 3, - 842, 421, 0, 2812, 2811, 1, 0, 0, 0, 2812, 2813, 1, 0, 0, 0, 2813, 2814, - 1, 0, 0, 0, 2814, 2831, 3, 1410, 705, 0, 2815, 2816, 5, 228, 0, 0, 2816, - 2817, 5, 310, 0, 0, 2817, 2831, 3, 218, 109, 0, 2818, 2819, 5, 228, 0, - 0, 2819, 2820, 5, 310, 0, 0, 2820, 2831, 5, 9, 0, 0, 2821, 2822, 5, 228, - 0, 0, 2822, 2823, 5, 77, 0, 0, 2823, 2824, 5, 78, 0, 0, 2824, 2831, 3, - 218, 109, 0, 2825, 2826, 5, 228, 0, 0, 2826, 2827, 5, 78, 0, 0, 2827, 2831, - 3, 218, 109, 0, 2828, 2829, 5, 213, 0, 0, 2829, 2831, 3, 1410, 705, 0, - 2830, 2791, 1, 0, 0, 0, 2830, 2792, 1, 0, 0, 0, 2830, 2793, 1, 0, 0, 0, - 2830, 2798, 1, 0, 0, 0, 2830, 2803, 1, 0, 0, 0, 2830, 2804, 1, 0, 0, 0, - 2830, 2805, 1, 0, 0, 0, 2830, 2810, 1, 0, 0, 0, 2830, 2815, 1, 0, 0, 0, - 2830, 2818, 1, 0, 0, 0, 2830, 2821, 1, 0, 0, 0, 2830, 2825, 1, 0, 0, 0, - 2830, 2828, 1, 0, 0, 0, 2831, 155, 1, 0, 0, 0, 2832, 2833, 5, 126, 0, 0, - 2833, 157, 1, 0, 0, 0, 2834, 2836, 3, 160, 80, 0, 2835, 2834, 1, 0, 0, - 0, 2835, 2836, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2838, 5, 203, - 0, 0, 2838, 2839, 3, 1410, 705, 0, 2839, 159, 1, 0, 0, 0, 2840, 2841, 5, - 100, 0, 0, 2841, 161, 1, 0, 0, 0, 2842, 2847, 3, 164, 82, 0, 2843, 2844, - 5, 6, 0, 0, 2844, 2846, 3, 164, 82, 0, 2845, 2843, 1, 0, 0, 0, 2846, 2849, - 1, 0, 0, 0, 2847, 2845, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 163, - 1, 0, 0, 0, 2849, 2847, 1, 0, 0, 0, 2850, 2852, 3, 1432, 716, 0, 2851, - 2853, 3, 166, 83, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, - 165, 1, 0, 0, 0, 2854, 2862, 3, 66, 33, 0, 2855, 2862, 3, 294, 147, 0, - 2856, 2862, 5, 9, 0, 0, 2857, 2858, 5, 2, 0, 0, 2858, 2859, 3, 168, 84, - 0, 2859, 2860, 5, 3, 0, 0, 2860, 2862, 1, 0, 0, 0, 2861, 2854, 1, 0, 0, - 0, 2861, 2855, 1, 0, 0, 0, 2861, 2856, 1, 0, 0, 0, 2861, 2857, 1, 0, 0, - 0, 2862, 167, 1, 0, 0, 0, 2863, 2868, 3, 170, 85, 0, 2864, 2865, 5, 6, - 0, 0, 2865, 2867, 3, 170, 85, 0, 2866, 2864, 1, 0, 0, 0, 2867, 2870, 1, - 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2869, 1, 0, 0, 0, 2869, 169, 1, - 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2871, 2872, 3, 66, 33, 0, 2872, 171, 1, - 0, 0, 0, 2873, 2875, 5, 46, 0, 0, 2874, 2876, 3, 174, 87, 0, 2875, 2874, - 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2881, - 5, 92, 0, 0, 2878, 2879, 5, 239, 0, 0, 2879, 2880, 5, 77, 0, 0, 2880, 2882, - 5, 409, 0, 0, 2881, 2878, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, - 1, 0, 0, 0, 2883, 2949, 3, 1388, 694, 0, 2884, 2886, 5, 2, 0, 0, 2885, - 2887, 3, 176, 88, 0, 2886, 2885, 1, 0, 0, 0, 2886, 2887, 1, 0, 0, 0, 2887, - 2888, 1, 0, 0, 0, 2888, 2890, 5, 3, 0, 0, 2889, 2891, 3, 240, 120, 0, 2890, - 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2893, 1, 0, 0, 0, 2892, - 2894, 3, 242, 121, 0, 2893, 2892, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, - 2896, 1, 0, 0, 0, 2895, 2897, 3, 250, 125, 0, 2896, 2895, 1, 0, 0, 0, 2896, - 2897, 1, 0, 0, 0, 2897, 2899, 1, 0, 0, 0, 2898, 2900, 3, 252, 126, 0, 2899, - 2898, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 1, 0, 0, 0, 2901, - 2903, 3, 254, 127, 0, 2902, 2901, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, - 2905, 1, 0, 0, 0, 2904, 2906, 3, 256, 128, 0, 2905, 2904, 1, 0, 0, 0, 2905, - 2906, 1, 0, 0, 0, 2906, 2950, 1, 0, 0, 0, 2907, 2908, 5, 287, 0, 0, 2908, - 2910, 3, 526, 263, 0, 2909, 2911, 3, 178, 89, 0, 2910, 2909, 1, 0, 0, 0, - 2910, 2911, 1, 0, 0, 0, 2911, 2913, 1, 0, 0, 0, 2912, 2914, 3, 242, 121, - 0, 2913, 2912, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2916, 1, 0, 0, - 0, 2915, 2917, 3, 250, 125, 0, 2916, 2915, 1, 0, 0, 0, 2916, 2917, 1, 0, - 0, 0, 2917, 2919, 1, 0, 0, 0, 2918, 2920, 3, 252, 126, 0, 2919, 2918, 1, - 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2922, 1, 0, 0, 0, 2921, 2923, 3, - 254, 127, 0, 2922, 2921, 1, 0, 0, 0, 2922, 2923, 1, 0, 0, 0, 2923, 2925, - 1, 0, 0, 0, 2924, 2926, 3, 256, 128, 0, 2925, 2924, 1, 0, 0, 0, 2925, 2926, - 1, 0, 0, 0, 2926, 2950, 1, 0, 0, 0, 2927, 2928, 5, 297, 0, 0, 2928, 2929, - 5, 287, 0, 0, 2929, 2931, 3, 1388, 694, 0, 2930, 2932, 3, 178, 89, 0, 2931, - 2930, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, - 2935, 3, 128, 64, 0, 2934, 2936, 3, 242, 121, 0, 2935, 2934, 1, 0, 0, 0, - 2935, 2936, 1, 0, 0, 0, 2936, 2938, 1, 0, 0, 0, 2937, 2939, 3, 250, 125, - 0, 2938, 2937, 1, 0, 0, 0, 2938, 2939, 1, 0, 0, 0, 2939, 2941, 1, 0, 0, - 0, 2940, 2942, 3, 252, 126, 0, 2941, 2940, 1, 0, 0, 0, 2941, 2942, 1, 0, - 0, 0, 2942, 2944, 1, 0, 0, 0, 2943, 2945, 3, 254, 127, 0, 2944, 2943, 1, - 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2947, 1, 0, 0, 0, 2946, 2948, 3, - 256, 128, 0, 2947, 2946, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2950, - 1, 0, 0, 0, 2949, 2884, 1, 0, 0, 0, 2949, 2907, 1, 0, 0, 0, 2949, 2927, - 1, 0, 0, 0, 2950, 173, 1, 0, 0, 0, 2951, 2959, 5, 366, 0, 0, 2952, 2959, - 5, 364, 0, 0, 2953, 2954, 5, 264, 0, 0, 2954, 2959, 7, 12, 0, 0, 2955, - 2956, 5, 232, 0, 0, 2956, 2959, 7, 12, 0, 0, 2957, 2959, 5, 379, 0, 0, - 2958, 2951, 1, 0, 0, 0, 2958, 2952, 1, 0, 0, 0, 2958, 2953, 1, 0, 0, 0, - 2958, 2955, 1, 0, 0, 0, 2958, 2957, 1, 0, 0, 0, 2959, 175, 1, 0, 0, 0, - 2960, 2961, 3, 180, 90, 0, 2961, 177, 1, 0, 0, 0, 2962, 2963, 5, 2, 0, - 0, 2963, 2964, 3, 182, 91, 0, 2964, 2965, 5, 3, 0, 0, 2965, 179, 1, 0, - 0, 0, 2966, 2971, 3, 184, 92, 0, 2967, 2968, 5, 6, 0, 0, 2968, 2970, 3, - 184, 92, 0, 2969, 2967, 1, 0, 0, 0, 2970, 2973, 1, 0, 0, 0, 2971, 2969, - 1, 0, 0, 0, 2971, 2972, 1, 0, 0, 0, 2972, 181, 1, 0, 0, 0, 2973, 2971, - 1, 0, 0, 0, 2974, 2979, 3, 186, 93, 0, 2975, 2976, 5, 6, 0, 0, 2976, 2978, - 3, 186, 93, 0, 2977, 2975, 1, 0, 0, 0, 2978, 2981, 1, 0, 0, 0, 2979, 2977, - 1, 0, 0, 0, 2979, 2980, 1, 0, 0, 0, 2980, 183, 1, 0, 0, 0, 2981, 2979, - 1, 0, 0, 0, 2982, 2986, 3, 210, 105, 0, 2983, 2986, 3, 204, 102, 0, 2984, - 2986, 3, 188, 94, 0, 2985, 2982, 1, 0, 0, 0, 2985, 2983, 1, 0, 0, 0, 2985, - 2984, 1, 0, 0, 0, 2986, 185, 1, 0, 0, 0, 2987, 2990, 3, 190, 95, 0, 2988, - 2990, 3, 210, 105, 0, 2989, 2987, 1, 0, 0, 0, 2989, 2988, 1, 0, 0, 0, 2990, - 187, 1, 0, 0, 0, 2991, 2992, 3, 1424, 712, 0, 2992, 2994, 3, 1124, 562, - 0, 2993, 2995, 3, 342, 171, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, - 0, 0, 2995, 2996, 1, 0, 0, 0, 2996, 2997, 3, 192, 96, 0, 2997, 189, 1, - 0, 0, 0, 2998, 3001, 3, 1424, 712, 0, 2999, 3000, 5, 105, 0, 0, 3000, 3002, - 5, 292, 0, 0, 3001, 2999, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, - 1, 0, 0, 0, 3003, 3004, 3, 192, 96, 0, 3004, 191, 1, 0, 0, 0, 3005, 3007, - 3, 194, 97, 0, 3006, 3005, 1, 0, 0, 0, 3007, 3010, 1, 0, 0, 0, 3008, 3006, - 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 193, 1, 0, 0, 0, 3010, 3008, - 1, 0, 0, 0, 3011, 3012, 5, 45, 0, 0, 3012, 3013, 3, 1392, 696, 0, 3013, - 3014, 3, 196, 98, 0, 3014, 3020, 1, 0, 0, 0, 3015, 3020, 3, 196, 98, 0, - 3016, 3020, 3, 202, 101, 0, 3017, 3018, 5, 43, 0, 0, 3018, 3020, 3, 526, - 263, 0, 3019, 3011, 1, 0, 0, 0, 3019, 3015, 1, 0, 0, 0, 3019, 3016, 1, - 0, 0, 0, 3019, 3017, 1, 0, 0, 0, 3020, 195, 1, 0, 0, 0, 3021, 3022, 5, - 77, 0, 0, 3022, 3077, 5, 78, 0, 0, 3023, 3077, 5, 78, 0, 0, 3024, 3026, - 5, 98, 0, 0, 3025, 3027, 3, 198, 99, 0, 3026, 3025, 1, 0, 0, 0, 3026, 3027, - 1, 0, 0, 0, 3027, 3029, 1, 0, 0, 0, 3028, 3030, 3, 670, 335, 0, 3029, 3028, - 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3032, 1, 0, 0, 0, 3031, 3033, - 3, 258, 129, 0, 3032, 3031, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3077, - 1, 0, 0, 0, 3034, 3035, 5, 85, 0, 0, 3035, 3037, 5, 255, 0, 0, 3036, 3038, - 3, 670, 335, 0, 3037, 3036, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3040, - 1, 0, 0, 0, 3039, 3041, 3, 258, 129, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, - 1, 0, 0, 0, 3041, 3077, 1, 0, 0, 0, 3042, 3043, 5, 42, 0, 0, 3043, 3044, - 5, 2, 0, 0, 3044, 3045, 3, 1168, 584, 0, 3045, 3047, 5, 3, 0, 0, 3046, - 3048, 3, 214, 107, 0, 3047, 3046, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, - 3077, 1, 0, 0, 0, 3049, 3050, 5, 53, 0, 0, 3050, 3077, 3, 1210, 605, 0, - 3051, 3052, 5, 459, 0, 0, 3052, 3053, 3, 200, 100, 0, 3053, 3063, 5, 36, - 0, 0, 3054, 3056, 5, 238, 0, 0, 3055, 3057, 3, 286, 143, 0, 3056, 3055, - 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 3064, 1, 0, 0, 0, 3058, 3059, - 5, 2, 0, 0, 3059, 3060, 3, 1168, 584, 0, 3060, 3061, 5, 3, 0, 0, 3061, - 3062, 5, 461, 0, 0, 3062, 3064, 1, 0, 0, 0, 3063, 3054, 1, 0, 0, 0, 3063, - 3058, 1, 0, 0, 0, 3064, 3077, 1, 0, 0, 0, 3065, 3066, 5, 86, 0, 0, 3066, - 3068, 3, 1388, 694, 0, 3067, 3069, 3, 216, 108, 0, 3068, 3067, 1, 0, 0, - 0, 3068, 3069, 1, 0, 0, 0, 3069, 3071, 1, 0, 0, 0, 3070, 3072, 3, 224, - 112, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3074, 1, - 0, 0, 0, 3073, 3075, 3, 232, 116, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, - 1, 0, 0, 0, 3075, 3077, 1, 0, 0, 0, 3076, 3021, 1, 0, 0, 0, 3076, 3023, - 1, 0, 0, 0, 3076, 3024, 1, 0, 0, 0, 3076, 3034, 1, 0, 0, 0, 3076, 3042, - 1, 0, 0, 0, 3076, 3049, 1, 0, 0, 0, 3076, 3051, 1, 0, 0, 0, 3076, 3065, - 1, 0, 0, 0, 3077, 197, 1, 0, 0, 0, 3078, 3080, 5, 285, 0, 0, 3079, 3081, - 5, 77, 0, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, - 1, 0, 0, 0, 3082, 3083, 5, 56, 0, 0, 3083, 199, 1, 0, 0, 0, 3084, 3088, - 5, 158, 0, 0, 3085, 3086, 5, 166, 0, 0, 3086, 3088, 5, 53, 0, 0, 3087, - 3084, 1, 0, 0, 0, 3087, 3085, 1, 0, 0, 0, 3088, 201, 1, 0, 0, 0, 3089, - 3095, 5, 54, 0, 0, 3090, 3091, 5, 77, 0, 0, 3091, 3095, 5, 54, 0, 0, 3092, - 3093, 5, 69, 0, 0, 3093, 3095, 7, 8, 0, 0, 3094, 3089, 1, 0, 0, 0, 3094, - 3090, 1, 0, 0, 0, 3094, 3092, 1, 0, 0, 0, 3095, 203, 1, 0, 0, 0, 3096, - 3097, 5, 139, 0, 0, 3097, 3098, 3, 1388, 694, 0, 3098, 3099, 3, 206, 103, - 0, 3099, 205, 1, 0, 0, 0, 3100, 3101, 7, 13, 0, 0, 3101, 3103, 3, 208, - 104, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3106, 1, 0, 0, 0, 3104, 3102, 1, - 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 207, 1, 0, 0, 0, 3106, 3104, 1, - 0, 0, 0, 3107, 3108, 7, 14, 0, 0, 3108, 209, 1, 0, 0, 0, 3109, 3110, 5, - 45, 0, 0, 3110, 3111, 3, 1392, 696, 0, 3111, 3112, 3, 212, 106, 0, 3112, - 3115, 1, 0, 0, 0, 3113, 3115, 3, 212, 106, 0, 3114, 3109, 1, 0, 0, 0, 3114, - 3113, 1, 0, 0, 0, 3115, 211, 1, 0, 0, 0, 3116, 3117, 5, 42, 0, 0, 3117, - 3118, 5, 2, 0, 0, 3118, 3119, 3, 1168, 584, 0, 3119, 3120, 5, 3, 0, 0, - 3120, 3121, 3, 442, 221, 0, 3121, 3206, 1, 0, 0, 0, 3122, 3124, 5, 98, - 0, 0, 3123, 3125, 3, 198, 99, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, - 0, 0, 0, 3125, 3143, 1, 0, 0, 0, 3126, 3127, 5, 2, 0, 0, 3127, 3128, 3, - 218, 109, 0, 3128, 3130, 5, 3, 0, 0, 3129, 3131, 3, 222, 111, 0, 3130, - 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3133, 1, 0, 0, 0, 3132, - 3134, 3, 670, 335, 0, 3133, 3132, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, - 3136, 1, 0, 0, 0, 3135, 3137, 3, 258, 129, 0, 3136, 3135, 1, 0, 0, 0, 3136, - 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 3, 442, 221, 0, 3139, - 3144, 1, 0, 0, 0, 3140, 3141, 3, 260, 130, 0, 3141, 3142, 3, 442, 221, - 0, 3142, 3144, 1, 0, 0, 0, 3143, 3126, 1, 0, 0, 0, 3143, 3140, 1, 0, 0, - 0, 3144, 3206, 1, 0, 0, 0, 3145, 3146, 5, 85, 0, 0, 3146, 3164, 5, 255, - 0, 0, 3147, 3148, 5, 2, 0, 0, 3148, 3149, 3, 218, 109, 0, 3149, 3151, 5, - 3, 0, 0, 3150, 3152, 3, 222, 111, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, - 1, 0, 0, 0, 3152, 3154, 1, 0, 0, 0, 3153, 3155, 3, 670, 335, 0, 3154, 3153, - 1, 0, 0, 0, 3154, 3155, 1, 0, 0, 0, 3155, 3157, 1, 0, 0, 0, 3156, 3158, - 3, 258, 129, 0, 3157, 3156, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, - 1, 0, 0, 0, 3159, 3160, 3, 442, 221, 0, 3160, 3165, 1, 0, 0, 0, 3161, 3162, - 3, 260, 130, 0, 3162, 3163, 3, 442, 221, 0, 3163, 3165, 1, 0, 0, 0, 3164, - 3147, 1, 0, 0, 0, 3164, 3161, 1, 0, 0, 0, 3165, 3206, 1, 0, 0, 0, 3166, - 3168, 5, 218, 0, 0, 3167, 3169, 3, 602, 301, 0, 3168, 3167, 1, 0, 0, 0, - 3168, 3169, 1, 0, 0, 0, 3169, 3170, 1, 0, 0, 0, 3170, 3171, 5, 2, 0, 0, - 3171, 3172, 3, 226, 113, 0, 3172, 3174, 5, 3, 0, 0, 3173, 3175, 3, 222, - 111, 0, 3174, 3173, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3177, 1, - 0, 0, 0, 3176, 3178, 3, 670, 335, 0, 3177, 3176, 1, 0, 0, 0, 3177, 3178, - 1, 0, 0, 0, 3178, 3180, 1, 0, 0, 0, 3179, 3181, 3, 258, 129, 0, 3180, 3179, - 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3183, 1, 0, 0, 0, 3182, 3184, - 3, 230, 115, 0, 3183, 3182, 1, 0, 0, 0, 3183, 3184, 1, 0, 0, 0, 3184, 3185, - 1, 0, 0, 0, 3185, 3186, 3, 442, 221, 0, 3186, 3206, 1, 0, 0, 0, 3187, 3188, - 5, 63, 0, 0, 3188, 3189, 5, 255, 0, 0, 3189, 3190, 5, 2, 0, 0, 3190, 3191, - 3, 218, 109, 0, 3191, 3192, 5, 3, 0, 0, 3192, 3193, 5, 86, 0, 0, 3193, - 3195, 3, 1388, 694, 0, 3194, 3196, 3, 216, 108, 0, 3195, 3194, 1, 0, 0, - 0, 3195, 3196, 1, 0, 0, 0, 3196, 3198, 1, 0, 0, 0, 3197, 3199, 3, 224, - 112, 0, 3198, 3197, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3201, 1, - 0, 0, 0, 3200, 3202, 3, 232, 116, 0, 3201, 3200, 1, 0, 0, 0, 3201, 3202, - 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3204, 3, 442, 221, 0, 3204, 3206, - 1, 0, 0, 0, 3205, 3116, 1, 0, 0, 0, 3205, 3122, 1, 0, 0, 0, 3205, 3145, - 1, 0, 0, 0, 3205, 3166, 1, 0, 0, 0, 3205, 3187, 1, 0, 0, 0, 3206, 213, - 1, 0, 0, 0, 3207, 3208, 5, 281, 0, 0, 3208, 3209, 5, 247, 0, 0, 3209, 215, - 1, 0, 0, 0, 3210, 3211, 5, 2, 0, 0, 3211, 3212, 3, 218, 109, 0, 3212, 3213, - 5, 3, 0, 0, 3213, 217, 1, 0, 0, 0, 3214, 3219, 3, 220, 110, 0, 3215, 3216, - 5, 6, 0, 0, 3216, 3218, 3, 220, 110, 0, 3217, 3215, 1, 0, 0, 0, 3218, 3221, - 1, 0, 0, 0, 3219, 3217, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 219, - 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3222, 3223, 3, 1424, 712, 0, 3223, - 221, 1, 0, 0, 0, 3224, 3225, 5, 462, 0, 0, 3225, 3226, 5, 2, 0, 0, 3226, - 3227, 3, 218, 109, 0, 3227, 3228, 5, 3, 0, 0, 3228, 223, 1, 0, 0, 0, 3229, - 3230, 5, 268, 0, 0, 3230, 3231, 7, 15, 0, 0, 3231, 225, 1, 0, 0, 0, 3232, - 3237, 3, 228, 114, 0, 3233, 3234, 5, 6, 0, 0, 3234, 3236, 3, 228, 114, - 0, 3235, 3233, 1, 0, 0, 0, 3236, 3239, 1, 0, 0, 0, 3237, 3235, 1, 0, 0, - 0, 3237, 3238, 1, 0, 0, 0, 3238, 227, 1, 0, 0, 0, 3239, 3237, 1, 0, 0, - 0, 3240, 3241, 3, 608, 304, 0, 3241, 3248, 5, 105, 0, 0, 3242, 3249, 3, - 690, 345, 0, 3243, 3244, 5, 290, 0, 0, 3244, 3245, 5, 2, 0, 0, 3245, 3246, - 3, 690, 345, 0, 3246, 3247, 5, 3, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3242, - 1, 0, 0, 0, 3248, 3243, 1, 0, 0, 0, 3249, 229, 1, 0, 0, 0, 3250, 3251, - 5, 103, 0, 0, 3251, 3252, 5, 2, 0, 0, 3252, 3253, 3, 1168, 584, 0, 3253, - 3254, 5, 3, 0, 0, 3254, 231, 1, 0, 0, 0, 3255, 3264, 3, 234, 117, 0, 3256, - 3264, 3, 236, 118, 0, 3257, 3258, 3, 234, 117, 0, 3258, 3259, 3, 236, 118, - 0, 3259, 3264, 1, 0, 0, 0, 3260, 3261, 3, 236, 118, 0, 3261, 3262, 3, 234, - 117, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3255, 1, 0, 0, 0, 3263, 3256, 1, - 0, 0, 0, 3263, 3257, 1, 0, 0, 0, 3263, 3260, 1, 0, 0, 0, 3264, 233, 1, - 0, 0, 0, 3265, 3266, 5, 80, 0, 0, 3266, 3267, 5, 381, 0, 0, 3267, 3268, - 3, 238, 119, 0, 3268, 235, 1, 0, 0, 0, 3269, 3270, 5, 80, 0, 0, 3270, 3271, - 5, 201, 0, 0, 3271, 3272, 3, 238, 119, 0, 3272, 237, 1, 0, 0, 0, 3273, - 3274, 5, 281, 0, 0, 3274, 3283, 5, 151, 0, 0, 3275, 3283, 5, 327, 0, 0, - 3276, 3283, 5, 169, 0, 0, 3277, 3278, 5, 345, 0, 0, 3278, 3280, 7, 16, - 0, 0, 3279, 3281, 3, 216, 108, 0, 3280, 3279, 1, 0, 0, 0, 3280, 3281, 1, - 0, 0, 0, 3281, 3283, 1, 0, 0, 0, 3282, 3273, 1, 0, 0, 0, 3282, 3275, 1, - 0, 0, 0, 3282, 3276, 1, 0, 0, 0, 3282, 3277, 1, 0, 0, 0, 3283, 239, 1, - 0, 0, 0, 3284, 3285, 5, 248, 0, 0, 3285, 3286, 5, 2, 0, 0, 3286, 3287, - 3, 1386, 693, 0, 3287, 3288, 5, 3, 0, 0, 3288, 241, 1, 0, 0, 0, 3289, 3290, - 3, 244, 122, 0, 3290, 243, 1, 0, 0, 0, 3291, 3292, 5, 297, 0, 0, 3292, - 3293, 5, 166, 0, 0, 3293, 3294, 3, 1424, 712, 0, 3294, 3295, 5, 2, 0, 0, - 3295, 3296, 3, 246, 123, 0, 3296, 3297, 5, 3, 0, 0, 3297, 245, 1, 0, 0, - 0, 3298, 3303, 3, 248, 124, 0, 3299, 3300, 5, 6, 0, 0, 3300, 3302, 3, 248, - 124, 0, 3301, 3299, 1, 0, 0, 0, 3302, 3305, 1, 0, 0, 0, 3303, 3301, 1, - 0, 0, 0, 3303, 3304, 1, 0, 0, 0, 3304, 247, 1, 0, 0, 0, 3305, 3303, 1, - 0, 0, 0, 3306, 3308, 3, 1424, 712, 0, 3307, 3309, 3, 614, 307, 0, 3308, - 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, - 3312, 3, 616, 308, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, - 3330, 1, 0, 0, 0, 3313, 3315, 3, 1220, 610, 0, 3314, 3316, 3, 614, 307, - 0, 3315, 3314, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 3318, 1, 0, 0, - 0, 3317, 3319, 3, 616, 308, 0, 3318, 3317, 1, 0, 0, 0, 3318, 3319, 1, 0, - 0, 0, 3319, 3330, 1, 0, 0, 0, 3320, 3321, 5, 2, 0, 0, 3321, 3322, 3, 1168, - 584, 0, 3322, 3324, 5, 3, 0, 0, 3323, 3325, 3, 614, 307, 0, 3324, 3323, - 1, 0, 0, 0, 3324, 3325, 1, 0, 0, 0, 3325, 3327, 1, 0, 0, 0, 3326, 3328, - 3, 616, 308, 0, 3327, 3326, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3330, - 1, 0, 0, 0, 3329, 3306, 1, 0, 0, 0, 3329, 3313, 1, 0, 0, 0, 3329, 3320, - 1, 0, 0, 0, 3330, 249, 1, 0, 0, 0, 3331, 3332, 5, 100, 0, 0, 3332, 3333, - 3, 1392, 696, 0, 3333, 251, 1, 0, 0, 0, 3334, 3335, 5, 105, 0, 0, 3335, - 3339, 3, 116, 58, 0, 3336, 3337, 5, 391, 0, 0, 3337, 3339, 5, 289, 0, 0, - 3338, 3334, 1, 0, 0, 0, 3338, 3336, 1, 0, 0, 0, 3339, 253, 1, 0, 0, 0, - 3340, 3341, 5, 80, 0, 0, 3341, 3347, 5, 180, 0, 0, 3342, 3348, 5, 210, - 0, 0, 3343, 3344, 5, 201, 0, 0, 3344, 3348, 5, 332, 0, 0, 3345, 3346, 5, - 304, 0, 0, 3346, 3348, 5, 332, 0, 0, 3347, 3342, 1, 0, 0, 0, 3347, 3343, - 1, 0, 0, 0, 3347, 3345, 1, 0, 0, 0, 3348, 255, 1, 0, 0, 0, 3349, 3350, - 5, 363, 0, 0, 3350, 3351, 3, 1392, 696, 0, 3351, 257, 1, 0, 0, 0, 3352, - 3353, 5, 100, 0, 0, 3353, 3354, 5, 245, 0, 0, 3354, 3355, 5, 363, 0, 0, - 3355, 3356, 3, 1392, 696, 0, 3356, 259, 1, 0, 0, 0, 3357, 3358, 5, 100, - 0, 0, 3358, 3359, 5, 245, 0, 0, 3359, 3360, 3, 1392, 696, 0, 3360, 261, - 1, 0, 0, 0, 3361, 3362, 5, 46, 0, 0, 3362, 3366, 5, 354, 0, 0, 3363, 3364, - 5, 239, 0, 0, 3364, 3365, 5, 77, 0, 0, 3365, 3367, 5, 409, 0, 0, 3366, - 3363, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3368, 1, 0, 0, 0, 3368, - 3370, 3, 526, 263, 0, 3369, 3371, 3, 878, 439, 0, 3370, 3369, 1, 0, 0, - 0, 3370, 3371, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 3373, 5, 80, 0, - 0, 3373, 3374, 3, 1330, 665, 0, 3374, 3375, 5, 64, 0, 0, 3375, 3376, 3, - 1064, 532, 0, 3376, 263, 1, 0, 0, 0, 3377, 3378, 5, 157, 0, 0, 3378, 3381, - 5, 354, 0, 0, 3379, 3380, 5, 239, 0, 0, 3380, 3382, 5, 409, 0, 0, 3381, - 3379, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, - 3384, 3, 526, 263, 0, 3384, 3385, 5, 345, 0, 0, 3385, 3386, 5, 354, 0, - 0, 3386, 3387, 3, 1416, 708, 0, 3387, 265, 1, 0, 0, 0, 3388, 3390, 5, 46, - 0, 0, 3389, 3391, 3, 174, 87, 0, 3390, 3389, 1, 0, 0, 0, 3390, 3391, 1, - 0, 0, 0, 3391, 3392, 1, 0, 0, 0, 3392, 3396, 5, 92, 0, 0, 3393, 3394, 5, - 239, 0, 0, 3394, 3395, 5, 77, 0, 0, 3395, 3397, 5, 409, 0, 0, 3396, 3393, - 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3398, 1, 0, 0, 0, 3398, 3399, - 3, 268, 134, 0, 3399, 3400, 5, 36, 0, 0, 3400, 3402, 3, 968, 484, 0, 3401, - 3403, 3, 270, 135, 0, 3402, 3401, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, - 267, 1, 0, 0, 0, 3404, 3406, 3, 1388, 694, 0, 3405, 3407, 3, 216, 108, - 0, 3406, 3405, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3409, 1, 0, 0, - 0, 3408, 3410, 3, 250, 125, 0, 3409, 3408, 1, 0, 0, 0, 3409, 3410, 1, 0, - 0, 0, 3410, 3412, 1, 0, 0, 0, 3411, 3413, 3, 252, 126, 0, 3412, 3411, 1, - 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3415, 1, 0, 0, 0, 3414, 3416, 3, - 254, 127, 0, 3415, 3414, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3418, - 1, 0, 0, 0, 3417, 3419, 3, 256, 128, 0, 3418, 3417, 1, 0, 0, 0, 3418, 3419, - 1, 0, 0, 0, 3419, 269, 1, 0, 0, 0, 3420, 3424, 5, 105, 0, 0, 3421, 3425, - 5, 193, 0, 0, 3422, 3423, 5, 281, 0, 0, 3423, 3425, 5, 193, 0, 0, 3424, - 3421, 1, 0, 0, 0, 3424, 3422, 1, 0, 0, 0, 3425, 271, 1, 0, 0, 0, 3426, - 3428, 5, 46, 0, 0, 3427, 3429, 3, 276, 138, 0, 3428, 3427, 1, 0, 0, 0, - 3428, 3429, 1, 0, 0, 0, 3429, 3430, 1, 0, 0, 0, 3430, 3431, 5, 270, 0, - 0, 3431, 3435, 5, 388, 0, 0, 3432, 3433, 5, 239, 0, 0, 3433, 3434, 5, 77, - 0, 0, 3434, 3436, 5, 409, 0, 0, 3435, 3432, 1, 0, 0, 0, 3435, 3436, 1, - 0, 0, 0, 3436, 3437, 1, 0, 0, 0, 3437, 3438, 3, 274, 137, 0, 3438, 3439, - 5, 36, 0, 0, 3439, 3441, 3, 968, 484, 0, 3440, 3442, 3, 270, 135, 0, 3441, - 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 273, 1, 0, 0, 0, 3443, - 3445, 3, 1388, 694, 0, 3444, 3446, 3, 216, 108, 0, 3445, 3444, 1, 0, 0, - 0, 3445, 3446, 1, 0, 0, 0, 3446, 3448, 1, 0, 0, 0, 3447, 3449, 3, 250, - 125, 0, 3448, 3447, 1, 0, 0, 0, 3448, 3449, 1, 0, 0, 0, 3449, 3451, 1, - 0, 0, 0, 3450, 3452, 3, 118, 59, 0, 3451, 3450, 1, 0, 0, 0, 3451, 3452, - 1, 0, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3455, 3, 256, 128, 0, 3454, 3453, - 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 275, 1, 0, 0, 0, 3456, 3457, - 5, 379, 0, 0, 3457, 277, 1, 0, 0, 0, 3458, 3459, 5, 317, 0, 0, 3459, 3460, - 5, 270, 0, 0, 3460, 3462, 5, 388, 0, 0, 3461, 3463, 3, 598, 299, 0, 3462, - 3461, 1, 0, 0, 0, 3462, 3463, 1, 0, 0, 0, 3463, 3464, 1, 0, 0, 0, 3464, - 3466, 3, 1388, 694, 0, 3465, 3467, 3, 270, 135, 0, 3466, 3465, 1, 0, 0, - 0, 3466, 3467, 1, 0, 0, 0, 3467, 279, 1, 0, 0, 0, 3468, 3470, 5, 46, 0, - 0, 3469, 3471, 3, 174, 87, 0, 3470, 3469, 1, 0, 0, 0, 3470, 3471, 1, 0, - 0, 0, 3471, 3472, 1, 0, 0, 0, 3472, 3476, 5, 340, 0, 0, 3473, 3474, 5, - 239, 0, 0, 3474, 3475, 5, 77, 0, 0, 3475, 3477, 5, 409, 0, 0, 3476, 3473, - 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 3480, - 3, 1388, 694, 0, 3479, 3481, 3, 284, 142, 0, 3480, 3479, 1, 0, 0, 0, 3480, - 3481, 1, 0, 0, 0, 3481, 281, 1, 0, 0, 0, 3482, 3483, 5, 157, 0, 0, 3483, - 3486, 5, 340, 0, 0, 3484, 3485, 5, 239, 0, 0, 3485, 3487, 5, 409, 0, 0, - 3486, 3484, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, - 3488, 3489, 3, 1388, 694, 0, 3489, 3490, 3, 288, 144, 0, 3490, 283, 1, - 0, 0, 0, 3491, 3492, 3, 288, 144, 0, 3492, 285, 1, 0, 0, 0, 3493, 3494, - 5, 2, 0, 0, 3494, 3495, 3, 288, 144, 0, 3495, 3496, 5, 3, 0, 0, 3496, 287, - 1, 0, 0, 0, 3497, 3499, 3, 290, 145, 0, 3498, 3497, 1, 0, 0, 0, 3499, 3500, - 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 289, - 1, 0, 0, 0, 3502, 3503, 5, 36, 0, 0, 3503, 3539, 3, 1128, 564, 0, 3504, - 3505, 5, 167, 0, 0, 3505, 3539, 3, 294, 147, 0, 3506, 3539, 5, 192, 0, - 0, 3507, 3509, 5, 244, 0, 0, 3508, 3510, 3, 292, 146, 0, 3509, 3508, 1, - 0, 0, 0, 3509, 3510, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3539, 3, - 294, 147, 0, 3512, 3539, 5, 460, 0, 0, 3513, 3514, 5, 271, 0, 0, 3514, - 3539, 3, 294, 147, 0, 3515, 3516, 5, 274, 0, 0, 3516, 3539, 3, 294, 147, - 0, 3517, 3518, 5, 281, 0, 0, 3518, 3539, 7, 17, 0, 0, 3519, 3520, 5, 293, - 0, 0, 3520, 3521, 5, 166, 0, 0, 3521, 3539, 3, 526, 263, 0, 3522, 3523, - 5, 340, 0, 0, 3523, 3524, 5, 278, 0, 0, 3524, 3539, 3, 526, 263, 0, 3525, - 3527, 5, 352, 0, 0, 3526, 3528, 3, 16, 8, 0, 3527, 3526, 1, 0, 0, 0, 3527, - 3528, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3539, 3, 294, 147, 0, 3530, - 3532, 5, 326, 0, 0, 3531, 3533, 3, 16, 8, 0, 3532, 3531, 1, 0, 0, 0, 3532, - 3533, 1, 0, 0, 0, 3533, 3535, 1, 0, 0, 0, 3534, 3536, 3, 294, 147, 0, 3535, - 3534, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3539, 1, 0, 0, 0, 3537, - 3539, 5, 379, 0, 0, 3538, 3502, 1, 0, 0, 0, 3538, 3504, 1, 0, 0, 0, 3538, - 3506, 1, 0, 0, 0, 3538, 3507, 1, 0, 0, 0, 3538, 3512, 1, 0, 0, 0, 3538, - 3513, 1, 0, 0, 0, 3538, 3515, 1, 0, 0, 0, 3538, 3517, 1, 0, 0, 0, 3538, - 3519, 1, 0, 0, 0, 3538, 3522, 1, 0, 0, 0, 3538, 3525, 1, 0, 0, 0, 3538, - 3530, 1, 0, 0, 0, 3538, 3537, 1, 0, 0, 0, 3539, 291, 1, 0, 0, 0, 3540, - 3541, 5, 166, 0, 0, 3541, 293, 1, 0, 0, 0, 3542, 3549, 3, 1406, 703, 0, - 3543, 3544, 5, 12, 0, 0, 3544, 3549, 3, 1406, 703, 0, 3545, 3546, 5, 13, - 0, 0, 3546, 3549, 3, 1406, 703, 0, 3547, 3549, 3, 1416, 708, 0, 3548, 3542, - 1, 0, 0, 0, 3548, 3543, 1, 0, 0, 0, 3548, 3545, 1, 0, 0, 0, 3548, 3547, - 1, 0, 0, 0, 3549, 295, 1, 0, 0, 0, 3550, 3555, 3, 294, 147, 0, 3551, 3552, - 5, 6, 0, 0, 3552, 3554, 3, 294, 147, 0, 3553, 3551, 1, 0, 0, 0, 3554, 3557, - 1, 0, 0, 0, 3555, 3553, 1, 0, 0, 0, 3555, 3556, 1, 0, 0, 0, 3556, 297, - 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3558, 3560, 5, 46, 0, 0, 3559, 3561, - 3, 624, 312, 0, 3560, 3559, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, - 1, 0, 0, 0, 3562, 3564, 3, 300, 150, 0, 3563, 3562, 1, 0, 0, 0, 3563, 3564, - 1, 0, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3567, 3, 310, 155, 0, 3566, 3565, - 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3569, - 5, 257, 0, 0, 3569, 3578, 3, 1392, 696, 0, 3570, 3571, 5, 234, 0, 0, 3571, - 3573, 3, 302, 151, 0, 3572, 3574, 3, 304, 152, 0, 3573, 3572, 1, 0, 0, - 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 1, 0, 0, 0, 3575, 3577, 3, 308, - 154, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3579, 1, - 0, 0, 0, 3578, 3570, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 299, 1, - 0, 0, 0, 3580, 3581, 5, 371, 0, 0, 3581, 301, 1, 0, 0, 0, 3582, 3584, 3, - 1392, 696, 0, 3583, 3585, 3, 528, 264, 0, 3584, 3583, 1, 0, 0, 0, 3584, - 3585, 1, 0, 0, 0, 3585, 303, 1, 0, 0, 0, 3586, 3587, 5, 249, 0, 0, 3587, - 3588, 3, 302, 151, 0, 3588, 305, 1, 0, 0, 0, 3589, 3590, 5, 385, 0, 0, - 3590, 3594, 3, 302, 151, 0, 3591, 3592, 5, 281, 0, 0, 3592, 3594, 5, 385, - 0, 0, 3593, 3589, 1, 0, 0, 0, 3593, 3591, 1, 0, 0, 0, 3594, 307, 1, 0, - 0, 0, 3595, 3596, 3, 306, 153, 0, 3596, 309, 1, 0, 0, 0, 3597, 3598, 5, - 307, 0, 0, 3598, 311, 1, 0, 0, 0, 3599, 3600, 5, 46, 0, 0, 3600, 3601, - 5, 363, 0, 0, 3601, 3603, 3, 1392, 696, 0, 3602, 3604, 3, 314, 157, 0, - 3603, 3602, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, - 3605, 3606, 5, 265, 0, 0, 3606, 3608, 3, 1410, 705, 0, 3607, 3609, 3, 118, - 59, 0, 3608, 3607, 1, 0, 0, 0, 3608, 3609, 1, 0, 0, 0, 3609, 313, 1, 0, - 0, 0, 3610, 3611, 5, 294, 0, 0, 3611, 3612, 3, 1420, 710, 0, 3612, 315, - 1, 0, 0, 0, 3613, 3614, 5, 210, 0, 0, 3614, 3617, 5, 363, 0, 0, 3615, 3616, - 5, 239, 0, 0, 3616, 3618, 5, 409, 0, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3618, - 1, 0, 0, 0, 3618, 3619, 1, 0, 0, 0, 3619, 3620, 3, 1392, 696, 0, 3620, - 317, 1, 0, 0, 0, 3621, 3622, 5, 46, 0, 0, 3622, 3626, 5, 223, 0, 0, 3623, - 3624, 5, 239, 0, 0, 3624, 3625, 5, 77, 0, 0, 3625, 3627, 5, 409, 0, 0, - 3626, 3623, 1, 0, 0, 0, 3626, 3627, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, - 3628, 3630, 3, 1392, 696, 0, 3629, 3631, 3, 16, 8, 0, 3630, 3629, 1, 0, - 0, 0, 3630, 3631, 1, 0, 0, 0, 3631, 3632, 1, 0, 0, 0, 3632, 3633, 3, 320, - 160, 0, 3633, 319, 1, 0, 0, 0, 3634, 3636, 3, 322, 161, 0, 3635, 3634, - 1, 0, 0, 0, 3636, 3639, 1, 0, 0, 0, 3637, 3635, 1, 0, 0, 0, 3637, 3638, - 1, 0, 0, 0, 3638, 321, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3640, 3641, - 5, 335, 0, 0, 3641, 3648, 3, 1392, 696, 0, 3642, 3643, 5, 387, 0, 0, 3643, - 3648, 3, 72, 36, 0, 3644, 3645, 5, 64, 0, 0, 3645, 3648, 3, 72, 36, 0, - 3646, 3648, 5, 169, 0, 0, 3647, 3640, 1, 0, 0, 0, 3647, 3642, 1, 0, 0, - 0, 3647, 3644, 1, 0, 0, 0, 3647, 3646, 1, 0, 0, 0, 3648, 323, 1, 0, 0, - 0, 3649, 3650, 5, 157, 0, 0, 3650, 3651, 5, 223, 0, 0, 3651, 3652, 3, 1392, - 696, 0, 3652, 3653, 5, 381, 0, 0, 3653, 3654, 3, 326, 163, 0, 3654, 325, - 1, 0, 0, 0, 3655, 3657, 3, 328, 164, 0, 3656, 3655, 1, 0, 0, 0, 3657, 3660, - 1, 0, 0, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 327, - 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3661, 3662, 5, 94, 0, 0, 3662, 3663, - 3, 72, 36, 0, 3663, 329, 1, 0, 0, 0, 3664, 3665, 5, 157, 0, 0, 3665, 3666, - 5, 223, 0, 0, 3666, 3667, 3, 1392, 696, 0, 3667, 3668, 3, 40, 20, 0, 3668, - 3669, 3, 518, 259, 0, 3669, 3670, 3, 1392, 696, 0, 3670, 3769, 1, 0, 0, - 0, 3671, 3672, 5, 157, 0, 0, 3672, 3673, 5, 223, 0, 0, 3673, 3674, 3, 1392, - 696, 0, 3674, 3675, 3, 40, 20, 0, 3675, 3676, 3, 516, 258, 0, 3676, 3677, - 3, 526, 263, 0, 3677, 3769, 1, 0, 0, 0, 3678, 3679, 5, 157, 0, 0, 3679, - 3680, 5, 223, 0, 0, 3680, 3681, 3, 1392, 696, 0, 3681, 3682, 3, 40, 20, - 0, 3682, 3683, 5, 155, 0, 0, 3683, 3684, 3, 656, 328, 0, 3684, 3769, 1, - 0, 0, 0, 3685, 3686, 5, 157, 0, 0, 3686, 3687, 5, 223, 0, 0, 3687, 3688, - 3, 1392, 696, 0, 3688, 3689, 3, 40, 20, 0, 3689, 3690, 5, 41, 0, 0, 3690, - 3691, 5, 2, 0, 0, 3691, 3692, 3, 1124, 562, 0, 3692, 3693, 5, 36, 0, 0, - 3693, 3694, 3, 1124, 562, 0, 3694, 3695, 5, 3, 0, 0, 3695, 3769, 1, 0, - 0, 0, 3696, 3697, 5, 157, 0, 0, 3697, 3698, 5, 223, 0, 0, 3698, 3699, 3, - 1392, 696, 0, 3699, 3700, 3, 40, 20, 0, 3700, 3701, 5, 208, 0, 0, 3701, - 3702, 3, 1124, 562, 0, 3702, 3769, 1, 0, 0, 0, 3703, 3704, 5, 157, 0, 0, - 3704, 3705, 5, 223, 0, 0, 3705, 3706, 3, 1392, 696, 0, 3706, 3707, 3, 40, - 20, 0, 3707, 3708, 5, 230, 0, 0, 3708, 3709, 3, 632, 316, 0, 3709, 3769, - 1, 0, 0, 0, 3710, 3711, 5, 157, 0, 0, 3711, 3712, 5, 223, 0, 0, 3712, 3713, - 3, 1392, 696, 0, 3713, 3714, 3, 40, 20, 0, 3714, 3715, 5, 290, 0, 0, 3715, - 3716, 3, 694, 347, 0, 3716, 3769, 1, 0, 0, 0, 3717, 3718, 5, 157, 0, 0, - 3718, 3719, 5, 223, 0, 0, 3719, 3720, 3, 1392, 696, 0, 3720, 3721, 3, 40, - 20, 0, 3721, 3722, 5, 290, 0, 0, 3722, 3723, 5, 175, 0, 0, 3723, 3724, - 3, 526, 263, 0, 3724, 3725, 5, 100, 0, 0, 3725, 3726, 3, 1392, 696, 0, - 3726, 3769, 1, 0, 0, 0, 3727, 3728, 5, 157, 0, 0, 3728, 3729, 5, 223, 0, - 0, 3729, 3730, 3, 1392, 696, 0, 3730, 3731, 3, 40, 20, 0, 3731, 3732, 5, - 290, 0, 0, 3732, 3733, 5, 225, 0, 0, 3733, 3734, 3, 526, 263, 0, 3734, - 3735, 5, 100, 0, 0, 3735, 3736, 3, 1392, 696, 0, 3736, 3769, 1, 0, 0, 0, - 3737, 3738, 5, 157, 0, 0, 3738, 3739, 5, 223, 0, 0, 3739, 3740, 3, 1392, - 696, 0, 3740, 3741, 3, 40, 20, 0, 3741, 3742, 5, 308, 0, 0, 3742, 3743, - 3, 632, 316, 0, 3743, 3769, 1, 0, 0, 0, 3744, 3745, 5, 157, 0, 0, 3745, - 3746, 5, 223, 0, 0, 3746, 3747, 3, 1392, 696, 0, 3747, 3748, 3, 40, 20, - 0, 3748, 3749, 5, 463, 0, 0, 3749, 3750, 3, 632, 316, 0, 3750, 3769, 1, - 0, 0, 0, 3751, 3752, 5, 157, 0, 0, 3752, 3753, 5, 223, 0, 0, 3753, 3754, - 3, 1392, 696, 0, 3754, 3755, 3, 40, 20, 0, 3755, 3756, 5, 464, 0, 0, 3756, - 3757, 5, 62, 0, 0, 3757, 3758, 3, 1124, 562, 0, 3758, 3759, 5, 257, 0, - 0, 3759, 3760, 3, 1392, 696, 0, 3760, 3769, 1, 0, 0, 0, 3761, 3762, 5, - 157, 0, 0, 3762, 3763, 5, 223, 0, 0, 3763, 3764, 3, 1392, 696, 0, 3764, - 3765, 3, 40, 20, 0, 3765, 3766, 5, 372, 0, 0, 3766, 3767, 3, 1124, 562, - 0, 3767, 3769, 1, 0, 0, 0, 3768, 3664, 1, 0, 0, 0, 3768, 3671, 1, 0, 0, - 0, 3768, 3678, 1, 0, 0, 0, 3768, 3685, 1, 0, 0, 0, 3768, 3696, 1, 0, 0, - 0, 3768, 3703, 1, 0, 0, 0, 3768, 3710, 1, 0, 0, 0, 3768, 3717, 1, 0, 0, - 0, 3768, 3727, 1, 0, 0, 0, 3768, 3737, 1, 0, 0, 0, 3768, 3744, 1, 0, 0, - 0, 3768, 3751, 1, 0, 0, 0, 3768, 3761, 1, 0, 0, 0, 3769, 331, 1, 0, 0, - 0, 3770, 3771, 5, 46, 0, 0, 3771, 3772, 5, 63, 0, 0, 3772, 3773, 5, 193, - 0, 0, 3773, 3774, 5, 393, 0, 0, 3774, 3776, 3, 1392, 696, 0, 3775, 3777, - 3, 338, 169, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3779, - 1, 0, 0, 0, 3778, 3780, 3, 342, 171, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, - 1, 0, 0, 0, 3780, 333, 1, 0, 0, 0, 3781, 3782, 5, 234, 0, 0, 3782, 3790, - 3, 302, 151, 0, 3783, 3784, 5, 281, 0, 0, 3784, 3790, 5, 234, 0, 0, 3785, - 3786, 5, 385, 0, 0, 3786, 3790, 3, 302, 151, 0, 3787, 3788, 5, 281, 0, - 0, 3788, 3790, 5, 385, 0, 0, 3789, 3781, 1, 0, 0, 0, 3789, 3783, 1, 0, - 0, 0, 3789, 3785, 1, 0, 0, 0, 3789, 3787, 1, 0, 0, 0, 3790, 335, 1, 0, - 0, 0, 3791, 3793, 3, 334, 167, 0, 3792, 3791, 1, 0, 0, 0, 3793, 3794, 1, - 0, 0, 0, 3794, 3792, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 337, 1, - 0, 0, 0, 3796, 3797, 3, 336, 168, 0, 3797, 339, 1, 0, 0, 0, 3798, 3799, - 5, 157, 0, 0, 3799, 3800, 5, 63, 0, 0, 3800, 3801, 5, 193, 0, 0, 3801, - 3802, 5, 393, 0, 0, 3802, 3804, 3, 1392, 696, 0, 3803, 3805, 3, 338, 169, - 0, 3804, 3803, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, - 0, 3806, 3807, 3, 346, 173, 0, 3807, 3816, 1, 0, 0, 0, 3808, 3809, 5, 157, - 0, 0, 3809, 3810, 5, 63, 0, 0, 3810, 3811, 5, 193, 0, 0, 3811, 3812, 5, - 393, 0, 0, 3812, 3813, 3, 1392, 696, 0, 3813, 3814, 3, 336, 168, 0, 3814, - 3816, 1, 0, 0, 0, 3815, 3798, 1, 0, 0, 0, 3815, 3808, 1, 0, 0, 0, 3816, - 341, 1, 0, 0, 0, 3817, 3818, 5, 292, 0, 0, 3818, 3819, 5, 2, 0, 0, 3819, - 3820, 3, 344, 172, 0, 3820, 3821, 5, 3, 0, 0, 3821, 343, 1, 0, 0, 0, 3822, - 3827, 3, 352, 176, 0, 3823, 3824, 5, 6, 0, 0, 3824, 3826, 3, 352, 176, - 0, 3825, 3823, 1, 0, 0, 0, 3826, 3829, 1, 0, 0, 0, 3827, 3825, 1, 0, 0, - 0, 3827, 3828, 1, 0, 0, 0, 3828, 345, 1, 0, 0, 0, 3829, 3827, 1, 0, 0, - 0, 3830, 3831, 5, 292, 0, 0, 3831, 3832, 5, 2, 0, 0, 3832, 3833, 3, 348, - 174, 0, 3833, 3834, 5, 3, 0, 0, 3834, 347, 1, 0, 0, 0, 3835, 3840, 3, 350, - 175, 0, 3836, 3837, 5, 6, 0, 0, 3837, 3839, 3, 350, 175, 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, 349, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3851, - 3, 352, 176, 0, 3844, 3845, 5, 345, 0, 0, 3845, 3851, 3, 352, 176, 0, 3846, - 3847, 5, 152, 0, 0, 3847, 3851, 3, 352, 176, 0, 3848, 3849, 5, 210, 0, - 0, 3849, 3851, 3, 354, 177, 0, 3850, 3843, 1, 0, 0, 0, 3850, 3844, 1, 0, - 0, 0, 3850, 3846, 1, 0, 0, 0, 3850, 3848, 1, 0, 0, 0, 3851, 351, 1, 0, - 0, 0, 3852, 3853, 3, 354, 177, 0, 3853, 3854, 3, 356, 178, 0, 3854, 353, - 1, 0, 0, 0, 3855, 3856, 3, 1432, 716, 0, 3856, 355, 1, 0, 0, 0, 3857, 3858, - 3, 1410, 705, 0, 3858, 357, 1, 0, 0, 0, 3859, 3860, 5, 46, 0, 0, 3860, - 3861, 5, 343, 0, 0, 3861, 3863, 3, 1392, 696, 0, 3862, 3864, 3, 360, 180, - 0, 3863, 3862, 1, 0, 0, 0, 3863, 3864, 1, 0, 0, 0, 3864, 3866, 1, 0, 0, - 0, 3865, 3867, 3, 364, 182, 0, 3866, 3865, 1, 0, 0, 0, 3866, 3867, 1, 0, - 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3869, 5, 63, 0, 0, 3869, 3870, 5, 193, - 0, 0, 3870, 3871, 5, 393, 0, 0, 3871, 3873, 3, 1392, 696, 0, 3872, 3874, - 3, 342, 171, 0, 3873, 3872, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3895, - 1, 0, 0, 0, 3875, 3876, 5, 46, 0, 0, 3876, 3877, 5, 343, 0, 0, 3877, 3878, - 5, 239, 0, 0, 3878, 3879, 5, 77, 0, 0, 3879, 3880, 5, 409, 0, 0, 3880, - 3882, 3, 1392, 696, 0, 3881, 3883, 3, 360, 180, 0, 3882, 3881, 1, 0, 0, - 0, 3882, 3883, 1, 0, 0, 0, 3883, 3885, 1, 0, 0, 0, 3884, 3886, 3, 364, - 182, 0, 3885, 3884, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 3887, 1, - 0, 0, 0, 3887, 3888, 5, 63, 0, 0, 3888, 3889, 5, 193, 0, 0, 3889, 3890, - 5, 393, 0, 0, 3890, 3892, 3, 1392, 696, 0, 3891, 3893, 3, 342, 171, 0, - 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3895, 1, 0, 0, 0, - 3894, 3859, 1, 0, 0, 0, 3894, 3875, 1, 0, 0, 0, 3895, 359, 1, 0, 0, 0, - 3896, 3897, 5, 372, 0, 0, 3897, 3898, 3, 1410, 705, 0, 3898, 361, 1, 0, - 0, 0, 3899, 3902, 5, 387, 0, 0, 3900, 3903, 3, 1410, 705, 0, 3901, 3903, - 5, 78, 0, 0, 3902, 3900, 1, 0, 0, 0, 3902, 3901, 1, 0, 0, 0, 3903, 363, - 1, 0, 0, 0, 3904, 3905, 3, 362, 181, 0, 3905, 365, 1, 0, 0, 0, 3906, 3907, - 5, 157, 0, 0, 3907, 3908, 5, 343, 0, 0, 3908, 3914, 3, 1392, 696, 0, 3909, - 3915, 3, 346, 173, 0, 3910, 3912, 3, 362, 181, 0, 3911, 3913, 3, 346, 173, - 0, 3912, 3911, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 1, 0, 0, - 0, 3914, 3909, 1, 0, 0, 0, 3914, 3910, 1, 0, 0, 0, 3915, 367, 1, 0, 0, - 0, 3916, 3917, 5, 46, 0, 0, 3917, 3918, 5, 63, 0, 0, 3918, 3919, 5, 92, - 0, 0, 3919, 3920, 3, 1388, 694, 0, 3920, 3922, 5, 2, 0, 0, 3921, 3923, - 3, 176, 88, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3924, - 1, 0, 0, 0, 3924, 3926, 5, 3, 0, 0, 3925, 3927, 3, 240, 120, 0, 3926, 3925, - 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3928, 1, 0, 0, 0, 3928, 3929, - 5, 343, 0, 0, 3929, 3931, 3, 1392, 696, 0, 3930, 3932, 3, 342, 171, 0, - 3931, 3930, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 3989, 1, 0, 0, 0, - 3933, 3934, 5, 46, 0, 0, 3934, 3935, 5, 63, 0, 0, 3935, 3936, 5, 92, 0, - 0, 3936, 3937, 5, 239, 0, 0, 3937, 3938, 5, 77, 0, 0, 3938, 3939, 5, 409, - 0, 0, 3939, 3940, 3, 1388, 694, 0, 3940, 3942, 5, 2, 0, 0, 3941, 3943, - 3, 176, 88, 0, 3942, 3941, 1, 0, 0, 0, 3942, 3943, 1, 0, 0, 0, 3943, 3944, - 1, 0, 0, 0, 3944, 3946, 5, 3, 0, 0, 3945, 3947, 3, 240, 120, 0, 3946, 3945, - 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 3948, 1, 0, 0, 0, 3948, 3949, - 5, 343, 0, 0, 3949, 3951, 3, 1392, 696, 0, 3950, 3952, 3, 342, 171, 0, - 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 3989, 1, 0, 0, 0, - 3953, 3954, 5, 46, 0, 0, 3954, 3955, 5, 63, 0, 0, 3955, 3956, 5, 92, 0, - 0, 3956, 3957, 3, 1388, 694, 0, 3957, 3958, 5, 297, 0, 0, 3958, 3959, 5, - 287, 0, 0, 3959, 3961, 3, 1388, 694, 0, 3960, 3962, 3, 178, 89, 0, 3961, - 3960, 1, 0, 0, 0, 3961, 3962, 1, 0, 0, 0, 3962, 3963, 1, 0, 0, 0, 3963, - 3964, 3, 128, 64, 0, 3964, 3965, 5, 343, 0, 0, 3965, 3967, 3, 1392, 696, - 0, 3966, 3968, 3, 342, 171, 0, 3967, 3966, 1, 0, 0, 0, 3967, 3968, 1, 0, - 0, 0, 3968, 3989, 1, 0, 0, 0, 3969, 3970, 5, 46, 0, 0, 3970, 3971, 5, 63, - 0, 0, 3971, 3972, 5, 92, 0, 0, 3972, 3973, 5, 239, 0, 0, 3973, 3974, 5, - 77, 0, 0, 3974, 3975, 5, 409, 0, 0, 3975, 3976, 3, 1388, 694, 0, 3976, - 3977, 5, 297, 0, 0, 3977, 3978, 5, 287, 0, 0, 3978, 3980, 3, 1388, 694, - 0, 3979, 3981, 3, 178, 89, 0, 3980, 3979, 1, 0, 0, 0, 3980, 3981, 1, 0, - 0, 0, 3981, 3982, 1, 0, 0, 0, 3982, 3983, 3, 128, 64, 0, 3983, 3984, 5, - 343, 0, 0, 3984, 3986, 3, 1392, 696, 0, 3985, 3987, 3, 342, 171, 0, 3986, - 3985, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 3989, 1, 0, 0, 0, 3988, - 3916, 1, 0, 0, 0, 3988, 3933, 1, 0, 0, 0, 3988, 3953, 1, 0, 0, 0, 3988, - 3969, 1, 0, 0, 0, 3989, 369, 1, 0, 0, 0, 3990, 3991, 5, 465, 0, 0, 3991, - 3992, 5, 63, 0, 0, 3992, 3993, 5, 335, 0, 0, 3993, 3995, 3, 1392, 696, - 0, 3994, 3996, 3, 374, 187, 0, 3995, 3994, 1, 0, 0, 0, 3995, 3996, 1, 0, - 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 3998, 5, 64, 0, 0, 3998, 3999, 5, 343, - 0, 0, 3999, 4000, 3, 1392, 696, 0, 4000, 4001, 5, 71, 0, 0, 4001, 4003, - 3, 1392, 696, 0, 4002, 4004, 3, 342, 171, 0, 4003, 4002, 1, 0, 0, 0, 4003, - 4004, 1, 0, 0, 0, 4004, 371, 1, 0, 0, 0, 4005, 4006, 5, 74, 0, 0, 4006, - 4009, 5, 94, 0, 0, 4007, 4009, 5, 59, 0, 0, 4008, 4005, 1, 0, 0, 0, 4008, - 4007, 1, 0, 0, 0, 4009, 373, 1, 0, 0, 0, 4010, 4011, 3, 372, 186, 0, 4011, - 4012, 5, 2, 0, 0, 4012, 4013, 3, 1082, 541, 0, 4013, 4014, 5, 3, 0, 0, - 4014, 375, 1, 0, 0, 0, 4015, 4016, 5, 46, 0, 0, 4016, 4017, 5, 99, 0, 0, - 4017, 4018, 5, 267, 0, 0, 4018, 4019, 5, 62, 0, 0, 4019, 4020, 3, 378, - 189, 0, 4020, 4021, 5, 343, 0, 0, 4021, 4023, 3, 1392, 696, 0, 4022, 4024, - 3, 342, 171, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4039, - 1, 0, 0, 0, 4025, 4026, 5, 46, 0, 0, 4026, 4027, 5, 99, 0, 0, 4027, 4028, - 5, 267, 0, 0, 4028, 4029, 5, 239, 0, 0, 4029, 4030, 5, 77, 0, 0, 4030, - 4031, 5, 409, 0, 0, 4031, 4032, 5, 62, 0, 0, 4032, 4033, 3, 378, 189, 0, - 4033, 4034, 5, 343, 0, 0, 4034, 4036, 3, 1392, 696, 0, 4035, 4037, 3, 342, - 171, 0, 4036, 4035, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4039, 1, - 0, 0, 0, 4038, 4015, 1, 0, 0, 0, 4038, 4025, 1, 0, 0, 0, 4039, 377, 1, - 0, 0, 0, 4040, 4043, 3, 1420, 710, 0, 4041, 4043, 5, 99, 0, 0, 4042, 4040, - 1, 0, 0, 0, 4042, 4041, 1, 0, 0, 0, 4043, 379, 1, 0, 0, 0, 4044, 4045, - 5, 210, 0, 0, 4045, 4046, 5, 99, 0, 0, 4046, 4047, 5, 267, 0, 0, 4047, - 4048, 5, 62, 0, 0, 4048, 4049, 3, 378, 189, 0, 4049, 4050, 5, 343, 0, 0, - 4050, 4051, 3, 1392, 696, 0, 4051, 4063, 1, 0, 0, 0, 4052, 4053, 5, 210, - 0, 0, 4053, 4054, 5, 99, 0, 0, 4054, 4055, 5, 267, 0, 0, 4055, 4056, 5, - 239, 0, 0, 4056, 4057, 5, 409, 0, 0, 4057, 4058, 5, 62, 0, 0, 4058, 4059, - 3, 378, 189, 0, 4059, 4060, 5, 343, 0, 0, 4060, 4061, 3, 1392, 696, 0, - 4061, 4063, 1, 0, 0, 0, 4062, 4044, 1, 0, 0, 0, 4062, 4052, 1, 0, 0, 0, - 4063, 381, 1, 0, 0, 0, 4064, 4065, 5, 157, 0, 0, 4065, 4066, 5, 99, 0, - 0, 4066, 4067, 5, 267, 0, 0, 4067, 4068, 5, 62, 0, 0, 4068, 4069, 3, 378, - 189, 0, 4069, 4070, 5, 343, 0, 0, 4070, 4071, 3, 1392, 696, 0, 4071, 4072, - 3, 346, 173, 0, 4072, 383, 1, 0, 0, 0, 4073, 4074, 5, 46, 0, 0, 4074, 4075, - 5, 466, 0, 0, 4075, 4076, 3, 1392, 696, 0, 4076, 4077, 5, 80, 0, 0, 4077, - 4079, 3, 1388, 694, 0, 4078, 4080, 3, 396, 198, 0, 4079, 4078, 1, 0, 0, - 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 1, 0, 0, 0, 4081, 4083, 3, 398, - 199, 0, 4082, 4081, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4085, 1, - 0, 0, 0, 4084, 4086, 3, 392, 196, 0, 4085, 4084, 1, 0, 0, 0, 4085, 4086, - 1, 0, 0, 0, 4086, 4088, 1, 0, 0, 0, 4087, 4089, 3, 388, 194, 0, 4088, 4087, - 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4091, 1, 0, 0, 0, 4090, 4092, - 3, 390, 195, 0, 4091, 4090, 1, 0, 0, 0, 4091, 4092, 1, 0, 0, 0, 4092, 385, - 1, 0, 0, 0, 4093, 4094, 5, 157, 0, 0, 4094, 4095, 5, 466, 0, 0, 4095, 4096, - 3, 1392, 696, 0, 4096, 4097, 5, 80, 0, 0, 4097, 4099, 3, 1388, 694, 0, - 4098, 4100, 3, 394, 197, 0, 4099, 4098, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, - 0, 4100, 4102, 1, 0, 0, 0, 4101, 4103, 3, 388, 194, 0, 4102, 4101, 1, 0, - 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4105, 1, 0, 0, 0, 4104, 4106, 3, 390, - 195, 0, 4105, 4104, 1, 0, 0, 0, 4105, 4106, 1, 0, 0, 0, 4106, 387, 1, 0, - 0, 0, 4107, 4108, 5, 100, 0, 0, 4108, 4109, 5, 2, 0, 0, 4109, 4110, 3, - 1168, 584, 0, 4110, 4111, 5, 3, 0, 0, 4111, 389, 1, 0, 0, 0, 4112, 4113, - 5, 105, 0, 0, 4113, 4114, 5, 42, 0, 0, 4114, 4115, 5, 2, 0, 0, 4115, 4116, - 3, 1168, 584, 0, 4116, 4117, 5, 3, 0, 0, 4117, 391, 1, 0, 0, 0, 4118, 4119, - 5, 94, 0, 0, 4119, 4120, 3, 1422, 711, 0, 4120, 393, 1, 0, 0, 0, 4121, - 4122, 5, 94, 0, 0, 4122, 4123, 3, 1422, 711, 0, 4123, 395, 1, 0, 0, 0, - 4124, 4125, 5, 36, 0, 0, 4125, 4126, 3, 1434, 717, 0, 4126, 397, 1, 0, - 0, 0, 4127, 4128, 5, 62, 0, 0, 4128, 4129, 3, 400, 200, 0, 4129, 399, 1, - 0, 0, 0, 4130, 4131, 7, 18, 0, 0, 4131, 401, 1, 0, 0, 0, 4132, 4133, 5, - 46, 0, 0, 4133, 4134, 5, 150, 0, 0, 4134, 4135, 5, 467, 0, 0, 4135, 4136, - 3, 1392, 696, 0, 4136, 4137, 5, 372, 0, 0, 4137, 4138, 3, 404, 202, 0, - 4138, 4139, 5, 234, 0, 0, 4139, 4140, 3, 302, 151, 0, 4140, 403, 1, 0, - 0, 0, 4141, 4142, 7, 19, 0, 0, 4142, 405, 1, 0, 0, 0, 4143, 4144, 5, 46, - 0, 0, 4144, 4145, 5, 369, 0, 0, 4145, 4146, 3, 1392, 696, 0, 4146, 4147, - 3, 408, 204, 0, 4147, 4148, 3, 410, 205, 0, 4148, 4149, 5, 80, 0, 0, 4149, - 4151, 3, 1388, 694, 0, 4150, 4152, 3, 414, 207, 0, 4151, 4150, 1, 0, 0, - 0, 4151, 4152, 1, 0, 0, 0, 4152, 4154, 1, 0, 0, 0, 4153, 4155, 3, 426, - 213, 0, 4154, 4153, 1, 0, 0, 0, 4154, 4155, 1, 0, 0, 0, 4155, 4157, 1, - 0, 0, 0, 4156, 4158, 3, 432, 216, 0, 4157, 4156, 1, 0, 0, 0, 4157, 4158, - 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 4160, 5, 221, 0, 0, 4160, 4161, - 3, 434, 217, 0, 4161, 4162, 3, 1398, 699, 0, 4162, 4163, 5, 2, 0, 0, 4163, - 4164, 3, 436, 218, 0, 4164, 4165, 5, 3, 0, 0, 4165, 4192, 1, 0, 0, 0, 4166, - 4167, 5, 46, 0, 0, 4167, 4168, 5, 45, 0, 0, 4168, 4169, 5, 369, 0, 0, 4169, - 4170, 3, 1392, 696, 0, 4170, 4171, 5, 154, 0, 0, 4171, 4172, 3, 410, 205, - 0, 4172, 4173, 5, 80, 0, 0, 4173, 4175, 3, 1388, 694, 0, 4174, 4176, 3, - 440, 220, 0, 4175, 4174, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4177, - 1, 0, 0, 0, 4177, 4178, 3, 442, 221, 0, 4178, 4179, 5, 62, 0, 0, 4179, - 4180, 5, 211, 0, 0, 4180, 4182, 5, 428, 0, 0, 4181, 4183, 3, 432, 216, - 0, 4182, 4181, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, - 0, 4184, 4185, 5, 221, 0, 0, 4185, 4186, 3, 434, 217, 0, 4186, 4187, 3, - 1398, 699, 0, 4187, 4188, 5, 2, 0, 0, 4188, 4189, 3, 436, 218, 0, 4189, - 4190, 5, 3, 0, 0, 4190, 4192, 1, 0, 0, 0, 4191, 4143, 1, 0, 0, 0, 4191, - 4166, 1, 0, 0, 0, 4192, 407, 1, 0, 0, 0, 4193, 4198, 5, 164, 0, 0, 4194, - 4198, 5, 154, 0, 0, 4195, 4196, 5, 252, 0, 0, 4196, 4198, 5, 287, 0, 0, - 4197, 4193, 1, 0, 0, 0, 4197, 4194, 1, 0, 0, 0, 4197, 4195, 1, 0, 0, 0, - 4198, 409, 1, 0, 0, 0, 4199, 4204, 3, 412, 206, 0, 4200, 4201, 5, 82, 0, - 0, 4201, 4203, 3, 412, 206, 0, 4202, 4200, 1, 0, 0, 0, 4203, 4206, 1, 0, - 0, 0, 4204, 4202, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 411, 1, 0, - 0, 0, 4206, 4204, 1, 0, 0, 0, 4207, 4215, 5, 251, 0, 0, 4208, 4215, 5, - 201, 0, 0, 4209, 4215, 5, 381, 0, 0, 4210, 4211, 5, 381, 0, 0, 4211, 4212, - 5, 287, 0, 0, 4212, 4215, 3, 218, 109, 0, 4213, 4215, 5, 370, 0, 0, 4214, - 4207, 1, 0, 0, 0, 4214, 4208, 1, 0, 0, 0, 4214, 4209, 1, 0, 0, 0, 4214, - 4210, 1, 0, 0, 0, 4214, 4213, 1, 0, 0, 0, 4215, 413, 1, 0, 0, 0, 4216, - 4217, 5, 468, 0, 0, 4217, 4218, 3, 416, 208, 0, 4218, 415, 1, 0, 0, 0, - 4219, 4221, 3, 418, 209, 0, 4220, 4219, 1, 0, 0, 0, 4221, 4222, 1, 0, 0, - 0, 4222, 4220, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 417, 1, 0, 0, - 0, 4224, 4225, 3, 420, 210, 0, 4225, 4227, 3, 422, 211, 0, 4226, 4228, - 3, 842, 421, 0, 4227, 4226, 1, 0, 0, 0, 4227, 4228, 1, 0, 0, 0, 4228, 4229, - 1, 0, 0, 0, 4229, 4230, 3, 424, 212, 0, 4230, 419, 1, 0, 0, 0, 4231, 4232, - 7, 20, 0, 0, 4232, 421, 1, 0, 0, 0, 4233, 4234, 7, 21, 0, 0, 4234, 423, - 1, 0, 0, 0, 4235, 4236, 3, 1424, 712, 0, 4236, 425, 1, 0, 0, 0, 4237, 4239, - 5, 62, 0, 0, 4238, 4240, 3, 428, 214, 0, 4239, 4238, 1, 0, 0, 0, 4239, - 4240, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 4242, 3, 430, 215, 0, 4242, - 427, 1, 0, 0, 0, 4243, 4244, 5, 211, 0, 0, 4244, 429, 1, 0, 0, 0, 4245, - 4246, 7, 22, 0, 0, 4246, 431, 1, 0, 0, 0, 4247, 4248, 5, 102, 0, 0, 4248, - 4249, 5, 2, 0, 0, 4249, 4250, 3, 1168, 584, 0, 4250, 4251, 5, 3, 0, 0, - 4251, 433, 1, 0, 0, 0, 4252, 4253, 7, 23, 0, 0, 4253, 435, 1, 0, 0, 0, - 4254, 4257, 3, 438, 219, 0, 4255, 4257, 1, 0, 0, 0, 4256, 4254, 1, 0, 0, - 0, 4256, 4255, 1, 0, 0, 0, 4257, 4262, 1, 0, 0, 0, 4258, 4259, 5, 6, 0, - 0, 4259, 4261, 3, 438, 219, 0, 4260, 4258, 1, 0, 0, 0, 4261, 4264, 1, 0, - 0, 0, 4262, 4260, 1, 0, 0, 0, 4262, 4263, 1, 0, 0, 0, 4263, 437, 1, 0, - 0, 0, 4264, 4262, 1, 0, 0, 0, 4265, 4270, 3, 1408, 704, 0, 4266, 4270, - 3, 1406, 703, 0, 4267, 4270, 3, 1410, 705, 0, 4268, 4270, 3, 1432, 716, - 0, 4269, 4265, 1, 0, 0, 0, 4269, 4266, 1, 0, 0, 0, 4269, 4267, 1, 0, 0, - 0, 4269, 4268, 1, 0, 0, 0, 4270, 439, 1, 0, 0, 0, 4271, 4272, 5, 64, 0, - 0, 4272, 4273, 3, 1388, 694, 0, 4273, 441, 1, 0, 0, 0, 4274, 4276, 3, 444, - 222, 0, 4275, 4274, 1, 0, 0, 0, 4276, 4279, 1, 0, 0, 0, 4277, 4275, 1, - 0, 0, 0, 4277, 4278, 1, 0, 0, 0, 4278, 443, 1, 0, 0, 0, 4279, 4277, 1, - 0, 0, 0, 4280, 4281, 5, 77, 0, 0, 4281, 4292, 5, 54, 0, 0, 4282, 4292, - 5, 54, 0, 0, 4283, 4284, 5, 69, 0, 0, 4284, 4292, 5, 240, 0, 0, 4285, 4286, - 5, 69, 0, 0, 4286, 4292, 5, 199, 0, 0, 4287, 4288, 5, 77, 0, 0, 4288, 4292, - 5, 383, 0, 0, 4289, 4290, 5, 281, 0, 0, 4290, 4292, 5, 247, 0, 0, 4291, - 4280, 1, 0, 0, 0, 4291, 4282, 1, 0, 0, 0, 4291, 4283, 1, 0, 0, 0, 4291, - 4285, 1, 0, 0, 0, 4291, 4287, 1, 0, 0, 0, 4291, 4289, 1, 0, 0, 0, 4292, - 445, 1, 0, 0, 0, 4293, 4294, 5, 46, 0, 0, 4294, 4295, 5, 217, 0, 0, 4295, - 4296, 5, 369, 0, 0, 4296, 4297, 3, 1392, 696, 0, 4297, 4298, 5, 80, 0, - 0, 4298, 4299, 3, 1432, 716, 0, 4299, 4300, 5, 221, 0, 0, 4300, 4301, 3, - 434, 217, 0, 4301, 4302, 3, 1398, 699, 0, 4302, 4303, 5, 2, 0, 0, 4303, - 4304, 5, 3, 0, 0, 4304, 4320, 1, 0, 0, 0, 4305, 4306, 5, 46, 0, 0, 4306, - 4307, 5, 217, 0, 0, 4307, 4308, 5, 369, 0, 0, 4308, 4309, 3, 1392, 696, - 0, 4309, 4310, 5, 80, 0, 0, 4310, 4311, 3, 1432, 716, 0, 4311, 4312, 5, - 102, 0, 0, 4312, 4313, 3, 448, 224, 0, 4313, 4314, 5, 221, 0, 0, 4314, - 4315, 3, 434, 217, 0, 4315, 4316, 3, 1398, 699, 0, 4316, 4317, 5, 2, 0, - 0, 4317, 4318, 5, 3, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4293, 1, 0, 0, - 0, 4319, 4305, 1, 0, 0, 0, 4320, 447, 1, 0, 0, 0, 4321, 4326, 3, 450, 225, - 0, 4322, 4323, 5, 33, 0, 0, 4323, 4325, 3, 450, 225, 0, 4324, 4322, 1, - 0, 0, 0, 4325, 4328, 1, 0, 0, 0, 4326, 4324, 1, 0, 0, 0, 4326, 4327, 1, - 0, 0, 0, 4327, 449, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4329, 4330, 3, - 1424, 712, 0, 4330, 4331, 5, 68, 0, 0, 4331, 4332, 5, 2, 0, 0, 4332, 4333, - 3, 452, 226, 0, 4333, 4334, 5, 3, 0, 0, 4334, 451, 1, 0, 0, 0, 4335, 4340, - 3, 1410, 705, 0, 4336, 4337, 5, 6, 0, 0, 4337, 4339, 3, 1410, 705, 0, 4338, - 4336, 1, 0, 0, 0, 4339, 4342, 1, 0, 0, 0, 4340, 4338, 1, 0, 0, 0, 4340, - 4341, 1, 0, 0, 0, 4341, 453, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4343, - 4344, 5, 157, 0, 0, 4344, 4345, 5, 217, 0, 0, 4345, 4346, 5, 369, 0, 0, - 4346, 4347, 3, 1392, 696, 0, 4347, 4348, 3, 456, 228, 0, 4348, 455, 1, - 0, 0, 0, 4349, 4356, 5, 212, 0, 0, 4350, 4351, 5, 212, 0, 0, 4351, 4356, - 5, 324, 0, 0, 4352, 4353, 5, 212, 0, 0, 4353, 4356, 5, 158, 0, 0, 4354, - 4356, 5, 205, 0, 0, 4355, 4349, 1, 0, 0, 0, 4355, 4350, 1, 0, 0, 0, 4355, - 4352, 1, 0, 0, 0, 4355, 4354, 1, 0, 0, 0, 4356, 457, 1, 0, 0, 0, 4357, - 4358, 5, 46, 0, 0, 4358, 4359, 5, 159, 0, 0, 4359, 4360, 3, 526, 263, 0, - 4360, 4361, 5, 42, 0, 0, 4361, 4362, 5, 2, 0, 0, 4362, 4363, 3, 1168, 584, - 0, 4363, 4364, 5, 3, 0, 0, 4364, 4365, 3, 442, 221, 0, 4365, 459, 1, 0, - 0, 0, 4366, 4368, 5, 46, 0, 0, 4367, 4369, 3, 624, 312, 0, 4368, 4367, - 1, 0, 0, 0, 4368, 4369, 1, 0, 0, 0, 4369, 4370, 1, 0, 0, 0, 4370, 4371, - 5, 155, 0, 0, 4371, 4372, 3, 1398, 699, 0, 4372, 4373, 3, 652, 326, 0, - 4373, 4374, 3, 462, 231, 0, 4374, 4481, 1, 0, 0, 0, 4375, 4377, 5, 46, - 0, 0, 4376, 4378, 3, 624, 312, 0, 4377, 4376, 1, 0, 0, 0, 4377, 4378, 1, - 0, 0, 0, 4378, 4379, 1, 0, 0, 0, 4379, 4380, 5, 155, 0, 0, 4380, 4381, - 3, 1398, 699, 0, 4381, 4382, 3, 470, 235, 0, 4382, 4481, 1, 0, 0, 0, 4383, - 4384, 5, 46, 0, 0, 4384, 4385, 5, 290, 0, 0, 4385, 4386, 3, 690, 345, 0, - 4386, 4387, 3, 462, 231, 0, 4387, 4481, 1, 0, 0, 0, 4388, 4389, 5, 46, - 0, 0, 4389, 4390, 5, 372, 0, 0, 4390, 4391, 3, 526, 263, 0, 4391, 4392, - 3, 462, 231, 0, 4392, 4481, 1, 0, 0, 0, 4393, 4394, 5, 46, 0, 0, 4394, - 4395, 5, 372, 0, 0, 4395, 4481, 3, 526, 263, 0, 4396, 4397, 5, 46, 0, 0, - 4397, 4398, 5, 372, 0, 0, 4398, 4399, 3, 526, 263, 0, 4399, 4400, 5, 36, - 0, 0, 4400, 4402, 5, 2, 0, 0, 4401, 4403, 3, 1104, 552, 0, 4402, 4401, - 1, 0, 0, 0, 4402, 4403, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4405, - 5, 3, 0, 0, 4405, 4481, 1, 0, 0, 0, 4406, 4407, 5, 46, 0, 0, 4407, 4408, - 5, 372, 0, 0, 4408, 4409, 3, 526, 263, 0, 4409, 4410, 5, 36, 0, 0, 4410, - 4411, 5, 215, 0, 0, 4411, 4413, 5, 2, 0, 0, 4412, 4414, 3, 476, 238, 0, - 4413, 4412, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 4415, 1, 0, 0, 0, - 4415, 4416, 5, 3, 0, 0, 4416, 4481, 1, 0, 0, 0, 4417, 4418, 5, 46, 0, 0, - 4418, 4419, 5, 372, 0, 0, 4419, 4420, 3, 526, 263, 0, 4420, 4421, 5, 36, - 0, 0, 4421, 4422, 5, 311, 0, 0, 4422, 4423, 3, 462, 231, 0, 4423, 4481, - 1, 0, 0, 0, 4424, 4425, 5, 46, 0, 0, 4425, 4426, 5, 367, 0, 0, 4426, 4427, - 5, 337, 0, 0, 4427, 4428, 5, 295, 0, 0, 4428, 4429, 3, 526, 263, 0, 4429, - 4430, 3, 462, 231, 0, 4430, 4481, 1, 0, 0, 0, 4431, 4432, 5, 46, 0, 0, - 4432, 4433, 5, 367, 0, 0, 4433, 4434, 5, 337, 0, 0, 4434, 4435, 5, 204, - 0, 0, 4435, 4436, 3, 526, 263, 0, 4436, 4437, 3, 462, 231, 0, 4437, 4481, - 1, 0, 0, 0, 4438, 4439, 5, 46, 0, 0, 4439, 4440, 5, 367, 0, 0, 4440, 4441, - 5, 337, 0, 0, 4441, 4442, 5, 365, 0, 0, 4442, 4443, 3, 526, 263, 0, 4443, - 4444, 3, 462, 231, 0, 4444, 4481, 1, 0, 0, 0, 4445, 4446, 5, 46, 0, 0, - 4446, 4447, 5, 367, 0, 0, 4447, 4448, 5, 337, 0, 0, 4448, 4449, 5, 182, - 0, 0, 4449, 4450, 3, 526, 263, 0, 4450, 4451, 3, 462, 231, 0, 4451, 4481, - 1, 0, 0, 0, 4452, 4453, 5, 46, 0, 0, 4453, 4454, 5, 127, 0, 0, 4454, 4455, - 3, 526, 263, 0, 4455, 4456, 3, 462, 231, 0, 4456, 4481, 1, 0, 0, 0, 4457, - 4458, 5, 46, 0, 0, 4458, 4459, 5, 127, 0, 0, 4459, 4460, 5, 239, 0, 0, - 4460, 4461, 5, 77, 0, 0, 4461, 4462, 5, 409, 0, 0, 4462, 4463, 3, 526, - 263, 0, 4463, 4464, 3, 462, 231, 0, 4464, 4481, 1, 0, 0, 0, 4465, 4466, - 5, 46, 0, 0, 4466, 4467, 5, 127, 0, 0, 4467, 4468, 3, 526, 263, 0, 4468, - 4469, 5, 64, 0, 0, 4469, 4470, 3, 526, 263, 0, 4470, 4481, 1, 0, 0, 0, - 4471, 4472, 5, 46, 0, 0, 4472, 4473, 5, 127, 0, 0, 4473, 4474, 5, 239, - 0, 0, 4474, 4475, 5, 77, 0, 0, 4475, 4476, 5, 409, 0, 0, 4476, 4477, 3, - 526, 263, 0, 4477, 4478, 5, 64, 0, 0, 4478, 4479, 3, 526, 263, 0, 4479, - 4481, 1, 0, 0, 0, 4480, 4366, 1, 0, 0, 0, 4480, 4375, 1, 0, 0, 0, 4480, - 4383, 1, 0, 0, 0, 4480, 4388, 1, 0, 0, 0, 4480, 4393, 1, 0, 0, 0, 4480, - 4396, 1, 0, 0, 0, 4480, 4406, 1, 0, 0, 0, 4480, 4417, 1, 0, 0, 0, 4480, - 4424, 1, 0, 0, 0, 4480, 4431, 1, 0, 0, 0, 4480, 4438, 1, 0, 0, 0, 4480, - 4445, 1, 0, 0, 0, 4480, 4452, 1, 0, 0, 0, 4480, 4457, 1, 0, 0, 0, 4480, - 4465, 1, 0, 0, 0, 4480, 4471, 1, 0, 0, 0, 4481, 461, 1, 0, 0, 0, 4482, - 4483, 5, 2, 0, 0, 4483, 4484, 3, 464, 232, 0, 4484, 4485, 5, 3, 0, 0, 4485, - 463, 1, 0, 0, 0, 4486, 4491, 3, 466, 233, 0, 4487, 4488, 5, 6, 0, 0, 4488, - 4490, 3, 466, 233, 0, 4489, 4487, 1, 0, 0, 0, 4490, 4493, 1, 0, 0, 0, 4491, - 4489, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 465, 1, 0, 0, 0, 4493, - 4491, 1, 0, 0, 0, 4494, 4497, 3, 1432, 716, 0, 4495, 4496, 5, 10, 0, 0, - 4496, 4498, 3, 468, 234, 0, 4497, 4495, 1, 0, 0, 0, 4497, 4498, 1, 0, 0, - 0, 4498, 467, 1, 0, 0, 0, 4499, 4506, 3, 646, 323, 0, 4500, 4506, 3, 1444, - 722, 0, 4501, 4506, 3, 1326, 663, 0, 4502, 4506, 3, 294, 147, 0, 4503, - 4506, 3, 1410, 705, 0, 4504, 4506, 5, 420, 0, 0, 4505, 4499, 1, 0, 0, 0, - 4505, 4500, 1, 0, 0, 0, 4505, 4501, 1, 0, 0, 0, 4505, 4502, 1, 0, 0, 0, - 4505, 4503, 1, 0, 0, 0, 4505, 4504, 1, 0, 0, 0, 4506, 469, 1, 0, 0, 0, - 4507, 4508, 5, 2, 0, 0, 4508, 4509, 3, 472, 236, 0, 4509, 4510, 5, 3, 0, - 0, 4510, 471, 1, 0, 0, 0, 4511, 4516, 3, 474, 237, 0, 4512, 4513, 5, 6, - 0, 0, 4513, 4515, 3, 474, 237, 0, 4514, 4512, 1, 0, 0, 0, 4515, 4518, 1, - 0, 0, 0, 4516, 4514, 1, 0, 0, 0, 4516, 4517, 1, 0, 0, 0, 4517, 473, 1, - 0, 0, 0, 4518, 4516, 1, 0, 0, 0, 4519, 4520, 3, 1434, 717, 0, 4520, 4521, - 5, 10, 0, 0, 4521, 4522, 3, 468, 234, 0, 4522, 475, 1, 0, 0, 0, 4523, 4524, - 3, 478, 239, 0, 4524, 477, 1, 0, 0, 0, 4525, 4530, 3, 1410, 705, 0, 4526, - 4527, 5, 6, 0, 0, 4527, 4529, 3, 1410, 705, 0, 4528, 4526, 1, 0, 0, 0, - 4529, 4532, 1, 0, 0, 0, 4530, 4528, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, - 4531, 479, 1, 0, 0, 0, 4532, 4530, 1, 0, 0, 0, 4533, 4534, 5, 157, 0, 0, - 4534, 4535, 5, 372, 0, 0, 4535, 4536, 3, 526, 263, 0, 4536, 4537, 5, 152, - 0, 0, 4537, 4539, 5, 471, 0, 0, 4538, 4540, 3, 482, 241, 0, 4539, 4538, - 1, 0, 0, 0, 4539, 4540, 1, 0, 0, 0, 4540, 4541, 1, 0, 0, 0, 4541, 4542, - 3, 1410, 705, 0, 4542, 4577, 1, 0, 0, 0, 4543, 4544, 5, 157, 0, 0, 4544, - 4545, 5, 372, 0, 0, 4545, 4546, 3, 526, 263, 0, 4546, 4547, 5, 152, 0, - 0, 4547, 4549, 5, 471, 0, 0, 4548, 4550, 3, 482, 241, 0, 4549, 4548, 1, - 0, 0, 0, 4549, 4550, 1, 0, 0, 0, 4550, 4551, 1, 0, 0, 0, 4551, 4552, 3, - 1410, 705, 0, 4552, 4553, 5, 164, 0, 0, 4553, 4554, 3, 1410, 705, 0, 4554, - 4577, 1, 0, 0, 0, 4555, 4556, 5, 157, 0, 0, 4556, 4557, 5, 372, 0, 0, 4557, - 4558, 3, 526, 263, 0, 4558, 4559, 5, 152, 0, 0, 4559, 4561, 5, 471, 0, - 0, 4560, 4562, 3, 482, 241, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, - 0, 0, 4562, 4563, 1, 0, 0, 0, 4563, 4564, 3, 1410, 705, 0, 4564, 4565, - 5, 154, 0, 0, 4565, 4566, 3, 1410, 705, 0, 4566, 4577, 1, 0, 0, 0, 4567, - 4568, 5, 157, 0, 0, 4568, 4569, 5, 372, 0, 0, 4569, 4570, 3, 526, 263, - 0, 4570, 4571, 5, 321, 0, 0, 4571, 4572, 5, 471, 0, 0, 4572, 4573, 3, 1410, - 705, 0, 4573, 4574, 5, 94, 0, 0, 4574, 4575, 3, 1410, 705, 0, 4575, 4577, - 1, 0, 0, 0, 4576, 4533, 1, 0, 0, 0, 4576, 4543, 1, 0, 0, 0, 4576, 4555, - 1, 0, 0, 0, 4576, 4567, 1, 0, 0, 0, 4577, 481, 1, 0, 0, 0, 4578, 4579, - 5, 239, 0, 0, 4579, 4580, 5, 77, 0, 0, 4580, 4581, 5, 409, 0, 0, 4581, - 483, 1, 0, 0, 0, 4582, 4583, 5, 46, 0, 0, 4583, 4584, 5, 290, 0, 0, 4584, - 4585, 5, 175, 0, 0, 4585, 4587, 3, 526, 263, 0, 4586, 4588, 3, 490, 245, - 0, 4587, 4586, 1, 0, 0, 0, 4587, 4588, 1, 0, 0, 0, 4588, 4589, 1, 0, 0, - 0, 4589, 4590, 5, 62, 0, 0, 4590, 4591, 5, 372, 0, 0, 4591, 4592, 3, 1124, - 562, 0, 4592, 4593, 5, 100, 0, 0, 4593, 4595, 3, 1392, 696, 0, 4594, 4596, - 3, 492, 246, 0, 4595, 4594, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4597, - 1, 0, 0, 0, 4597, 4598, 5, 36, 0, 0, 4598, 4599, 3, 486, 243, 0, 4599, - 485, 1, 0, 0, 0, 4600, 4605, 3, 488, 244, 0, 4601, 4602, 5, 6, 0, 0, 4602, - 4604, 3, 488, 244, 0, 4603, 4601, 1, 0, 0, 0, 4604, 4607, 1, 0, 0, 0, 4605, - 4603, 1, 0, 0, 0, 4605, 4606, 1, 0, 0, 0, 4606, 487, 1, 0, 0, 0, 4607, - 4605, 1, 0, 0, 0, 4608, 4609, 5, 290, 0, 0, 4609, 4610, 3, 1408, 704, 0, - 4610, 4612, 3, 690, 345, 0, 4611, 4613, 3, 494, 247, 0, 4612, 4611, 1, - 0, 0, 0, 4612, 4613, 1, 0, 0, 0, 4613, 4615, 1, 0, 0, 0, 4614, 4616, 3, - 496, 248, 0, 4615, 4614, 1, 0, 0, 0, 4615, 4616, 1, 0, 0, 0, 4616, 4640, - 1, 0, 0, 0, 4617, 4618, 5, 290, 0, 0, 4618, 4619, 3, 1408, 704, 0, 4619, - 4621, 3, 694, 347, 0, 4620, 4622, 3, 494, 247, 0, 4621, 4620, 1, 0, 0, - 0, 4621, 4622, 1, 0, 0, 0, 4622, 4624, 1, 0, 0, 0, 4623, 4625, 3, 496, - 248, 0, 4624, 4623, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4640, 1, - 0, 0, 0, 4626, 4627, 5, 230, 0, 0, 4627, 4628, 3, 1408, 704, 0, 4628, 4629, - 3, 632, 316, 0, 4629, 4640, 1, 0, 0, 0, 4630, 4631, 5, 230, 0, 0, 4631, - 4632, 3, 1408, 704, 0, 4632, 4633, 5, 2, 0, 0, 4633, 4634, 3, 1336, 668, - 0, 4634, 4635, 5, 3, 0, 0, 4635, 4636, 3, 632, 316, 0, 4636, 4640, 1, 0, - 0, 0, 4637, 4638, 5, 357, 0, 0, 4638, 4640, 3, 1124, 562, 0, 4639, 4608, - 1, 0, 0, 0, 4639, 4617, 1, 0, 0, 0, 4639, 4626, 1, 0, 0, 0, 4639, 4630, - 1, 0, 0, 0, 4639, 4637, 1, 0, 0, 0, 4640, 489, 1, 0, 0, 0, 4641, 4642, - 5, 53, 0, 0, 4642, 491, 1, 0, 0, 0, 4643, 4644, 5, 225, 0, 0, 4644, 4645, - 3, 526, 263, 0, 4645, 493, 1, 0, 0, 0, 4646, 4647, 5, 62, 0, 0, 4647, 4653, - 5, 337, 0, 0, 4648, 4649, 5, 62, 0, 0, 4649, 4650, 5, 83, 0, 0, 4650, 4651, - 5, 166, 0, 0, 4651, 4653, 3, 526, 263, 0, 4652, 4646, 1, 0, 0, 0, 4652, - 4648, 1, 0, 0, 0, 4653, 495, 1, 0, 0, 0, 4654, 4655, 5, 314, 0, 0, 4655, - 497, 1, 0, 0, 0, 4656, 4657, 5, 46, 0, 0, 4657, 4658, 5, 290, 0, 0, 4658, - 4659, 5, 225, 0, 0, 4659, 4660, 3, 526, 263, 0, 4660, 4661, 5, 100, 0, - 0, 4661, 4662, 3, 1392, 696, 0, 4662, 499, 1, 0, 0, 0, 4663, 4664, 5, 157, - 0, 0, 4664, 4665, 5, 290, 0, 0, 4665, 4666, 5, 225, 0, 0, 4666, 4667, 3, - 526, 263, 0, 4667, 4668, 5, 100, 0, 0, 4668, 4669, 3, 1392, 696, 0, 4669, - 4670, 5, 152, 0, 0, 4670, 4671, 3, 486, 243, 0, 4671, 4682, 1, 0, 0, 0, - 4672, 4673, 5, 157, 0, 0, 4673, 4674, 5, 290, 0, 0, 4674, 4675, 5, 225, - 0, 0, 4675, 4676, 3, 526, 263, 0, 4676, 4677, 5, 100, 0, 0, 4677, 4678, - 3, 1392, 696, 0, 4678, 4679, 5, 210, 0, 0, 4679, 4680, 3, 502, 251, 0, - 4680, 4682, 1, 0, 0, 0, 4681, 4663, 1, 0, 0, 0, 4681, 4672, 1, 0, 0, 0, - 4682, 501, 1, 0, 0, 0, 4683, 4688, 3, 504, 252, 0, 4684, 4685, 5, 6, 0, - 0, 4685, 4687, 3, 504, 252, 0, 4686, 4684, 1, 0, 0, 0, 4687, 4690, 1, 0, - 0, 0, 4688, 4686, 1, 0, 0, 0, 4688, 4689, 1, 0, 0, 0, 4689, 503, 1, 0, - 0, 0, 4690, 4688, 1, 0, 0, 0, 4691, 4692, 5, 290, 0, 0, 4692, 4693, 3, - 1408, 704, 0, 4693, 4694, 5, 2, 0, 0, 4694, 4695, 3, 1336, 668, 0, 4695, - 4696, 5, 3, 0, 0, 4696, 4704, 1, 0, 0, 0, 4697, 4698, 5, 230, 0, 0, 4698, - 4699, 3, 1408, 704, 0, 4699, 4700, 5, 2, 0, 0, 4700, 4701, 3, 1336, 668, - 0, 4701, 4702, 5, 3, 0, 0, 4702, 4704, 1, 0, 0, 0, 4703, 4691, 1, 0, 0, - 0, 4703, 4697, 1, 0, 0, 0, 4704, 505, 1, 0, 0, 0, 4705, 4706, 5, 210, 0, - 0, 4706, 4707, 5, 290, 0, 0, 4707, 4708, 5, 175, 0, 0, 4708, 4709, 3, 526, - 263, 0, 4709, 4710, 5, 100, 0, 0, 4710, 4712, 3, 1392, 696, 0, 4711, 4713, - 3, 108, 54, 0, 4712, 4711, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4726, - 1, 0, 0, 0, 4714, 4715, 5, 210, 0, 0, 4715, 4716, 5, 290, 0, 0, 4716, 4717, - 5, 175, 0, 0, 4717, 4718, 5, 239, 0, 0, 4718, 4719, 5, 409, 0, 0, 4719, - 4720, 3, 526, 263, 0, 4720, 4721, 5, 100, 0, 0, 4721, 4723, 3, 1392, 696, - 0, 4722, 4724, 3, 108, 54, 0, 4723, 4722, 1, 0, 0, 0, 4723, 4724, 1, 0, - 0, 0, 4724, 4726, 1, 0, 0, 0, 4725, 4705, 1, 0, 0, 0, 4725, 4714, 1, 0, - 0, 0, 4726, 507, 1, 0, 0, 0, 4727, 4728, 5, 210, 0, 0, 4728, 4729, 5, 290, - 0, 0, 4729, 4730, 5, 225, 0, 0, 4730, 4731, 3, 526, 263, 0, 4731, 4732, - 5, 100, 0, 0, 4732, 4734, 3, 1392, 696, 0, 4733, 4735, 3, 108, 54, 0, 4734, - 4733, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4748, 1, 0, 0, 0, 4736, - 4737, 5, 210, 0, 0, 4737, 4738, 5, 290, 0, 0, 4738, 4739, 5, 225, 0, 0, - 4739, 4740, 5, 239, 0, 0, 4740, 4741, 5, 409, 0, 0, 4741, 4742, 3, 526, - 263, 0, 4742, 4743, 5, 100, 0, 0, 4743, 4745, 3, 1392, 696, 0, 4744, 4746, - 3, 108, 54, 0, 4745, 4744, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4748, - 1, 0, 0, 0, 4747, 4727, 1, 0, 0, 0, 4747, 4736, 1, 0, 0, 0, 4748, 509, - 1, 0, 0, 0, 4749, 4750, 5, 210, 0, 0, 4750, 4751, 5, 293, 0, 0, 4751, 4752, - 5, 166, 0, 0, 4752, 4754, 3, 1422, 711, 0, 4753, 4755, 3, 108, 54, 0, 4754, - 4753, 1, 0, 0, 0, 4754, 4755, 1, 0, 0, 0, 4755, 511, 1, 0, 0, 0, 4756, - 4757, 5, 313, 0, 0, 4757, 4758, 5, 293, 0, 0, 4758, 4759, 5, 166, 0, 0, - 4759, 4760, 3, 1422, 711, 0, 4760, 4761, 5, 94, 0, 0, 4761, 4762, 3, 1420, - 710, 0, 4762, 513, 1, 0, 0, 0, 4763, 4764, 5, 210, 0, 0, 4764, 4765, 3, - 516, 258, 0, 4765, 4766, 5, 239, 0, 0, 4766, 4767, 5, 409, 0, 0, 4767, - 4769, 3, 524, 262, 0, 4768, 4770, 3, 108, 54, 0, 4769, 4768, 1, 0, 0, 0, - 4769, 4770, 1, 0, 0, 0, 4770, 4854, 1, 0, 0, 0, 4771, 4772, 5, 210, 0, - 0, 4772, 4773, 3, 516, 258, 0, 4773, 4775, 3, 524, 262, 0, 4774, 4776, - 3, 108, 54, 0, 4775, 4774, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4854, - 1, 0, 0, 0, 4777, 4778, 5, 210, 0, 0, 4778, 4779, 3, 520, 260, 0, 4779, - 4780, 5, 239, 0, 0, 4780, 4781, 5, 409, 0, 0, 4781, 4783, 3, 1390, 695, - 0, 4782, 4784, 3, 108, 54, 0, 4783, 4782, 1, 0, 0, 0, 4783, 4784, 1, 0, - 0, 0, 4784, 4854, 1, 0, 0, 0, 4785, 4786, 5, 210, 0, 0, 4786, 4787, 3, - 520, 260, 0, 4787, 4789, 3, 1390, 695, 0, 4788, 4790, 3, 108, 54, 0, 4789, - 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4854, 1, 0, 0, 0, 4791, - 4792, 5, 210, 0, 0, 4792, 4793, 3, 522, 261, 0, 4793, 4794, 3, 1392, 696, - 0, 4794, 4795, 5, 80, 0, 0, 4795, 4797, 3, 526, 263, 0, 4796, 4798, 3, - 108, 54, 0, 4797, 4796, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 4854, - 1, 0, 0, 0, 4799, 4800, 5, 210, 0, 0, 4800, 4801, 3, 522, 261, 0, 4801, - 4802, 5, 239, 0, 0, 4802, 4803, 5, 409, 0, 0, 4803, 4804, 3, 1392, 696, - 0, 4804, 4805, 5, 80, 0, 0, 4805, 4807, 3, 526, 263, 0, 4806, 4808, 3, - 108, 54, 0, 4807, 4806, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4854, - 1, 0, 0, 0, 4809, 4810, 5, 210, 0, 0, 4810, 4811, 5, 372, 0, 0, 4811, 4813, - 3, 530, 265, 0, 4812, 4814, 3, 108, 54, 0, 4813, 4812, 1, 0, 0, 0, 4813, - 4814, 1, 0, 0, 0, 4814, 4854, 1, 0, 0, 0, 4815, 4816, 5, 210, 0, 0, 4816, - 4817, 5, 372, 0, 0, 4817, 4818, 5, 239, 0, 0, 4818, 4819, 5, 409, 0, 0, - 4819, 4821, 3, 530, 265, 0, 4820, 4822, 3, 108, 54, 0, 4821, 4820, 1, 0, - 0, 0, 4821, 4822, 1, 0, 0, 0, 4822, 4854, 1, 0, 0, 0, 4823, 4824, 5, 210, - 0, 0, 4824, 4825, 5, 208, 0, 0, 4825, 4827, 3, 530, 265, 0, 4826, 4828, - 3, 108, 54, 0, 4827, 4826, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 4854, - 1, 0, 0, 0, 4829, 4830, 5, 210, 0, 0, 4830, 4831, 5, 208, 0, 0, 4831, 4832, - 5, 239, 0, 0, 4832, 4833, 5, 409, 0, 0, 4833, 4835, 3, 530, 265, 0, 4834, - 4836, 3, 108, 54, 0, 4835, 4834, 1, 0, 0, 0, 4835, 4836, 1, 0, 0, 0, 4836, - 4854, 1, 0, 0, 0, 4837, 4838, 5, 210, 0, 0, 4838, 4839, 5, 245, 0, 0, 4839, - 4840, 5, 128, 0, 0, 4840, 4842, 3, 524, 262, 0, 4841, 4843, 3, 108, 54, - 0, 4842, 4841, 1, 0, 0, 0, 4842, 4843, 1, 0, 0, 0, 4843, 4854, 1, 0, 0, - 0, 4844, 4845, 5, 210, 0, 0, 4845, 4846, 5, 245, 0, 0, 4846, 4847, 5, 128, - 0, 0, 4847, 4848, 5, 239, 0, 0, 4848, 4849, 5, 409, 0, 0, 4849, 4851, 3, - 524, 262, 0, 4850, 4852, 3, 108, 54, 0, 4851, 4850, 1, 0, 0, 0, 4851, 4852, - 1, 0, 0, 0, 4852, 4854, 1, 0, 0, 0, 4853, 4763, 1, 0, 0, 0, 4853, 4771, - 1, 0, 0, 0, 4853, 4777, 1, 0, 0, 0, 4853, 4785, 1, 0, 0, 0, 4853, 4791, - 1, 0, 0, 0, 4853, 4799, 1, 0, 0, 0, 4853, 4809, 1, 0, 0, 0, 4853, 4815, - 1, 0, 0, 0, 4853, 4823, 1, 0, 0, 0, 4853, 4829, 1, 0, 0, 0, 4853, 4837, - 1, 0, 0, 0, 4853, 4844, 1, 0, 0, 0, 4854, 515, 1, 0, 0, 0, 4855, 4879, - 5, 92, 0, 0, 4856, 4879, 5, 340, 0, 0, 4857, 4879, 5, 388, 0, 0, 4858, - 4859, 5, 270, 0, 0, 4859, 4879, 5, 388, 0, 0, 4860, 4879, 5, 245, 0, 0, - 4861, 4862, 5, 63, 0, 0, 4862, 4879, 5, 92, 0, 0, 4863, 4879, 5, 127, 0, - 0, 4864, 4879, 5, 187, 0, 0, 4865, 4879, 5, 354, 0, 0, 4866, 4867, 5, 367, - 0, 0, 4867, 4868, 5, 337, 0, 0, 4868, 4879, 5, 295, 0, 0, 4869, 4870, 5, - 367, 0, 0, 4870, 4871, 5, 337, 0, 0, 4871, 4879, 5, 204, 0, 0, 4872, 4873, - 5, 367, 0, 0, 4873, 4874, 5, 337, 0, 0, 4874, 4879, 5, 365, 0, 0, 4875, - 4876, 5, 367, 0, 0, 4876, 4877, 5, 337, 0, 0, 4877, 4879, 5, 182, 0, 0, - 4878, 4855, 1, 0, 0, 0, 4878, 4856, 1, 0, 0, 0, 4878, 4857, 1, 0, 0, 0, - 4878, 4858, 1, 0, 0, 0, 4878, 4860, 1, 0, 0, 0, 4878, 4861, 1, 0, 0, 0, - 4878, 4863, 1, 0, 0, 0, 4878, 4864, 1, 0, 0, 0, 4878, 4865, 1, 0, 0, 0, - 4878, 4866, 1, 0, 0, 0, 4878, 4869, 1, 0, 0, 0, 4878, 4872, 1, 0, 0, 0, - 4878, 4875, 1, 0, 0, 0, 4879, 517, 1, 0, 0, 0, 4880, 4886, 3, 520, 260, - 0, 4881, 4886, 5, 194, 0, 0, 4882, 4886, 5, 330, 0, 0, 4883, 4886, 5, 472, - 0, 0, 4884, 4886, 5, 363, 0, 0, 4885, 4880, 1, 0, 0, 0, 4885, 4881, 1, - 0, 0, 0, 4885, 4882, 1, 0, 0, 0, 4885, 4883, 1, 0, 0, 0, 4885, 4884, 1, - 0, 0, 0, 4886, 519, 1, 0, 0, 0, 4887, 4888, 5, 150, 0, 0, 4888, 4903, 5, - 467, 0, 0, 4889, 4890, 5, 217, 0, 0, 4890, 4903, 5, 369, 0, 0, 4891, 4903, - 5, 223, 0, 0, 4892, 4893, 5, 63, 0, 0, 4893, 4894, 5, 193, 0, 0, 4894, - 4903, 5, 393, 0, 0, 4895, 4897, 3, 310, 155, 0, 4896, 4895, 1, 0, 0, 0, - 4896, 4897, 1, 0, 0, 0, 4897, 4898, 1, 0, 0, 0, 4898, 4903, 5, 257, 0, - 0, 4899, 4903, 5, 473, 0, 0, 4900, 4903, 5, 335, 0, 0, 4901, 4903, 5, 343, - 0, 0, 4902, 4887, 1, 0, 0, 0, 4902, 4889, 1, 0, 0, 0, 4902, 4891, 1, 0, - 0, 0, 4902, 4892, 1, 0, 0, 0, 4902, 4896, 1, 0, 0, 0, 4902, 4899, 1, 0, - 0, 0, 4902, 4900, 1, 0, 0, 0, 4902, 4901, 1, 0, 0, 0, 4903, 521, 1, 0, - 0, 0, 4904, 4905, 7, 24, 0, 0, 4905, 523, 1, 0, 0, 0, 4906, 4911, 3, 526, - 263, 0, 4907, 4908, 5, 6, 0, 0, 4908, 4910, 3, 526, 263, 0, 4909, 4907, - 1, 0, 0, 0, 4910, 4913, 1, 0, 0, 0, 4911, 4909, 1, 0, 0, 0, 4911, 4912, - 1, 0, 0, 0, 4912, 525, 1, 0, 0, 0, 4913, 4911, 1, 0, 0, 0, 4914, 4916, - 3, 1424, 712, 0, 4915, 4917, 3, 528, 264, 0, 4916, 4915, 1, 0, 0, 0, 4916, - 4917, 1, 0, 0, 0, 4917, 527, 1, 0, 0, 0, 4918, 4919, 5, 11, 0, 0, 4919, - 4921, 3, 1394, 697, 0, 4920, 4918, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, - 4922, 4920, 1, 0, 0, 0, 4922, 4923, 1, 0, 0, 0, 4923, 529, 1, 0, 0, 0, - 4924, 4929, 3, 1124, 562, 0, 4925, 4926, 5, 6, 0, 0, 4926, 4928, 3, 1124, - 562, 0, 4927, 4925, 1, 0, 0, 0, 4928, 4931, 1, 0, 0, 0, 4929, 4927, 1, - 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 531, 1, 0, 0, 0, 4931, 4929, 1, - 0, 0, 0, 4932, 4934, 5, 370, 0, 0, 4933, 4935, 3, 996, 498, 0, 4934, 4933, - 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4938, - 3, 1082, 541, 0, 4937, 4939, 3, 534, 267, 0, 4938, 4937, 1, 0, 0, 0, 4938, - 4939, 1, 0, 0, 0, 4939, 4941, 1, 0, 0, 0, 4940, 4942, 3, 108, 54, 0, 4941, - 4940, 1, 0, 0, 0, 4941, 4942, 1, 0, 0, 0, 4942, 533, 1, 0, 0, 0, 4943, - 4944, 5, 186, 0, 0, 4944, 4948, 5, 238, 0, 0, 4945, 4946, 5, 326, 0, 0, - 4946, 4948, 5, 238, 0, 0, 4947, 4943, 1, 0, 0, 0, 4947, 4945, 1, 0, 0, - 0, 4948, 535, 1, 0, 0, 0, 4949, 4950, 5, 178, 0, 0, 4950, 4951, 5, 80, - 0, 0, 4951, 4952, 3, 516, 258, 0, 4952, 4953, 3, 526, 263, 0, 4953, 4954, - 5, 135, 0, 0, 4954, 4955, 3, 538, 269, 0, 4955, 5097, 1, 0, 0, 0, 4956, - 4957, 5, 178, 0, 0, 4957, 4958, 5, 80, 0, 0, 4958, 4959, 5, 44, 0, 0, 4959, - 4960, 3, 526, 263, 0, 4960, 4961, 5, 135, 0, 0, 4961, 4962, 3, 538, 269, - 0, 4962, 5097, 1, 0, 0, 0, 4963, 4964, 5, 178, 0, 0, 4964, 4965, 5, 80, - 0, 0, 4965, 4966, 3, 518, 259, 0, 4966, 4967, 3, 1392, 696, 0, 4967, 4968, - 5, 135, 0, 0, 4968, 4969, 3, 538, 269, 0, 4969, 5097, 1, 0, 0, 0, 4970, - 4971, 5, 178, 0, 0, 4971, 4972, 5, 80, 0, 0, 4972, 4973, 5, 372, 0, 0, - 4973, 4974, 3, 1124, 562, 0, 4974, 4975, 5, 135, 0, 0, 4975, 4976, 3, 538, - 269, 0, 4976, 5097, 1, 0, 0, 0, 4977, 4978, 5, 178, 0, 0, 4978, 4979, 5, - 80, 0, 0, 4979, 4980, 5, 208, 0, 0, 4980, 4981, 3, 1124, 562, 0, 4981, - 4982, 5, 135, 0, 0, 4982, 4983, 3, 538, 269, 0, 4983, 5097, 1, 0, 0, 0, - 4984, 4985, 5, 178, 0, 0, 4985, 4986, 5, 80, 0, 0, 4986, 4987, 5, 155, - 0, 0, 4987, 4988, 3, 656, 328, 0, 4988, 4989, 5, 135, 0, 0, 4989, 4990, - 3, 538, 269, 0, 4990, 5097, 1, 0, 0, 0, 4991, 4992, 5, 178, 0, 0, 4992, - 4993, 5, 80, 0, 0, 4993, 4994, 5, 230, 0, 0, 4994, 4995, 3, 632, 316, 0, - 4995, 4996, 5, 135, 0, 0, 4996, 4997, 3, 538, 269, 0, 4997, 5097, 1, 0, - 0, 0, 4998, 4999, 5, 178, 0, 0, 4999, 5000, 5, 80, 0, 0, 5000, 5001, 5, - 290, 0, 0, 5001, 5002, 3, 694, 347, 0, 5002, 5003, 5, 135, 0, 0, 5003, - 5004, 3, 538, 269, 0, 5004, 5097, 1, 0, 0, 0, 5005, 5006, 5, 178, 0, 0, - 5006, 5007, 5, 80, 0, 0, 5007, 5008, 5, 45, 0, 0, 5008, 5009, 3, 1392, - 696, 0, 5009, 5010, 5, 80, 0, 0, 5010, 5011, 3, 526, 263, 0, 5011, 5012, - 5, 135, 0, 0, 5012, 5013, 3, 538, 269, 0, 5013, 5097, 1, 0, 0, 0, 5014, - 5015, 5, 178, 0, 0, 5015, 5016, 5, 80, 0, 0, 5016, 5017, 5, 45, 0, 0, 5017, - 5018, 3, 1392, 696, 0, 5018, 5019, 5, 80, 0, 0, 5019, 5020, 5, 208, 0, - 0, 5020, 5021, 3, 526, 263, 0, 5021, 5022, 5, 135, 0, 0, 5022, 5023, 3, - 538, 269, 0, 5023, 5097, 1, 0, 0, 0, 5024, 5025, 5, 178, 0, 0, 5025, 5026, - 5, 80, 0, 0, 5026, 5027, 3, 522, 261, 0, 5027, 5028, 3, 1392, 696, 0, 5028, - 5029, 5, 80, 0, 0, 5029, 5030, 3, 526, 263, 0, 5030, 5031, 5, 135, 0, 0, - 5031, 5032, 3, 538, 269, 0, 5032, 5097, 1, 0, 0, 0, 5033, 5034, 5, 178, - 0, 0, 5034, 5035, 5, 80, 0, 0, 5035, 5036, 5, 308, 0, 0, 5036, 5037, 3, - 632, 316, 0, 5037, 5038, 5, 135, 0, 0, 5038, 5039, 3, 538, 269, 0, 5039, - 5097, 1, 0, 0, 0, 5040, 5041, 5, 178, 0, 0, 5041, 5042, 5, 80, 0, 0, 5042, - 5043, 5, 463, 0, 0, 5043, 5044, 3, 632, 316, 0, 5044, 5045, 5, 135, 0, - 0, 5045, 5046, 3, 538, 269, 0, 5046, 5097, 1, 0, 0, 0, 5047, 5048, 5, 178, - 0, 0, 5048, 5049, 5, 80, 0, 0, 5049, 5050, 5, 464, 0, 0, 5050, 5051, 5, - 62, 0, 0, 5051, 5052, 3, 1124, 562, 0, 5052, 5053, 5, 257, 0, 0, 5053, - 5054, 3, 1392, 696, 0, 5054, 5055, 5, 135, 0, 0, 5055, 5056, 3, 538, 269, - 0, 5056, 5097, 1, 0, 0, 0, 5057, 5058, 5, 178, 0, 0, 5058, 5059, 5, 80, - 0, 0, 5059, 5060, 5, 290, 0, 0, 5060, 5061, 5, 175, 0, 0, 5061, 5062, 3, - 526, 263, 0, 5062, 5063, 5, 100, 0, 0, 5063, 5064, 3, 1392, 696, 0, 5064, - 5065, 5, 135, 0, 0, 5065, 5066, 3, 538, 269, 0, 5066, 5097, 1, 0, 0, 0, - 5067, 5068, 5, 178, 0, 0, 5068, 5069, 5, 80, 0, 0, 5069, 5070, 5, 290, - 0, 0, 5070, 5071, 5, 225, 0, 0, 5071, 5072, 3, 526, 263, 0, 5072, 5073, - 5, 100, 0, 0, 5073, 5074, 3, 1392, 696, 0, 5074, 5075, 5, 135, 0, 0, 5075, - 5076, 3, 538, 269, 0, 5076, 5097, 1, 0, 0, 0, 5077, 5078, 5, 178, 0, 0, - 5078, 5079, 5, 80, 0, 0, 5079, 5080, 5, 258, 0, 0, 5080, 5081, 5, 286, - 0, 0, 5081, 5082, 3, 294, 147, 0, 5082, 5083, 5, 135, 0, 0, 5083, 5084, - 3, 538, 269, 0, 5084, 5097, 1, 0, 0, 0, 5085, 5086, 5, 178, 0, 0, 5086, - 5087, 5, 80, 0, 0, 5087, 5088, 5, 41, 0, 0, 5088, 5089, 5, 2, 0, 0, 5089, - 5090, 3, 1124, 562, 0, 5090, 5091, 5, 36, 0, 0, 5091, 5092, 3, 1124, 562, - 0, 5092, 5093, 5, 3, 0, 0, 5093, 5094, 5, 135, 0, 0, 5094, 5095, 3, 538, - 269, 0, 5095, 5097, 1, 0, 0, 0, 5096, 4949, 1, 0, 0, 0, 5096, 4956, 1, - 0, 0, 0, 5096, 4963, 1, 0, 0, 0, 5096, 4970, 1, 0, 0, 0, 5096, 4977, 1, - 0, 0, 0, 5096, 4984, 1, 0, 0, 0, 5096, 4991, 1, 0, 0, 0, 5096, 4998, 1, - 0, 0, 0, 5096, 5005, 1, 0, 0, 0, 5096, 5014, 1, 0, 0, 0, 5096, 5024, 1, - 0, 0, 0, 5096, 5033, 1, 0, 0, 0, 5096, 5040, 1, 0, 0, 0, 5096, 5047, 1, - 0, 0, 0, 5096, 5057, 1, 0, 0, 0, 5096, 5067, 1, 0, 0, 0, 5096, 5077, 1, - 0, 0, 0, 5096, 5085, 1, 0, 0, 0, 5097, 537, 1, 0, 0, 0, 5098, 5101, 3, - 1410, 705, 0, 5099, 5101, 5, 78, 0, 0, 5100, 5098, 1, 0, 0, 0, 5100, 5099, - 1, 0, 0, 0, 5101, 539, 1, 0, 0, 0, 5102, 5103, 5, 339, 0, 0, 5103, 5105, - 5, 256, 0, 0, 5104, 5106, 3, 542, 271, 0, 5105, 5104, 1, 0, 0, 0, 5105, - 5106, 1, 0, 0, 0, 5106, 5107, 1, 0, 0, 0, 5107, 5108, 5, 80, 0, 0, 5108, - 5109, 3, 516, 258, 0, 5109, 5110, 3, 526, 263, 0, 5110, 5111, 5, 135, 0, - 0, 5111, 5112, 3, 544, 272, 0, 5112, 5214, 1, 0, 0, 0, 5113, 5114, 5, 339, - 0, 0, 5114, 5116, 5, 256, 0, 0, 5115, 5117, 3, 542, 271, 0, 5116, 5115, - 1, 0, 0, 0, 5116, 5117, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 5119, - 5, 80, 0, 0, 5119, 5120, 5, 44, 0, 0, 5120, 5121, 3, 526, 263, 0, 5121, - 5122, 5, 135, 0, 0, 5122, 5123, 3, 544, 272, 0, 5123, 5214, 1, 0, 0, 0, - 5124, 5125, 5, 339, 0, 0, 5125, 5127, 5, 256, 0, 0, 5126, 5128, 3, 542, - 271, 0, 5127, 5126, 1, 0, 0, 0, 5127, 5128, 1, 0, 0, 0, 5128, 5129, 1, - 0, 0, 0, 5129, 5130, 5, 80, 0, 0, 5130, 5131, 3, 518, 259, 0, 5131, 5132, - 3, 1392, 696, 0, 5132, 5133, 5, 135, 0, 0, 5133, 5134, 3, 544, 272, 0, - 5134, 5214, 1, 0, 0, 0, 5135, 5136, 5, 339, 0, 0, 5136, 5138, 5, 256, 0, - 0, 5137, 5139, 3, 542, 271, 0, 5138, 5137, 1, 0, 0, 0, 5138, 5139, 1, 0, - 0, 0, 5139, 5140, 1, 0, 0, 0, 5140, 5141, 5, 80, 0, 0, 5141, 5142, 5, 372, - 0, 0, 5142, 5143, 3, 1124, 562, 0, 5143, 5144, 5, 135, 0, 0, 5144, 5145, - 3, 544, 272, 0, 5145, 5214, 1, 0, 0, 0, 5146, 5147, 5, 339, 0, 0, 5147, - 5149, 5, 256, 0, 0, 5148, 5150, 3, 542, 271, 0, 5149, 5148, 1, 0, 0, 0, - 5149, 5150, 1, 0, 0, 0, 5150, 5151, 1, 0, 0, 0, 5151, 5152, 5, 80, 0, 0, - 5152, 5153, 5, 208, 0, 0, 5153, 5154, 3, 1124, 562, 0, 5154, 5155, 5, 135, - 0, 0, 5155, 5156, 3, 544, 272, 0, 5156, 5214, 1, 0, 0, 0, 5157, 5158, 5, - 339, 0, 0, 5158, 5160, 5, 256, 0, 0, 5159, 5161, 3, 542, 271, 0, 5160, - 5159, 1, 0, 0, 0, 5160, 5161, 1, 0, 0, 0, 5161, 5162, 1, 0, 0, 0, 5162, - 5163, 5, 80, 0, 0, 5163, 5164, 5, 155, 0, 0, 5164, 5165, 3, 656, 328, 0, - 5165, 5166, 5, 135, 0, 0, 5166, 5167, 3, 544, 272, 0, 5167, 5214, 1, 0, - 0, 0, 5168, 5169, 5, 339, 0, 0, 5169, 5171, 5, 256, 0, 0, 5170, 5172, 3, - 542, 271, 0, 5171, 5170, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5173, - 1, 0, 0, 0, 5173, 5174, 5, 80, 0, 0, 5174, 5175, 5, 230, 0, 0, 5175, 5176, - 3, 632, 316, 0, 5176, 5177, 5, 135, 0, 0, 5177, 5178, 3, 544, 272, 0, 5178, - 5214, 1, 0, 0, 0, 5179, 5180, 5, 339, 0, 0, 5180, 5182, 5, 256, 0, 0, 5181, - 5183, 3, 542, 271, 0, 5182, 5181, 1, 0, 0, 0, 5182, 5183, 1, 0, 0, 0, 5183, - 5184, 1, 0, 0, 0, 5184, 5185, 5, 80, 0, 0, 5185, 5186, 5, 258, 0, 0, 5186, - 5187, 5, 286, 0, 0, 5187, 5188, 3, 294, 147, 0, 5188, 5189, 5, 135, 0, - 0, 5189, 5190, 3, 544, 272, 0, 5190, 5214, 1, 0, 0, 0, 5191, 5192, 5, 339, - 0, 0, 5192, 5194, 5, 256, 0, 0, 5193, 5195, 3, 542, 271, 0, 5194, 5193, - 1, 0, 0, 0, 5194, 5195, 1, 0, 0, 0, 5195, 5196, 1, 0, 0, 0, 5196, 5197, - 5, 80, 0, 0, 5197, 5198, 5, 308, 0, 0, 5198, 5199, 3, 632, 316, 0, 5199, - 5200, 5, 135, 0, 0, 5200, 5201, 3, 544, 272, 0, 5201, 5214, 1, 0, 0, 0, - 5202, 5203, 5, 339, 0, 0, 5203, 5205, 5, 256, 0, 0, 5204, 5206, 3, 542, - 271, 0, 5205, 5204, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5207, 1, - 0, 0, 0, 5207, 5208, 5, 80, 0, 0, 5208, 5209, 5, 463, 0, 0, 5209, 5210, - 3, 632, 316, 0, 5210, 5211, 5, 135, 0, 0, 5211, 5212, 3, 544, 272, 0, 5212, - 5214, 1, 0, 0, 0, 5213, 5102, 1, 0, 0, 0, 5213, 5113, 1, 0, 0, 0, 5213, - 5124, 1, 0, 0, 0, 5213, 5135, 1, 0, 0, 0, 5213, 5146, 1, 0, 0, 0, 5213, - 5157, 1, 0, 0, 0, 5213, 5168, 1, 0, 0, 0, 5213, 5179, 1, 0, 0, 0, 5213, - 5191, 1, 0, 0, 0, 5213, 5202, 1, 0, 0, 0, 5214, 541, 1, 0, 0, 0, 5215, - 5216, 5, 62, 0, 0, 5216, 5217, 3, 72, 36, 0, 5217, 543, 1, 0, 0, 0, 5218, - 5221, 3, 1410, 705, 0, 5219, 5221, 5, 78, 0, 0, 5220, 5218, 1, 0, 0, 0, - 5220, 5219, 1, 0, 0, 0, 5221, 545, 1, 0, 0, 0, 5222, 5223, 5, 61, 0, 0, - 5223, 5227, 3, 548, 274, 0, 5224, 5225, 5, 277, 0, 0, 5225, 5227, 3, 548, - 274, 0, 5226, 5222, 1, 0, 0, 0, 5226, 5224, 1, 0, 0, 0, 5227, 547, 1, 0, - 0, 0, 5228, 5314, 3, 962, 481, 0, 5229, 5230, 3, 550, 275, 0, 5230, 5231, - 3, 962, 481, 0, 5231, 5314, 1, 0, 0, 0, 5232, 5234, 5, 280, 0, 0, 5233, - 5235, 3, 552, 276, 0, 5234, 5233, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, - 5236, 1, 0, 0, 0, 5236, 5314, 3, 962, 481, 0, 5237, 5239, 5, 305, 0, 0, - 5238, 5240, 3, 552, 276, 0, 5239, 5238, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, - 0, 5240, 5241, 1, 0, 0, 0, 5241, 5314, 3, 962, 481, 0, 5242, 5244, 5, 226, - 0, 0, 5243, 5245, 3, 552, 276, 0, 5244, 5243, 1, 0, 0, 0, 5244, 5245, 1, - 0, 0, 0, 5245, 5246, 1, 0, 0, 0, 5246, 5314, 3, 962, 481, 0, 5247, 5249, - 5, 259, 0, 0, 5248, 5250, 3, 552, 276, 0, 5249, 5248, 1, 0, 0, 0, 5249, - 5250, 1, 0, 0, 0, 5250, 5251, 1, 0, 0, 0, 5251, 5314, 3, 962, 481, 0, 5252, - 5253, 5, 149, 0, 0, 5253, 5255, 3, 1416, 708, 0, 5254, 5256, 3, 552, 276, - 0, 5255, 5254, 1, 0, 0, 0, 5255, 5256, 1, 0, 0, 0, 5256, 5257, 1, 0, 0, - 0, 5257, 5258, 3, 962, 481, 0, 5258, 5314, 1, 0, 0, 0, 5259, 5260, 5, 319, - 0, 0, 5260, 5262, 3, 1416, 708, 0, 5261, 5263, 3, 552, 276, 0, 5262, 5261, - 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5265, - 3, 962, 481, 0, 5265, 5314, 1, 0, 0, 0, 5266, 5268, 3, 1416, 708, 0, 5267, - 5269, 3, 552, 276, 0, 5268, 5267, 1, 0, 0, 0, 5268, 5269, 1, 0, 0, 0, 5269, - 5270, 1, 0, 0, 0, 5270, 5271, 3, 962, 481, 0, 5271, 5314, 1, 0, 0, 0, 5272, - 5274, 5, 30, 0, 0, 5273, 5275, 3, 552, 276, 0, 5274, 5273, 1, 0, 0, 0, - 5274, 5275, 1, 0, 0, 0, 5275, 5276, 1, 0, 0, 0, 5276, 5314, 3, 962, 481, - 0, 5277, 5279, 5, 229, 0, 0, 5278, 5280, 3, 552, 276, 0, 5279, 5278, 1, - 0, 0, 0, 5279, 5280, 1, 0, 0, 0, 5280, 5281, 1, 0, 0, 0, 5281, 5314, 3, - 962, 481, 0, 5282, 5283, 5, 229, 0, 0, 5283, 5285, 3, 1416, 708, 0, 5284, - 5286, 3, 552, 276, 0, 5285, 5284, 1, 0, 0, 0, 5285, 5286, 1, 0, 0, 0, 5286, - 5287, 1, 0, 0, 0, 5287, 5288, 3, 962, 481, 0, 5288, 5314, 1, 0, 0, 0, 5289, - 5290, 5, 229, 0, 0, 5290, 5292, 5, 30, 0, 0, 5291, 5293, 3, 552, 276, 0, - 5292, 5291, 1, 0, 0, 0, 5292, 5293, 1, 0, 0, 0, 5293, 5294, 1, 0, 0, 0, - 5294, 5314, 3, 962, 481, 0, 5295, 5297, 5, 163, 0, 0, 5296, 5298, 3, 552, - 276, 0, 5297, 5296, 1, 0, 0, 0, 5297, 5298, 1, 0, 0, 0, 5298, 5299, 1, - 0, 0, 0, 5299, 5314, 3, 962, 481, 0, 5300, 5301, 5, 163, 0, 0, 5301, 5303, - 3, 1416, 708, 0, 5302, 5304, 3, 552, 276, 0, 5303, 5302, 1, 0, 0, 0, 5303, - 5304, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5306, 3, 962, 481, 0, 5306, - 5314, 1, 0, 0, 0, 5307, 5308, 5, 163, 0, 0, 5308, 5310, 5, 30, 0, 0, 5309, - 5311, 3, 552, 276, 0, 5310, 5309, 1, 0, 0, 0, 5310, 5311, 1, 0, 0, 0, 5311, - 5312, 1, 0, 0, 0, 5312, 5314, 3, 962, 481, 0, 5313, 5228, 1, 0, 0, 0, 5313, - 5229, 1, 0, 0, 0, 5313, 5232, 1, 0, 0, 0, 5313, 5237, 1, 0, 0, 0, 5313, - 5242, 1, 0, 0, 0, 5313, 5247, 1, 0, 0, 0, 5313, 5252, 1, 0, 0, 0, 5313, - 5259, 1, 0, 0, 0, 5313, 5266, 1, 0, 0, 0, 5313, 5272, 1, 0, 0, 0, 5313, - 5277, 1, 0, 0, 0, 5313, 5282, 1, 0, 0, 0, 5313, 5289, 1, 0, 0, 0, 5313, - 5295, 1, 0, 0, 0, 5313, 5300, 1, 0, 0, 0, 5313, 5307, 1, 0, 0, 0, 5314, - 549, 1, 0, 0, 0, 5315, 5316, 7, 25, 0, 0, 5316, 551, 1, 0, 0, 0, 5317, - 5318, 3, 550, 275, 0, 5318, 553, 1, 0, 0, 0, 5319, 5320, 5, 65, 0, 0, 5320, - 5321, 3, 558, 279, 0, 5321, 5322, 5, 80, 0, 0, 5322, 5323, 3, 564, 282, - 0, 5323, 5324, 5, 94, 0, 0, 5324, 5326, 3, 570, 285, 0, 5325, 5327, 3, - 574, 287, 0, 5326, 5325, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 555, - 1, 0, 0, 0, 5328, 5329, 5, 329, 0, 0, 5329, 5330, 3, 558, 279, 0, 5330, - 5331, 5, 80, 0, 0, 5331, 5332, 3, 564, 282, 0, 5332, 5333, 5, 64, 0, 0, - 5333, 5335, 3, 570, 285, 0, 5334, 5336, 3, 108, 54, 0, 5335, 5334, 1, 0, - 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5350, 1, 0, 0, 0, 5337, 5338, 5, 329, - 0, 0, 5338, 5339, 5, 65, 0, 0, 5339, 5340, 5, 291, 0, 0, 5340, 5341, 5, - 62, 0, 0, 5341, 5342, 3, 558, 279, 0, 5342, 5343, 5, 80, 0, 0, 5343, 5344, - 3, 564, 282, 0, 5344, 5345, 5, 64, 0, 0, 5345, 5347, 3, 570, 285, 0, 5346, - 5348, 3, 108, 54, 0, 5347, 5346, 1, 0, 0, 0, 5347, 5348, 1, 0, 0, 0, 5348, - 5350, 1, 0, 0, 0, 5349, 5328, 1, 0, 0, 0, 5349, 5337, 1, 0, 0, 0, 5350, - 557, 1, 0, 0, 0, 5351, 5367, 3, 560, 280, 0, 5352, 5367, 5, 30, 0, 0, 5353, - 5354, 5, 30, 0, 0, 5354, 5367, 5, 306, 0, 0, 5355, 5356, 5, 30, 0, 0, 5356, - 5357, 5, 2, 0, 0, 5357, 5358, 3, 218, 109, 0, 5358, 5359, 5, 3, 0, 0, 5359, - 5367, 1, 0, 0, 0, 5360, 5361, 5, 30, 0, 0, 5361, 5362, 5, 306, 0, 0, 5362, - 5363, 5, 2, 0, 0, 5363, 5364, 3, 218, 109, 0, 5364, 5365, 5, 3, 0, 0, 5365, - 5367, 1, 0, 0, 0, 5366, 5351, 1, 0, 0, 0, 5366, 5352, 1, 0, 0, 0, 5366, - 5353, 1, 0, 0, 0, 5366, 5355, 1, 0, 0, 0, 5366, 5360, 1, 0, 0, 0, 5367, - 559, 1, 0, 0, 0, 5368, 5373, 3, 562, 281, 0, 5369, 5370, 5, 6, 0, 0, 5370, - 5372, 3, 562, 281, 0, 5371, 5369, 1, 0, 0, 0, 5372, 5375, 1, 0, 0, 0, 5373, - 5371, 1, 0, 0, 0, 5373, 5374, 1, 0, 0, 0, 5374, 561, 1, 0, 0, 0, 5375, - 5373, 1, 0, 0, 0, 5376, 5378, 5, 88, 0, 0, 5377, 5379, 3, 216, 108, 0, - 5378, 5377, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5395, 1, 0, 0, 0, - 5380, 5382, 5, 86, 0, 0, 5381, 5383, 3, 216, 108, 0, 5382, 5381, 1, 0, - 0, 0, 5382, 5383, 1, 0, 0, 0, 5383, 5395, 1, 0, 0, 0, 5384, 5386, 5, 46, - 0, 0, 5385, 5387, 3, 216, 108, 0, 5386, 5385, 1, 0, 0, 0, 5386, 5387, 1, - 0, 0, 0, 5387, 5395, 1, 0, 0, 0, 5388, 5389, 5, 157, 0, 0, 5389, 5395, - 5, 361, 0, 0, 5390, 5392, 3, 1424, 712, 0, 5391, 5393, 3, 216, 108, 0, - 5392, 5391, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5395, 1, 0, 0, 0, - 5394, 5376, 1, 0, 0, 0, 5394, 5380, 1, 0, 0, 0, 5394, 5384, 1, 0, 0, 0, - 5394, 5388, 1, 0, 0, 0, 5394, 5390, 1, 0, 0, 0, 5395, 563, 1, 0, 0, 0, - 5396, 5457, 3, 1386, 693, 0, 5397, 5398, 5, 92, 0, 0, 5398, 5457, 3, 1386, - 693, 0, 5399, 5400, 5, 340, 0, 0, 5400, 5457, 3, 1386, 693, 0, 5401, 5402, - 5, 63, 0, 0, 5402, 5403, 5, 193, 0, 0, 5403, 5404, 5, 393, 0, 0, 5404, - 5457, 3, 1390, 695, 0, 5405, 5406, 5, 63, 0, 0, 5406, 5407, 5, 343, 0, - 0, 5407, 5457, 3, 1390, 695, 0, 5408, 5409, 5, 230, 0, 0, 5409, 5457, 3, - 630, 315, 0, 5410, 5411, 5, 308, 0, 0, 5411, 5457, 3, 630, 315, 0, 5412, - 5413, 5, 463, 0, 0, 5413, 5457, 3, 630, 315, 0, 5414, 5415, 5, 194, 0, - 0, 5415, 5457, 3, 1390, 695, 0, 5416, 5417, 5, 208, 0, 0, 5417, 5457, 3, - 524, 262, 0, 5418, 5419, 5, 257, 0, 0, 5419, 5457, 3, 1390, 695, 0, 5420, - 5421, 5, 258, 0, 0, 5421, 5422, 5, 286, 0, 0, 5422, 5457, 3, 296, 148, - 0, 5423, 5424, 5, 424, 0, 0, 5424, 5457, 3, 566, 283, 0, 5425, 5426, 5, - 335, 0, 0, 5426, 5457, 3, 1390, 695, 0, 5427, 5428, 5, 363, 0, 0, 5428, - 5457, 3, 1390, 695, 0, 5429, 5430, 5, 372, 0, 0, 5430, 5457, 3, 524, 262, - 0, 5431, 5432, 5, 30, 0, 0, 5432, 5433, 5, 362, 0, 0, 5433, 5434, 5, 68, - 0, 0, 5434, 5435, 5, 335, 0, 0, 5435, 5457, 3, 1390, 695, 0, 5436, 5437, - 5, 30, 0, 0, 5437, 5438, 5, 341, 0, 0, 5438, 5439, 5, 68, 0, 0, 5439, 5440, - 5, 335, 0, 0, 5440, 5457, 3, 1390, 695, 0, 5441, 5442, 5, 30, 0, 0, 5442, - 5443, 5, 231, 0, 0, 5443, 5444, 5, 68, 0, 0, 5444, 5445, 5, 335, 0, 0, - 5445, 5457, 3, 1390, 695, 0, 5446, 5447, 5, 30, 0, 0, 5447, 5448, 5, 478, - 0, 0, 5448, 5449, 5, 68, 0, 0, 5449, 5450, 5, 335, 0, 0, 5450, 5457, 3, - 1390, 695, 0, 5451, 5452, 5, 30, 0, 0, 5452, 5453, 5, 476, 0, 0, 5453, - 5454, 5, 68, 0, 0, 5454, 5455, 5, 335, 0, 0, 5455, 5457, 3, 1390, 695, - 0, 5456, 5396, 1, 0, 0, 0, 5456, 5397, 1, 0, 0, 0, 5456, 5399, 1, 0, 0, - 0, 5456, 5401, 1, 0, 0, 0, 5456, 5405, 1, 0, 0, 0, 5456, 5408, 1, 0, 0, - 0, 5456, 5410, 1, 0, 0, 0, 5456, 5412, 1, 0, 0, 0, 5456, 5414, 1, 0, 0, - 0, 5456, 5416, 1, 0, 0, 0, 5456, 5418, 1, 0, 0, 0, 5456, 5420, 1, 0, 0, - 0, 5456, 5423, 1, 0, 0, 0, 5456, 5425, 1, 0, 0, 0, 5456, 5427, 1, 0, 0, - 0, 5456, 5429, 1, 0, 0, 0, 5456, 5431, 1, 0, 0, 0, 5456, 5436, 1, 0, 0, - 0, 5456, 5441, 1, 0, 0, 0, 5456, 5446, 1, 0, 0, 0, 5456, 5451, 1, 0, 0, - 0, 5457, 565, 1, 0, 0, 0, 5458, 5463, 3, 568, 284, 0, 5459, 5460, 5, 6, - 0, 0, 5460, 5462, 3, 568, 284, 0, 5461, 5459, 1, 0, 0, 0, 5462, 5465, 1, - 0, 0, 0, 5463, 5461, 1, 0, 0, 0, 5463, 5464, 1, 0, 0, 0, 5464, 567, 1, - 0, 0, 0, 5465, 5463, 1, 0, 0, 0, 5466, 5469, 3, 1424, 712, 0, 5467, 5468, - 5, 11, 0, 0, 5468, 5470, 3, 1424, 712, 0, 5469, 5467, 1, 0, 0, 0, 5469, - 5470, 1, 0, 0, 0, 5470, 569, 1, 0, 0, 0, 5471, 5476, 3, 572, 286, 0, 5472, - 5473, 5, 6, 0, 0, 5473, 5475, 3, 572, 286, 0, 5474, 5472, 1, 0, 0, 0, 5475, - 5478, 1, 0, 0, 0, 5476, 5474, 1, 0, 0, 0, 5476, 5477, 1, 0, 0, 0, 5477, - 571, 1, 0, 0, 0, 5478, 5476, 1, 0, 0, 0, 5479, 5483, 3, 1420, 710, 0, 5480, - 5481, 5, 66, 0, 0, 5481, 5483, 3, 1420, 710, 0, 5482, 5479, 1, 0, 0, 0, - 5482, 5480, 1, 0, 0, 0, 5483, 573, 1, 0, 0, 0, 5484, 5485, 5, 105, 0, 0, - 5485, 5486, 5, 65, 0, 0, 5486, 5487, 5, 291, 0, 0, 5487, 575, 1, 0, 0, - 0, 5488, 5489, 5, 65, 0, 0, 5489, 5490, 3, 560, 280, 0, 5490, 5491, 5, - 94, 0, 0, 5491, 5493, 3, 1422, 711, 0, 5492, 5494, 3, 580, 290, 0, 5493, - 5492, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 5496, 1, 0, 0, 0, 5495, - 5497, 3, 582, 291, 0, 5496, 5495, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, - 577, 1, 0, 0, 0, 5498, 5499, 5, 329, 0, 0, 5499, 5500, 3, 560, 280, 0, - 5500, 5501, 5, 64, 0, 0, 5501, 5503, 3, 1422, 711, 0, 5502, 5504, 3, 582, - 291, 0, 5503, 5502, 1, 0, 0, 0, 5503, 5504, 1, 0, 0, 0, 5504, 5506, 1, - 0, 0, 0, 5505, 5507, 3, 108, 54, 0, 5506, 5505, 1, 0, 0, 0, 5506, 5507, - 1, 0, 0, 0, 5507, 5522, 1, 0, 0, 0, 5508, 5509, 5, 329, 0, 0, 5509, 5510, - 5, 153, 0, 0, 5510, 5511, 5, 291, 0, 0, 5511, 5512, 5, 62, 0, 0, 5512, - 5513, 3, 560, 280, 0, 5513, 5514, 5, 64, 0, 0, 5514, 5516, 3, 1422, 711, - 0, 5515, 5517, 3, 582, 291, 0, 5516, 5515, 1, 0, 0, 0, 5516, 5517, 1, 0, - 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5520, 3, 108, 54, 0, 5519, 5518, 1, - 0, 0, 0, 5519, 5520, 1, 0, 0, 0, 5520, 5522, 1, 0, 0, 0, 5521, 5498, 1, - 0, 0, 0, 5521, 5508, 1, 0, 0, 0, 5522, 579, 1, 0, 0, 0, 5523, 5524, 5, - 105, 0, 0, 5524, 5525, 5, 153, 0, 0, 5525, 5526, 5, 291, 0, 0, 5526, 581, - 1, 0, 0, 0, 5527, 5528, 5, 233, 0, 0, 5528, 5529, 5, 166, 0, 0, 5529, 5530, - 3, 1420, 710, 0, 5530, 583, 1, 0, 0, 0, 5531, 5532, 5, 157, 0, 0, 5532, - 5533, 5, 53, 0, 0, 5533, 5534, 5, 306, 0, 0, 5534, 5535, 3, 586, 293, 0, - 5535, 5536, 3, 590, 295, 0, 5536, 585, 1, 0, 0, 0, 5537, 5539, 3, 588, - 294, 0, 5538, 5537, 1, 0, 0, 0, 5539, 5542, 1, 0, 0, 0, 5540, 5538, 1, - 0, 0, 0, 5540, 5541, 1, 0, 0, 0, 5541, 587, 1, 0, 0, 0, 5542, 5540, 1, - 0, 0, 0, 5543, 5544, 5, 68, 0, 0, 5544, 5545, 5, 335, 0, 0, 5545, 5553, - 3, 1390, 695, 0, 5546, 5547, 5, 62, 0, 0, 5547, 5548, 5, 330, 0, 0, 5548, - 5553, 3, 1422, 711, 0, 5549, 5550, 5, 62, 0, 0, 5550, 5551, 5, 99, 0, 0, - 5551, 5553, 3, 1422, 711, 0, 5552, 5543, 1, 0, 0, 0, 5552, 5546, 1, 0, - 0, 0, 5552, 5549, 1, 0, 0, 0, 5553, 589, 1, 0, 0, 0, 5554, 5555, 5, 65, - 0, 0, 5555, 5556, 3, 558, 279, 0, 5556, 5557, 5, 80, 0, 0, 5557, 5558, - 3, 592, 296, 0, 5558, 5559, 5, 94, 0, 0, 5559, 5561, 3, 570, 285, 0, 5560, - 5562, 3, 574, 287, 0, 5561, 5560, 1, 0, 0, 0, 5561, 5562, 1, 0, 0, 0, 5562, - 5585, 1, 0, 0, 0, 5563, 5564, 5, 329, 0, 0, 5564, 5565, 3, 558, 279, 0, - 5565, 5566, 5, 80, 0, 0, 5566, 5567, 3, 592, 296, 0, 5567, 5568, 5, 64, - 0, 0, 5568, 5570, 3, 570, 285, 0, 5569, 5571, 3, 108, 54, 0, 5570, 5569, - 1, 0, 0, 0, 5570, 5571, 1, 0, 0, 0, 5571, 5585, 1, 0, 0, 0, 5572, 5573, - 5, 329, 0, 0, 5573, 5574, 5, 65, 0, 0, 5574, 5575, 5, 291, 0, 0, 5575, - 5576, 5, 62, 0, 0, 5576, 5577, 3, 558, 279, 0, 5577, 5578, 5, 80, 0, 0, - 5578, 5579, 3, 592, 296, 0, 5579, 5580, 5, 64, 0, 0, 5580, 5582, 3, 570, - 285, 0, 5581, 5583, 3, 108, 54, 0, 5582, 5581, 1, 0, 0, 0, 5582, 5583, - 1, 0, 0, 0, 5583, 5585, 1, 0, 0, 0, 5584, 5554, 1, 0, 0, 0, 5584, 5563, - 1, 0, 0, 0, 5584, 5572, 1, 0, 0, 0, 5585, 591, 1, 0, 0, 0, 5586, 5587, - 7, 26, 0, 0, 5587, 593, 1, 0, 0, 0, 5588, 5590, 5, 46, 0, 0, 5589, 5591, - 3, 596, 298, 0, 5590, 5589, 1, 0, 0, 0, 5590, 5591, 1, 0, 0, 0, 5591, 5592, - 1, 0, 0, 0, 5592, 5594, 5, 245, 0, 0, 5593, 5595, 3, 598, 299, 0, 5594, - 5593, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 5602, 1, 0, 0, 0, 5596, - 5597, 5, 239, 0, 0, 5597, 5598, 5, 77, 0, 0, 5598, 5600, 5, 409, 0, 0, - 5599, 5596, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, - 5601, 5603, 3, 1392, 696, 0, 5602, 5599, 1, 0, 0, 0, 5602, 5603, 1, 0, - 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5605, 5, 80, 0, 0, 5605, 5607, 3, 1080, - 540, 0, 5606, 5608, 3, 602, 301, 0, 5607, 5606, 1, 0, 0, 0, 5607, 5608, - 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5610, 5, 2, 0, 0, 5610, 5611, - 3, 604, 302, 0, 5611, 5613, 5, 3, 0, 0, 5612, 5614, 3, 610, 305, 0, 5613, - 5612, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5616, 1, 0, 0, 0, 5615, - 5617, 3, 198, 99, 0, 5616, 5615, 1, 0, 0, 0, 5616, 5617, 1, 0, 0, 0, 5617, - 5619, 1, 0, 0, 0, 5618, 5620, 3, 118, 59, 0, 5619, 5618, 1, 0, 0, 0, 5619, - 5620, 1, 0, 0, 0, 5620, 5622, 1, 0, 0, 0, 5621, 5623, 3, 256, 128, 0, 5622, - 5621, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 5625, 1, 0, 0, 0, 5624, - 5626, 3, 1100, 550, 0, 5625, 5624, 1, 0, 0, 0, 5625, 5626, 1, 0, 0, 0, - 5626, 595, 1, 0, 0, 0, 5627, 5628, 5, 98, 0, 0, 5628, 597, 1, 0, 0, 0, - 5629, 5630, 5, 128, 0, 0, 5630, 599, 1, 0, 0, 0, 5631, 5632, 3, 1392, 696, - 0, 5632, 601, 1, 0, 0, 0, 5633, 5634, 5, 100, 0, 0, 5634, 5635, 3, 1392, - 696, 0, 5635, 603, 1, 0, 0, 0, 5636, 5641, 3, 608, 304, 0, 5637, 5638, - 5, 6, 0, 0, 5638, 5640, 3, 608, 304, 0, 5639, 5637, 1, 0, 0, 0, 5640, 5643, - 1, 0, 0, 0, 5641, 5639, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 605, - 1, 0, 0, 0, 5643, 5641, 1, 0, 0, 0, 5644, 5646, 3, 614, 307, 0, 5645, 5644, - 1, 0, 0, 0, 5645, 5646, 1, 0, 0, 0, 5646, 5648, 1, 0, 0, 0, 5647, 5649, - 3, 616, 308, 0, 5648, 5647, 1, 0, 0, 0, 5648, 5649, 1, 0, 0, 0, 5649, 5651, - 1, 0, 0, 0, 5650, 5652, 3, 618, 309, 0, 5651, 5650, 1, 0, 0, 0, 5651, 5652, - 1, 0, 0, 0, 5652, 5654, 1, 0, 0, 0, 5653, 5655, 3, 620, 310, 0, 5654, 5653, - 1, 0, 0, 0, 5654, 5655, 1, 0, 0, 0, 5655, 5668, 1, 0, 0, 0, 5656, 5658, - 3, 614, 307, 0, 5657, 5656, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5659, - 1, 0, 0, 0, 5659, 5660, 3, 526, 263, 0, 5660, 5662, 3, 116, 58, 0, 5661, - 5663, 3, 618, 309, 0, 5662, 5661, 1, 0, 0, 0, 5662, 5663, 1, 0, 0, 0, 5663, - 5665, 1, 0, 0, 0, 5664, 5666, 3, 620, 310, 0, 5665, 5664, 1, 0, 0, 0, 5665, - 5666, 1, 0, 0, 0, 5666, 5668, 1, 0, 0, 0, 5667, 5645, 1, 0, 0, 0, 5667, - 5657, 1, 0, 0, 0, 5668, 607, 1, 0, 0, 0, 5669, 5670, 3, 1424, 712, 0, 5670, - 5671, 3, 606, 303, 0, 5671, 5681, 1, 0, 0, 0, 5672, 5673, 3, 1220, 610, - 0, 5673, 5674, 3, 606, 303, 0, 5674, 5681, 1, 0, 0, 0, 5675, 5676, 5, 2, - 0, 0, 5676, 5677, 3, 1168, 584, 0, 5677, 5678, 5, 3, 0, 0, 5678, 5679, - 3, 606, 303, 0, 5679, 5681, 1, 0, 0, 0, 5680, 5669, 1, 0, 0, 0, 5680, 5672, - 1, 0, 0, 0, 5680, 5675, 1, 0, 0, 0, 5681, 609, 1, 0, 0, 0, 5682, 5683, - 5, 462, 0, 0, 5683, 5684, 5, 2, 0, 0, 5684, 5685, 3, 612, 306, 0, 5685, - 5686, 5, 3, 0, 0, 5686, 611, 1, 0, 0, 0, 5687, 5692, 3, 608, 304, 0, 5688, - 5689, 5, 6, 0, 0, 5689, 5691, 3, 608, 304, 0, 5690, 5688, 1, 0, 0, 0, 5691, - 5694, 1, 0, 0, 0, 5692, 5690, 1, 0, 0, 0, 5692, 5693, 1, 0, 0, 0, 5693, - 613, 1, 0, 0, 0, 5694, 5692, 1, 0, 0, 0, 5695, 5696, 5, 43, 0, 0, 5696, - 5697, 3, 526, 263, 0, 5697, 615, 1, 0, 0, 0, 5698, 5699, 3, 526, 263, 0, - 5699, 617, 1, 0, 0, 0, 5700, 5701, 7, 27, 0, 0, 5701, 619, 1, 0, 0, 0, - 5702, 5703, 5, 285, 0, 0, 5703, 5707, 5, 226, 0, 0, 5704, 5705, 5, 285, - 0, 0, 5705, 5707, 5, 259, 0, 0, 5706, 5702, 1, 0, 0, 0, 5706, 5704, 1, - 0, 0, 0, 5707, 621, 1, 0, 0, 0, 5708, 5710, 5, 46, 0, 0, 5709, 5711, 3, - 624, 312, 0, 5710, 5709, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5712, - 1, 0, 0, 0, 5712, 5713, 7, 23, 0, 0, 5713, 5714, 3, 1398, 699, 0, 5714, - 5724, 3, 634, 317, 0, 5715, 5722, 5, 328, 0, 0, 5716, 5723, 3, 644, 322, - 0, 5717, 5718, 5, 92, 0, 0, 5718, 5719, 5, 2, 0, 0, 5719, 5720, 3, 674, - 337, 0, 5720, 5721, 5, 3, 0, 0, 5721, 5723, 1, 0, 0, 0, 5722, 5716, 1, - 0, 0, 0, 5722, 5717, 1, 0, 0, 0, 5723, 5725, 1, 0, 0, 0, 5724, 5715, 1, - 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 5726, 1, 0, 0, 0, 5726, 5727, 3, - 660, 330, 0, 5727, 623, 1, 0, 0, 0, 5728, 5729, 5, 82, 0, 0, 5729, 5730, - 5, 323, 0, 0, 5730, 625, 1, 0, 0, 0, 5731, 5733, 5, 2, 0, 0, 5732, 5734, - 3, 628, 314, 0, 5733, 5732, 1, 0, 0, 0, 5733, 5734, 1, 0, 0, 0, 5734, 5735, - 1, 0, 0, 0, 5735, 5736, 5, 3, 0, 0, 5736, 627, 1, 0, 0, 0, 5737, 5742, - 3, 638, 319, 0, 5738, 5739, 5, 6, 0, 0, 5739, 5741, 3, 638, 319, 0, 5740, - 5738, 1, 0, 0, 0, 5741, 5744, 1, 0, 0, 0, 5742, 5740, 1, 0, 0, 0, 5742, - 5743, 1, 0, 0, 0, 5743, 629, 1, 0, 0, 0, 5744, 5742, 1, 0, 0, 0, 5745, - 5750, 3, 632, 316, 0, 5746, 5747, 5, 6, 0, 0, 5747, 5749, 3, 632, 316, - 0, 5748, 5746, 1, 0, 0, 0, 5749, 5752, 1, 0, 0, 0, 5750, 5748, 1, 0, 0, - 0, 5750, 5751, 1, 0, 0, 0, 5751, 631, 1, 0, 0, 0, 5752, 5750, 1, 0, 0, - 0, 5753, 5754, 3, 1398, 699, 0, 5754, 5755, 3, 626, 313, 0, 5755, 5762, - 1, 0, 0, 0, 5756, 5762, 3, 1442, 721, 0, 5757, 5759, 3, 1424, 712, 0, 5758, - 5760, 3, 1374, 687, 0, 5759, 5758, 1, 0, 0, 0, 5759, 5760, 1, 0, 0, 0, - 5760, 5762, 1, 0, 0, 0, 5761, 5753, 1, 0, 0, 0, 5761, 5756, 1, 0, 0, 0, - 5761, 5757, 1, 0, 0, 0, 5762, 633, 1, 0, 0, 0, 5763, 5765, 5, 2, 0, 0, - 5764, 5766, 3, 636, 318, 0, 5765, 5764, 1, 0, 0, 0, 5765, 5766, 1, 0, 0, - 0, 5766, 5767, 1, 0, 0, 0, 5767, 5768, 5, 3, 0, 0, 5768, 635, 1, 0, 0, - 0, 5769, 5774, 3, 648, 324, 0, 5770, 5771, 5, 6, 0, 0, 5771, 5773, 3, 648, - 324, 0, 5772, 5770, 1, 0, 0, 0, 5773, 5776, 1, 0, 0, 0, 5774, 5772, 1, - 0, 0, 0, 5774, 5775, 1, 0, 0, 0, 5775, 637, 1, 0, 0, 0, 5776, 5774, 1, - 0, 0, 0, 5777, 5779, 3, 640, 320, 0, 5778, 5780, 3, 642, 321, 0, 5779, - 5778, 1, 0, 0, 0, 5779, 5780, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, - 5782, 3, 646, 323, 0, 5782, 5791, 1, 0, 0, 0, 5783, 5785, 3, 642, 321, - 0, 5784, 5786, 3, 640, 320, 0, 5785, 5784, 1, 0, 0, 0, 5785, 5786, 1, 0, - 0, 0, 5786, 5787, 1, 0, 0, 0, 5787, 5788, 3, 646, 323, 0, 5788, 5791, 1, - 0, 0, 0, 5789, 5791, 3, 646, 323, 0, 5790, 5777, 1, 0, 0, 0, 5790, 5783, - 1, 0, 0, 0, 5790, 5789, 1, 0, 0, 0, 5791, 639, 1, 0, 0, 0, 5792, 5794, - 5, 68, 0, 0, 5793, 5795, 5, 474, 0, 0, 5794, 5793, 1, 0, 0, 0, 5794, 5795, - 1, 0, 0, 0, 5795, 5800, 1, 0, 0, 0, 5796, 5800, 5, 474, 0, 0, 5797, 5800, - 5, 413, 0, 0, 5798, 5800, 5, 101, 0, 0, 5799, 5792, 1, 0, 0, 0, 5799, 5796, - 1, 0, 0, 0, 5799, 5797, 1, 0, 0, 0, 5799, 5798, 1, 0, 0, 0, 5800, 641, - 1, 0, 0, 0, 5801, 5806, 3, 1428, 714, 0, 5802, 5806, 3, 1446, 723, 0, 5803, - 5806, 5, 138, 0, 0, 5804, 5806, 5, 145, 0, 0, 5805, 5801, 1, 0, 0, 0, 5805, - 5802, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5805, 5804, 1, 0, 0, 0, 5806, - 643, 1, 0, 0, 0, 5807, 5808, 3, 646, 323, 0, 5808, 645, 1, 0, 0, 0, 5809, - 5824, 3, 1124, 562, 0, 5810, 5812, 5, 429, 0, 0, 5811, 5810, 1, 0, 0, 0, - 5811, 5812, 1, 0, 0, 0, 5812, 5817, 1, 0, 0, 0, 5813, 5818, 3, 1446, 723, - 0, 5814, 5818, 3, 1428, 714, 0, 5815, 5818, 5, 138, 0, 0, 5816, 5818, 5, - 145, 0, 0, 5817, 5813, 1, 0, 0, 0, 5817, 5814, 1, 0, 0, 0, 5817, 5815, - 1, 0, 0, 0, 5817, 5816, 1, 0, 0, 0, 5818, 5819, 1, 0, 0, 0, 5819, 5820, - 3, 528, 264, 0, 5820, 5821, 5, 27, 0, 0, 5821, 5822, 5, 372, 0, 0, 5822, - 5824, 1, 0, 0, 0, 5823, 5809, 1, 0, 0, 0, 5823, 5811, 1, 0, 0, 0, 5824, - 647, 1, 0, 0, 0, 5825, 5828, 3, 638, 319, 0, 5826, 5827, 7, 28, 0, 0, 5827, - 5829, 3, 1168, 584, 0, 5828, 5826, 1, 0, 0, 0, 5828, 5829, 1, 0, 0, 0, - 5829, 649, 1, 0, 0, 0, 5830, 5831, 3, 638, 319, 0, 5831, 651, 1, 0, 0, - 0, 5832, 5843, 5, 2, 0, 0, 5833, 5844, 5, 9, 0, 0, 5834, 5844, 3, 654, - 327, 0, 5835, 5836, 5, 83, 0, 0, 5836, 5837, 5, 166, 0, 0, 5837, 5844, - 3, 654, 327, 0, 5838, 5839, 3, 654, 327, 0, 5839, 5840, 5, 83, 0, 0, 5840, - 5841, 5, 166, 0, 0, 5841, 5842, 3, 654, 327, 0, 5842, 5844, 1, 0, 0, 0, - 5843, 5833, 1, 0, 0, 0, 5843, 5834, 1, 0, 0, 0, 5843, 5835, 1, 0, 0, 0, - 5843, 5838, 1, 0, 0, 0, 5844, 5845, 1, 0, 0, 0, 5845, 5846, 5, 3, 0, 0, - 5846, 653, 1, 0, 0, 0, 5847, 5852, 3, 650, 325, 0, 5848, 5849, 5, 6, 0, - 0, 5849, 5851, 3, 650, 325, 0, 5850, 5848, 1, 0, 0, 0, 5851, 5854, 1, 0, - 0, 0, 5852, 5850, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 655, 1, 0, - 0, 0, 5854, 5852, 1, 0, 0, 0, 5855, 5856, 3, 1398, 699, 0, 5856, 5857, - 3, 652, 326, 0, 5857, 657, 1, 0, 0, 0, 5858, 5863, 3, 656, 328, 0, 5859, - 5860, 5, 6, 0, 0, 5860, 5862, 3, 656, 328, 0, 5861, 5859, 1, 0, 0, 0, 5862, - 5865, 1, 0, 0, 0, 5863, 5861, 1, 0, 0, 0, 5863, 5864, 1, 0, 0, 0, 5864, - 659, 1, 0, 0, 0, 5865, 5863, 1, 0, 0, 0, 5866, 5868, 3, 664, 332, 0, 5867, - 5866, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5867, 1, 0, 0, 0, 5869, - 5870, 1, 0, 0, 0, 5870, 5871, 1, 0, 0, 0, 5871, 5872, 6, 330, -1, 0, 5872, - 661, 1, 0, 0, 0, 5873, 5874, 5, 168, 0, 0, 5874, 5875, 5, 80, 0, 0, 5875, - 5876, 5, 78, 0, 0, 5876, 5909, 5, 479, 0, 0, 5877, 5878, 5, 328, 0, 0, - 5878, 5879, 5, 78, 0, 0, 5879, 5880, 5, 80, 0, 0, 5880, 5881, 5, 78, 0, - 0, 5881, 5909, 5, 479, 0, 0, 5882, 5909, 5, 358, 0, 0, 5883, 5909, 5, 241, - 0, 0, 5884, 5909, 5, 350, 0, 0, 5885, 5909, 5, 389, 0, 0, 5886, 5887, 5, - 224, 0, 0, 5887, 5888, 5, 339, 0, 0, 5888, 5909, 5, 200, 0, 0, 5889, 5890, - 5, 224, 0, 0, 5890, 5891, 5, 339, 0, 0, 5891, 5909, 5, 253, 0, 0, 5892, - 5893, 5, 339, 0, 0, 5893, 5909, 5, 200, 0, 0, 5894, 5895, 5, 339, 0, 0, - 5895, 5909, 5, 253, 0, 0, 5896, 5909, 5, 260, 0, 0, 5897, 5898, 5, 77, - 0, 0, 5898, 5909, 5, 260, 0, 0, 5899, 5900, 5, 189, 0, 0, 5900, 5909, 3, - 294, 147, 0, 5901, 5902, 5, 332, 0, 0, 5902, 5909, 3, 294, 147, 0, 5903, - 5904, 5, 480, 0, 0, 5904, 5909, 3, 526, 263, 0, 5905, 5909, 3, 82, 41, - 0, 5906, 5907, 5, 481, 0, 0, 5907, 5909, 3, 1424, 712, 0, 5908, 5873, 1, - 0, 0, 0, 5908, 5877, 1, 0, 0, 0, 5908, 5882, 1, 0, 0, 0, 5908, 5883, 1, - 0, 0, 0, 5908, 5884, 1, 0, 0, 0, 5908, 5885, 1, 0, 0, 0, 5908, 5886, 1, - 0, 0, 0, 5908, 5889, 1, 0, 0, 0, 5908, 5892, 1, 0, 0, 0, 5908, 5894, 1, - 0, 0, 0, 5908, 5896, 1, 0, 0, 0, 5908, 5897, 1, 0, 0, 0, 5908, 5899, 1, - 0, 0, 0, 5908, 5901, 1, 0, 0, 0, 5908, 5903, 1, 0, 0, 0, 5908, 5905, 1, - 0, 0, 0, 5908, 5906, 1, 0, 0, 0, 5909, 663, 1, 0, 0, 0, 5910, 5911, 5, - 36, 0, 0, 5911, 5924, 3, 666, 333, 0, 5912, 5913, 5, 165, 0, 0, 5913, 5914, - 5, 399, 0, 0, 5914, 5915, 3, 6, 3, 0, 5915, 5916, 5, 475, 0, 0, 5916, 5924, - 1, 0, 0, 0, 5917, 5918, 5, 257, 0, 0, 5918, 5924, 3, 72, 36, 0, 5919, 5920, - 5, 464, 0, 0, 5920, 5924, 3, 668, 334, 0, 5921, 5924, 5, 104, 0, 0, 5922, - 5924, 3, 662, 331, 0, 5923, 5910, 1, 0, 0, 0, 5923, 5912, 1, 0, 0, 0, 5923, - 5917, 1, 0, 0, 0, 5923, 5919, 1, 0, 0, 0, 5923, 5921, 1, 0, 0, 0, 5923, - 5922, 1, 0, 0, 0, 5924, 665, 1, 0, 0, 0, 5925, 5931, 3, 1410, 705, 0, 5926, - 5927, 3, 1410, 705, 0, 5927, 5928, 5, 6, 0, 0, 5928, 5929, 3, 1410, 705, - 0, 5929, 5931, 1, 0, 0, 0, 5930, 5925, 1, 0, 0, 0, 5930, 5926, 1, 0, 0, - 0, 5931, 667, 1, 0, 0, 0, 5932, 5933, 5, 62, 0, 0, 5933, 5934, 5, 372, - 0, 0, 5934, 5941, 3, 1124, 562, 0, 5935, 5936, 5, 6, 0, 0, 5936, 5937, - 5, 62, 0, 0, 5937, 5938, 5, 372, 0, 0, 5938, 5940, 3, 1124, 562, 0, 5939, - 5935, 1, 0, 0, 0, 5940, 5943, 1, 0, 0, 0, 5941, 5939, 1, 0, 0, 0, 5941, - 5942, 1, 0, 0, 0, 5942, 669, 1, 0, 0, 0, 5943, 5941, 1, 0, 0, 0, 5944, - 5945, 5, 105, 0, 0, 5945, 5946, 3, 462, 231, 0, 5946, 671, 1, 0, 0, 0, - 5947, 5948, 3, 642, 321, 0, 5948, 5949, 3, 646, 323, 0, 5949, 673, 1, 0, - 0, 0, 5950, 5955, 3, 672, 336, 0, 5951, 5952, 5, 6, 0, 0, 5952, 5954, 3, - 672, 336, 0, 5953, 5951, 1, 0, 0, 0, 5954, 5957, 1, 0, 0, 0, 5955, 5953, - 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 675, 1, 0, 0, 0, 5957, 5955, - 1, 0, 0, 0, 5958, 5959, 5, 157, 0, 0, 5959, 5960, 7, 29, 0, 0, 5960, 5961, - 3, 632, 316, 0, 5961, 5963, 3, 678, 339, 0, 5962, 5964, 3, 680, 340, 0, - 5963, 5962, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 677, 1, 0, 0, 0, - 5965, 5967, 3, 662, 331, 0, 5966, 5965, 1, 0, 0, 0, 5967, 5968, 1, 0, 0, - 0, 5968, 5966, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 679, 1, 0, 0, - 0, 5970, 5971, 5, 327, 0, 0, 5971, 681, 1, 0, 0, 0, 5972, 5973, 5, 210, - 0, 0, 5973, 5974, 5, 230, 0, 0, 5974, 5976, 3, 630, 315, 0, 5975, 5977, - 3, 108, 54, 0, 5976, 5975, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 6015, - 1, 0, 0, 0, 5978, 5979, 5, 210, 0, 0, 5979, 5980, 5, 230, 0, 0, 5980, 5981, - 5, 239, 0, 0, 5981, 5982, 5, 409, 0, 0, 5982, 5984, 3, 630, 315, 0, 5983, - 5985, 3, 108, 54, 0, 5984, 5983, 1, 0, 0, 0, 5984, 5985, 1, 0, 0, 0, 5985, - 6015, 1, 0, 0, 0, 5986, 5987, 5, 210, 0, 0, 5987, 5988, 5, 308, 0, 0, 5988, - 5990, 3, 630, 315, 0, 5989, 5991, 3, 108, 54, 0, 5990, 5989, 1, 0, 0, 0, - 5990, 5991, 1, 0, 0, 0, 5991, 6015, 1, 0, 0, 0, 5992, 5993, 5, 210, 0, - 0, 5993, 5994, 5, 308, 0, 0, 5994, 5995, 5, 239, 0, 0, 5995, 5996, 5, 409, - 0, 0, 5996, 5998, 3, 630, 315, 0, 5997, 5999, 3, 108, 54, 0, 5998, 5997, - 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 6015, 1, 0, 0, 0, 6000, 6001, - 5, 210, 0, 0, 6001, 6002, 5, 463, 0, 0, 6002, 6004, 3, 630, 315, 0, 6003, - 6005, 3, 108, 54, 0, 6004, 6003, 1, 0, 0, 0, 6004, 6005, 1, 0, 0, 0, 6005, - 6015, 1, 0, 0, 0, 6006, 6007, 5, 210, 0, 0, 6007, 6008, 5, 463, 0, 0, 6008, - 6009, 5, 239, 0, 0, 6009, 6010, 5, 409, 0, 0, 6010, 6012, 3, 630, 315, - 0, 6011, 6013, 3, 108, 54, 0, 6012, 6011, 1, 0, 0, 0, 6012, 6013, 1, 0, - 0, 0, 6013, 6015, 1, 0, 0, 0, 6014, 5972, 1, 0, 0, 0, 6014, 5978, 1, 0, - 0, 0, 6014, 5986, 1, 0, 0, 0, 6014, 5992, 1, 0, 0, 0, 6014, 6000, 1, 0, - 0, 0, 6014, 6006, 1, 0, 0, 0, 6015, 683, 1, 0, 0, 0, 6016, 6017, 5, 210, - 0, 0, 6017, 6018, 5, 155, 0, 0, 6018, 6020, 3, 658, 329, 0, 6019, 6021, - 3, 108, 54, 0, 6020, 6019, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6031, - 1, 0, 0, 0, 6022, 6023, 5, 210, 0, 0, 6023, 6024, 5, 155, 0, 0, 6024, 6025, - 5, 239, 0, 0, 6025, 6026, 5, 409, 0, 0, 6026, 6028, 3, 658, 329, 0, 6027, - 6029, 3, 108, 54, 0, 6028, 6027, 1, 0, 0, 0, 6028, 6029, 1, 0, 0, 0, 6029, - 6031, 1, 0, 0, 0, 6030, 6016, 1, 0, 0, 0, 6030, 6022, 1, 0, 0, 0, 6031, - 685, 1, 0, 0, 0, 6032, 6033, 5, 210, 0, 0, 6033, 6034, 5, 290, 0, 0, 6034, - 6036, 3, 692, 346, 0, 6035, 6037, 3, 108, 54, 0, 6036, 6035, 1, 0, 0, 0, - 6036, 6037, 1, 0, 0, 0, 6037, 6047, 1, 0, 0, 0, 6038, 6039, 5, 210, 0, - 0, 6039, 6040, 5, 290, 0, 0, 6040, 6041, 5, 239, 0, 0, 6041, 6042, 5, 409, - 0, 0, 6042, 6044, 3, 692, 346, 0, 6043, 6045, 3, 108, 54, 0, 6044, 6043, - 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6047, 1, 0, 0, 0, 6046, 6032, - 1, 0, 0, 0, 6046, 6038, 1, 0, 0, 0, 6047, 687, 1, 0, 0, 0, 6048, 6049, - 5, 2, 0, 0, 6049, 6050, 3, 1124, 562, 0, 6050, 6051, 5, 3, 0, 0, 6051, - 6071, 1, 0, 0, 0, 6052, 6053, 5, 2, 0, 0, 6053, 6054, 3, 1124, 562, 0, - 6054, 6055, 5, 6, 0, 0, 6055, 6056, 3, 1124, 562, 0, 6056, 6057, 5, 3, - 0, 0, 6057, 6071, 1, 0, 0, 0, 6058, 6059, 5, 2, 0, 0, 6059, 6060, 5, 420, - 0, 0, 6060, 6061, 5, 6, 0, 0, 6061, 6062, 3, 1124, 562, 0, 6062, 6063, - 5, 3, 0, 0, 6063, 6071, 1, 0, 0, 0, 6064, 6065, 5, 2, 0, 0, 6065, 6066, - 3, 1124, 562, 0, 6066, 6067, 5, 6, 0, 0, 6067, 6068, 5, 420, 0, 0, 6068, - 6069, 5, 3, 0, 0, 6069, 6071, 1, 0, 0, 0, 6070, 6048, 1, 0, 0, 0, 6070, - 6052, 1, 0, 0, 0, 6070, 6058, 1, 0, 0, 0, 6070, 6064, 1, 0, 0, 0, 6071, - 689, 1, 0, 0, 0, 6072, 6073, 3, 1424, 712, 0, 6073, 6074, 5, 11, 0, 0, - 6074, 6076, 1, 0, 0, 0, 6075, 6072, 1, 0, 0, 0, 6076, 6079, 1, 0, 0, 0, - 6077, 6075, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 6080, 1, 0, 0, 0, - 6079, 6077, 1, 0, 0, 0, 6080, 6081, 3, 1320, 660, 0, 6081, 691, 1, 0, 0, - 0, 6082, 6087, 3, 694, 347, 0, 6083, 6084, 5, 6, 0, 0, 6084, 6086, 3, 694, - 347, 0, 6085, 6083, 1, 0, 0, 0, 6086, 6089, 1, 0, 0, 0, 6087, 6085, 1, - 0, 0, 0, 6087, 6088, 1, 0, 0, 0, 6088, 693, 1, 0, 0, 0, 6089, 6087, 1, - 0, 0, 0, 6090, 6091, 3, 690, 345, 0, 6091, 6092, 3, 688, 344, 0, 6092, - 695, 1, 0, 0, 0, 6093, 6094, 5, 57, 0, 0, 6094, 6095, 3, 698, 349, 0, 6095, - 697, 1, 0, 0, 0, 6096, 6098, 3, 700, 350, 0, 6097, 6096, 1, 0, 0, 0, 6098, - 6099, 1, 0, 0, 0, 6099, 6097, 1, 0, 0, 0, 6099, 6100, 1, 0, 0, 0, 6100, - 699, 1, 0, 0, 0, 6101, 6105, 3, 1410, 705, 0, 6102, 6103, 5, 257, 0, 0, - 6103, 6105, 3, 72, 36, 0, 6104, 6101, 1, 0, 0, 0, 6104, 6102, 1, 0, 0, - 0, 6105, 701, 1, 0, 0, 0, 6106, 6107, 5, 46, 0, 0, 6107, 6108, 5, 41, 0, - 0, 6108, 6109, 5, 2, 0, 0, 6109, 6110, 3, 1124, 562, 0, 6110, 6111, 5, - 36, 0, 0, 6111, 6112, 3, 1124, 562, 0, 6112, 6113, 5, 3, 0, 0, 6113, 6114, - 5, 105, 0, 0, 6114, 6115, 5, 230, 0, 0, 6115, 6117, 3, 632, 316, 0, 6116, - 6118, 3, 704, 352, 0, 6117, 6116, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, - 6144, 1, 0, 0, 0, 6119, 6120, 5, 46, 0, 0, 6120, 6121, 5, 41, 0, 0, 6121, - 6122, 5, 2, 0, 0, 6122, 6123, 3, 1124, 562, 0, 6123, 6124, 5, 36, 0, 0, - 6124, 6125, 3, 1124, 562, 0, 6125, 6126, 5, 3, 0, 0, 6126, 6127, 5, 391, - 0, 0, 6127, 6129, 5, 230, 0, 0, 6128, 6130, 3, 704, 352, 0, 6129, 6128, - 1, 0, 0, 0, 6129, 6130, 1, 0, 0, 0, 6130, 6144, 1, 0, 0, 0, 6131, 6132, - 5, 46, 0, 0, 6132, 6133, 5, 41, 0, 0, 6133, 6134, 5, 2, 0, 0, 6134, 6135, - 3, 1124, 562, 0, 6135, 6136, 5, 36, 0, 0, 6136, 6137, 3, 1124, 562, 0, - 6137, 6138, 5, 3, 0, 0, 6138, 6139, 5, 105, 0, 0, 6139, 6141, 5, 413, 0, - 0, 6140, 6142, 3, 704, 352, 0, 6141, 6140, 1, 0, 0, 0, 6141, 6142, 1, 0, - 0, 0, 6142, 6144, 1, 0, 0, 0, 6143, 6106, 1, 0, 0, 0, 6143, 6119, 1, 0, - 0, 0, 6143, 6131, 1, 0, 0, 0, 6144, 703, 1, 0, 0, 0, 6145, 6146, 5, 36, - 0, 0, 6146, 6150, 5, 242, 0, 0, 6147, 6148, 5, 36, 0, 0, 6148, 6150, 5, - 160, 0, 0, 6149, 6145, 1, 0, 0, 0, 6149, 6147, 1, 0, 0, 0, 6150, 705, 1, - 0, 0, 0, 6151, 6152, 5, 210, 0, 0, 6152, 6154, 5, 41, 0, 0, 6153, 6155, - 3, 708, 354, 0, 6154, 6153, 1, 0, 0, 0, 6154, 6155, 1, 0, 0, 0, 6155, 6156, - 1, 0, 0, 0, 6156, 6157, 5, 2, 0, 0, 6157, 6158, 3, 1124, 562, 0, 6158, - 6159, 5, 36, 0, 0, 6159, 6160, 3, 1124, 562, 0, 6160, 6162, 5, 3, 0, 0, - 6161, 6163, 3, 108, 54, 0, 6162, 6161, 1, 0, 0, 0, 6162, 6163, 1, 0, 0, - 0, 6163, 707, 1, 0, 0, 0, 6164, 6165, 5, 239, 0, 0, 6165, 6166, 5, 409, - 0, 0, 6166, 709, 1, 0, 0, 0, 6167, 6169, 5, 46, 0, 0, 6168, 6170, 3, 624, - 312, 0, 6169, 6168, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 6171, 1, - 0, 0, 0, 6171, 6172, 5, 464, 0, 0, 6172, 6173, 5, 62, 0, 0, 6173, 6174, - 3, 1124, 562, 0, 6174, 6175, 5, 257, 0, 0, 6175, 6176, 3, 1392, 696, 0, - 6176, 6177, 5, 2, 0, 0, 6177, 6178, 3, 712, 356, 0, 6178, 6179, 5, 3, 0, - 0, 6179, 711, 1, 0, 0, 0, 6180, 6181, 5, 64, 0, 0, 6181, 6182, 5, 482, - 0, 0, 6182, 6183, 5, 105, 0, 0, 6183, 6184, 5, 230, 0, 0, 6184, 6185, 3, - 632, 316, 0, 6185, 6186, 5, 6, 0, 0, 6186, 6187, 5, 94, 0, 0, 6187, 6188, - 5, 482, 0, 0, 6188, 6189, 5, 105, 0, 0, 6189, 6190, 5, 230, 0, 0, 6190, - 6191, 3, 632, 316, 0, 6191, 6215, 1, 0, 0, 0, 6192, 6193, 5, 94, 0, 0, - 6193, 6194, 5, 482, 0, 0, 6194, 6195, 5, 105, 0, 0, 6195, 6196, 5, 230, - 0, 0, 6196, 6197, 3, 632, 316, 0, 6197, 6198, 5, 6, 0, 0, 6198, 6199, 5, - 64, 0, 0, 6199, 6200, 5, 482, 0, 0, 6200, 6201, 5, 105, 0, 0, 6201, 6202, - 5, 230, 0, 0, 6202, 6203, 3, 632, 316, 0, 6203, 6215, 1, 0, 0, 0, 6204, - 6205, 5, 64, 0, 0, 6205, 6206, 5, 482, 0, 0, 6206, 6207, 5, 105, 0, 0, - 6207, 6208, 5, 230, 0, 0, 6208, 6215, 3, 632, 316, 0, 6209, 6210, 5, 94, - 0, 0, 6210, 6211, 5, 482, 0, 0, 6211, 6212, 5, 105, 0, 0, 6212, 6213, 5, - 230, 0, 0, 6213, 6215, 3, 632, 316, 0, 6214, 6180, 1, 0, 0, 0, 6214, 6192, - 1, 0, 0, 0, 6214, 6204, 1, 0, 0, 0, 6214, 6209, 1, 0, 0, 0, 6215, 713, - 1, 0, 0, 0, 6216, 6217, 5, 210, 0, 0, 6217, 6219, 5, 464, 0, 0, 6218, 6220, - 3, 708, 354, 0, 6219, 6218, 1, 0, 0, 0, 6219, 6220, 1, 0, 0, 0, 6220, 6221, - 1, 0, 0, 0, 6221, 6222, 5, 62, 0, 0, 6222, 6223, 3, 1124, 562, 0, 6223, - 6224, 5, 257, 0, 0, 6224, 6226, 3, 1392, 696, 0, 6225, 6227, 3, 108, 54, - 0, 6226, 6225, 1, 0, 0, 0, 6226, 6227, 1, 0, 0, 0, 6227, 715, 1, 0, 0, - 0, 6228, 6229, 5, 318, 0, 0, 6229, 6231, 3, 718, 359, 0, 6230, 6232, 3, - 598, 299, 0, 6231, 6230, 1, 0, 0, 0, 6231, 6232, 1, 0, 0, 0, 6232, 6233, - 1, 0, 0, 0, 6233, 6234, 3, 1388, 694, 0, 6234, 6263, 1, 0, 0, 0, 6235, - 6236, 5, 318, 0, 0, 6236, 6238, 3, 720, 360, 0, 6237, 6239, 3, 598, 299, - 0, 6238, 6237, 1, 0, 0, 0, 6238, 6239, 1, 0, 0, 0, 6239, 6240, 1, 0, 0, - 0, 6240, 6241, 3, 1392, 696, 0, 6241, 6263, 1, 0, 0, 0, 6242, 6243, 5, - 318, 0, 0, 6243, 6244, 5, 2, 0, 0, 6244, 6245, 3, 722, 361, 0, 6245, 6246, - 5, 3, 0, 0, 6246, 6248, 3, 718, 359, 0, 6247, 6249, 3, 598, 299, 0, 6248, - 6247, 1, 0, 0, 0, 6248, 6249, 1, 0, 0, 0, 6249, 6250, 1, 0, 0, 0, 6250, - 6251, 3, 1388, 694, 0, 6251, 6263, 1, 0, 0, 0, 6252, 6253, 5, 318, 0, 0, - 6253, 6254, 5, 2, 0, 0, 6254, 6255, 3, 722, 361, 0, 6255, 6256, 5, 3, 0, - 0, 6256, 6258, 3, 720, 360, 0, 6257, 6259, 3, 598, 299, 0, 6258, 6257, - 1, 0, 0, 0, 6258, 6259, 1, 0, 0, 0, 6259, 6260, 1, 0, 0, 0, 6260, 6261, - 3, 1392, 696, 0, 6261, 6263, 1, 0, 0, 0, 6262, 6228, 1, 0, 0, 0, 6262, - 6235, 1, 0, 0, 0, 6262, 6242, 1, 0, 0, 0, 6262, 6252, 1, 0, 0, 0, 6263, - 717, 1, 0, 0, 0, 6264, 6265, 7, 30, 0, 0, 6265, 719, 1, 0, 0, 0, 6266, - 6267, 7, 31, 0, 0, 6267, 721, 1, 0, 0, 0, 6268, 6273, 3, 724, 362, 0, 6269, - 6270, 5, 6, 0, 0, 6270, 6272, 3, 724, 362, 0, 6271, 6269, 1, 0, 0, 0, 6272, - 6275, 1, 0, 0, 0, 6273, 6271, 1, 0, 0, 0, 6273, 6274, 1, 0, 0, 0, 6274, - 723, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6276, 6277, 7, 32, 0, 0, 6277, - 725, 1, 0, 0, 0, 6278, 6279, 5, 157, 0, 0, 6279, 6280, 5, 363, 0, 0, 6280, - 6281, 3, 1392, 696, 0, 6281, 6282, 5, 345, 0, 0, 6282, 6283, 3, 116, 58, - 0, 6283, 6291, 1, 0, 0, 0, 6284, 6285, 5, 157, 0, 0, 6285, 6286, 5, 363, - 0, 0, 6286, 6287, 3, 1392, 696, 0, 6287, 6288, 5, 325, 0, 0, 6288, 6289, - 3, 116, 58, 0, 6289, 6291, 1, 0, 0, 0, 6290, 6278, 1, 0, 0, 0, 6290, 6284, - 1, 0, 0, 0, 6291, 727, 1, 0, 0, 0, 6292, 6293, 5, 157, 0, 0, 6293, 6294, - 5, 155, 0, 0, 6294, 6295, 3, 656, 328, 0, 6295, 6296, 5, 321, 0, 0, 6296, - 6297, 5, 94, 0, 0, 6297, 6298, 3, 1392, 696, 0, 6298, 6780, 1, 0, 0, 0, - 6299, 6300, 5, 157, 0, 0, 6300, 6301, 5, 127, 0, 0, 6301, 6302, 3, 526, - 263, 0, 6302, 6303, 5, 321, 0, 0, 6303, 6304, 5, 94, 0, 0, 6304, 6305, - 3, 1392, 696, 0, 6305, 6780, 1, 0, 0, 0, 6306, 6307, 5, 157, 0, 0, 6307, - 6308, 5, 187, 0, 0, 6308, 6309, 3, 526, 263, 0, 6309, 6310, 5, 321, 0, - 0, 6310, 6311, 5, 94, 0, 0, 6311, 6312, 3, 1392, 696, 0, 6312, 6780, 1, - 0, 0, 0, 6313, 6314, 5, 157, 0, 0, 6314, 6315, 5, 194, 0, 0, 6315, 6316, - 3, 1392, 696, 0, 6316, 6317, 5, 321, 0, 0, 6317, 6318, 5, 94, 0, 0, 6318, - 6319, 3, 1392, 696, 0, 6319, 6780, 1, 0, 0, 0, 6320, 6321, 5, 157, 0, 0, - 6321, 6322, 5, 208, 0, 0, 6322, 6323, 3, 526, 263, 0, 6323, 6324, 5, 321, - 0, 0, 6324, 6325, 5, 94, 0, 0, 6325, 6326, 3, 1392, 696, 0, 6326, 6780, - 1, 0, 0, 0, 6327, 6328, 5, 157, 0, 0, 6328, 6329, 5, 208, 0, 0, 6329, 6330, - 3, 526, 263, 0, 6330, 6331, 5, 321, 0, 0, 6331, 6332, 5, 45, 0, 0, 6332, - 6333, 3, 1392, 696, 0, 6333, 6334, 5, 94, 0, 0, 6334, 6335, 3, 1392, 696, - 0, 6335, 6780, 1, 0, 0, 0, 6336, 6337, 5, 157, 0, 0, 6337, 6338, 5, 63, - 0, 0, 6338, 6339, 5, 193, 0, 0, 6339, 6340, 5, 393, 0, 0, 6340, 6341, 3, - 1392, 696, 0, 6341, 6342, 5, 321, 0, 0, 6342, 6343, 5, 94, 0, 0, 6343, - 6344, 3, 1392, 696, 0, 6344, 6780, 1, 0, 0, 0, 6345, 6346, 5, 157, 0, 0, - 6346, 6347, 5, 230, 0, 0, 6347, 6348, 3, 632, 316, 0, 6348, 6349, 5, 321, - 0, 0, 6349, 6350, 5, 94, 0, 0, 6350, 6351, 3, 1392, 696, 0, 6351, 6780, - 1, 0, 0, 0, 6352, 6353, 5, 157, 0, 0, 6353, 6354, 5, 66, 0, 0, 6354, 6355, - 3, 1418, 709, 0, 6355, 6356, 5, 321, 0, 0, 6356, 6357, 5, 94, 0, 0, 6357, - 6358, 3, 1418, 709, 0, 6358, 6780, 1, 0, 0, 0, 6359, 6361, 5, 157, 0, 0, - 6360, 6362, 3, 310, 155, 0, 6361, 6360, 1, 0, 0, 0, 6361, 6362, 1, 0, 0, - 0, 6362, 6363, 1, 0, 0, 0, 6363, 6364, 5, 257, 0, 0, 6364, 6365, 3, 1392, - 696, 0, 6365, 6366, 5, 321, 0, 0, 6366, 6367, 5, 94, 0, 0, 6367, 6368, - 3, 1392, 696, 0, 6368, 6780, 1, 0, 0, 0, 6369, 6370, 5, 157, 0, 0, 6370, - 6371, 5, 290, 0, 0, 6371, 6372, 5, 175, 0, 0, 6372, 6373, 3, 526, 263, - 0, 6373, 6374, 5, 100, 0, 0, 6374, 6375, 3, 1392, 696, 0, 6375, 6376, 5, - 321, 0, 0, 6376, 6377, 5, 94, 0, 0, 6377, 6378, 3, 1392, 696, 0, 6378, - 6780, 1, 0, 0, 0, 6379, 6380, 5, 157, 0, 0, 6380, 6381, 5, 290, 0, 0, 6381, - 6382, 5, 225, 0, 0, 6382, 6383, 3, 526, 263, 0, 6383, 6384, 5, 100, 0, - 0, 6384, 6385, 3, 1392, 696, 0, 6385, 6386, 5, 321, 0, 0, 6386, 6387, 5, - 94, 0, 0, 6387, 6388, 3, 1392, 696, 0, 6388, 6780, 1, 0, 0, 0, 6389, 6390, - 5, 157, 0, 0, 6390, 6391, 5, 466, 0, 0, 6391, 6392, 3, 1392, 696, 0, 6392, - 6393, 5, 80, 0, 0, 6393, 6394, 3, 1388, 694, 0, 6394, 6395, 5, 321, 0, - 0, 6395, 6396, 5, 94, 0, 0, 6396, 6397, 3, 1392, 696, 0, 6397, 6780, 1, - 0, 0, 0, 6398, 6399, 5, 157, 0, 0, 6399, 6400, 5, 466, 0, 0, 6400, 6401, - 5, 239, 0, 0, 6401, 6402, 5, 409, 0, 0, 6402, 6403, 3, 1392, 696, 0, 6403, - 6404, 5, 80, 0, 0, 6404, 6405, 3, 1388, 694, 0, 6405, 6406, 5, 321, 0, - 0, 6406, 6407, 5, 94, 0, 0, 6407, 6408, 3, 1392, 696, 0, 6408, 6780, 1, - 0, 0, 0, 6409, 6410, 5, 157, 0, 0, 6410, 6411, 5, 308, 0, 0, 6411, 6412, - 3, 632, 316, 0, 6412, 6413, 5, 321, 0, 0, 6413, 6414, 5, 94, 0, 0, 6414, - 6415, 3, 1392, 696, 0, 6415, 6780, 1, 0, 0, 0, 6416, 6417, 5, 157, 0, 0, - 6417, 6418, 5, 473, 0, 0, 6418, 6419, 3, 1392, 696, 0, 6419, 6420, 5, 321, - 0, 0, 6420, 6421, 5, 94, 0, 0, 6421, 6422, 3, 1392, 696, 0, 6422, 6780, - 1, 0, 0, 0, 6423, 6424, 5, 157, 0, 0, 6424, 6425, 5, 463, 0, 0, 6425, 6426, - 3, 632, 316, 0, 6426, 6427, 5, 321, 0, 0, 6427, 6428, 5, 94, 0, 0, 6428, - 6429, 3, 1392, 696, 0, 6429, 6780, 1, 0, 0, 0, 6430, 6431, 5, 157, 0, 0, - 6431, 6432, 5, 335, 0, 0, 6432, 6433, 3, 1392, 696, 0, 6433, 6434, 5, 321, - 0, 0, 6434, 6435, 5, 94, 0, 0, 6435, 6436, 3, 1392, 696, 0, 6436, 6780, - 1, 0, 0, 0, 6437, 6438, 5, 157, 0, 0, 6438, 6439, 5, 343, 0, 0, 6439, 6440, - 3, 1392, 696, 0, 6440, 6441, 5, 321, 0, 0, 6441, 6442, 5, 94, 0, 0, 6442, - 6443, 3, 1392, 696, 0, 6443, 6780, 1, 0, 0, 0, 6444, 6445, 5, 157, 0, 0, - 6445, 6446, 5, 472, 0, 0, 6446, 6447, 3, 1392, 696, 0, 6447, 6448, 5, 321, - 0, 0, 6448, 6449, 5, 94, 0, 0, 6449, 6450, 3, 1392, 696, 0, 6450, 6780, - 1, 0, 0, 0, 6451, 6452, 5, 157, 0, 0, 6452, 6453, 5, 92, 0, 0, 6453, 6454, - 3, 1080, 540, 0, 6454, 6455, 5, 321, 0, 0, 6455, 6456, 5, 94, 0, 0, 6456, - 6457, 3, 1392, 696, 0, 6457, 6780, 1, 0, 0, 0, 6458, 6459, 5, 157, 0, 0, - 6459, 6460, 5, 92, 0, 0, 6460, 6461, 5, 239, 0, 0, 6461, 6462, 5, 409, - 0, 0, 6462, 6463, 3, 1080, 540, 0, 6463, 6464, 5, 321, 0, 0, 6464, 6465, - 5, 94, 0, 0, 6465, 6466, 3, 1392, 696, 0, 6466, 6780, 1, 0, 0, 0, 6467, - 6468, 5, 157, 0, 0, 6468, 6469, 5, 340, 0, 0, 6469, 6470, 3, 1388, 694, - 0, 6470, 6471, 5, 321, 0, 0, 6471, 6472, 5, 94, 0, 0, 6472, 6473, 3, 1392, - 696, 0, 6473, 6780, 1, 0, 0, 0, 6474, 6475, 5, 157, 0, 0, 6475, 6476, 5, - 340, 0, 0, 6476, 6477, 5, 239, 0, 0, 6477, 6478, 5, 409, 0, 0, 6478, 6479, - 3, 1388, 694, 0, 6479, 6480, 5, 321, 0, 0, 6480, 6481, 5, 94, 0, 0, 6481, - 6482, 3, 1392, 696, 0, 6482, 6780, 1, 0, 0, 0, 6483, 6484, 5, 157, 0, 0, - 6484, 6485, 5, 388, 0, 0, 6485, 6486, 3, 1388, 694, 0, 6486, 6487, 5, 321, - 0, 0, 6487, 6488, 5, 94, 0, 0, 6488, 6489, 3, 1392, 696, 0, 6489, 6780, - 1, 0, 0, 0, 6490, 6491, 5, 157, 0, 0, 6491, 6492, 5, 388, 0, 0, 6492, 6493, - 5, 239, 0, 0, 6493, 6494, 5, 409, 0, 0, 6494, 6495, 3, 1388, 694, 0, 6495, - 6496, 5, 321, 0, 0, 6496, 6497, 5, 94, 0, 0, 6497, 6498, 3, 1392, 696, - 0, 6498, 6780, 1, 0, 0, 0, 6499, 6500, 5, 157, 0, 0, 6500, 6501, 5, 270, - 0, 0, 6501, 6502, 5, 388, 0, 0, 6502, 6503, 3, 1388, 694, 0, 6503, 6504, - 5, 321, 0, 0, 6504, 6505, 5, 94, 0, 0, 6505, 6506, 3, 1392, 696, 0, 6506, - 6780, 1, 0, 0, 0, 6507, 6508, 5, 157, 0, 0, 6508, 6509, 5, 270, 0, 0, 6509, - 6510, 5, 388, 0, 0, 6510, 6511, 5, 239, 0, 0, 6511, 6512, 5, 409, 0, 0, - 6512, 6513, 3, 1388, 694, 0, 6513, 6514, 5, 321, 0, 0, 6514, 6515, 5, 94, - 0, 0, 6515, 6516, 3, 1392, 696, 0, 6516, 6780, 1, 0, 0, 0, 6517, 6518, - 5, 157, 0, 0, 6518, 6519, 5, 245, 0, 0, 6519, 6520, 3, 1388, 694, 0, 6520, - 6521, 5, 321, 0, 0, 6521, 6522, 5, 94, 0, 0, 6522, 6523, 3, 1392, 696, - 0, 6523, 6780, 1, 0, 0, 0, 6524, 6525, 5, 157, 0, 0, 6525, 6526, 5, 245, - 0, 0, 6526, 6527, 5, 239, 0, 0, 6527, 6528, 5, 409, 0, 0, 6528, 6529, 3, - 1388, 694, 0, 6529, 6530, 5, 321, 0, 0, 6530, 6531, 5, 94, 0, 0, 6531, - 6532, 3, 1392, 696, 0, 6532, 6780, 1, 0, 0, 0, 6533, 6534, 5, 157, 0, 0, - 6534, 6535, 5, 63, 0, 0, 6535, 6536, 5, 92, 0, 0, 6536, 6537, 3, 1080, - 540, 0, 6537, 6538, 5, 321, 0, 0, 6538, 6539, 5, 94, 0, 0, 6539, 6540, - 3, 1392, 696, 0, 6540, 6780, 1, 0, 0, 0, 6541, 6542, 5, 157, 0, 0, 6542, - 6543, 5, 63, 0, 0, 6543, 6544, 5, 92, 0, 0, 6544, 6545, 5, 239, 0, 0, 6545, - 6546, 5, 409, 0, 0, 6546, 6547, 3, 1080, 540, 0, 6547, 6548, 5, 321, 0, - 0, 6548, 6549, 5, 94, 0, 0, 6549, 6550, 3, 1392, 696, 0, 6550, 6780, 1, - 0, 0, 0, 6551, 6552, 5, 157, 0, 0, 6552, 6553, 5, 92, 0, 0, 6553, 6554, - 3, 1080, 540, 0, 6554, 6556, 5, 321, 0, 0, 6555, 6557, 3, 730, 365, 0, - 6556, 6555, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, - 6558, 6559, 3, 1392, 696, 0, 6559, 6560, 5, 94, 0, 0, 6560, 6561, 3, 1392, - 696, 0, 6561, 6780, 1, 0, 0, 0, 6562, 6563, 5, 157, 0, 0, 6563, 6564, 5, - 92, 0, 0, 6564, 6565, 5, 239, 0, 0, 6565, 6566, 5, 409, 0, 0, 6566, 6567, - 3, 1080, 540, 0, 6567, 6569, 5, 321, 0, 0, 6568, 6570, 3, 730, 365, 0, - 6569, 6568, 1, 0, 0, 0, 6569, 6570, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, - 6571, 6572, 3, 1392, 696, 0, 6572, 6573, 5, 94, 0, 0, 6573, 6574, 3, 1392, - 696, 0, 6574, 6780, 1, 0, 0, 0, 6575, 6576, 5, 157, 0, 0, 6576, 6577, 5, - 388, 0, 0, 6577, 6578, 3, 1388, 694, 0, 6578, 6580, 5, 321, 0, 0, 6579, - 6581, 3, 730, 365, 0, 6580, 6579, 1, 0, 0, 0, 6580, 6581, 1, 0, 0, 0, 6581, - 6582, 1, 0, 0, 0, 6582, 6583, 3, 1392, 696, 0, 6583, 6584, 5, 94, 0, 0, - 6584, 6585, 3, 1392, 696, 0, 6585, 6780, 1, 0, 0, 0, 6586, 6587, 5, 157, - 0, 0, 6587, 6588, 5, 388, 0, 0, 6588, 6589, 5, 239, 0, 0, 6589, 6590, 5, - 409, 0, 0, 6590, 6591, 3, 1388, 694, 0, 6591, 6593, 5, 321, 0, 0, 6592, - 6594, 3, 730, 365, 0, 6593, 6592, 1, 0, 0, 0, 6593, 6594, 1, 0, 0, 0, 6594, - 6595, 1, 0, 0, 0, 6595, 6596, 3, 1392, 696, 0, 6596, 6597, 5, 94, 0, 0, - 6597, 6598, 3, 1392, 696, 0, 6598, 6780, 1, 0, 0, 0, 6599, 6600, 5, 157, - 0, 0, 6600, 6601, 5, 270, 0, 0, 6601, 6602, 5, 388, 0, 0, 6602, 6603, 3, - 1388, 694, 0, 6603, 6605, 5, 321, 0, 0, 6604, 6606, 3, 730, 365, 0, 6605, - 6604, 1, 0, 0, 0, 6605, 6606, 1, 0, 0, 0, 6606, 6607, 1, 0, 0, 0, 6607, - 6608, 3, 1392, 696, 0, 6608, 6609, 5, 94, 0, 0, 6609, 6610, 3, 1392, 696, - 0, 6610, 6780, 1, 0, 0, 0, 6611, 6612, 5, 157, 0, 0, 6612, 6613, 5, 270, - 0, 0, 6613, 6614, 5, 388, 0, 0, 6614, 6615, 5, 239, 0, 0, 6615, 6616, 5, - 409, 0, 0, 6616, 6617, 3, 1388, 694, 0, 6617, 6619, 5, 321, 0, 0, 6618, - 6620, 3, 730, 365, 0, 6619, 6618, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, - 6621, 1, 0, 0, 0, 6621, 6622, 3, 1392, 696, 0, 6622, 6623, 5, 94, 0, 0, - 6623, 6624, 3, 1392, 696, 0, 6624, 6780, 1, 0, 0, 0, 6625, 6626, 5, 157, - 0, 0, 6626, 6627, 5, 92, 0, 0, 6627, 6628, 3, 1080, 540, 0, 6628, 6629, - 5, 321, 0, 0, 6629, 6630, 5, 45, 0, 0, 6630, 6631, 3, 1392, 696, 0, 6631, - 6632, 5, 94, 0, 0, 6632, 6633, 3, 1392, 696, 0, 6633, 6780, 1, 0, 0, 0, - 6634, 6635, 5, 157, 0, 0, 6635, 6636, 5, 92, 0, 0, 6636, 6637, 5, 239, - 0, 0, 6637, 6638, 5, 409, 0, 0, 6638, 6639, 3, 1080, 540, 0, 6639, 6640, - 5, 321, 0, 0, 6640, 6641, 5, 45, 0, 0, 6641, 6642, 3, 1392, 696, 0, 6642, - 6643, 5, 94, 0, 0, 6643, 6644, 3, 1392, 696, 0, 6644, 6780, 1, 0, 0, 0, - 6645, 6646, 5, 157, 0, 0, 6646, 6647, 5, 63, 0, 0, 6647, 6648, 5, 92, 0, - 0, 6648, 6649, 3, 1080, 540, 0, 6649, 6651, 5, 321, 0, 0, 6650, 6652, 3, - 730, 365, 0, 6651, 6650, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6653, - 1, 0, 0, 0, 6653, 6654, 3, 1392, 696, 0, 6654, 6655, 5, 94, 0, 0, 6655, - 6656, 3, 1392, 696, 0, 6656, 6780, 1, 0, 0, 0, 6657, 6658, 5, 157, 0, 0, - 6658, 6659, 5, 63, 0, 0, 6659, 6660, 5, 92, 0, 0, 6660, 6661, 5, 239, 0, - 0, 6661, 6662, 5, 409, 0, 0, 6662, 6663, 3, 1080, 540, 0, 6663, 6665, 5, - 321, 0, 0, 6664, 6666, 3, 730, 365, 0, 6665, 6664, 1, 0, 0, 0, 6665, 6666, - 1, 0, 0, 0, 6666, 6667, 1, 0, 0, 0, 6667, 6668, 3, 1392, 696, 0, 6668, - 6669, 5, 94, 0, 0, 6669, 6670, 3, 1392, 696, 0, 6670, 6780, 1, 0, 0, 0, - 6671, 6672, 5, 157, 0, 0, 6672, 6673, 5, 333, 0, 0, 6673, 6674, 3, 1392, - 696, 0, 6674, 6675, 5, 80, 0, 0, 6675, 6676, 3, 1388, 694, 0, 6676, 6677, - 5, 321, 0, 0, 6677, 6678, 5, 94, 0, 0, 6678, 6679, 3, 1392, 696, 0, 6679, - 6780, 1, 0, 0, 0, 6680, 6681, 5, 157, 0, 0, 6681, 6682, 5, 369, 0, 0, 6682, - 6683, 3, 1392, 696, 0, 6683, 6684, 5, 80, 0, 0, 6684, 6685, 3, 1388, 694, - 0, 6685, 6686, 5, 321, 0, 0, 6686, 6687, 5, 94, 0, 0, 6687, 6688, 3, 1392, - 696, 0, 6688, 6780, 1, 0, 0, 0, 6689, 6690, 5, 157, 0, 0, 6690, 6691, 5, - 217, 0, 0, 6691, 6692, 5, 369, 0, 0, 6692, 6693, 3, 1392, 696, 0, 6693, - 6694, 5, 321, 0, 0, 6694, 6695, 5, 94, 0, 0, 6695, 6696, 3, 1392, 696, - 0, 6696, 6780, 1, 0, 0, 0, 6697, 6698, 5, 157, 0, 0, 6698, 6699, 5, 330, - 0, 0, 6699, 6700, 3, 1418, 709, 0, 6700, 6701, 5, 321, 0, 0, 6701, 6702, - 5, 94, 0, 0, 6702, 6703, 3, 1418, 709, 0, 6703, 6780, 1, 0, 0, 0, 6704, - 6705, 5, 157, 0, 0, 6705, 6706, 5, 99, 0, 0, 6706, 6707, 3, 1418, 709, - 0, 6707, 6708, 5, 321, 0, 0, 6708, 6709, 5, 94, 0, 0, 6709, 6710, 3, 1418, - 709, 0, 6710, 6780, 1, 0, 0, 0, 6711, 6712, 5, 157, 0, 0, 6712, 6713, 5, - 363, 0, 0, 6713, 6714, 3, 1392, 696, 0, 6714, 6715, 5, 321, 0, 0, 6715, - 6716, 5, 94, 0, 0, 6716, 6717, 3, 1392, 696, 0, 6717, 6780, 1, 0, 0, 0, - 6718, 6719, 5, 157, 0, 0, 6719, 6720, 5, 354, 0, 0, 6720, 6721, 3, 526, - 263, 0, 6721, 6722, 5, 321, 0, 0, 6722, 6723, 5, 94, 0, 0, 6723, 6724, - 3, 1392, 696, 0, 6724, 6780, 1, 0, 0, 0, 6725, 6726, 5, 157, 0, 0, 6726, - 6727, 5, 367, 0, 0, 6727, 6728, 5, 337, 0, 0, 6728, 6729, 5, 295, 0, 0, - 6729, 6730, 3, 526, 263, 0, 6730, 6731, 5, 321, 0, 0, 6731, 6732, 5, 94, - 0, 0, 6732, 6733, 3, 1392, 696, 0, 6733, 6780, 1, 0, 0, 0, 6734, 6735, - 5, 157, 0, 0, 6735, 6736, 5, 367, 0, 0, 6736, 6737, 5, 337, 0, 0, 6737, - 6738, 5, 204, 0, 0, 6738, 6739, 3, 526, 263, 0, 6739, 6740, 5, 321, 0, - 0, 6740, 6741, 5, 94, 0, 0, 6741, 6742, 3, 1392, 696, 0, 6742, 6780, 1, - 0, 0, 0, 6743, 6744, 5, 157, 0, 0, 6744, 6745, 5, 367, 0, 0, 6745, 6746, - 5, 337, 0, 0, 6746, 6747, 5, 365, 0, 0, 6747, 6748, 3, 526, 263, 0, 6748, - 6749, 5, 321, 0, 0, 6749, 6750, 5, 94, 0, 0, 6750, 6751, 3, 1392, 696, - 0, 6751, 6780, 1, 0, 0, 0, 6752, 6753, 5, 157, 0, 0, 6753, 6754, 5, 367, - 0, 0, 6754, 6755, 5, 337, 0, 0, 6755, 6756, 5, 182, 0, 0, 6756, 6757, 3, - 526, 263, 0, 6757, 6758, 5, 321, 0, 0, 6758, 6759, 5, 94, 0, 0, 6759, 6760, - 3, 1392, 696, 0, 6760, 6780, 1, 0, 0, 0, 6761, 6762, 5, 157, 0, 0, 6762, - 6763, 5, 372, 0, 0, 6763, 6764, 3, 526, 263, 0, 6764, 6765, 5, 321, 0, - 0, 6765, 6766, 5, 94, 0, 0, 6766, 6767, 3, 1392, 696, 0, 6767, 6780, 1, - 0, 0, 0, 6768, 6769, 5, 157, 0, 0, 6769, 6770, 5, 372, 0, 0, 6770, 6771, - 3, 526, 263, 0, 6771, 6772, 5, 321, 0, 0, 6772, 6773, 5, 162, 0, 0, 6773, - 6774, 3, 1392, 696, 0, 6774, 6775, 5, 94, 0, 0, 6775, 6777, 3, 1392, 696, - 0, 6776, 6778, 3, 108, 54, 0, 6777, 6776, 1, 0, 0, 0, 6777, 6778, 1, 0, - 0, 0, 6778, 6780, 1, 0, 0, 0, 6779, 6292, 1, 0, 0, 0, 6779, 6299, 1, 0, - 0, 0, 6779, 6306, 1, 0, 0, 0, 6779, 6313, 1, 0, 0, 0, 6779, 6320, 1, 0, - 0, 0, 6779, 6327, 1, 0, 0, 0, 6779, 6336, 1, 0, 0, 0, 6779, 6345, 1, 0, - 0, 0, 6779, 6352, 1, 0, 0, 0, 6779, 6359, 1, 0, 0, 0, 6779, 6369, 1, 0, - 0, 0, 6779, 6379, 1, 0, 0, 0, 6779, 6389, 1, 0, 0, 0, 6779, 6398, 1, 0, - 0, 0, 6779, 6409, 1, 0, 0, 0, 6779, 6416, 1, 0, 0, 0, 6779, 6423, 1, 0, - 0, 0, 6779, 6430, 1, 0, 0, 0, 6779, 6437, 1, 0, 0, 0, 6779, 6444, 1, 0, - 0, 0, 6779, 6451, 1, 0, 0, 0, 6779, 6458, 1, 0, 0, 0, 6779, 6467, 1, 0, - 0, 0, 6779, 6474, 1, 0, 0, 0, 6779, 6483, 1, 0, 0, 0, 6779, 6490, 1, 0, - 0, 0, 6779, 6499, 1, 0, 0, 0, 6779, 6507, 1, 0, 0, 0, 6779, 6517, 1, 0, - 0, 0, 6779, 6524, 1, 0, 0, 0, 6779, 6533, 1, 0, 0, 0, 6779, 6541, 1, 0, - 0, 0, 6779, 6551, 1, 0, 0, 0, 6779, 6562, 1, 0, 0, 0, 6779, 6575, 1, 0, - 0, 0, 6779, 6586, 1, 0, 0, 0, 6779, 6599, 1, 0, 0, 0, 6779, 6611, 1, 0, - 0, 0, 6779, 6625, 1, 0, 0, 0, 6779, 6634, 1, 0, 0, 0, 6779, 6645, 1, 0, - 0, 0, 6779, 6657, 1, 0, 0, 0, 6779, 6671, 1, 0, 0, 0, 6779, 6680, 1, 0, - 0, 0, 6779, 6689, 1, 0, 0, 0, 6779, 6697, 1, 0, 0, 0, 6779, 6704, 1, 0, - 0, 0, 6779, 6711, 1, 0, 0, 0, 6779, 6718, 1, 0, 0, 0, 6779, 6725, 1, 0, - 0, 0, 6779, 6734, 1, 0, 0, 0, 6779, 6743, 1, 0, 0, 0, 6779, 6752, 1, 0, - 0, 0, 6779, 6761, 1, 0, 0, 0, 6779, 6768, 1, 0, 0, 0, 6780, 729, 1, 0, - 0, 0, 6781, 6782, 5, 44, 0, 0, 6782, 731, 1, 0, 0, 0, 6783, 6784, 5, 345, - 0, 0, 6784, 6785, 5, 193, 0, 0, 6785, 733, 1, 0, 0, 0, 6786, 6787, 5, 157, - 0, 0, 6787, 6788, 5, 230, 0, 0, 6788, 6790, 3, 632, 316, 0, 6789, 6791, - 3, 736, 368, 0, 6790, 6789, 1, 0, 0, 0, 6790, 6791, 1, 0, 0, 0, 6791, 6792, - 1, 0, 0, 0, 6792, 6793, 5, 483, 0, 0, 6793, 6794, 5, 80, 0, 0, 6794, 6795, - 5, 223, 0, 0, 6795, 6796, 3, 1392, 696, 0, 6796, 6856, 1, 0, 0, 0, 6797, - 6798, 5, 157, 0, 0, 6798, 6799, 5, 308, 0, 0, 6799, 6801, 3, 632, 316, - 0, 6800, 6802, 3, 736, 368, 0, 6801, 6800, 1, 0, 0, 0, 6801, 6802, 1, 0, - 0, 0, 6802, 6803, 1, 0, 0, 0, 6803, 6804, 5, 483, 0, 0, 6804, 6805, 5, - 80, 0, 0, 6805, 6806, 5, 223, 0, 0, 6806, 6807, 3, 1392, 696, 0, 6807, - 6856, 1, 0, 0, 0, 6808, 6809, 5, 157, 0, 0, 6809, 6810, 5, 463, 0, 0, 6810, - 6812, 3, 632, 316, 0, 6811, 6813, 3, 736, 368, 0, 6812, 6811, 1, 0, 0, - 0, 6812, 6813, 1, 0, 0, 0, 6813, 6814, 1, 0, 0, 0, 6814, 6815, 5, 483, - 0, 0, 6815, 6816, 5, 80, 0, 0, 6816, 6817, 5, 223, 0, 0, 6817, 6818, 3, - 1392, 696, 0, 6818, 6856, 1, 0, 0, 0, 6819, 6820, 5, 157, 0, 0, 6820, 6821, - 5, 369, 0, 0, 6821, 6822, 3, 1392, 696, 0, 6822, 6823, 5, 80, 0, 0, 6823, - 6825, 3, 1388, 694, 0, 6824, 6826, 3, 736, 368, 0, 6825, 6824, 1, 0, 0, - 0, 6825, 6826, 1, 0, 0, 0, 6826, 6827, 1, 0, 0, 0, 6827, 6828, 5, 483, - 0, 0, 6828, 6829, 5, 80, 0, 0, 6829, 6830, 5, 223, 0, 0, 6830, 6831, 3, - 1392, 696, 0, 6831, 6856, 1, 0, 0, 0, 6832, 6833, 5, 157, 0, 0, 6833, 6834, - 5, 270, 0, 0, 6834, 6835, 5, 388, 0, 0, 6835, 6837, 3, 1388, 694, 0, 6836, - 6838, 3, 736, 368, 0, 6837, 6836, 1, 0, 0, 0, 6837, 6838, 1, 0, 0, 0, 6838, - 6839, 1, 0, 0, 0, 6839, 6840, 5, 483, 0, 0, 6840, 6841, 5, 80, 0, 0, 6841, - 6842, 5, 223, 0, 0, 6842, 6843, 3, 1392, 696, 0, 6843, 6856, 1, 0, 0, 0, - 6844, 6845, 5, 157, 0, 0, 6845, 6846, 5, 245, 0, 0, 6846, 6848, 3, 1388, - 694, 0, 6847, 6849, 3, 736, 368, 0, 6848, 6847, 1, 0, 0, 0, 6848, 6849, - 1, 0, 0, 0, 6849, 6850, 1, 0, 0, 0, 6850, 6851, 5, 483, 0, 0, 6851, 6852, - 5, 80, 0, 0, 6852, 6853, 5, 223, 0, 0, 6853, 6854, 3, 1392, 696, 0, 6854, - 6856, 1, 0, 0, 0, 6855, 6786, 1, 0, 0, 0, 6855, 6797, 1, 0, 0, 0, 6855, - 6808, 1, 0, 0, 0, 6855, 6819, 1, 0, 0, 0, 6855, 6832, 1, 0, 0, 0, 6855, - 6844, 1, 0, 0, 0, 6856, 735, 1, 0, 0, 0, 6857, 6858, 5, 281, 0, 0, 6858, - 737, 1, 0, 0, 0, 6859, 6860, 5, 157, 0, 0, 6860, 6861, 5, 155, 0, 0, 6861, - 6862, 3, 656, 328, 0, 6862, 6863, 5, 345, 0, 0, 6863, 6864, 5, 335, 0, - 0, 6864, 6865, 3, 1392, 696, 0, 6865, 7077, 1, 0, 0, 0, 6866, 6867, 5, - 157, 0, 0, 6867, 6868, 5, 127, 0, 0, 6868, 6869, 3, 526, 263, 0, 6869, - 6870, 5, 345, 0, 0, 6870, 6871, 5, 335, 0, 0, 6871, 6872, 3, 1392, 696, - 0, 6872, 7077, 1, 0, 0, 0, 6873, 6874, 5, 157, 0, 0, 6874, 6875, 5, 187, - 0, 0, 6875, 6876, 3, 526, 263, 0, 6876, 6877, 5, 345, 0, 0, 6877, 6878, - 5, 335, 0, 0, 6878, 6879, 3, 1392, 696, 0, 6879, 7077, 1, 0, 0, 0, 6880, - 6881, 5, 157, 0, 0, 6881, 6882, 5, 208, 0, 0, 6882, 6883, 3, 526, 263, - 0, 6883, 6884, 5, 345, 0, 0, 6884, 6885, 5, 335, 0, 0, 6885, 6886, 3, 1392, - 696, 0, 6886, 7077, 1, 0, 0, 0, 6887, 6888, 5, 157, 0, 0, 6888, 6889, 5, - 223, 0, 0, 6889, 6890, 3, 1392, 696, 0, 6890, 6891, 5, 345, 0, 0, 6891, - 6892, 5, 335, 0, 0, 6892, 6893, 3, 1392, 696, 0, 6893, 7077, 1, 0, 0, 0, - 6894, 6895, 5, 157, 0, 0, 6895, 6896, 5, 230, 0, 0, 6896, 6897, 3, 632, - 316, 0, 6897, 6898, 5, 345, 0, 0, 6898, 6899, 5, 335, 0, 0, 6899, 6900, - 3, 1392, 696, 0, 6900, 7077, 1, 0, 0, 0, 6901, 6902, 5, 157, 0, 0, 6902, - 6903, 5, 290, 0, 0, 6903, 6904, 3, 694, 347, 0, 6904, 6905, 5, 345, 0, - 0, 6905, 6906, 5, 335, 0, 0, 6906, 6907, 3, 1392, 696, 0, 6907, 7077, 1, - 0, 0, 0, 6908, 6909, 5, 157, 0, 0, 6909, 6910, 5, 290, 0, 0, 6910, 6911, - 5, 175, 0, 0, 6911, 6912, 3, 526, 263, 0, 6912, 6913, 5, 100, 0, 0, 6913, - 6914, 3, 1392, 696, 0, 6914, 6915, 5, 345, 0, 0, 6915, 6916, 5, 335, 0, - 0, 6916, 6917, 3, 1392, 696, 0, 6917, 7077, 1, 0, 0, 0, 6918, 6919, 5, - 157, 0, 0, 6919, 6920, 5, 290, 0, 0, 6920, 6921, 5, 225, 0, 0, 6921, 6922, - 3, 526, 263, 0, 6922, 6923, 5, 100, 0, 0, 6923, 6924, 3, 1392, 696, 0, - 6924, 6925, 5, 345, 0, 0, 6925, 6926, 5, 335, 0, 0, 6926, 6927, 3, 1392, - 696, 0, 6927, 7077, 1, 0, 0, 0, 6928, 6929, 5, 157, 0, 0, 6929, 6930, 5, - 308, 0, 0, 6930, 6931, 3, 632, 316, 0, 6931, 6932, 5, 345, 0, 0, 6932, - 6933, 5, 335, 0, 0, 6933, 6934, 3, 1392, 696, 0, 6934, 7077, 1, 0, 0, 0, - 6935, 6936, 5, 157, 0, 0, 6936, 6937, 5, 463, 0, 0, 6937, 6938, 3, 632, - 316, 0, 6938, 6939, 5, 345, 0, 0, 6939, 6940, 5, 335, 0, 0, 6940, 6941, - 3, 1392, 696, 0, 6941, 7077, 1, 0, 0, 0, 6942, 6943, 5, 157, 0, 0, 6943, - 6944, 5, 92, 0, 0, 6944, 6945, 3, 1080, 540, 0, 6945, 6946, 5, 345, 0, - 0, 6946, 6947, 5, 335, 0, 0, 6947, 6948, 3, 1392, 696, 0, 6948, 7077, 1, - 0, 0, 0, 6949, 6950, 5, 157, 0, 0, 6950, 6951, 5, 92, 0, 0, 6951, 6952, - 5, 239, 0, 0, 6952, 6953, 5, 409, 0, 0, 6953, 6954, 3, 1080, 540, 0, 6954, - 6955, 5, 345, 0, 0, 6955, 6956, 5, 335, 0, 0, 6956, 6957, 3, 1392, 696, - 0, 6957, 7077, 1, 0, 0, 0, 6958, 6959, 5, 157, 0, 0, 6959, 6960, 5, 354, - 0, 0, 6960, 6961, 3, 526, 263, 0, 6961, 6962, 5, 345, 0, 0, 6962, 6963, - 5, 335, 0, 0, 6963, 6964, 3, 1392, 696, 0, 6964, 7077, 1, 0, 0, 0, 6965, - 6966, 5, 157, 0, 0, 6966, 6967, 5, 367, 0, 0, 6967, 6968, 5, 337, 0, 0, - 6968, 6969, 5, 295, 0, 0, 6969, 6970, 3, 526, 263, 0, 6970, 6971, 5, 345, - 0, 0, 6971, 6972, 5, 335, 0, 0, 6972, 6973, 3, 1392, 696, 0, 6973, 7077, - 1, 0, 0, 0, 6974, 6975, 5, 157, 0, 0, 6975, 6976, 5, 367, 0, 0, 6976, 6977, - 5, 337, 0, 0, 6977, 6978, 5, 204, 0, 0, 6978, 6979, 3, 526, 263, 0, 6979, - 6980, 5, 345, 0, 0, 6980, 6981, 5, 335, 0, 0, 6981, 6982, 3, 1392, 696, - 0, 6982, 7077, 1, 0, 0, 0, 6983, 6984, 5, 157, 0, 0, 6984, 6985, 5, 367, - 0, 0, 6985, 6986, 5, 337, 0, 0, 6986, 6987, 5, 365, 0, 0, 6987, 6988, 3, - 526, 263, 0, 6988, 6989, 5, 345, 0, 0, 6989, 6990, 5, 335, 0, 0, 6990, - 6991, 3, 1392, 696, 0, 6991, 7077, 1, 0, 0, 0, 6992, 6993, 5, 157, 0, 0, - 6993, 6994, 5, 367, 0, 0, 6994, 6995, 5, 337, 0, 0, 6995, 6996, 5, 182, - 0, 0, 6996, 6997, 3, 526, 263, 0, 6997, 6998, 5, 345, 0, 0, 6998, 6999, - 5, 335, 0, 0, 6999, 7000, 3, 1392, 696, 0, 7000, 7077, 1, 0, 0, 0, 7001, - 7002, 5, 157, 0, 0, 7002, 7003, 5, 340, 0, 0, 7003, 7004, 3, 1388, 694, - 0, 7004, 7005, 5, 345, 0, 0, 7005, 7006, 5, 335, 0, 0, 7006, 7007, 3, 1392, - 696, 0, 7007, 7077, 1, 0, 0, 0, 7008, 7009, 5, 157, 0, 0, 7009, 7010, 5, - 340, 0, 0, 7010, 7011, 5, 239, 0, 0, 7011, 7012, 5, 409, 0, 0, 7012, 7013, - 3, 1388, 694, 0, 7013, 7014, 5, 345, 0, 0, 7014, 7015, 5, 335, 0, 0, 7015, - 7016, 3, 1392, 696, 0, 7016, 7077, 1, 0, 0, 0, 7017, 7018, 5, 157, 0, 0, - 7018, 7019, 5, 388, 0, 0, 7019, 7020, 3, 1388, 694, 0, 7020, 7021, 5, 345, - 0, 0, 7021, 7022, 5, 335, 0, 0, 7022, 7023, 3, 1392, 696, 0, 7023, 7077, - 1, 0, 0, 0, 7024, 7025, 5, 157, 0, 0, 7025, 7026, 5, 388, 0, 0, 7026, 7027, - 5, 239, 0, 0, 7027, 7028, 5, 409, 0, 0, 7028, 7029, 3, 1388, 694, 0, 7029, - 7030, 5, 345, 0, 0, 7030, 7031, 5, 335, 0, 0, 7031, 7032, 3, 1392, 696, - 0, 7032, 7077, 1, 0, 0, 0, 7033, 7034, 5, 157, 0, 0, 7034, 7035, 5, 270, - 0, 0, 7035, 7036, 5, 388, 0, 0, 7036, 7037, 3, 1388, 694, 0, 7037, 7038, - 5, 345, 0, 0, 7038, 7039, 5, 335, 0, 0, 7039, 7040, 3, 1392, 696, 0, 7040, - 7077, 1, 0, 0, 0, 7041, 7042, 5, 157, 0, 0, 7042, 7043, 5, 270, 0, 0, 7043, - 7044, 5, 388, 0, 0, 7044, 7045, 5, 239, 0, 0, 7045, 7046, 5, 409, 0, 0, - 7046, 7047, 3, 1388, 694, 0, 7047, 7048, 5, 345, 0, 0, 7048, 7049, 5, 335, - 0, 0, 7049, 7050, 3, 1392, 696, 0, 7050, 7077, 1, 0, 0, 0, 7051, 7052, - 5, 157, 0, 0, 7052, 7053, 5, 63, 0, 0, 7053, 7054, 5, 92, 0, 0, 7054, 7055, - 3, 1080, 540, 0, 7055, 7056, 5, 345, 0, 0, 7056, 7057, 5, 335, 0, 0, 7057, - 7058, 3, 1392, 696, 0, 7058, 7077, 1, 0, 0, 0, 7059, 7060, 5, 157, 0, 0, - 7060, 7061, 5, 63, 0, 0, 7061, 7062, 5, 92, 0, 0, 7062, 7063, 5, 239, 0, - 0, 7063, 7064, 5, 409, 0, 0, 7064, 7065, 3, 1080, 540, 0, 7065, 7066, 5, - 345, 0, 0, 7066, 7067, 5, 335, 0, 0, 7067, 7068, 3, 1392, 696, 0, 7068, - 7077, 1, 0, 0, 0, 7069, 7070, 5, 157, 0, 0, 7070, 7071, 5, 372, 0, 0, 7071, - 7072, 3, 526, 263, 0, 7072, 7073, 5, 345, 0, 0, 7073, 7074, 5, 335, 0, - 0, 7074, 7075, 3, 1392, 696, 0, 7075, 7077, 1, 0, 0, 0, 7076, 6859, 1, - 0, 0, 0, 7076, 6866, 1, 0, 0, 0, 7076, 6873, 1, 0, 0, 0, 7076, 6880, 1, - 0, 0, 0, 7076, 6887, 1, 0, 0, 0, 7076, 6894, 1, 0, 0, 0, 7076, 6901, 1, - 0, 0, 0, 7076, 6908, 1, 0, 0, 0, 7076, 6918, 1, 0, 0, 0, 7076, 6928, 1, - 0, 0, 0, 7076, 6935, 1, 0, 0, 0, 7076, 6942, 1, 0, 0, 0, 7076, 6949, 1, - 0, 0, 0, 7076, 6958, 1, 0, 0, 0, 7076, 6965, 1, 0, 0, 0, 7076, 6974, 1, - 0, 0, 0, 7076, 6983, 1, 0, 0, 0, 7076, 6992, 1, 0, 0, 0, 7076, 7001, 1, - 0, 0, 0, 7076, 7008, 1, 0, 0, 0, 7076, 7017, 1, 0, 0, 0, 7076, 7024, 1, - 0, 0, 0, 7076, 7033, 1, 0, 0, 0, 7076, 7041, 1, 0, 0, 0, 7076, 7051, 1, - 0, 0, 0, 7076, 7059, 1, 0, 0, 0, 7076, 7069, 1, 0, 0, 0, 7077, 739, 1, - 0, 0, 0, 7078, 7079, 5, 157, 0, 0, 7079, 7080, 5, 290, 0, 0, 7080, 7081, - 3, 694, 347, 0, 7081, 7082, 5, 345, 0, 0, 7082, 7083, 5, 2, 0, 0, 7083, - 7084, 3, 742, 371, 0, 7084, 7085, 5, 3, 0, 0, 7085, 741, 1, 0, 0, 0, 7086, - 7091, 3, 744, 372, 0, 7087, 7088, 5, 6, 0, 0, 7088, 7090, 3, 744, 372, - 0, 7089, 7087, 1, 0, 0, 0, 7090, 7093, 1, 0, 0, 0, 7091, 7089, 1, 0, 0, - 0, 7091, 7092, 1, 0, 0, 0, 7092, 743, 1, 0, 0, 0, 7093, 7091, 1, 0, 0, - 0, 7094, 7095, 3, 1432, 716, 0, 7095, 7096, 5, 10, 0, 0, 7096, 7097, 5, - 420, 0, 0, 7097, 7103, 1, 0, 0, 0, 7098, 7099, 3, 1432, 716, 0, 7099, 7100, - 5, 10, 0, 0, 7100, 7101, 3, 746, 373, 0, 7101, 7103, 1, 0, 0, 0, 7102, - 7094, 1, 0, 0, 0, 7102, 7098, 1, 0, 0, 0, 7103, 745, 1, 0, 0, 0, 7104, - 7110, 3, 646, 323, 0, 7105, 7110, 3, 1444, 722, 0, 7106, 7110, 3, 1326, - 663, 0, 7107, 7110, 3, 294, 147, 0, 7108, 7110, 3, 1410, 705, 0, 7109, - 7104, 1, 0, 0, 0, 7109, 7105, 1, 0, 0, 0, 7109, 7106, 1, 0, 0, 0, 7109, - 7107, 1, 0, 0, 0, 7109, 7108, 1, 0, 0, 0, 7110, 747, 1, 0, 0, 0, 7111, - 7112, 5, 157, 0, 0, 7112, 7113, 5, 372, 0, 0, 7113, 7114, 3, 526, 263, - 0, 7114, 7115, 5, 345, 0, 0, 7115, 7116, 5, 2, 0, 0, 7116, 7117, 3, 742, - 371, 0, 7117, 7118, 5, 3, 0, 0, 7118, 749, 1, 0, 0, 0, 7119, 7120, 5, 157, - 0, 0, 7120, 7121, 5, 155, 0, 0, 7121, 7122, 3, 656, 328, 0, 7122, 7123, - 5, 294, 0, 0, 7123, 7124, 5, 94, 0, 0, 7124, 7125, 3, 1420, 710, 0, 7125, - 7305, 1, 0, 0, 0, 7126, 7127, 5, 157, 0, 0, 7127, 7128, 5, 127, 0, 0, 7128, - 7129, 3, 526, 263, 0, 7129, 7130, 5, 294, 0, 0, 7130, 7131, 5, 94, 0, 0, - 7131, 7132, 3, 1420, 710, 0, 7132, 7305, 1, 0, 0, 0, 7133, 7134, 5, 157, - 0, 0, 7134, 7135, 5, 187, 0, 0, 7135, 7136, 3, 526, 263, 0, 7136, 7137, - 5, 294, 0, 0, 7137, 7138, 5, 94, 0, 0, 7138, 7139, 3, 1420, 710, 0, 7139, - 7305, 1, 0, 0, 0, 7140, 7141, 5, 157, 0, 0, 7141, 7142, 5, 194, 0, 0, 7142, - 7143, 3, 1392, 696, 0, 7143, 7144, 5, 294, 0, 0, 7144, 7145, 5, 94, 0, - 0, 7145, 7146, 3, 1420, 710, 0, 7146, 7305, 1, 0, 0, 0, 7147, 7148, 5, - 157, 0, 0, 7148, 7149, 5, 208, 0, 0, 7149, 7150, 3, 526, 263, 0, 7150, - 7151, 5, 294, 0, 0, 7151, 7152, 5, 94, 0, 0, 7152, 7153, 3, 1420, 710, - 0, 7153, 7305, 1, 0, 0, 0, 7154, 7155, 5, 157, 0, 0, 7155, 7156, 5, 230, - 0, 0, 7156, 7157, 3, 632, 316, 0, 7157, 7158, 5, 294, 0, 0, 7158, 7159, - 5, 94, 0, 0, 7159, 7160, 3, 1420, 710, 0, 7160, 7305, 1, 0, 0, 0, 7161, - 7163, 5, 157, 0, 0, 7162, 7164, 3, 310, 155, 0, 7163, 7162, 1, 0, 0, 0, - 7163, 7164, 1, 0, 0, 0, 7164, 7165, 1, 0, 0, 0, 7165, 7166, 5, 257, 0, - 0, 7166, 7167, 3, 1392, 696, 0, 7167, 7168, 5, 294, 0, 0, 7168, 7169, 5, - 94, 0, 0, 7169, 7170, 3, 1420, 710, 0, 7170, 7305, 1, 0, 0, 0, 7171, 7172, - 5, 157, 0, 0, 7172, 7173, 5, 258, 0, 0, 7173, 7174, 5, 286, 0, 0, 7174, - 7175, 3, 294, 147, 0, 7175, 7176, 5, 294, 0, 0, 7176, 7177, 5, 94, 0, 0, - 7177, 7178, 3, 1420, 710, 0, 7178, 7305, 1, 0, 0, 0, 7179, 7180, 5, 157, - 0, 0, 7180, 7181, 5, 290, 0, 0, 7181, 7182, 3, 694, 347, 0, 7182, 7183, - 5, 294, 0, 0, 7183, 7184, 5, 94, 0, 0, 7184, 7185, 3, 1420, 710, 0, 7185, - 7305, 1, 0, 0, 0, 7186, 7187, 5, 157, 0, 0, 7187, 7188, 5, 290, 0, 0, 7188, - 7189, 5, 175, 0, 0, 7189, 7190, 3, 526, 263, 0, 7190, 7191, 5, 100, 0, - 0, 7191, 7192, 3, 1392, 696, 0, 7192, 7193, 5, 294, 0, 0, 7193, 7194, 5, - 94, 0, 0, 7194, 7195, 3, 1420, 710, 0, 7195, 7305, 1, 0, 0, 0, 7196, 7197, - 5, 157, 0, 0, 7197, 7198, 5, 290, 0, 0, 7198, 7199, 5, 225, 0, 0, 7199, - 7200, 3, 526, 263, 0, 7200, 7201, 5, 100, 0, 0, 7201, 7202, 3, 1392, 696, - 0, 7202, 7203, 5, 294, 0, 0, 7203, 7204, 5, 94, 0, 0, 7204, 7205, 3, 1420, - 710, 0, 7205, 7305, 1, 0, 0, 0, 7206, 7207, 5, 157, 0, 0, 7207, 7208, 5, - 308, 0, 0, 7208, 7209, 3, 632, 316, 0, 7209, 7210, 5, 294, 0, 0, 7210, - 7211, 5, 94, 0, 0, 7211, 7212, 3, 1420, 710, 0, 7212, 7305, 1, 0, 0, 0, - 7213, 7214, 5, 157, 0, 0, 7214, 7215, 5, 463, 0, 0, 7215, 7216, 3, 632, - 316, 0, 7216, 7217, 5, 294, 0, 0, 7217, 7218, 5, 94, 0, 0, 7218, 7219, - 3, 1420, 710, 0, 7219, 7305, 1, 0, 0, 0, 7220, 7221, 5, 157, 0, 0, 7221, - 7222, 5, 335, 0, 0, 7222, 7223, 3, 1392, 696, 0, 7223, 7224, 5, 294, 0, - 0, 7224, 7225, 5, 94, 0, 0, 7225, 7226, 3, 1420, 710, 0, 7226, 7305, 1, - 0, 0, 0, 7227, 7228, 5, 157, 0, 0, 7228, 7229, 5, 372, 0, 0, 7229, 7230, - 3, 526, 263, 0, 7230, 7231, 5, 294, 0, 0, 7231, 7232, 5, 94, 0, 0, 7232, - 7233, 3, 1420, 710, 0, 7233, 7305, 1, 0, 0, 0, 7234, 7235, 5, 157, 0, 0, - 7235, 7236, 5, 363, 0, 0, 7236, 7237, 3, 1392, 696, 0, 7237, 7238, 5, 294, - 0, 0, 7238, 7239, 5, 94, 0, 0, 7239, 7240, 3, 1420, 710, 0, 7240, 7305, - 1, 0, 0, 0, 7241, 7242, 5, 157, 0, 0, 7242, 7243, 5, 354, 0, 0, 7243, 7244, - 3, 526, 263, 0, 7244, 7245, 5, 294, 0, 0, 7245, 7246, 5, 94, 0, 0, 7246, - 7247, 3, 1420, 710, 0, 7247, 7305, 1, 0, 0, 0, 7248, 7249, 5, 157, 0, 0, - 7249, 7250, 5, 367, 0, 0, 7250, 7251, 5, 337, 0, 0, 7251, 7252, 5, 204, - 0, 0, 7252, 7253, 3, 526, 263, 0, 7253, 7254, 5, 294, 0, 0, 7254, 7255, - 5, 94, 0, 0, 7255, 7256, 3, 1420, 710, 0, 7256, 7305, 1, 0, 0, 0, 7257, - 7258, 5, 157, 0, 0, 7258, 7259, 5, 367, 0, 0, 7259, 7260, 5, 337, 0, 0, - 7260, 7261, 5, 182, 0, 0, 7261, 7262, 3, 526, 263, 0, 7262, 7263, 5, 294, - 0, 0, 7263, 7264, 5, 94, 0, 0, 7264, 7265, 3, 1420, 710, 0, 7265, 7305, - 1, 0, 0, 0, 7266, 7267, 5, 157, 0, 0, 7267, 7268, 5, 63, 0, 0, 7268, 7269, - 5, 193, 0, 0, 7269, 7270, 5, 393, 0, 0, 7270, 7271, 3, 1392, 696, 0, 7271, - 7272, 5, 294, 0, 0, 7272, 7273, 5, 94, 0, 0, 7273, 7274, 3, 1420, 710, - 0, 7274, 7305, 1, 0, 0, 0, 7275, 7276, 5, 157, 0, 0, 7276, 7277, 5, 343, - 0, 0, 7277, 7278, 3, 1392, 696, 0, 7278, 7279, 5, 294, 0, 0, 7279, 7280, - 5, 94, 0, 0, 7280, 7281, 3, 1420, 710, 0, 7281, 7305, 1, 0, 0, 0, 7282, - 7283, 5, 157, 0, 0, 7283, 7284, 5, 217, 0, 0, 7284, 7285, 5, 369, 0, 0, - 7285, 7286, 3, 1392, 696, 0, 7286, 7287, 5, 294, 0, 0, 7287, 7288, 5, 94, - 0, 0, 7288, 7289, 3, 1420, 710, 0, 7289, 7305, 1, 0, 0, 0, 7290, 7291, - 5, 157, 0, 0, 7291, 7292, 5, 473, 0, 0, 7292, 7293, 3, 1392, 696, 0, 7293, - 7294, 5, 294, 0, 0, 7294, 7295, 5, 94, 0, 0, 7295, 7296, 3, 1420, 710, - 0, 7296, 7305, 1, 0, 0, 0, 7297, 7298, 5, 157, 0, 0, 7298, 7299, 5, 472, - 0, 0, 7299, 7300, 3, 1392, 696, 0, 7300, 7301, 5, 294, 0, 0, 7301, 7302, - 5, 94, 0, 0, 7302, 7303, 3, 1420, 710, 0, 7303, 7305, 1, 0, 0, 0, 7304, - 7119, 1, 0, 0, 0, 7304, 7126, 1, 0, 0, 0, 7304, 7133, 1, 0, 0, 0, 7304, - 7140, 1, 0, 0, 0, 7304, 7147, 1, 0, 0, 0, 7304, 7154, 1, 0, 0, 0, 7304, - 7161, 1, 0, 0, 0, 7304, 7171, 1, 0, 0, 0, 7304, 7179, 1, 0, 0, 0, 7304, - 7186, 1, 0, 0, 0, 7304, 7196, 1, 0, 0, 0, 7304, 7206, 1, 0, 0, 0, 7304, - 7213, 1, 0, 0, 0, 7304, 7220, 1, 0, 0, 0, 7304, 7227, 1, 0, 0, 0, 7304, - 7234, 1, 0, 0, 0, 7304, 7241, 1, 0, 0, 0, 7304, 7248, 1, 0, 0, 0, 7304, - 7257, 1, 0, 0, 0, 7304, 7266, 1, 0, 0, 0, 7304, 7275, 1, 0, 0, 0, 7304, - 7282, 1, 0, 0, 0, 7304, 7290, 1, 0, 0, 0, 7304, 7297, 1, 0, 0, 0, 7305, - 751, 1, 0, 0, 0, 7306, 7307, 5, 46, 0, 0, 7307, 7308, 5, 473, 0, 0, 7308, - 7310, 3, 1392, 696, 0, 7309, 7311, 3, 670, 335, 0, 7310, 7309, 1, 0, 0, - 0, 7310, 7311, 1, 0, 0, 0, 7311, 7330, 1, 0, 0, 0, 7312, 7313, 5, 46, 0, - 0, 7313, 7314, 5, 473, 0, 0, 7314, 7315, 3, 1392, 696, 0, 7315, 7316, 5, - 62, 0, 0, 7316, 7317, 5, 30, 0, 0, 7317, 7319, 5, 362, 0, 0, 7318, 7320, - 3, 670, 335, 0, 7319, 7318, 1, 0, 0, 0, 7319, 7320, 1, 0, 0, 0, 7320, 7330, - 1, 0, 0, 0, 7321, 7322, 5, 46, 0, 0, 7322, 7323, 5, 473, 0, 0, 7323, 7324, - 3, 1392, 696, 0, 7324, 7325, 5, 62, 0, 0, 7325, 7327, 3, 754, 377, 0, 7326, - 7328, 3, 670, 335, 0, 7327, 7326, 1, 0, 0, 0, 7327, 7328, 1, 0, 0, 0, 7328, - 7330, 1, 0, 0, 0, 7329, 7306, 1, 0, 0, 0, 7329, 7312, 1, 0, 0, 0, 7329, - 7321, 1, 0, 0, 0, 7330, 753, 1, 0, 0, 0, 7331, 7336, 3, 756, 378, 0, 7332, - 7333, 5, 6, 0, 0, 7333, 7335, 3, 756, 378, 0, 7334, 7332, 1, 0, 0, 0, 7335, - 7338, 1, 0, 0, 0, 7336, 7334, 1, 0, 0, 0, 7336, 7337, 1, 0, 0, 0, 7337, - 755, 1, 0, 0, 0, 7338, 7336, 1, 0, 0, 0, 7339, 7340, 5, 92, 0, 0, 7340, - 7342, 3, 1080, 540, 0, 7341, 7343, 3, 216, 108, 0, 7342, 7341, 1, 0, 0, - 0, 7342, 7343, 1, 0, 0, 0, 7343, 7345, 1, 0, 0, 0, 7344, 7346, 3, 758, - 379, 0, 7345, 7344, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 7378, 1, - 0, 0, 0, 7347, 7348, 5, 92, 0, 0, 7348, 7349, 5, 68, 0, 0, 7349, 7352, - 5, 335, 0, 0, 7350, 7353, 3, 1424, 712, 0, 7351, 7353, 5, 130, 0, 0, 7352, - 7350, 1, 0, 0, 0, 7352, 7351, 1, 0, 0, 0, 7353, 7378, 1, 0, 0, 0, 7354, - 7356, 3, 1424, 712, 0, 7355, 7357, 3, 216, 108, 0, 7356, 7355, 1, 0, 0, - 0, 7356, 7357, 1, 0, 0, 0, 7357, 7359, 1, 0, 0, 0, 7358, 7360, 3, 758, - 379, 0, 7359, 7358, 1, 0, 0, 0, 7359, 7360, 1, 0, 0, 0, 7360, 7378, 1, - 0, 0, 0, 7361, 7362, 3, 1424, 712, 0, 7362, 7364, 3, 1374, 687, 0, 7363, - 7365, 3, 216, 108, 0, 7364, 7363, 1, 0, 0, 0, 7364, 7365, 1, 0, 0, 0, 7365, - 7367, 1, 0, 0, 0, 7366, 7368, 3, 758, 379, 0, 7367, 7366, 1, 0, 0, 0, 7367, - 7368, 1, 0, 0, 0, 7368, 7378, 1, 0, 0, 0, 7369, 7371, 3, 1080, 540, 0, - 7370, 7372, 3, 216, 108, 0, 7371, 7370, 1, 0, 0, 0, 7371, 7372, 1, 0, 0, - 0, 7372, 7374, 1, 0, 0, 0, 7373, 7375, 3, 758, 379, 0, 7374, 7373, 1, 0, - 0, 0, 7374, 7375, 1, 0, 0, 0, 7375, 7378, 1, 0, 0, 0, 7376, 7378, 5, 130, - 0, 0, 7377, 7339, 1, 0, 0, 0, 7377, 7347, 1, 0, 0, 0, 7377, 7354, 1, 0, - 0, 0, 7377, 7361, 1, 0, 0, 0, 7377, 7369, 1, 0, 0, 0, 7377, 7376, 1, 0, - 0, 0, 7378, 757, 1, 0, 0, 0, 7379, 7380, 5, 103, 0, 0, 7380, 7381, 5, 2, - 0, 0, 7381, 7382, 3, 1168, 584, 0, 7382, 7383, 5, 3, 0, 0, 7383, 759, 1, - 0, 0, 0, 7384, 7385, 5, 157, 0, 0, 7385, 7386, 5, 473, 0, 0, 7386, 7387, - 3, 1392, 696, 0, 7387, 7388, 5, 345, 0, 0, 7388, 7389, 3, 462, 231, 0, - 7389, 7409, 1, 0, 0, 0, 7390, 7391, 5, 157, 0, 0, 7391, 7392, 5, 473, 0, - 0, 7392, 7393, 3, 1392, 696, 0, 7393, 7394, 5, 152, 0, 0, 7394, 7395, 3, - 754, 377, 0, 7395, 7409, 1, 0, 0, 0, 7396, 7397, 5, 157, 0, 0, 7397, 7398, - 5, 473, 0, 0, 7398, 7399, 3, 1392, 696, 0, 7399, 7400, 5, 345, 0, 0, 7400, - 7401, 3, 754, 377, 0, 7401, 7409, 1, 0, 0, 0, 7402, 7403, 5, 157, 0, 0, - 7403, 7404, 5, 473, 0, 0, 7404, 7405, 3, 1392, 696, 0, 7405, 7406, 5, 210, - 0, 0, 7406, 7407, 3, 754, 377, 0, 7407, 7409, 1, 0, 0, 0, 7408, 7384, 1, - 0, 0, 0, 7408, 7390, 1, 0, 0, 0, 7408, 7396, 1, 0, 0, 0, 7408, 7402, 1, - 0, 0, 0, 7409, 761, 1, 0, 0, 0, 7410, 7411, 5, 46, 0, 0, 7411, 7412, 5, - 472, 0, 0, 7412, 7413, 3, 1392, 696, 0, 7413, 7414, 5, 183, 0, 0, 7414, - 7415, 3, 1410, 705, 0, 7415, 7416, 5, 473, 0, 0, 7416, 7418, 3, 764, 382, - 0, 7417, 7419, 3, 670, 335, 0, 7418, 7417, 1, 0, 0, 0, 7418, 7419, 1, 0, - 0, 0, 7419, 763, 1, 0, 0, 0, 7420, 7425, 3, 766, 383, 0, 7421, 7422, 5, - 6, 0, 0, 7422, 7424, 3, 766, 383, 0, 7423, 7421, 1, 0, 0, 0, 7424, 7427, - 1, 0, 0, 0, 7425, 7423, 1, 0, 0, 0, 7425, 7426, 1, 0, 0, 0, 7426, 765, - 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7428, 7429, 3, 1432, 716, 0, 7429, - 767, 1, 0, 0, 0, 7430, 7431, 5, 157, 0, 0, 7431, 7432, 5, 472, 0, 0, 7432, - 7433, 3, 1392, 696, 0, 7433, 7434, 5, 345, 0, 0, 7434, 7435, 3, 462, 231, - 0, 7435, 7476, 1, 0, 0, 0, 7436, 7437, 5, 157, 0, 0, 7437, 7438, 5, 472, - 0, 0, 7438, 7439, 3, 1392, 696, 0, 7439, 7440, 5, 183, 0, 0, 7440, 7441, - 3, 1410, 705, 0, 7441, 7476, 1, 0, 0, 0, 7442, 7443, 5, 157, 0, 0, 7443, - 7444, 5, 472, 0, 0, 7444, 7445, 3, 1392, 696, 0, 7445, 7446, 5, 317, 0, - 0, 7446, 7448, 5, 473, 0, 0, 7447, 7449, 3, 670, 335, 0, 7448, 7447, 1, - 0, 0, 0, 7448, 7449, 1, 0, 0, 0, 7449, 7476, 1, 0, 0, 0, 7450, 7451, 5, - 157, 0, 0, 7451, 7452, 5, 472, 0, 0, 7452, 7453, 3, 1392, 696, 0, 7453, - 7454, 5, 345, 0, 0, 7454, 7455, 5, 473, 0, 0, 7455, 7457, 3, 764, 382, - 0, 7456, 7458, 3, 670, 335, 0, 7457, 7456, 1, 0, 0, 0, 7457, 7458, 1, 0, - 0, 0, 7458, 7476, 1, 0, 0, 0, 7459, 7460, 5, 157, 0, 0, 7460, 7461, 5, - 472, 0, 0, 7461, 7462, 3, 1392, 696, 0, 7462, 7463, 5, 212, 0, 0, 7463, - 7476, 1, 0, 0, 0, 7464, 7465, 5, 157, 0, 0, 7465, 7466, 5, 472, 0, 0, 7466, - 7467, 3, 1392, 696, 0, 7467, 7468, 5, 205, 0, 0, 7468, 7476, 1, 0, 0, 0, - 7469, 7470, 5, 157, 0, 0, 7470, 7471, 5, 472, 0, 0, 7471, 7472, 3, 1392, - 696, 0, 7472, 7473, 5, 486, 0, 0, 7473, 7474, 3, 462, 231, 0, 7474, 7476, - 1, 0, 0, 0, 7475, 7430, 1, 0, 0, 0, 7475, 7436, 1, 0, 0, 0, 7475, 7442, - 1, 0, 0, 0, 7475, 7450, 1, 0, 0, 0, 7475, 7459, 1, 0, 0, 0, 7475, 7464, - 1, 0, 0, 0, 7475, 7469, 1, 0, 0, 0, 7476, 769, 1, 0, 0, 0, 7477, 7478, - 5, 210, 0, 0, 7478, 7479, 5, 472, 0, 0, 7479, 7481, 3, 1392, 696, 0, 7480, - 7482, 3, 108, 54, 0, 7481, 7480, 1, 0, 0, 0, 7481, 7482, 1, 0, 0, 0, 7482, - 7492, 1, 0, 0, 0, 7483, 7484, 5, 210, 0, 0, 7484, 7485, 5, 472, 0, 0, 7485, - 7486, 5, 239, 0, 0, 7486, 7487, 5, 409, 0, 0, 7487, 7489, 3, 1392, 696, - 0, 7488, 7490, 3, 108, 54, 0, 7489, 7488, 1, 0, 0, 0, 7489, 7490, 1, 0, - 0, 0, 7490, 7492, 1, 0, 0, 0, 7491, 7477, 1, 0, 0, 0, 7491, 7483, 1, 0, - 0, 0, 7492, 771, 1, 0, 0, 0, 7493, 7495, 5, 46, 0, 0, 7494, 7496, 3, 624, - 312, 0, 7495, 7494, 1, 0, 0, 0, 7495, 7496, 1, 0, 0, 0, 7496, 7497, 1, - 0, 0, 0, 7497, 7498, 5, 333, 0, 0, 7498, 7499, 3, 1392, 696, 0, 7499, 7500, - 5, 36, 0, 0, 7500, 7501, 5, 80, 0, 0, 7501, 7502, 3, 782, 391, 0, 7502, - 7503, 5, 94, 0, 0, 7503, 7505, 3, 1388, 694, 0, 7504, 7506, 3, 1100, 550, - 0, 7505, 7504, 1, 0, 0, 0, 7505, 7506, 1, 0, 0, 0, 7506, 7507, 1, 0, 0, - 0, 7507, 7509, 5, 57, 0, 0, 7508, 7510, 3, 784, 392, 0, 7509, 7508, 1, - 0, 0, 0, 7509, 7510, 1, 0, 0, 0, 7510, 7511, 1, 0, 0, 0, 7511, 7512, 3, - 774, 387, 0, 7512, 773, 1, 0, 0, 0, 7513, 7520, 5, 282, 0, 0, 7514, 7520, - 3, 778, 389, 0, 7515, 7516, 5, 2, 0, 0, 7516, 7517, 3, 776, 388, 0, 7517, - 7518, 5, 3, 0, 0, 7518, 7520, 1, 0, 0, 0, 7519, 7513, 1, 0, 0, 0, 7519, - 7514, 1, 0, 0, 0, 7519, 7515, 1, 0, 0, 0, 7520, 775, 1, 0, 0, 0, 7521, - 7523, 3, 780, 390, 0, 7522, 7521, 1, 0, 0, 0, 7522, 7523, 1, 0, 0, 0, 7523, - 7530, 1, 0, 0, 0, 7524, 7526, 5, 7, 0, 0, 7525, 7527, 3, 780, 390, 0, 7526, - 7525, 1, 0, 0, 0, 7526, 7527, 1, 0, 0, 0, 7527, 7529, 1, 0, 0, 0, 7528, - 7524, 1, 0, 0, 0, 7529, 7532, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7530, - 7531, 1, 0, 0, 0, 7531, 777, 1, 0, 0, 0, 7532, 7530, 1, 0, 0, 0, 7533, - 7539, 3, 968, 484, 0, 7534, 7539, 3, 910, 455, 0, 7535, 7539, 3, 950, 475, - 0, 7536, 7539, 3, 936, 468, 0, 7537, 7539, 3, 786, 393, 0, 7538, 7533, - 1, 0, 0, 0, 7538, 7534, 1, 0, 0, 0, 7538, 7535, 1, 0, 0, 0, 7538, 7536, - 1, 0, 0, 0, 7538, 7537, 1, 0, 0, 0, 7539, 779, 1, 0, 0, 0, 7540, 7541, - 3, 778, 389, 0, 7541, 781, 1, 0, 0, 0, 7542, 7543, 7, 33, 0, 0, 7543, 783, - 1, 0, 0, 0, 7544, 7545, 7, 34, 0, 0, 7545, 785, 1, 0, 0, 0, 7546, 7547, - 5, 283, 0, 0, 7547, 7549, 3, 1424, 712, 0, 7548, 7550, 3, 788, 394, 0, - 7549, 7548, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 787, 1, 0, 0, 0, - 7551, 7552, 5, 6, 0, 0, 7552, 7553, 3, 1410, 705, 0, 7553, 789, 1, 0, 0, - 0, 7554, 7555, 5, 262, 0, 0, 7555, 7556, 3, 1424, 712, 0, 7556, 791, 1, - 0, 0, 0, 7557, 7558, 5, 378, 0, 0, 7558, 7562, 3, 1424, 712, 0, 7559, 7560, - 5, 378, 0, 0, 7560, 7562, 5, 9, 0, 0, 7561, 7557, 1, 0, 0, 0, 7561, 7559, - 1, 0, 0, 0, 7562, 793, 1, 0, 0, 0, 7563, 7565, 5, 148, 0, 0, 7564, 7566, - 3, 796, 398, 0, 7565, 7564, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7568, - 1, 0, 0, 0, 7567, 7569, 3, 804, 402, 0, 7568, 7567, 1, 0, 0, 0, 7568, 7569, - 1, 0, 0, 0, 7569, 7633, 1, 0, 0, 0, 7570, 7572, 5, 165, 0, 0, 7571, 7573, - 3, 796, 398, 0, 7572, 7571, 1, 0, 0, 0, 7572, 7573, 1, 0, 0, 0, 7573, 7575, - 1, 0, 0, 0, 7574, 7576, 3, 802, 401, 0, 7575, 7574, 1, 0, 0, 0, 7575, 7576, - 1, 0, 0, 0, 7576, 7633, 1, 0, 0, 0, 7577, 7578, 5, 352, 0, 0, 7578, 7580, - 5, 368, 0, 0, 7579, 7581, 3, 802, 401, 0, 7580, 7579, 1, 0, 0, 0, 7580, - 7581, 1, 0, 0, 0, 7581, 7633, 1, 0, 0, 0, 7582, 7584, 5, 180, 0, 0, 7583, - 7585, 3, 796, 398, 0, 7584, 7583, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, - 7587, 1, 0, 0, 0, 7586, 7588, 3, 804, 402, 0, 7587, 7586, 1, 0, 0, 0, 7587, - 7588, 1, 0, 0, 0, 7588, 7633, 1, 0, 0, 0, 7589, 7591, 5, 475, 0, 0, 7590, - 7592, 3, 796, 398, 0, 7591, 7590, 1, 0, 0, 0, 7591, 7592, 1, 0, 0, 0, 7592, - 7594, 1, 0, 0, 0, 7593, 7595, 3, 804, 402, 0, 7594, 7593, 1, 0, 0, 0, 7594, - 7595, 1, 0, 0, 0, 7595, 7633, 1, 0, 0, 0, 7596, 7598, 5, 331, 0, 0, 7597, - 7599, 3, 796, 398, 0, 7598, 7597, 1, 0, 0, 0, 7598, 7599, 1, 0, 0, 0, 7599, - 7601, 1, 0, 0, 0, 7600, 7602, 3, 804, 402, 0, 7601, 7600, 1, 0, 0, 0, 7601, - 7602, 1, 0, 0, 0, 7602, 7633, 1, 0, 0, 0, 7603, 7604, 5, 334, 0, 0, 7604, - 7633, 3, 1424, 712, 0, 7605, 7606, 5, 320, 0, 0, 7606, 7607, 5, 334, 0, - 0, 7607, 7633, 3, 1424, 712, 0, 7608, 7609, 5, 320, 0, 0, 7609, 7633, 3, - 1424, 712, 0, 7610, 7612, 5, 331, 0, 0, 7611, 7613, 3, 796, 398, 0, 7612, - 7611, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 7614, 1, 0, 0, 0, 7614, - 7615, 5, 94, 0, 0, 7615, 7616, 5, 334, 0, 0, 7616, 7633, 3, 1424, 712, - 0, 7617, 7619, 5, 331, 0, 0, 7618, 7620, 3, 796, 398, 0, 7619, 7618, 1, - 0, 0, 0, 7619, 7620, 1, 0, 0, 0, 7620, 7621, 1, 0, 0, 0, 7621, 7622, 5, - 94, 0, 0, 7622, 7633, 3, 1424, 712, 0, 7623, 7624, 5, 302, 0, 0, 7624, - 7625, 5, 368, 0, 0, 7625, 7633, 3, 1410, 705, 0, 7626, 7627, 5, 180, 0, - 0, 7627, 7628, 5, 303, 0, 0, 7628, 7633, 3, 1410, 705, 0, 7629, 7630, 5, - 331, 0, 0, 7630, 7631, 5, 303, 0, 0, 7631, 7633, 3, 1410, 705, 0, 7632, - 7563, 1, 0, 0, 0, 7632, 7570, 1, 0, 0, 0, 7632, 7577, 1, 0, 0, 0, 7632, - 7582, 1, 0, 0, 0, 7632, 7589, 1, 0, 0, 0, 7632, 7596, 1, 0, 0, 0, 7632, - 7603, 1, 0, 0, 0, 7632, 7605, 1, 0, 0, 0, 7632, 7608, 1, 0, 0, 0, 7632, - 7610, 1, 0, 0, 0, 7632, 7617, 1, 0, 0, 0, 7632, 7623, 1, 0, 0, 0, 7632, - 7626, 1, 0, 0, 0, 7632, 7629, 1, 0, 0, 0, 7633, 795, 1, 0, 0, 0, 7634, - 7635, 7, 35, 0, 0, 7635, 797, 1, 0, 0, 0, 7636, 7637, 5, 254, 0, 0, 7637, - 7638, 5, 261, 0, 0, 7638, 7647, 3, 64, 32, 0, 7639, 7640, 5, 312, 0, 0, - 7640, 7647, 5, 81, 0, 0, 7641, 7642, 5, 312, 0, 0, 7642, 7647, 5, 394, - 0, 0, 7643, 7647, 5, 54, 0, 0, 7644, 7645, 5, 77, 0, 0, 7645, 7647, 5, - 54, 0, 0, 7646, 7636, 1, 0, 0, 0, 7646, 7639, 1, 0, 0, 0, 7646, 7641, 1, - 0, 0, 0, 7646, 7643, 1, 0, 0, 0, 7646, 7644, 1, 0, 0, 0, 7647, 799, 1, - 0, 0, 0, 7648, 7655, 3, 798, 399, 0, 7649, 7651, 5, 6, 0, 0, 7650, 7649, - 1, 0, 0, 0, 7650, 7651, 1, 0, 0, 0, 7651, 7652, 1, 0, 0, 0, 7652, 7654, - 3, 798, 399, 0, 7653, 7650, 1, 0, 0, 0, 7654, 7657, 1, 0, 0, 0, 7655, 7653, - 1, 0, 0, 0, 7655, 7656, 1, 0, 0, 0, 7656, 801, 1, 0, 0, 0, 7657, 7655, - 1, 0, 0, 0, 7658, 7659, 3, 800, 400, 0, 7659, 803, 1, 0, 0, 0, 7660, 7662, - 5, 33, 0, 0, 7661, 7663, 5, 281, 0, 0, 7662, 7661, 1, 0, 0, 0, 7662, 7663, - 1, 0, 0, 0, 7663, 7664, 1, 0, 0, 0, 7664, 7665, 5, 172, 0, 0, 7665, 805, - 1, 0, 0, 0, 7666, 7669, 5, 46, 0, 0, 7667, 7668, 5, 82, 0, 0, 7668, 7670, - 5, 323, 0, 0, 7669, 7667, 1, 0, 0, 0, 7669, 7670, 1, 0, 0, 0, 7670, 7672, - 1, 0, 0, 0, 7671, 7673, 3, 174, 87, 0, 7672, 7671, 1, 0, 0, 0, 7672, 7673, - 1, 0, 0, 0, 7673, 7691, 1, 0, 0, 0, 7674, 7675, 5, 388, 0, 0, 7675, 7677, - 3, 1388, 694, 0, 7676, 7678, 3, 216, 108, 0, 7677, 7676, 1, 0, 0, 0, 7677, - 7678, 1, 0, 0, 0, 7678, 7680, 1, 0, 0, 0, 7679, 7681, 3, 118, 59, 0, 7680, - 7679, 1, 0, 0, 0, 7680, 7681, 1, 0, 0, 0, 7681, 7692, 1, 0, 0, 0, 7682, - 7683, 5, 315, 0, 0, 7683, 7684, 5, 388, 0, 0, 7684, 7685, 3, 1388, 694, - 0, 7685, 7686, 5, 2, 0, 0, 7686, 7687, 3, 218, 109, 0, 7687, 7689, 5, 3, - 0, 0, 7688, 7690, 3, 118, 59, 0, 7689, 7688, 1, 0, 0, 0, 7689, 7690, 1, - 0, 0, 0, 7690, 7692, 1, 0, 0, 0, 7691, 7674, 1, 0, 0, 0, 7691, 7682, 1, - 0, 0, 0, 7692, 7693, 1, 0, 0, 0, 7693, 7694, 5, 36, 0, 0, 7694, 7696, 3, - 968, 484, 0, 7695, 7697, 3, 808, 404, 0, 7696, 7695, 1, 0, 0, 0, 7696, - 7697, 1, 0, 0, 0, 7697, 807, 1, 0, 0, 0, 7698, 7700, 5, 105, 0, 0, 7699, - 7701, 7, 36, 0, 0, 7700, 7699, 1, 0, 0, 0, 7700, 7701, 1, 0, 0, 0, 7701, - 7702, 1, 0, 0, 0, 7702, 7703, 5, 42, 0, 0, 7703, 7704, 5, 291, 0, 0, 7704, - 809, 1, 0, 0, 0, 7705, 7706, 5, 263, 0, 0, 7706, 7707, 3, 1396, 698, 0, - 7707, 811, 1, 0, 0, 0, 7708, 7709, 5, 46, 0, 0, 7709, 7710, 5, 194, 0, - 0, 7710, 7712, 3, 1392, 696, 0, 7711, 7713, 3, 16, 8, 0, 7712, 7711, 1, - 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 7715, 1, 0, 0, 0, 7714, 7716, 3, - 814, 407, 0, 7715, 7714, 1, 0, 0, 0, 7715, 7716, 1, 0, 0, 0, 7716, 813, - 1, 0, 0, 0, 7717, 7718, 3, 816, 408, 0, 7718, 815, 1, 0, 0, 0, 7719, 7721, - 3, 818, 409, 0, 7720, 7719, 1, 0, 0, 0, 7721, 7722, 1, 0, 0, 0, 7722, 7720, - 1, 0, 0, 0, 7722, 7723, 1, 0, 0, 0, 7723, 817, 1, 0, 0, 0, 7724, 7726, - 3, 820, 410, 0, 7725, 7727, 3, 822, 411, 0, 7726, 7725, 1, 0, 0, 0, 7726, - 7727, 1, 0, 0, 0, 7727, 7731, 1, 0, 0, 0, 7728, 7732, 3, 1416, 708, 0, - 7729, 7732, 3, 66, 33, 0, 7730, 7732, 5, 53, 0, 0, 7731, 7728, 1, 0, 0, - 0, 7731, 7729, 1, 0, 0, 0, 7731, 7730, 1, 0, 0, 0, 7732, 819, 1, 0, 0, - 0, 7733, 7742, 3, 1434, 717, 0, 7734, 7735, 5, 183, 0, 0, 7735, 7742, 5, - 74, 0, 0, 7736, 7742, 5, 213, 0, 0, 7737, 7742, 5, 265, 0, 0, 7738, 7742, - 5, 294, 0, 0, 7739, 7742, 5, 363, 0, 0, 7740, 7742, 5, 365, 0, 0, 7741, - 7733, 1, 0, 0, 0, 7741, 7734, 1, 0, 0, 0, 7741, 7736, 1, 0, 0, 0, 7741, - 7737, 1, 0, 0, 0, 7741, 7738, 1, 0, 0, 0, 7741, 7739, 1, 0, 0, 0, 7741, - 7740, 1, 0, 0, 0, 7742, 821, 1, 0, 0, 0, 7743, 7744, 5, 10, 0, 0, 7744, - 823, 1, 0, 0, 0, 7745, 7746, 5, 157, 0, 0, 7746, 7747, 5, 194, 0, 0, 7747, - 7761, 3, 1392, 696, 0, 7748, 7750, 5, 105, 0, 0, 7749, 7751, 3, 814, 407, - 0, 7750, 7749, 1, 0, 0, 0, 7750, 7751, 1, 0, 0, 0, 7751, 7762, 1, 0, 0, - 0, 7752, 7754, 3, 814, 407, 0, 7753, 7752, 1, 0, 0, 0, 7753, 7754, 1, 0, - 0, 0, 7754, 7762, 1, 0, 0, 0, 7755, 7756, 5, 345, 0, 0, 7756, 7757, 5, - 363, 0, 0, 7757, 7762, 3, 1392, 696, 0, 7758, 7759, 5, 317, 0, 0, 7759, - 7760, 5, 127, 0, 0, 7760, 7762, 5, 387, 0, 0, 7761, 7748, 1, 0, 0, 0, 7761, - 7753, 1, 0, 0, 0, 7761, 7755, 1, 0, 0, 0, 7761, 7758, 1, 0, 0, 0, 7762, - 825, 1, 0, 0, 0, 7763, 7764, 5, 157, 0, 0, 7764, 7765, 5, 194, 0, 0, 7765, - 7766, 3, 1392, 696, 0, 7766, 7767, 3, 80, 40, 0, 7767, 827, 1, 0, 0, 0, - 7768, 7769, 5, 210, 0, 0, 7769, 7772, 5, 194, 0, 0, 7770, 7771, 5, 239, - 0, 0, 7771, 7773, 5, 409, 0, 0, 7772, 7770, 1, 0, 0, 0, 7772, 7773, 1, - 0, 0, 0, 7773, 7774, 1, 0, 0, 0, 7774, 7782, 3, 1392, 696, 0, 7775, 7777, - 3, 16, 8, 0, 7776, 7775, 1, 0, 0, 0, 7776, 7777, 1, 0, 0, 0, 7777, 7778, - 1, 0, 0, 0, 7778, 7779, 5, 2, 0, 0, 7779, 7780, 3, 830, 415, 0, 7780, 7781, - 5, 3, 0, 0, 7781, 7783, 1, 0, 0, 0, 7782, 7776, 1, 0, 0, 0, 7782, 7783, - 1, 0, 0, 0, 7783, 829, 1, 0, 0, 0, 7784, 7789, 3, 832, 416, 0, 7785, 7786, - 5, 6, 0, 0, 7786, 7788, 3, 832, 416, 0, 7787, 7785, 1, 0, 0, 0, 7788, 7791, - 1, 0, 0, 0, 7789, 7787, 1, 0, 0, 0, 7789, 7790, 1, 0, 0, 0, 7790, 831, - 1, 0, 0, 0, 7791, 7789, 1, 0, 0, 0, 7792, 7793, 5, 228, 0, 0, 7793, 833, - 1, 0, 0, 0, 7794, 7795, 5, 157, 0, 0, 7795, 7796, 5, 127, 0, 0, 7796, 7797, - 3, 526, 263, 0, 7797, 7798, 5, 317, 0, 0, 7798, 7799, 5, 387, 0, 0, 7799, - 835, 1, 0, 0, 0, 7800, 7801, 5, 157, 0, 0, 7801, 7802, 5, 361, 0, 0, 7802, - 7803, 7, 37, 0, 0, 7803, 7804, 3, 54, 27, 0, 7804, 837, 1, 0, 0, 0, 7805, - 7806, 5, 46, 0, 0, 7806, 7807, 5, 208, 0, 0, 7807, 7809, 3, 526, 263, 0, - 7808, 7810, 3, 842, 421, 0, 7809, 7808, 1, 0, 0, 0, 7809, 7810, 1, 0, 0, - 0, 7810, 7811, 1, 0, 0, 0, 7811, 7812, 3, 1124, 562, 0, 7812, 7813, 3, - 192, 96, 0, 7813, 839, 1, 0, 0, 0, 7814, 7815, 5, 157, 0, 0, 7815, 7816, - 5, 208, 0, 0, 7816, 7839, 3, 526, 263, 0, 7817, 7840, 3, 106, 53, 0, 7818, - 7819, 5, 210, 0, 0, 7819, 7820, 5, 77, 0, 0, 7820, 7840, 5, 78, 0, 0, 7821, - 7822, 5, 345, 0, 0, 7822, 7823, 5, 77, 0, 0, 7823, 7840, 5, 78, 0, 0, 7824, - 7825, 5, 152, 0, 0, 7825, 7840, 3, 210, 105, 0, 7826, 7827, 5, 210, 0, - 0, 7827, 7830, 5, 45, 0, 0, 7828, 7829, 5, 239, 0, 0, 7829, 7831, 5, 409, - 0, 0, 7830, 7828, 1, 0, 0, 0, 7830, 7831, 1, 0, 0, 0, 7831, 7832, 1, 0, - 0, 0, 7832, 7834, 3, 1392, 696, 0, 7833, 7835, 3, 108, 54, 0, 7834, 7833, - 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 7840, 1, 0, 0, 0, 7836, 7837, - 5, 384, 0, 0, 7837, 7838, 5, 45, 0, 0, 7838, 7840, 3, 1392, 696, 0, 7839, - 7817, 1, 0, 0, 0, 7839, 7818, 1, 0, 0, 0, 7839, 7821, 1, 0, 0, 0, 7839, - 7824, 1, 0, 0, 0, 7839, 7826, 1, 0, 0, 0, 7839, 7836, 1, 0, 0, 0, 7840, - 841, 1, 0, 0, 0, 7841, 7842, 5, 36, 0, 0, 7842, 843, 1, 0, 0, 0, 7843, - 7844, 5, 157, 0, 0, 7844, 7845, 5, 367, 0, 0, 7845, 7846, 5, 337, 0, 0, - 7846, 7847, 5, 204, 0, 0, 7847, 7848, 3, 526, 263, 0, 7848, 7849, 3, 462, - 231, 0, 7849, 845, 1, 0, 0, 0, 7850, 7851, 5, 157, 0, 0, 7851, 7852, 5, - 367, 0, 0, 7852, 7853, 5, 337, 0, 0, 7853, 7854, 5, 182, 0, 0, 7854, 7855, - 3, 526, 263, 0, 7855, 7856, 5, 152, 0, 0, 7856, 7857, 5, 267, 0, 0, 7857, - 7858, 5, 62, 0, 0, 7858, 7859, 3, 1390, 695, 0, 7859, 7860, 3, 848, 424, - 0, 7860, 7861, 3, 524, 262, 0, 7861, 7923, 1, 0, 0, 0, 7862, 7863, 5, 157, - 0, 0, 7863, 7864, 5, 367, 0, 0, 7864, 7865, 5, 337, 0, 0, 7865, 7866, 5, - 182, 0, 0, 7866, 7867, 3, 526, 263, 0, 7867, 7868, 5, 157, 0, 0, 7868, - 7869, 5, 267, 0, 0, 7869, 7870, 5, 62, 0, 0, 7870, 7871, 3, 1390, 695, - 0, 7871, 7872, 3, 848, 424, 0, 7872, 7873, 3, 524, 262, 0, 7873, 7923, - 1, 0, 0, 0, 7874, 7875, 5, 157, 0, 0, 7875, 7876, 5, 367, 0, 0, 7876, 7877, - 5, 337, 0, 0, 7877, 7878, 5, 182, 0, 0, 7878, 7879, 3, 526, 263, 0, 7879, - 7880, 5, 157, 0, 0, 7880, 7881, 5, 267, 0, 0, 7881, 7882, 5, 323, 0, 0, - 7882, 7883, 3, 526, 263, 0, 7883, 7884, 3, 848, 424, 0, 7884, 7885, 3, - 526, 263, 0, 7885, 7923, 1, 0, 0, 0, 7886, 7887, 5, 157, 0, 0, 7887, 7888, - 5, 367, 0, 0, 7888, 7889, 5, 337, 0, 0, 7889, 7890, 5, 182, 0, 0, 7890, - 7891, 3, 526, 263, 0, 7891, 7892, 5, 157, 0, 0, 7892, 7893, 5, 267, 0, - 0, 7893, 7894, 5, 62, 0, 0, 7894, 7895, 3, 1390, 695, 0, 7895, 7896, 5, - 323, 0, 0, 7896, 7897, 3, 526, 263, 0, 7897, 7898, 3, 848, 424, 0, 7898, - 7899, 3, 526, 263, 0, 7899, 7923, 1, 0, 0, 0, 7900, 7901, 5, 157, 0, 0, - 7901, 7902, 5, 367, 0, 0, 7902, 7903, 5, 337, 0, 0, 7903, 7904, 5, 182, - 0, 0, 7904, 7905, 3, 526, 263, 0, 7905, 7906, 5, 210, 0, 0, 7906, 7907, - 5, 267, 0, 0, 7907, 7908, 5, 62, 0, 0, 7908, 7909, 3, 1390, 695, 0, 7909, - 7923, 1, 0, 0, 0, 7910, 7911, 5, 157, 0, 0, 7911, 7912, 5, 367, 0, 0, 7912, - 7913, 5, 337, 0, 0, 7913, 7914, 5, 182, 0, 0, 7914, 7915, 3, 526, 263, - 0, 7915, 7916, 5, 210, 0, 0, 7916, 7917, 5, 267, 0, 0, 7917, 7918, 5, 239, - 0, 0, 7918, 7919, 5, 409, 0, 0, 7919, 7920, 5, 62, 0, 0, 7920, 7921, 3, - 1390, 695, 0, 7921, 7923, 1, 0, 0, 0, 7922, 7850, 1, 0, 0, 0, 7922, 7862, - 1, 0, 0, 0, 7922, 7874, 1, 0, 0, 0, 7922, 7886, 1, 0, 0, 0, 7922, 7900, - 1, 0, 0, 0, 7922, 7910, 1, 0, 0, 0, 7923, 847, 1, 0, 0, 0, 7924, 7925, - 5, 105, 0, 0, 7925, 849, 1, 0, 0, 0, 7926, 7928, 5, 46, 0, 0, 7927, 7929, - 3, 490, 245, 0, 7928, 7927, 1, 0, 0, 0, 7928, 7929, 1, 0, 0, 0, 7929, 7930, - 1, 0, 0, 0, 7930, 7931, 5, 187, 0, 0, 7931, 7932, 3, 526, 263, 0, 7932, - 7933, 5, 62, 0, 0, 7933, 7934, 3, 1410, 705, 0, 7934, 7935, 5, 94, 0, 0, - 7935, 7936, 3, 1410, 705, 0, 7936, 7937, 5, 64, 0, 0, 7937, 7938, 3, 526, - 263, 0, 7938, 851, 1, 0, 0, 0, 7939, 7941, 5, 177, 0, 0, 7940, 7942, 3, - 872, 436, 0, 7941, 7940, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7943, - 1, 0, 0, 0, 7943, 7945, 3, 1388, 694, 0, 7944, 7946, 3, 854, 427, 0, 7945, - 7944, 1, 0, 0, 0, 7945, 7946, 1, 0, 0, 0, 7946, 7960, 1, 0, 0, 0, 7947, - 7949, 5, 177, 0, 0, 7948, 7950, 3, 872, 436, 0, 7949, 7948, 1, 0, 0, 0, - 7949, 7950, 1, 0, 0, 0, 7950, 7960, 1, 0, 0, 0, 7951, 7953, 5, 177, 0, - 0, 7952, 7954, 3, 872, 436, 0, 7953, 7952, 1, 0, 0, 0, 7953, 7954, 1, 0, - 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 3, 1392, 696, 0, 7956, 7957, - 5, 80, 0, 0, 7957, 7958, 3, 1388, 694, 0, 7958, 7960, 1, 0, 0, 0, 7959, - 7939, 1, 0, 0, 0, 7959, 7947, 1, 0, 0, 0, 7959, 7951, 1, 0, 0, 0, 7960, - 853, 1, 0, 0, 0, 7961, 7962, 5, 100, 0, 0, 7962, 7963, 3, 1392, 696, 0, - 7963, 855, 1, 0, 0, 0, 7964, 7966, 5, 382, 0, 0, 7965, 7967, 3, 874, 437, - 0, 7966, 7965, 1, 0, 0, 0, 7966, 7967, 1, 0, 0, 0, 7967, 7969, 1, 0, 0, - 0, 7968, 7970, 3, 876, 438, 0, 7969, 7968, 1, 0, 0, 0, 7969, 7970, 1, 0, - 0, 0, 7970, 7972, 1, 0, 0, 0, 7971, 7973, 3, 872, 436, 0, 7972, 7971, 1, - 0, 0, 0, 7972, 7973, 1, 0, 0, 0, 7973, 7975, 1, 0, 0, 0, 7974, 7976, 3, - 870, 435, 0, 7975, 7974, 1, 0, 0, 0, 7975, 7976, 1, 0, 0, 0, 7976, 7978, - 1, 0, 0, 0, 7977, 7979, 3, 884, 442, 0, 7978, 7977, 1, 0, 0, 0, 7978, 7979, - 1, 0, 0, 0, 7979, 7988, 1, 0, 0, 0, 7980, 7981, 5, 382, 0, 0, 7981, 7982, - 5, 2, 0, 0, 7982, 7983, 3, 860, 430, 0, 7983, 7985, 5, 3, 0, 0, 7984, 7986, - 3, 884, 442, 0, 7985, 7984, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7988, - 1, 0, 0, 0, 7987, 7964, 1, 0, 0, 0, 7987, 7980, 1, 0, 0, 0, 7988, 857, - 1, 0, 0, 0, 7989, 7991, 3, 862, 431, 0, 7990, 7992, 3, 872, 436, 0, 7991, - 7990, 1, 0, 0, 0, 7991, 7992, 1, 0, 0, 0, 7992, 7994, 1, 0, 0, 0, 7993, - 7995, 3, 884, 442, 0, 7994, 7993, 1, 0, 0, 0, 7994, 7995, 1, 0, 0, 0, 7995, - 8004, 1, 0, 0, 0, 7996, 7997, 3, 862, 431, 0, 7997, 7998, 5, 2, 0, 0, 7998, - 7999, 3, 860, 430, 0, 7999, 8001, 5, 3, 0, 0, 8000, 8002, 3, 884, 442, - 0, 8001, 8000, 1, 0, 0, 0, 8001, 8002, 1, 0, 0, 0, 8002, 8004, 1, 0, 0, - 0, 8003, 7989, 1, 0, 0, 0, 8003, 7996, 1, 0, 0, 0, 8004, 859, 1, 0, 0, - 0, 8005, 8010, 3, 864, 432, 0, 8006, 8007, 5, 6, 0, 0, 8007, 8009, 3, 864, - 432, 0, 8008, 8006, 1, 0, 0, 0, 8009, 8012, 1, 0, 0, 0, 8010, 8008, 1, - 0, 0, 0, 8010, 8011, 1, 0, 0, 0, 8011, 861, 1, 0, 0, 0, 8012, 8010, 1, - 0, 0, 0, 8013, 8014, 7, 38, 0, 0, 8014, 863, 1, 0, 0, 0, 8015, 8017, 3, - 866, 433, 0, 8016, 8018, 3, 868, 434, 0, 8017, 8016, 1, 0, 0, 0, 8017, - 8018, 1, 0, 0, 0, 8018, 865, 1, 0, 0, 0, 8019, 8022, 3, 1430, 715, 0, 8020, - 8022, 3, 862, 431, 0, 8021, 8019, 1, 0, 0, 0, 8021, 8020, 1, 0, 0, 0, 8022, - 867, 1, 0, 0, 0, 8023, 8026, 3, 66, 33, 0, 8024, 8026, 3, 294, 147, 0, - 8025, 8023, 1, 0, 0, 0, 8025, 8024, 1, 0, 0, 0, 8026, 869, 1, 0, 0, 0, - 8027, 8028, 3, 862, 431, 0, 8028, 871, 1, 0, 0, 0, 8029, 8030, 5, 147, - 0, 0, 8030, 873, 1, 0, 0, 0, 8031, 8032, 5, 132, 0, 0, 8032, 875, 1, 0, - 0, 0, 8033, 8034, 5, 131, 0, 0, 8034, 877, 1, 0, 0, 0, 8035, 8036, 5, 2, - 0, 0, 8036, 8037, 3, 1390, 695, 0, 8037, 8038, 5, 3, 0, 0, 8038, 879, 1, - 0, 0, 0, 8039, 8041, 3, 1388, 694, 0, 8040, 8042, 3, 878, 439, 0, 8041, - 8040, 1, 0, 0, 0, 8041, 8042, 1, 0, 0, 0, 8042, 881, 1, 0, 0, 0, 8043, - 8048, 3, 880, 440, 0, 8044, 8045, 5, 6, 0, 0, 8045, 8047, 3, 880, 440, - 0, 8046, 8044, 1, 0, 0, 0, 8047, 8050, 1, 0, 0, 0, 8048, 8046, 1, 0, 0, - 0, 8048, 8049, 1, 0, 0, 0, 8049, 883, 1, 0, 0, 0, 8050, 8048, 1, 0, 0, - 0, 8051, 8052, 3, 882, 441, 0, 8052, 885, 1, 0, 0, 0, 8053, 8054, 5, 222, - 0, 0, 8054, 8072, 3, 888, 444, 0, 8055, 8056, 5, 222, 0, 0, 8056, 8058, - 3, 862, 431, 0, 8057, 8059, 3, 872, 436, 0, 8058, 8057, 1, 0, 0, 0, 8058, - 8059, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8061, 3, 888, 444, 0, 8061, - 8072, 1, 0, 0, 0, 8062, 8063, 5, 222, 0, 0, 8063, 8064, 5, 147, 0, 0, 8064, - 8072, 3, 888, 444, 0, 8065, 8066, 5, 222, 0, 0, 8066, 8067, 5, 2, 0, 0, - 8067, 8068, 3, 890, 445, 0, 8068, 8069, 5, 3, 0, 0, 8069, 8070, 3, 888, - 444, 0, 8070, 8072, 1, 0, 0, 0, 8071, 8053, 1, 0, 0, 0, 8071, 8055, 1, - 0, 0, 0, 8071, 8062, 1, 0, 0, 0, 8071, 8065, 1, 0, 0, 0, 8072, 887, 1, - 0, 0, 0, 8073, 8083, 3, 968, 484, 0, 8074, 8083, 3, 910, 455, 0, 8075, - 8083, 3, 950, 475, 0, 8076, 8083, 3, 936, 468, 0, 8077, 8083, 3, 960, 480, - 0, 8078, 8083, 3, 266, 133, 0, 8079, 8083, 3, 272, 136, 0, 8080, 8083, - 3, 278, 139, 0, 8081, 8083, 3, 904, 452, 0, 8082, 8073, 1, 0, 0, 0, 8082, - 8074, 1, 0, 0, 0, 8082, 8075, 1, 0, 0, 0, 8082, 8076, 1, 0, 0, 0, 8082, - 8077, 1, 0, 0, 0, 8082, 8078, 1, 0, 0, 0, 8082, 8079, 1, 0, 0, 0, 8082, - 8080, 1, 0, 0, 0, 8082, 8081, 1, 0, 0, 0, 8083, 889, 1, 0, 0, 0, 8084, - 8089, 3, 892, 446, 0, 8085, 8086, 5, 6, 0, 0, 8086, 8088, 3, 892, 446, - 0, 8087, 8085, 1, 0, 0, 0, 8088, 8091, 1, 0, 0, 0, 8089, 8087, 1, 0, 0, - 0, 8089, 8090, 1, 0, 0, 0, 8090, 891, 1, 0, 0, 0, 8091, 8089, 1, 0, 0, - 0, 8092, 8094, 3, 894, 447, 0, 8093, 8095, 3, 896, 448, 0, 8094, 8093, - 1, 0, 0, 0, 8094, 8095, 1, 0, 0, 0, 8095, 893, 1, 0, 0, 0, 8096, 8099, - 3, 1430, 715, 0, 8097, 8099, 3, 862, 431, 0, 8098, 8096, 1, 0, 0, 0, 8098, - 8097, 1, 0, 0, 0, 8099, 895, 1, 0, 0, 0, 8100, 8103, 3, 66, 33, 0, 8101, - 8103, 3, 294, 147, 0, 8102, 8100, 1, 0, 0, 0, 8102, 8101, 1, 0, 0, 0, 8103, - 897, 1, 0, 0, 0, 8104, 8105, 5, 302, 0, 0, 8105, 8107, 3, 1392, 696, 0, - 8106, 8108, 3, 900, 450, 0, 8107, 8106, 1, 0, 0, 0, 8107, 8108, 1, 0, 0, - 0, 8108, 8109, 1, 0, 0, 0, 8109, 8110, 5, 36, 0, 0, 8110, 8111, 3, 902, - 451, 0, 8111, 899, 1, 0, 0, 0, 8112, 8113, 5, 2, 0, 0, 8113, 8114, 3, 1336, - 668, 0, 8114, 8115, 5, 3, 0, 0, 8115, 901, 1, 0, 0, 0, 8116, 8122, 3, 968, - 484, 0, 8117, 8122, 3, 910, 455, 0, 8118, 8122, 3, 950, 475, 0, 8119, 8122, - 3, 936, 468, 0, 8120, 8122, 3, 928, 464, 0, 8121, 8116, 1, 0, 0, 0, 8121, - 8117, 1, 0, 0, 0, 8121, 8118, 1, 0, 0, 0, 8121, 8119, 1, 0, 0, 0, 8121, - 8120, 1, 0, 0, 0, 8122, 903, 1, 0, 0, 0, 8123, 8124, 5, 221, 0, 0, 8124, - 8126, 3, 1392, 696, 0, 8125, 8127, 3, 906, 453, 0, 8126, 8125, 1, 0, 0, - 0, 8126, 8127, 1, 0, 0, 0, 8127, 8162, 1, 0, 0, 0, 8128, 8130, 5, 46, 0, - 0, 8129, 8131, 3, 174, 87, 0, 8130, 8129, 1, 0, 0, 0, 8130, 8131, 1, 0, - 0, 0, 8131, 8132, 1, 0, 0, 0, 8132, 8133, 5, 92, 0, 0, 8133, 8134, 3, 268, - 134, 0, 8134, 8135, 5, 36, 0, 0, 8135, 8136, 5, 221, 0, 0, 8136, 8138, - 3, 1392, 696, 0, 8137, 8139, 3, 906, 453, 0, 8138, 8137, 1, 0, 0, 0, 8138, - 8139, 1, 0, 0, 0, 8139, 8141, 1, 0, 0, 0, 8140, 8142, 3, 270, 135, 0, 8141, - 8140, 1, 0, 0, 0, 8141, 8142, 1, 0, 0, 0, 8142, 8162, 1, 0, 0, 0, 8143, - 8145, 5, 46, 0, 0, 8144, 8146, 3, 174, 87, 0, 8145, 8144, 1, 0, 0, 0, 8145, - 8146, 1, 0, 0, 0, 8146, 8147, 1, 0, 0, 0, 8147, 8148, 5, 92, 0, 0, 8148, - 8149, 5, 239, 0, 0, 8149, 8150, 5, 77, 0, 0, 8150, 8151, 5, 409, 0, 0, - 8151, 8152, 3, 268, 134, 0, 8152, 8153, 5, 36, 0, 0, 8153, 8154, 5, 221, - 0, 0, 8154, 8156, 3, 1392, 696, 0, 8155, 8157, 3, 906, 453, 0, 8156, 8155, - 1, 0, 0, 0, 8156, 8157, 1, 0, 0, 0, 8157, 8159, 1, 0, 0, 0, 8158, 8160, - 3, 270, 135, 0, 8159, 8158, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8162, - 1, 0, 0, 0, 8161, 8123, 1, 0, 0, 0, 8161, 8128, 1, 0, 0, 0, 8161, 8143, - 1, 0, 0, 0, 8162, 905, 1, 0, 0, 0, 8163, 8164, 5, 2, 0, 0, 8164, 8165, - 3, 1330, 665, 0, 8165, 8166, 5, 3, 0, 0, 8166, 907, 1, 0, 0, 0, 8167, 8168, - 5, 196, 0, 0, 8168, 8178, 3, 1392, 696, 0, 8169, 8170, 5, 196, 0, 0, 8170, - 8171, 5, 302, 0, 0, 8171, 8178, 3, 1392, 696, 0, 8172, 8173, 5, 196, 0, - 0, 8173, 8178, 5, 30, 0, 0, 8174, 8175, 5, 196, 0, 0, 8175, 8176, 5, 302, - 0, 0, 8176, 8178, 5, 30, 0, 0, 8177, 8167, 1, 0, 0, 0, 8177, 8169, 1, 0, - 0, 0, 8177, 8172, 1, 0, 0, 0, 8177, 8174, 1, 0, 0, 0, 8178, 909, 1, 0, - 0, 0, 8179, 8181, 3, 988, 494, 0, 8180, 8179, 1, 0, 0, 0, 8180, 8181, 1, - 0, 0, 0, 8181, 8182, 1, 0, 0, 0, 8182, 8183, 5, 251, 0, 0, 8183, 8184, - 5, 71, 0, 0, 8184, 8185, 3, 912, 456, 0, 8185, 8187, 3, 914, 457, 0, 8186, - 8188, 3, 922, 461, 0, 8187, 8186, 1, 0, 0, 0, 8187, 8188, 1, 0, 0, 0, 8188, - 8190, 1, 0, 0, 0, 8189, 8191, 3, 926, 463, 0, 8190, 8189, 1, 0, 0, 0, 8190, - 8191, 1, 0, 0, 0, 8191, 911, 1, 0, 0, 0, 8192, 8195, 3, 1388, 694, 0, 8193, - 8194, 5, 36, 0, 0, 8194, 8196, 3, 1424, 712, 0, 8195, 8193, 1, 0, 0, 0, - 8195, 8196, 1, 0, 0, 0, 8196, 913, 1, 0, 0, 0, 8197, 8217, 3, 968, 484, - 0, 8198, 8199, 5, 484, 0, 0, 8199, 8200, 3, 916, 458, 0, 8200, 8201, 5, - 471, 0, 0, 8201, 8202, 3, 968, 484, 0, 8202, 8217, 1, 0, 0, 0, 8203, 8204, - 5, 2, 0, 0, 8204, 8205, 3, 918, 459, 0, 8205, 8210, 5, 3, 0, 0, 8206, 8207, - 5, 484, 0, 0, 8207, 8208, 3, 916, 458, 0, 8208, 8209, 5, 471, 0, 0, 8209, - 8211, 1, 0, 0, 0, 8210, 8206, 1, 0, 0, 0, 8210, 8211, 1, 0, 0, 0, 8211, - 8212, 1, 0, 0, 0, 8212, 8213, 3, 968, 484, 0, 8213, 8217, 1, 0, 0, 0, 8214, - 8215, 5, 53, 0, 0, 8215, 8217, 5, 436, 0, 0, 8216, 8197, 1, 0, 0, 0, 8216, - 8198, 1, 0, 0, 0, 8216, 8203, 1, 0, 0, 0, 8216, 8214, 1, 0, 0, 0, 8217, - 915, 1, 0, 0, 0, 8218, 8219, 7, 39, 0, 0, 8219, 917, 1, 0, 0, 0, 8220, - 8225, 3, 920, 460, 0, 8221, 8222, 5, 6, 0, 0, 8222, 8224, 3, 920, 460, - 0, 8223, 8221, 1, 0, 0, 0, 8224, 8227, 1, 0, 0, 0, 8225, 8223, 1, 0, 0, - 0, 8225, 8226, 1, 0, 0, 0, 8226, 919, 1, 0, 0, 0, 8227, 8225, 1, 0, 0, - 0, 8228, 8229, 3, 1424, 712, 0, 8229, 8230, 3, 1376, 688, 0, 8230, 921, - 1, 0, 0, 0, 8231, 8232, 5, 80, 0, 0, 8232, 8234, 5, 485, 0, 0, 8233, 8235, - 3, 924, 462, 0, 8234, 8233, 1, 0, 0, 0, 8234, 8235, 1, 0, 0, 0, 8235, 8236, - 1, 0, 0, 0, 8236, 8244, 5, 57, 0, 0, 8237, 8238, 5, 381, 0, 0, 8238, 8239, - 5, 345, 0, 0, 8239, 8241, 3, 952, 476, 0, 8240, 8242, 3, 1100, 550, 0, - 8241, 8240, 1, 0, 0, 0, 8241, 8242, 1, 0, 0, 0, 8242, 8245, 1, 0, 0, 0, - 8243, 8245, 5, 282, 0, 0, 8244, 8237, 1, 0, 0, 0, 8244, 8243, 1, 0, 0, - 0, 8245, 923, 1, 0, 0, 0, 8246, 8247, 5, 2, 0, 0, 8247, 8248, 3, 604, 302, - 0, 8248, 8250, 5, 3, 0, 0, 8249, 8251, 3, 1100, 550, 0, 8250, 8249, 1, - 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8256, 1, 0, 0, 0, 8252, 8253, 5, - 80, 0, 0, 8253, 8254, 5, 45, 0, 0, 8254, 8256, 3, 1392, 696, 0, 8255, 8246, - 1, 0, 0, 0, 8255, 8252, 1, 0, 0, 0, 8256, 925, 1, 0, 0, 0, 8257, 8258, - 5, 87, 0, 0, 8258, 8259, 3, 1380, 690, 0, 8259, 927, 1, 0, 0, 0, 8260, - 8262, 3, 980, 490, 0, 8261, 8260, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, - 8263, 1, 0, 0, 0, 8263, 8264, 5, 272, 0, 0, 8264, 8266, 5, 71, 0, 0, 8265, - 8267, 5, 81, 0, 0, 8266, 8265, 1, 0, 0, 0, 8266, 8267, 1, 0, 0, 0, 8267, - 8268, 1, 0, 0, 0, 8268, 8270, 3, 1388, 694, 0, 8269, 8271, 3, 1068, 534, - 0, 8270, 8269, 1, 0, 0, 0, 8270, 8271, 1, 0, 0, 0, 8271, 8272, 1, 0, 0, - 0, 8272, 8275, 5, 100, 0, 0, 8273, 8276, 3, 970, 485, 0, 8274, 8276, 3, - 1388, 694, 0, 8275, 8273, 1, 0, 0, 0, 8275, 8274, 1, 0, 0, 0, 8276, 8278, - 1, 0, 0, 0, 8277, 8279, 3, 1068, 534, 0, 8278, 8277, 1, 0, 0, 0, 8278, - 8279, 1, 0, 0, 0, 8279, 8280, 1, 0, 0, 0, 8280, 8281, 5, 80, 0, 0, 8281, - 8290, 3, 1168, 584, 0, 8282, 8284, 3, 930, 465, 0, 8283, 8285, 3, 932, - 466, 0, 8284, 8283, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8291, 1, - 0, 0, 0, 8286, 8288, 3, 932, 466, 0, 8287, 8289, 3, 930, 465, 0, 8288, - 8287, 1, 0, 0, 0, 8288, 8289, 1, 0, 0, 0, 8289, 8291, 1, 0, 0, 0, 8290, - 8282, 1, 0, 0, 0, 8290, 8286, 1, 0, 0, 0, 8291, 8293, 1, 0, 0, 0, 8292, - 8294, 3, 934, 467, 0, 8293, 8292, 1, 0, 0, 0, 8293, 8294, 1, 0, 0, 0, 8294, - 929, 1, 0, 0, 0, 8295, 8296, 5, 102, 0, 0, 8296, 8297, 5, 77, 0, 0, 8297, - 8300, 5, 269, 0, 0, 8298, 8299, 5, 33, 0, 0, 8299, 8301, 3, 1168, 584, - 0, 8300, 8298, 1, 0, 0, 0, 8300, 8301, 1, 0, 0, 0, 8301, 8303, 1, 0, 0, - 0, 8302, 8304, 5, 93, 0, 0, 8303, 8302, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, - 0, 8304, 8305, 1, 0, 0, 0, 8305, 8310, 5, 251, 0, 0, 8306, 8307, 5, 2, - 0, 0, 8307, 8308, 3, 918, 459, 0, 8308, 8309, 5, 3, 0, 0, 8309, 8311, 1, - 0, 0, 0, 8310, 8306, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 1, - 0, 0, 0, 8312, 8313, 3, 1060, 530, 0, 8313, 931, 1, 0, 0, 0, 8314, 8315, - 5, 102, 0, 0, 8315, 8318, 5, 269, 0, 0, 8316, 8317, 5, 33, 0, 0, 8317, - 8319, 3, 1168, 584, 0, 8318, 8316, 1, 0, 0, 0, 8318, 8319, 1, 0, 0, 0, - 8319, 8321, 1, 0, 0, 0, 8320, 8322, 5, 93, 0, 0, 8321, 8320, 1, 0, 0, 0, - 8321, 8322, 1, 0, 0, 0, 8322, 8323, 1, 0, 0, 0, 8323, 8324, 5, 381, 0, - 0, 8324, 8325, 5, 345, 0, 0, 8325, 8326, 3, 952, 476, 0, 8326, 933, 1, - 0, 0, 0, 8327, 8328, 5, 102, 0, 0, 8328, 8330, 5, 269, 0, 0, 8329, 8331, - 5, 93, 0, 0, 8330, 8329, 1, 0, 0, 0, 8330, 8331, 1, 0, 0, 0, 8331, 8332, - 1, 0, 0, 0, 8332, 8333, 5, 201, 0, 0, 8333, 935, 1, 0, 0, 0, 8334, 8336, - 3, 988, 494, 0, 8335, 8334, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 8337, - 1, 0, 0, 0, 8337, 8338, 5, 201, 0, 0, 8338, 8339, 5, 64, 0, 0, 8339, 8341, - 3, 1084, 542, 0, 8340, 8342, 3, 938, 469, 0, 8341, 8340, 1, 0, 0, 0, 8341, - 8342, 1, 0, 0, 0, 8342, 8344, 1, 0, 0, 0, 8343, 8345, 3, 1102, 551, 0, - 8344, 8343, 1, 0, 0, 0, 8344, 8345, 1, 0, 0, 0, 8345, 8347, 1, 0, 0, 0, - 8346, 8348, 3, 926, 463, 0, 8347, 8346, 1, 0, 0, 0, 8347, 8348, 1, 0, 0, - 0, 8348, 937, 1, 0, 0, 0, 8349, 8350, 5, 100, 0, 0, 8350, 8351, 3, 1064, - 532, 0, 8351, 939, 1, 0, 0, 0, 8352, 8354, 5, 266, 0, 0, 8353, 8355, 3, - 996, 498, 0, 8354, 8353, 1, 0, 0, 0, 8354, 8355, 1, 0, 0, 0, 8355, 8356, - 1, 0, 0, 0, 8356, 8358, 3, 1082, 541, 0, 8357, 8359, 3, 942, 471, 0, 8358, - 8357, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8361, 1, 0, 0, 0, 8360, - 8362, 3, 946, 473, 0, 8361, 8360, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, - 941, 1, 0, 0, 0, 8363, 8364, 5, 68, 0, 0, 8364, 8365, 3, 944, 472, 0, 8365, - 8366, 5, 275, 0, 0, 8366, 943, 1, 0, 0, 0, 8367, 8368, 5, 150, 0, 0, 8368, - 8380, 7, 40, 0, 0, 8369, 8370, 5, 428, 0, 0, 8370, 8380, 7, 40, 0, 0, 8371, - 8376, 5, 346, 0, 0, 8372, 8373, 5, 381, 0, 0, 8373, 8377, 5, 220, 0, 0, - 8374, 8375, 5, 428, 0, 0, 8375, 8377, 5, 220, 0, 0, 8376, 8372, 1, 0, 0, - 0, 8376, 8374, 1, 0, 0, 0, 8376, 8377, 1, 0, 0, 0, 8377, 8380, 1, 0, 0, - 0, 8378, 8380, 5, 220, 0, 0, 8379, 8367, 1, 0, 0, 0, 8379, 8369, 1, 0, - 0, 0, 8379, 8371, 1, 0, 0, 0, 8379, 8378, 1, 0, 0, 0, 8380, 945, 1, 0, - 0, 0, 8381, 8382, 5, 284, 0, 0, 8382, 947, 1, 0, 0, 0, 8383, 8387, 5, 284, - 0, 0, 8384, 8385, 5, 486, 0, 0, 8385, 8387, 5, 487, 0, 0, 8386, 8383, 1, - 0, 0, 0, 8386, 8384, 1, 0, 0, 0, 8387, 949, 1, 0, 0, 0, 8388, 8390, 3, - 988, 494, 0, 8389, 8388, 1, 0, 0, 0, 8389, 8390, 1, 0, 0, 0, 8390, 8391, - 1, 0, 0, 0, 8391, 8392, 5, 381, 0, 0, 8392, 8393, 3, 1084, 542, 0, 8393, - 8394, 5, 345, 0, 0, 8394, 8396, 3, 952, 476, 0, 8395, 8397, 3, 1062, 531, - 0, 8396, 8395, 1, 0, 0, 0, 8396, 8397, 1, 0, 0, 0, 8397, 8399, 1, 0, 0, - 0, 8398, 8400, 3, 1102, 551, 0, 8399, 8398, 1, 0, 0, 0, 8399, 8400, 1, - 0, 0, 0, 8400, 8402, 1, 0, 0, 0, 8401, 8403, 3, 926, 463, 0, 8402, 8401, - 1, 0, 0, 0, 8402, 8403, 1, 0, 0, 0, 8403, 951, 1, 0, 0, 0, 8404, 8409, - 3, 954, 477, 0, 8405, 8406, 5, 6, 0, 0, 8406, 8408, 3, 954, 477, 0, 8407, - 8405, 1, 0, 0, 0, 8408, 8411, 1, 0, 0, 0, 8409, 8407, 1, 0, 0, 0, 8409, - 8410, 1, 0, 0, 0, 8410, 953, 1, 0, 0, 0, 8411, 8409, 1, 0, 0, 0, 8412, - 8413, 3, 956, 478, 0, 8413, 8414, 5, 10, 0, 0, 8414, 8415, 3, 1168, 584, - 0, 8415, 8423, 1, 0, 0, 0, 8416, 8417, 5, 2, 0, 0, 8417, 8418, 3, 958, - 479, 0, 8418, 8419, 5, 3, 0, 0, 8419, 8420, 5, 10, 0, 0, 8420, 8421, 3, - 1168, 584, 0, 8421, 8423, 1, 0, 0, 0, 8422, 8412, 1, 0, 0, 0, 8422, 8416, - 1, 0, 0, 0, 8423, 955, 1, 0, 0, 0, 8424, 8425, 3, 1424, 712, 0, 8425, 8426, - 3, 1376, 688, 0, 8426, 957, 1, 0, 0, 0, 8427, 8432, 3, 956, 478, 0, 8428, - 8429, 5, 6, 0, 0, 8429, 8431, 3, 956, 478, 0, 8430, 8428, 1, 0, 0, 0, 8431, - 8434, 1, 0, 0, 0, 8432, 8430, 1, 0, 0, 0, 8432, 8433, 1, 0, 0, 0, 8433, - 959, 1, 0, 0, 0, 8434, 8432, 1, 0, 0, 0, 8435, 8436, 5, 197, 0, 0, 8436, - 8437, 3, 962, 481, 0, 8437, 8438, 3, 964, 482, 0, 8438, 8440, 5, 191, 0, - 0, 8439, 8441, 3, 966, 483, 0, 8440, 8439, 1, 0, 0, 0, 8440, 8441, 1, 0, - 0, 0, 8441, 8442, 1, 0, 0, 0, 8442, 8443, 5, 62, 0, 0, 8443, 8444, 3, 968, - 484, 0, 8444, 961, 1, 0, 0, 0, 8445, 8446, 3, 1392, 696, 0, 8446, 963, - 1, 0, 0, 0, 8447, 8448, 5, 281, 0, 0, 8448, 8453, 5, 336, 0, 0, 8449, 8453, - 5, 336, 0, 0, 8450, 8453, 5, 126, 0, 0, 8451, 8453, 5, 250, 0, 0, 8452, - 8447, 1, 0, 0, 0, 8452, 8449, 1, 0, 0, 0, 8452, 8450, 1, 0, 0, 0, 8452, - 8451, 1, 0, 0, 0, 8453, 8456, 1, 0, 0, 0, 8454, 8452, 1, 0, 0, 0, 8454, - 8455, 1, 0, 0, 0, 8455, 965, 1, 0, 0, 0, 8456, 8454, 1, 0, 0, 0, 8457, - 8458, 5, 105, 0, 0, 8458, 8462, 5, 236, 0, 0, 8459, 8460, 5, 391, 0, 0, - 8460, 8462, 5, 236, 0, 0, 8461, 8457, 1, 0, 0, 0, 8461, 8459, 1, 0, 0, - 0, 8462, 967, 1, 0, 0, 0, 8463, 8466, 3, 972, 486, 0, 8464, 8466, 3, 970, - 485, 0, 8465, 8463, 1, 0, 0, 0, 8465, 8464, 1, 0, 0, 0, 8466, 969, 1, 0, - 0, 0, 8467, 8468, 5, 2, 0, 0, 8468, 8469, 3, 972, 486, 0, 8469, 8470, 5, - 3, 0, 0, 8470, 8476, 1, 0, 0, 0, 8471, 8472, 5, 2, 0, 0, 8472, 8473, 3, - 970, 485, 0, 8473, 8474, 5, 3, 0, 0, 8474, 8476, 1, 0, 0, 0, 8475, 8467, - 1, 0, 0, 0, 8475, 8471, 1, 0, 0, 0, 8476, 971, 1, 0, 0, 0, 8477, 8479, - 3, 974, 487, 0, 8478, 8480, 3, 1004, 502, 0, 8479, 8478, 1, 0, 0, 0, 8479, - 8480, 1, 0, 0, 0, 8480, 8489, 1, 0, 0, 0, 8481, 8483, 3, 1048, 524, 0, - 8482, 8484, 3, 1014, 507, 0, 8483, 8482, 1, 0, 0, 0, 8483, 8484, 1, 0, - 0, 0, 8484, 8490, 1, 0, 0, 0, 8485, 8487, 3, 1012, 506, 0, 8486, 8488, - 3, 1050, 525, 0, 8487, 8486, 1, 0, 0, 0, 8487, 8488, 1, 0, 0, 0, 8488, - 8490, 1, 0, 0, 0, 8489, 8481, 1, 0, 0, 0, 8489, 8485, 1, 0, 0, 0, 8489, - 8490, 1, 0, 0, 0, 8490, 8507, 1, 0, 0, 0, 8491, 8492, 3, 980, 490, 0, 8492, - 8494, 3, 974, 487, 0, 8493, 8495, 3, 1004, 502, 0, 8494, 8493, 1, 0, 0, - 0, 8494, 8495, 1, 0, 0, 0, 8495, 8504, 1, 0, 0, 0, 8496, 8498, 3, 1048, - 524, 0, 8497, 8499, 3, 1014, 507, 0, 8498, 8497, 1, 0, 0, 0, 8498, 8499, - 1, 0, 0, 0, 8499, 8505, 1, 0, 0, 0, 8500, 8502, 3, 1012, 506, 0, 8501, - 8503, 3, 1050, 525, 0, 8502, 8501, 1, 0, 0, 0, 8502, 8503, 1, 0, 0, 0, - 8503, 8505, 1, 0, 0, 0, 8504, 8496, 1, 0, 0, 0, 8504, 8500, 1, 0, 0, 0, - 8504, 8505, 1, 0, 0, 0, 8505, 8507, 1, 0, 0, 0, 8506, 8477, 1, 0, 0, 0, - 8506, 8491, 1, 0, 0, 0, 8507, 973, 1, 0, 0, 0, 8508, 8516, 3, 976, 488, - 0, 8509, 8511, 7, 41, 0, 0, 8510, 8512, 3, 998, 499, 0, 8511, 8510, 1, - 0, 0, 0, 8511, 8512, 1, 0, 0, 0, 8512, 8513, 1, 0, 0, 0, 8513, 8515, 3, - 976, 488, 0, 8514, 8509, 1, 0, 0, 0, 8515, 8518, 1, 0, 0, 0, 8516, 8514, - 1, 0, 0, 0, 8516, 8517, 1, 0, 0, 0, 8517, 975, 1, 0, 0, 0, 8518, 8516, - 1, 0, 0, 0, 8519, 8527, 3, 978, 489, 0, 8520, 8522, 5, 70, 0, 0, 8521, - 8523, 3, 998, 499, 0, 8522, 8521, 1, 0, 0, 0, 8522, 8523, 1, 0, 0, 0, 8523, - 8524, 1, 0, 0, 0, 8524, 8526, 3, 978, 489, 0, 8525, 8520, 1, 0, 0, 0, 8526, - 8529, 1, 0, 0, 0, 8527, 8525, 1, 0, 0, 0, 8527, 8528, 1, 0, 0, 0, 8528, - 977, 1, 0, 0, 0, 8529, 8527, 1, 0, 0, 0, 8530, 8543, 5, 88, 0, 0, 8531, - 8533, 3, 1002, 501, 0, 8532, 8531, 1, 0, 0, 0, 8532, 8533, 1, 0, 0, 0, - 8533, 8535, 1, 0, 0, 0, 8534, 8536, 3, 990, 495, 0, 8535, 8534, 1, 0, 0, - 0, 8535, 8536, 1, 0, 0, 0, 8536, 8538, 1, 0, 0, 0, 8537, 8539, 3, 1378, - 689, 0, 8538, 8537, 1, 0, 0, 0, 8538, 8539, 1, 0, 0, 0, 8539, 8544, 1, - 0, 0, 0, 8540, 8541, 3, 1000, 500, 0, 8541, 8542, 3, 1380, 690, 0, 8542, - 8544, 1, 0, 0, 0, 8543, 8532, 1, 0, 0, 0, 8543, 8540, 1, 0, 0, 0, 8544, - 8546, 1, 0, 0, 0, 8545, 8547, 3, 990, 495, 0, 8546, 8545, 1, 0, 0, 0, 8546, - 8547, 1, 0, 0, 0, 8547, 8549, 1, 0, 0, 0, 8548, 8550, 3, 1062, 531, 0, - 8549, 8548, 1, 0, 0, 0, 8549, 8550, 1, 0, 0, 0, 8550, 8552, 1, 0, 0, 0, - 8551, 8553, 3, 1100, 550, 0, 8552, 8551, 1, 0, 0, 0, 8552, 8553, 1, 0, - 0, 0, 8553, 8555, 1, 0, 0, 0, 8554, 8556, 3, 1032, 516, 0, 8555, 8554, - 1, 0, 0, 0, 8555, 8556, 1, 0, 0, 0, 8556, 8558, 1, 0, 0, 0, 8557, 8559, - 3, 1046, 523, 0, 8558, 8557, 1, 0, 0, 0, 8558, 8559, 1, 0, 0, 0, 8559, - 8561, 1, 0, 0, 0, 8560, 8562, 3, 1290, 645, 0, 8561, 8560, 1, 0, 0, 0, - 8561, 8562, 1, 0, 0, 0, 8562, 8568, 1, 0, 0, 0, 8563, 8568, 3, 1060, 530, - 0, 8564, 8565, 5, 92, 0, 0, 8565, 8568, 3, 1080, 540, 0, 8566, 8568, 3, - 970, 485, 0, 8567, 8530, 1, 0, 0, 0, 8567, 8563, 1, 0, 0, 0, 8567, 8564, - 1, 0, 0, 0, 8567, 8566, 1, 0, 0, 0, 8568, 979, 1, 0, 0, 0, 8569, 8571, - 5, 105, 0, 0, 8570, 8572, 5, 315, 0, 0, 8571, 8570, 1, 0, 0, 0, 8571, 8572, - 1, 0, 0, 0, 8572, 8573, 1, 0, 0, 0, 8573, 8574, 3, 982, 491, 0, 8574, 981, - 1, 0, 0, 0, 8575, 8580, 3, 984, 492, 0, 8576, 8577, 5, 6, 0, 0, 8577, 8579, - 3, 984, 492, 0, 8578, 8576, 1, 0, 0, 0, 8579, 8582, 1, 0, 0, 0, 8580, 8578, - 1, 0, 0, 0, 8580, 8581, 1, 0, 0, 0, 8581, 983, 1, 0, 0, 0, 8582, 8580, - 1, 0, 0, 0, 8583, 8585, 3, 1392, 696, 0, 8584, 8586, 3, 878, 439, 0, 8585, - 8584, 1, 0, 0, 0, 8585, 8586, 1, 0, 0, 0, 8586, 8587, 1, 0, 0, 0, 8587, - 8589, 5, 36, 0, 0, 8588, 8590, 3, 986, 493, 0, 8589, 8588, 1, 0, 0, 0, - 8589, 8590, 1, 0, 0, 0, 8590, 8591, 1, 0, 0, 0, 8591, 8592, 5, 2, 0, 0, - 8592, 8593, 3, 902, 451, 0, 8593, 8594, 5, 3, 0, 0, 8594, 985, 1, 0, 0, - 0, 8595, 8599, 5, 270, 0, 0, 8596, 8597, 5, 77, 0, 0, 8597, 8599, 5, 270, - 0, 0, 8598, 8595, 1, 0, 0, 0, 8598, 8596, 1, 0, 0, 0, 8599, 987, 1, 0, - 0, 0, 8600, 8601, 3, 980, 490, 0, 8601, 989, 1, 0, 0, 0, 8602, 8608, 5, - 71, 0, 0, 8603, 8605, 3, 992, 496, 0, 8604, 8603, 1, 0, 0, 0, 8604, 8605, - 1, 0, 0, 0, 8605, 8606, 1, 0, 0, 0, 8606, 8609, 3, 994, 497, 0, 8607, 8609, - 3, 1618, 809, 0, 8608, 8604, 1, 0, 0, 0, 8608, 8607, 1, 0, 0, 0, 8609, - 991, 1, 0, 0, 0, 8610, 8611, 5, 358, 0, 0, 8611, 993, 1, 0, 0, 0, 8612, - 8614, 7, 42, 0, 0, 8613, 8612, 1, 0, 0, 0, 8613, 8614, 1, 0, 0, 0, 8614, - 8615, 1, 0, 0, 0, 8615, 8617, 7, 12, 0, 0, 8616, 8618, 3, 996, 498, 0, - 8617, 8616, 1, 0, 0, 0, 8617, 8618, 1, 0, 0, 0, 8618, 8619, 1, 0, 0, 0, - 8619, 8629, 3, 1388, 694, 0, 8620, 8622, 5, 379, 0, 0, 8621, 8623, 3, 996, - 498, 0, 8622, 8621, 1, 0, 0, 0, 8622, 8623, 1, 0, 0, 0, 8623, 8624, 1, - 0, 0, 0, 8624, 8629, 3, 1388, 694, 0, 8625, 8626, 5, 92, 0, 0, 8626, 8629, - 3, 1388, 694, 0, 8627, 8629, 3, 1388, 694, 0, 8628, 8613, 1, 0, 0, 0, 8628, - 8620, 1, 0, 0, 0, 8628, 8625, 1, 0, 0, 0, 8628, 8627, 1, 0, 0, 0, 8629, - 995, 1, 0, 0, 0, 8630, 8631, 5, 92, 0, 0, 8631, 997, 1, 0, 0, 0, 8632, - 8633, 7, 43, 0, 0, 8633, 999, 1, 0, 0, 0, 8634, 8640, 5, 56, 0, 0, 8635, - 8636, 5, 80, 0, 0, 8636, 8637, 5, 2, 0, 0, 8637, 8638, 3, 1330, 665, 0, - 8638, 8639, 5, 3, 0, 0, 8639, 8641, 1, 0, 0, 0, 8640, 8635, 1, 0, 0, 0, - 8640, 8641, 1, 0, 0, 0, 8641, 1001, 1, 0, 0, 0, 8642, 8643, 5, 30, 0, 0, - 8643, 1003, 1, 0, 0, 0, 8644, 8645, 3, 1006, 503, 0, 8645, 1005, 1, 0, - 0, 0, 8646, 8647, 5, 83, 0, 0, 8647, 8648, 5, 166, 0, 0, 8648, 8649, 3, - 1008, 504, 0, 8649, 1007, 1, 0, 0, 0, 8650, 8655, 3, 1010, 505, 0, 8651, - 8652, 5, 6, 0, 0, 8652, 8654, 3, 1010, 505, 0, 8653, 8651, 1, 0, 0, 0, - 8654, 8657, 1, 0, 0, 0, 8655, 8653, 1, 0, 0, 0, 8655, 8656, 1, 0, 0, 0, - 8656, 1009, 1, 0, 0, 0, 8657, 8655, 1, 0, 0, 0, 8658, 8664, 3, 1168, 584, - 0, 8659, 8660, 5, 100, 0, 0, 8660, 8665, 3, 1326, 663, 0, 8661, 8663, 3, - 618, 309, 0, 8662, 8661, 1, 0, 0, 0, 8662, 8663, 1, 0, 0, 0, 8663, 8665, - 1, 0, 0, 0, 8664, 8659, 1, 0, 0, 0, 8664, 8662, 1, 0, 0, 0, 8665, 8667, - 1, 0, 0, 0, 8666, 8668, 3, 620, 310, 0, 8667, 8666, 1, 0, 0, 0, 8667, 8668, - 1, 0, 0, 0, 8668, 1011, 1, 0, 0, 0, 8669, 8671, 3, 1016, 508, 0, 8670, - 8672, 3, 1018, 509, 0, 8671, 8670, 1, 0, 0, 0, 8671, 8672, 1, 0, 0, 0, - 8672, 8678, 1, 0, 0, 0, 8673, 8675, 3, 1018, 509, 0, 8674, 8676, 3, 1016, - 508, 0, 8675, 8674, 1, 0, 0, 0, 8675, 8676, 1, 0, 0, 0, 8676, 8678, 1, - 0, 0, 0, 8677, 8669, 1, 0, 0, 0, 8677, 8673, 1, 0, 0, 0, 8678, 1013, 1, - 0, 0, 0, 8679, 8680, 3, 1012, 506, 0, 8680, 1015, 1, 0, 0, 0, 8681, 8682, - 5, 74, 0, 0, 8682, 8685, 3, 1020, 510, 0, 8683, 8684, 5, 6, 0, 0, 8684, - 8686, 3, 1022, 511, 0, 8685, 8683, 1, 0, 0, 0, 8685, 8686, 1, 0, 0, 0, - 8686, 8705, 1, 0, 0, 0, 8687, 8688, 5, 61, 0, 0, 8688, 8702, 3, 1030, 515, - 0, 8689, 8690, 3, 1024, 512, 0, 8690, 8694, 3, 1028, 514, 0, 8691, 8695, - 5, 81, 0, 0, 8692, 8693, 5, 105, 0, 0, 8693, 8695, 5, 488, 0, 0, 8694, - 8691, 1, 0, 0, 0, 8694, 8692, 1, 0, 0, 0, 8695, 8703, 1, 0, 0, 0, 8696, - 8700, 3, 1028, 514, 0, 8697, 8701, 5, 81, 0, 0, 8698, 8699, 5, 105, 0, - 0, 8699, 8701, 5, 488, 0, 0, 8700, 8697, 1, 0, 0, 0, 8700, 8698, 1, 0, - 0, 0, 8701, 8703, 1, 0, 0, 0, 8702, 8689, 1, 0, 0, 0, 8702, 8696, 1, 0, - 0, 0, 8703, 8705, 1, 0, 0, 0, 8704, 8681, 1, 0, 0, 0, 8704, 8687, 1, 0, - 0, 0, 8705, 1017, 1, 0, 0, 0, 8706, 8711, 5, 79, 0, 0, 8707, 8712, 3, 1022, - 511, 0, 8708, 8709, 3, 1024, 512, 0, 8709, 8710, 3, 1028, 514, 0, 8710, - 8712, 1, 0, 0, 0, 8711, 8707, 1, 0, 0, 0, 8711, 8708, 1, 0, 0, 0, 8712, - 1019, 1, 0, 0, 0, 8713, 8716, 3, 1168, 584, 0, 8714, 8716, 5, 30, 0, 0, - 8715, 8713, 1, 0, 0, 0, 8715, 8714, 1, 0, 0, 0, 8716, 1021, 1, 0, 0, 0, - 8717, 8718, 3, 1168, 584, 0, 8718, 1023, 1, 0, 0, 0, 8719, 8725, 3, 1212, - 606, 0, 8720, 8721, 5, 12, 0, 0, 8721, 8725, 3, 1026, 513, 0, 8722, 8723, - 5, 13, 0, 0, 8723, 8725, 3, 1026, 513, 0, 8724, 8719, 1, 0, 0, 0, 8724, - 8720, 1, 0, 0, 0, 8724, 8722, 1, 0, 0, 0, 8725, 1025, 1, 0, 0, 0, 8726, - 8729, 3, 1408, 704, 0, 8727, 8729, 3, 1406, 703, 0, 8728, 8726, 1, 0, 0, - 0, 8728, 8727, 1, 0, 0, 0, 8729, 1027, 1, 0, 0, 0, 8730, 8731, 7, 44, 0, - 0, 8731, 1029, 1, 0, 0, 0, 8732, 8733, 7, 45, 0, 0, 8733, 1031, 1, 0, 0, - 0, 8734, 8735, 5, 66, 0, 0, 8735, 8736, 5, 166, 0, 0, 8736, 8737, 3, 1034, - 517, 0, 8737, 1033, 1, 0, 0, 0, 8738, 8743, 3, 1036, 518, 0, 8739, 8740, - 5, 6, 0, 0, 8740, 8742, 3, 1036, 518, 0, 8741, 8739, 1, 0, 0, 0, 8742, - 8745, 1, 0, 0, 0, 8743, 8741, 1, 0, 0, 0, 8743, 8744, 1, 0, 0, 0, 8744, - 1035, 1, 0, 0, 0, 8745, 8743, 1, 0, 0, 0, 8746, 8752, 3, 1168, 584, 0, - 8747, 8752, 3, 1038, 519, 0, 8748, 8752, 3, 1042, 521, 0, 8749, 8752, 3, - 1040, 520, 0, 8750, 8752, 3, 1044, 522, 0, 8751, 8746, 1, 0, 0, 0, 8751, - 8747, 1, 0, 0, 0, 8751, 8748, 1, 0, 0, 0, 8751, 8749, 1, 0, 0, 0, 8751, - 8750, 1, 0, 0, 0, 8752, 1037, 1, 0, 0, 0, 8753, 8754, 5, 2, 0, 0, 8754, - 8755, 5, 3, 0, 0, 8755, 1039, 1, 0, 0, 0, 8756, 8757, 5, 489, 0, 0, 8757, - 8758, 5, 2, 0, 0, 8758, 8759, 3, 1330, 665, 0, 8759, 8760, 5, 3, 0, 0, - 8760, 1041, 1, 0, 0, 0, 8761, 8762, 5, 490, 0, 0, 8762, 8763, 5, 2, 0, - 0, 8763, 8764, 3, 1330, 665, 0, 8764, 8765, 5, 3, 0, 0, 8765, 1043, 1, - 0, 0, 0, 8766, 8767, 5, 491, 0, 0, 8767, 8768, 5, 492, 0, 0, 8768, 8769, - 5, 2, 0, 0, 8769, 8770, 3, 1034, 517, 0, 8770, 8771, 5, 3, 0, 0, 8771, - 1045, 1, 0, 0, 0, 8772, 8773, 5, 67, 0, 0, 8773, 8774, 3, 1168, 584, 0, - 8774, 1047, 1, 0, 0, 0, 8775, 8780, 3, 1052, 526, 0, 8776, 8777, 5, 62, - 0, 0, 8777, 8778, 5, 312, 0, 0, 8778, 8780, 5, 81, 0, 0, 8779, 8775, 1, - 0, 0, 0, 8779, 8776, 1, 0, 0, 0, 8780, 1049, 1, 0, 0, 0, 8781, 8782, 3, - 1048, 524, 0, 8782, 1051, 1, 0, 0, 0, 8783, 8785, 3, 1054, 527, 0, 8784, - 8783, 1, 0, 0, 0, 8785, 8786, 1, 0, 0, 0, 8786, 8784, 1, 0, 0, 0, 8786, - 8787, 1, 0, 0, 0, 8787, 1053, 1, 0, 0, 0, 8788, 8790, 3, 1056, 528, 0, - 8789, 8791, 3, 1058, 529, 0, 8790, 8789, 1, 0, 0, 0, 8790, 8791, 1, 0, - 0, 0, 8791, 8793, 1, 0, 0, 0, 8792, 8794, 3, 948, 474, 0, 8793, 8792, 1, - 0, 0, 0, 8793, 8794, 1, 0, 0, 0, 8794, 1055, 1, 0, 0, 0, 8795, 8805, 5, - 62, 0, 0, 8796, 8797, 5, 281, 0, 0, 8797, 8799, 5, 255, 0, 0, 8798, 8796, - 1, 0, 0, 0, 8798, 8799, 1, 0, 0, 0, 8799, 8800, 1, 0, 0, 0, 8800, 8806, - 5, 381, 0, 0, 8801, 8803, 5, 255, 0, 0, 8802, 8801, 1, 0, 0, 0, 8802, 8803, - 1, 0, 0, 0, 8803, 8804, 1, 0, 0, 0, 8804, 8806, 5, 346, 0, 0, 8805, 8798, - 1, 0, 0, 0, 8805, 8802, 1, 0, 0, 0, 8806, 1057, 1, 0, 0, 0, 8807, 8808, - 5, 287, 0, 0, 8808, 8809, 3, 1386, 693, 0, 8809, 1059, 1, 0, 0, 0, 8810, - 8811, 5, 436, 0, 0, 8811, 8812, 5, 2, 0, 0, 8812, 8813, 3, 1330, 665, 0, - 8813, 8821, 5, 3, 0, 0, 8814, 8815, 5, 6, 0, 0, 8815, 8816, 5, 2, 0, 0, - 8816, 8817, 3, 1330, 665, 0, 8817, 8818, 5, 3, 0, 0, 8818, 8820, 1, 0, - 0, 0, 8819, 8814, 1, 0, 0, 0, 8820, 8823, 1, 0, 0, 0, 8821, 8819, 1, 0, - 0, 0, 8821, 8822, 1, 0, 0, 0, 8822, 1061, 1, 0, 0, 0, 8823, 8821, 1, 0, - 0, 0, 8824, 8825, 5, 64, 0, 0, 8825, 8826, 3, 1064, 532, 0, 8826, 1063, - 1, 0, 0, 0, 8827, 8832, 3, 1066, 533, 0, 8828, 8829, 5, 6, 0, 0, 8829, - 8831, 3, 1066, 533, 0, 8830, 8828, 1, 0, 0, 0, 8831, 8834, 1, 0, 0, 0, - 8832, 8830, 1, 0, 0, 0, 8832, 8833, 1, 0, 0, 0, 8833, 1065, 1, 0, 0, 0, - 8834, 8832, 1, 0, 0, 0, 8835, 8837, 3, 1080, 540, 0, 8836, 8838, 3, 1070, - 535, 0, 8837, 8836, 1, 0, 0, 0, 8837, 8838, 1, 0, 0, 0, 8838, 8840, 1, - 0, 0, 0, 8839, 8841, 3, 1086, 543, 0, 8840, 8839, 1, 0, 0, 0, 8840, 8841, - 1, 0, 0, 0, 8841, 8894, 1, 0, 0, 0, 8842, 8844, 3, 1090, 545, 0, 8843, - 8845, 3, 1074, 537, 0, 8844, 8843, 1, 0, 0, 0, 8844, 8845, 1, 0, 0, 0, - 8845, 8894, 1, 0, 0, 0, 8846, 8848, 3, 1110, 555, 0, 8847, 8849, 3, 1070, - 535, 0, 8848, 8847, 1, 0, 0, 0, 8848, 8849, 1, 0, 0, 0, 8849, 8894, 1, - 0, 0, 0, 8850, 8852, 3, 970, 485, 0, 8851, 8853, 3, 1070, 535, 0, 8852, - 8851, 1, 0, 0, 0, 8852, 8853, 1, 0, 0, 0, 8853, 8894, 1, 0, 0, 0, 8854, - 8867, 5, 72, 0, 0, 8855, 8857, 3, 1110, 555, 0, 8856, 8858, 3, 1070, 535, - 0, 8857, 8856, 1, 0, 0, 0, 8857, 8858, 1, 0, 0, 0, 8858, 8868, 1, 0, 0, - 0, 8859, 8861, 3, 1090, 545, 0, 8860, 8862, 3, 1074, 537, 0, 8861, 8860, - 1, 0, 0, 0, 8861, 8862, 1, 0, 0, 0, 8862, 8868, 1, 0, 0, 0, 8863, 8865, - 3, 970, 485, 0, 8864, 8866, 3, 1070, 535, 0, 8865, 8864, 1, 0, 0, 0, 8865, - 8866, 1, 0, 0, 0, 8866, 8868, 1, 0, 0, 0, 8867, 8855, 1, 0, 0, 0, 8867, - 8859, 1, 0, 0, 0, 8867, 8863, 1, 0, 0, 0, 8868, 8894, 1, 0, 0, 0, 8869, - 8870, 5, 2, 0, 0, 8870, 8887, 3, 1066, 533, 0, 8871, 8872, 5, 129, 0, 0, - 8872, 8873, 5, 137, 0, 0, 8873, 8888, 3, 1066, 533, 0, 8874, 8876, 5, 140, - 0, 0, 8875, 8877, 3, 1076, 538, 0, 8876, 8875, 1, 0, 0, 0, 8876, 8877, - 1, 0, 0, 0, 8877, 8878, 1, 0, 0, 0, 8878, 8879, 5, 137, 0, 0, 8879, 8888, - 3, 1066, 533, 0, 8880, 8882, 3, 1076, 538, 0, 8881, 8880, 1, 0, 0, 0, 8881, - 8882, 1, 0, 0, 0, 8882, 8883, 1, 0, 0, 0, 8883, 8884, 5, 137, 0, 0, 8884, - 8885, 3, 1066, 533, 0, 8885, 8886, 3, 1078, 539, 0, 8886, 8888, 1, 0, 0, - 0, 8887, 8871, 1, 0, 0, 0, 8887, 8874, 1, 0, 0, 0, 8887, 8881, 1, 0, 0, - 0, 8887, 8888, 1, 0, 0, 0, 8888, 8889, 1, 0, 0, 0, 8889, 8891, 5, 3, 0, - 0, 8890, 8892, 3, 1070, 535, 0, 8891, 8890, 1, 0, 0, 0, 8891, 8892, 1, - 0, 0, 0, 8892, 8894, 1, 0, 0, 0, 8893, 8835, 1, 0, 0, 0, 8893, 8842, 1, - 0, 0, 0, 8893, 8846, 1, 0, 0, 0, 8893, 8850, 1, 0, 0, 0, 8893, 8854, 1, - 0, 0, 0, 8893, 8869, 1, 0, 0, 0, 8894, 8913, 1, 0, 0, 0, 8895, 8896, 5, - 129, 0, 0, 8896, 8897, 5, 137, 0, 0, 8897, 8912, 3, 1066, 533, 0, 8898, - 8900, 5, 140, 0, 0, 8899, 8901, 3, 1076, 538, 0, 8900, 8899, 1, 0, 0, 0, - 8900, 8901, 1, 0, 0, 0, 8901, 8902, 1, 0, 0, 0, 8902, 8903, 5, 137, 0, - 0, 8903, 8912, 3, 1066, 533, 0, 8904, 8906, 3, 1076, 538, 0, 8905, 8904, - 1, 0, 0, 0, 8905, 8906, 1, 0, 0, 0, 8906, 8907, 1, 0, 0, 0, 8907, 8908, - 5, 137, 0, 0, 8908, 8909, 3, 1066, 533, 0, 8909, 8910, 3, 1078, 539, 0, - 8910, 8912, 1, 0, 0, 0, 8911, 8895, 1, 0, 0, 0, 8911, 8898, 1, 0, 0, 0, - 8911, 8905, 1, 0, 0, 0, 8912, 8915, 1, 0, 0, 0, 8913, 8911, 1, 0, 0, 0, - 8913, 8914, 1, 0, 0, 0, 8914, 1067, 1, 0, 0, 0, 8915, 8913, 1, 0, 0, 0, - 8916, 8918, 5, 36, 0, 0, 8917, 8916, 1, 0, 0, 0, 8917, 8918, 1, 0, 0, 0, - 8918, 8919, 1, 0, 0, 0, 8919, 8924, 3, 1424, 712, 0, 8920, 8921, 5, 2, - 0, 0, 8921, 8922, 3, 1390, 695, 0, 8922, 8923, 5, 3, 0, 0, 8923, 8925, - 1, 0, 0, 0, 8924, 8920, 1, 0, 0, 0, 8924, 8925, 1, 0, 0, 0, 8925, 1069, - 1, 0, 0, 0, 8926, 8927, 3, 1072, 536, 0, 8927, 1071, 1, 0, 0, 0, 8928, - 8930, 5, 36, 0, 0, 8929, 8928, 1, 0, 0, 0, 8929, 8930, 1, 0, 0, 0, 8930, - 8931, 1, 0, 0, 0, 8931, 8936, 3, 1426, 713, 0, 8932, 8933, 5, 2, 0, 0, - 8933, 8934, 3, 1390, 695, 0, 8934, 8935, 5, 3, 0, 0, 8935, 8937, 1, 0, - 0, 0, 8936, 8932, 1, 0, 0, 0, 8936, 8937, 1, 0, 0, 0, 8937, 1073, 1, 0, - 0, 0, 8938, 8951, 3, 1068, 534, 0, 8939, 8941, 5, 36, 0, 0, 8940, 8942, - 3, 1424, 712, 0, 8941, 8940, 1, 0, 0, 0, 8941, 8942, 1, 0, 0, 0, 8942, - 8945, 1, 0, 0, 0, 8943, 8945, 3, 1424, 712, 0, 8944, 8939, 1, 0, 0, 0, - 8944, 8943, 1, 0, 0, 0, 8945, 8946, 1, 0, 0, 0, 8946, 8947, 5, 2, 0, 0, - 8947, 8948, 3, 1106, 553, 0, 8948, 8949, 5, 3, 0, 0, 8949, 8951, 1, 0, - 0, 0, 8950, 8938, 1, 0, 0, 0, 8950, 8944, 1, 0, 0, 0, 8951, 1075, 1, 0, - 0, 0, 8952, 8954, 7, 46, 0, 0, 8953, 8955, 5, 142, 0, 0, 8954, 8953, 1, - 0, 0, 0, 8954, 8955, 1, 0, 0, 0, 8955, 1077, 1, 0, 0, 0, 8956, 8957, 5, - 100, 0, 0, 8957, 8958, 5, 2, 0, 0, 8958, 8959, 3, 1390, 695, 0, 8959, 8960, - 5, 3, 0, 0, 8960, 8964, 1, 0, 0, 0, 8961, 8962, 5, 80, 0, 0, 8962, 8964, - 3, 1168, 584, 0, 8963, 8956, 1, 0, 0, 0, 8963, 8961, 1, 0, 0, 0, 8964, - 1079, 1, 0, 0, 0, 8965, 8967, 3, 1388, 694, 0, 8966, 8968, 5, 9, 0, 0, - 8967, 8966, 1, 0, 0, 0, 8967, 8968, 1, 0, 0, 0, 8968, 8978, 1, 0, 0, 0, - 8969, 8975, 5, 81, 0, 0, 8970, 8976, 3, 1388, 694, 0, 8971, 8972, 5, 2, - 0, 0, 8972, 8973, 3, 1388, 694, 0, 8973, 8974, 5, 3, 0, 0, 8974, 8976, - 1, 0, 0, 0, 8975, 8970, 1, 0, 0, 0, 8975, 8971, 1, 0, 0, 0, 8976, 8978, - 1, 0, 0, 0, 8977, 8965, 1, 0, 0, 0, 8977, 8969, 1, 0, 0, 0, 8978, 1081, - 1, 0, 0, 0, 8979, 8984, 3, 1080, 540, 0, 8980, 8981, 5, 6, 0, 0, 8981, - 8983, 3, 1080, 540, 0, 8982, 8980, 1, 0, 0, 0, 8983, 8986, 1, 0, 0, 0, - 8984, 8982, 1, 0, 0, 0, 8984, 8985, 1, 0, 0, 0, 8985, 1083, 1, 0, 0, 0, - 8986, 8984, 1, 0, 0, 0, 8987, 8992, 3, 1080, 540, 0, 8988, 8990, 5, 36, - 0, 0, 8989, 8988, 1, 0, 0, 0, 8989, 8990, 1, 0, 0, 0, 8990, 8991, 1, 0, - 0, 0, 8991, 8993, 3, 1424, 712, 0, 8992, 8989, 1, 0, 0, 0, 8992, 8993, - 1, 0, 0, 0, 8993, 1085, 1, 0, 0, 0, 8994, 8995, 5, 493, 0, 0, 8995, 8996, - 3, 1398, 699, 0, 8996, 8997, 5, 2, 0, 0, 8997, 8998, 3, 1330, 665, 0, 8998, - 9000, 5, 3, 0, 0, 8999, 9001, 3, 1088, 544, 0, 9000, 8999, 1, 0, 0, 0, - 9000, 9001, 1, 0, 0, 0, 9001, 1087, 1, 0, 0, 0, 9002, 9003, 5, 322, 0, - 0, 9003, 9004, 5, 2, 0, 0, 9004, 9005, 3, 1168, 584, 0, 9005, 9006, 5, - 3, 0, 0, 9006, 1089, 1, 0, 0, 0, 9007, 9009, 3, 1220, 610, 0, 9008, 9010, - 3, 1098, 549, 0, 9009, 9008, 1, 0, 0, 0, 9009, 9010, 1, 0, 0, 0, 9010, - 9020, 1, 0, 0, 0, 9011, 9012, 5, 332, 0, 0, 9012, 9013, 5, 64, 0, 0, 9013, - 9014, 5, 2, 0, 0, 9014, 9015, 3, 1094, 547, 0, 9015, 9017, 5, 3, 0, 0, - 9016, 9018, 3, 1098, 549, 0, 9017, 9016, 1, 0, 0, 0, 9017, 9018, 1, 0, - 0, 0, 9018, 9020, 1, 0, 0, 0, 9019, 9007, 1, 0, 0, 0, 9019, 9011, 1, 0, - 0, 0, 9020, 1091, 1, 0, 0, 0, 9021, 9023, 3, 1220, 610, 0, 9022, 9024, - 3, 1096, 548, 0, 9023, 9022, 1, 0, 0, 0, 9023, 9024, 1, 0, 0, 0, 9024, - 1093, 1, 0, 0, 0, 9025, 9030, 3, 1092, 546, 0, 9026, 9027, 5, 6, 0, 0, - 9027, 9029, 3, 1092, 546, 0, 9028, 9026, 1, 0, 0, 0, 9029, 9032, 1, 0, - 0, 0, 9030, 9028, 1, 0, 0, 0, 9030, 9031, 1, 0, 0, 0, 9031, 1095, 1, 0, - 0, 0, 9032, 9030, 1, 0, 0, 0, 9033, 9034, 5, 36, 0, 0, 9034, 9035, 5, 2, - 0, 0, 9035, 9036, 3, 1106, 553, 0, 9036, 9037, 5, 3, 0, 0, 9037, 1097, - 1, 0, 0, 0, 9038, 9039, 5, 105, 0, 0, 9039, 9040, 5, 494, 0, 0, 9040, 1099, - 1, 0, 0, 0, 9041, 9042, 5, 103, 0, 0, 9042, 9043, 3, 1168, 584, 0, 9043, - 1101, 1, 0, 0, 0, 9044, 9049, 5, 103, 0, 0, 9045, 9046, 5, 455, 0, 0, 9046, - 9047, 5, 287, 0, 0, 9047, 9050, 3, 962, 481, 0, 9048, 9050, 3, 1168, 584, - 0, 9049, 9045, 1, 0, 0, 0, 9049, 9048, 1, 0, 0, 0, 9050, 1103, 1, 0, 0, - 0, 9051, 9052, 3, 1106, 553, 0, 9052, 1105, 1, 0, 0, 0, 9053, 9058, 3, - 1108, 554, 0, 9054, 9055, 5, 6, 0, 0, 9055, 9057, 3, 1108, 554, 0, 9056, - 9054, 1, 0, 0, 0, 9057, 9060, 1, 0, 0, 0, 9058, 9056, 1, 0, 0, 0, 9058, - 9059, 1, 0, 0, 0, 9059, 1107, 1, 0, 0, 0, 9060, 9058, 1, 0, 0, 0, 9061, - 9062, 3, 1424, 712, 0, 9062, 9064, 3, 1124, 562, 0, 9063, 9065, 3, 110, - 55, 0, 9064, 9063, 1, 0, 0, 0, 9064, 9065, 1, 0, 0, 0, 9065, 1109, 1, 0, - 0, 0, 9066, 9067, 5, 495, 0, 0, 9067, 9083, 5, 2, 0, 0, 9068, 9069, 3, - 1212, 606, 0, 9069, 9070, 3, 1282, 641, 0, 9070, 9071, 5, 496, 0, 0, 9071, - 9072, 3, 1112, 556, 0, 9072, 9084, 1, 0, 0, 0, 9073, 9074, 5, 497, 0, 0, - 9074, 9075, 5, 2, 0, 0, 9075, 9076, 3, 1120, 560, 0, 9076, 9077, 5, 3, - 0, 0, 9077, 9078, 5, 6, 0, 0, 9078, 9079, 3, 1212, 606, 0, 9079, 9080, - 3, 1282, 641, 0, 9080, 9081, 5, 496, 0, 0, 9081, 9082, 3, 1112, 556, 0, - 9082, 9084, 1, 0, 0, 0, 9083, 9068, 1, 0, 0, 0, 9083, 9073, 1, 0, 0, 0, - 9084, 9085, 1, 0, 0, 0, 9085, 9086, 5, 3, 0, 0, 9086, 1111, 1, 0, 0, 0, - 9087, 9092, 3, 1114, 557, 0, 9088, 9089, 5, 6, 0, 0, 9089, 9091, 3, 1114, - 557, 0, 9090, 9088, 1, 0, 0, 0, 9091, 9094, 1, 0, 0, 0, 9092, 9090, 1, - 0, 0, 0, 9092, 9093, 1, 0, 0, 0, 9093, 1113, 1, 0, 0, 0, 9094, 9092, 1, - 0, 0, 0, 9095, 9102, 3, 1424, 712, 0, 9096, 9098, 3, 1124, 562, 0, 9097, - 9099, 3, 1116, 558, 0, 9098, 9097, 1, 0, 0, 0, 9098, 9099, 1, 0, 0, 0, - 9099, 9103, 1, 0, 0, 0, 9100, 9101, 5, 62, 0, 0, 9101, 9103, 5, 494, 0, - 0, 9102, 9096, 1, 0, 0, 0, 9102, 9100, 1, 0, 0, 0, 9103, 1115, 1, 0, 0, - 0, 9104, 9106, 3, 1118, 559, 0, 9105, 9104, 1, 0, 0, 0, 9106, 9107, 1, - 0, 0, 0, 9107, 9105, 1, 0, 0, 0, 9107, 9108, 1, 0, 0, 0, 9108, 1117, 1, - 0, 0, 0, 9109, 9110, 5, 53, 0, 0, 9110, 9118, 3, 1168, 584, 0, 9111, 9112, - 3, 1434, 717, 0, 9112, 9113, 3, 1168, 584, 0, 9113, 9118, 1, 0, 0, 0, 9114, - 9115, 5, 77, 0, 0, 9115, 9118, 5, 78, 0, 0, 9116, 9118, 5, 78, 0, 0, 9117, - 9109, 1, 0, 0, 0, 9117, 9111, 1, 0, 0, 0, 9117, 9114, 1, 0, 0, 0, 9117, - 9116, 1, 0, 0, 0, 9118, 1119, 1, 0, 0, 0, 9119, 9124, 3, 1122, 561, 0, - 9120, 9121, 5, 6, 0, 0, 9121, 9123, 3, 1122, 561, 0, 9122, 9120, 1, 0, - 0, 0, 9123, 9126, 1, 0, 0, 0, 9124, 9122, 1, 0, 0, 0, 9124, 9125, 1, 0, - 0, 0, 9125, 1121, 1, 0, 0, 0, 9126, 9124, 1, 0, 0, 0, 9127, 9128, 3, 1210, - 605, 0, 9128, 9129, 5, 36, 0, 0, 9129, 9130, 3, 1432, 716, 0, 9130, 9134, - 1, 0, 0, 0, 9131, 9132, 5, 53, 0, 0, 9132, 9134, 3, 1210, 605, 0, 9133, - 9127, 1, 0, 0, 0, 9133, 9131, 1, 0, 0, 0, 9134, 1123, 1, 0, 0, 0, 9135, - 9137, 5, 429, 0, 0, 9136, 9135, 1, 0, 0, 0, 9136, 9137, 1, 0, 0, 0, 9137, - 9138, 1, 0, 0, 0, 9138, 9147, 3, 1128, 564, 0, 9139, 9148, 3, 1126, 563, - 0, 9140, 9145, 5, 35, 0, 0, 9141, 9142, 5, 4, 0, 0, 9142, 9143, 3, 1408, - 704, 0, 9143, 9144, 5, 5, 0, 0, 9144, 9146, 1, 0, 0, 0, 9145, 9141, 1, - 0, 0, 0, 9145, 9146, 1, 0, 0, 0, 9146, 9148, 1, 0, 0, 0, 9147, 9139, 1, - 0, 0, 0, 9147, 9140, 1, 0, 0, 0, 9148, 9154, 1, 0, 0, 0, 9149, 9150, 3, - 1388, 694, 0, 9150, 9151, 5, 27, 0, 0, 9151, 9152, 7, 47, 0, 0, 9152, 9154, - 1, 0, 0, 0, 9153, 9136, 1, 0, 0, 0, 9153, 9149, 1, 0, 0, 0, 9154, 1125, - 1, 0, 0, 0, 9155, 9157, 5, 4, 0, 0, 9156, 9158, 3, 1408, 704, 0, 9157, - 9156, 1, 0, 0, 0, 9157, 9158, 1, 0, 0, 0, 9158, 9159, 1, 0, 0, 0, 9159, - 9161, 5, 5, 0, 0, 9160, 9155, 1, 0, 0, 0, 9161, 9164, 1, 0, 0, 0, 9162, - 9160, 1, 0, 0, 0, 9162, 9163, 1, 0, 0, 0, 9163, 1127, 1, 0, 0, 0, 9164, - 9162, 1, 0, 0, 0, 9165, 9181, 3, 1132, 566, 0, 9166, 9181, 3, 1136, 568, - 0, 9167, 9181, 3, 1140, 570, 0, 9168, 9181, 3, 1148, 574, 0, 9169, 9181, - 3, 1156, 578, 0, 9170, 9178, 3, 1158, 579, 0, 9171, 9173, 3, 1162, 581, - 0, 9172, 9171, 1, 0, 0, 0, 9172, 9173, 1, 0, 0, 0, 9173, 9179, 1, 0, 0, - 0, 9174, 9175, 5, 2, 0, 0, 9175, 9176, 3, 1408, 704, 0, 9176, 9177, 5, - 3, 0, 0, 9177, 9179, 1, 0, 0, 0, 9178, 9172, 1, 0, 0, 0, 9178, 9174, 1, - 0, 0, 0, 9179, 9181, 1, 0, 0, 0, 9180, 9165, 1, 0, 0, 0, 9180, 9166, 1, - 0, 0, 0, 9180, 9167, 1, 0, 0, 0, 9180, 9168, 1, 0, 0, 0, 9180, 9169, 1, - 0, 0, 0, 9180, 9170, 1, 0, 0, 0, 9181, 1129, 1, 0, 0, 0, 9182, 9187, 3, - 1136, 568, 0, 9183, 9187, 3, 1142, 571, 0, 9184, 9187, 3, 1150, 575, 0, - 9185, 9187, 3, 1156, 578, 0, 9186, 9182, 1, 0, 0, 0, 9186, 9183, 1, 0, - 0, 0, 9186, 9184, 1, 0, 0, 0, 9186, 9185, 1, 0, 0, 0, 9187, 1131, 1, 0, - 0, 0, 9188, 9193, 3, 1446, 723, 0, 9189, 9193, 3, 1428, 714, 0, 9190, 9193, - 5, 138, 0, 0, 9191, 9193, 5, 145, 0, 0, 9192, 9188, 1, 0, 0, 0, 9192, 9189, - 1, 0, 0, 0, 9192, 9190, 1, 0, 0, 0, 9192, 9191, 1, 0, 0, 0, 9193, 9195, - 1, 0, 0, 0, 9194, 9196, 3, 528, 264, 0, 9195, 9194, 1, 0, 0, 0, 9195, 9196, - 1, 0, 0, 0, 9196, 9198, 1, 0, 0, 0, 9197, 9199, 3, 1134, 567, 0, 9198, - 9197, 1, 0, 0, 0, 9198, 9199, 1, 0, 0, 0, 9199, 1133, 1, 0, 0, 0, 9200, - 9201, 5, 2, 0, 0, 9201, 9202, 3, 1330, 665, 0, 9202, 9203, 5, 3, 0, 0, - 9203, 1135, 1, 0, 0, 0, 9204, 9229, 5, 414, 0, 0, 9205, 9229, 5, 415, 0, - 0, 9206, 9229, 5, 430, 0, 0, 9207, 9229, 5, 401, 0, 0, 9208, 9229, 5, 427, - 0, 0, 9209, 9211, 5, 411, 0, 0, 9210, 9212, 3, 1138, 569, 0, 9211, 9210, - 1, 0, 0, 0, 9211, 9212, 1, 0, 0, 0, 9212, 9229, 1, 0, 0, 0, 9213, 9214, - 5, 209, 0, 0, 9214, 9229, 5, 426, 0, 0, 9215, 9217, 5, 408, 0, 0, 9216, - 9218, 3, 1134, 567, 0, 9217, 9216, 1, 0, 0, 0, 9217, 9218, 1, 0, 0, 0, - 9218, 9229, 1, 0, 0, 0, 9219, 9221, 5, 407, 0, 0, 9220, 9222, 3, 1134, - 567, 0, 9221, 9220, 1, 0, 0, 0, 9221, 9222, 1, 0, 0, 0, 9222, 9229, 1, - 0, 0, 0, 9223, 9225, 5, 422, 0, 0, 9224, 9226, 3, 1134, 567, 0, 9225, 9224, - 1, 0, 0, 0, 9225, 9226, 1, 0, 0, 0, 9226, 9229, 1, 0, 0, 0, 9227, 9229, - 5, 403, 0, 0, 9228, 9204, 1, 0, 0, 0, 9228, 9205, 1, 0, 0, 0, 9228, 9206, - 1, 0, 0, 0, 9228, 9207, 1, 0, 0, 0, 9228, 9208, 1, 0, 0, 0, 9228, 9209, - 1, 0, 0, 0, 9228, 9213, 1, 0, 0, 0, 9228, 9215, 1, 0, 0, 0, 9228, 9219, - 1, 0, 0, 0, 9228, 9223, 1, 0, 0, 0, 9228, 9227, 1, 0, 0, 0, 9229, 1137, - 1, 0, 0, 0, 9230, 9231, 5, 2, 0, 0, 9231, 9232, 3, 1408, 704, 0, 9232, - 9233, 5, 3, 0, 0, 9233, 1139, 1, 0, 0, 0, 9234, 9237, 3, 1144, 572, 0, - 9235, 9237, 3, 1146, 573, 0, 9236, 9234, 1, 0, 0, 0, 9236, 9235, 1, 0, - 0, 0, 9237, 1141, 1, 0, 0, 0, 9238, 9241, 3, 1144, 572, 0, 9239, 9241, - 3, 1146, 573, 0, 9240, 9238, 1, 0, 0, 0, 9240, 9239, 1, 0, 0, 0, 9241, - 1143, 1, 0, 0, 0, 9242, 9244, 5, 402, 0, 0, 9243, 9245, 3, 1154, 577, 0, - 9244, 9243, 1, 0, 0, 0, 9244, 9245, 1, 0, 0, 0, 9245, 9246, 1, 0, 0, 0, - 9246, 9247, 5, 2, 0, 0, 9247, 9248, 3, 1330, 665, 0, 9248, 9249, 5, 3, - 0, 0, 9249, 1145, 1, 0, 0, 0, 9250, 9252, 5, 402, 0, 0, 9251, 9253, 3, - 1154, 577, 0, 9252, 9251, 1, 0, 0, 0, 9252, 9253, 1, 0, 0, 0, 9253, 1147, - 1, 0, 0, 0, 9254, 9259, 3, 1152, 576, 0, 9255, 9256, 5, 2, 0, 0, 9256, - 9257, 3, 1408, 704, 0, 9257, 9258, 5, 3, 0, 0, 9258, 9260, 1, 0, 0, 0, - 9259, 9255, 1, 0, 0, 0, 9259, 9260, 1, 0, 0, 0, 9260, 1149, 1, 0, 0, 0, - 9261, 9266, 3, 1152, 576, 0, 9262, 9263, 5, 2, 0, 0, 9263, 9264, 3, 1408, - 704, 0, 9264, 9265, 5, 3, 0, 0, 9265, 9267, 1, 0, 0, 0, 9266, 9262, 1, - 0, 0, 0, 9266, 9267, 1, 0, 0, 0, 9267, 1151, 1, 0, 0, 0, 9268, 9270, 7, - 48, 0, 0, 9269, 9271, 3, 1154, 577, 0, 9270, 9269, 1, 0, 0, 0, 9270, 9271, - 1, 0, 0, 0, 9271, 9279, 1, 0, 0, 0, 9272, 9279, 5, 437, 0, 0, 9273, 9274, - 5, 418, 0, 0, 9274, 9276, 7, 49, 0, 0, 9275, 9277, 3, 1154, 577, 0, 9276, - 9275, 1, 0, 0, 0, 9276, 9277, 1, 0, 0, 0, 9277, 9279, 1, 0, 0, 0, 9278, - 9268, 1, 0, 0, 0, 9278, 9272, 1, 0, 0, 0, 9278, 9273, 1, 0, 0, 0, 9279, - 1153, 1, 0, 0, 0, 9280, 9281, 5, 386, 0, 0, 9281, 1155, 1, 0, 0, 0, 9282, - 9287, 7, 50, 0, 0, 9283, 9284, 5, 2, 0, 0, 9284, 9285, 3, 1408, 704, 0, - 9285, 9286, 5, 3, 0, 0, 9286, 9288, 1, 0, 0, 0, 9287, 9283, 1, 0, 0, 0, - 9287, 9288, 1, 0, 0, 0, 9288, 9290, 1, 0, 0, 0, 9289, 9291, 3, 1160, 580, - 0, 9290, 9289, 1, 0, 0, 0, 9290, 9291, 1, 0, 0, 0, 9291, 1157, 1, 0, 0, - 0, 9292, 9293, 5, 416, 0, 0, 9293, 1159, 1, 0, 0, 0, 9294, 9295, 5, 105, - 0, 0, 9295, 9296, 5, 432, 0, 0, 9296, 9301, 5, 398, 0, 0, 9297, 9298, 5, - 391, 0, 0, 9298, 9299, 5, 432, 0, 0, 9299, 9301, 5, 398, 0, 0, 9300, 9294, - 1, 0, 0, 0, 9300, 9297, 1, 0, 0, 0, 9301, 1161, 1, 0, 0, 0, 9302, 9328, - 5, 396, 0, 0, 9303, 9328, 5, 276, 0, 0, 9304, 9328, 5, 195, 0, 0, 9305, - 9328, 5, 237, 0, 0, 9306, 9328, 5, 273, 0, 0, 9307, 9328, 3, 1164, 582, - 0, 9308, 9309, 5, 396, 0, 0, 9309, 9310, 5, 94, 0, 0, 9310, 9328, 5, 276, - 0, 0, 9311, 9312, 5, 195, 0, 0, 9312, 9316, 5, 94, 0, 0, 9313, 9317, 5, - 237, 0, 0, 9314, 9317, 5, 273, 0, 0, 9315, 9317, 3, 1164, 582, 0, 9316, - 9313, 1, 0, 0, 0, 9316, 9314, 1, 0, 0, 0, 9316, 9315, 1, 0, 0, 0, 9317, - 9328, 1, 0, 0, 0, 9318, 9319, 5, 237, 0, 0, 9319, 9322, 5, 94, 0, 0, 9320, - 9323, 5, 273, 0, 0, 9321, 9323, 3, 1164, 582, 0, 9322, 9320, 1, 0, 0, 0, - 9322, 9321, 1, 0, 0, 0, 9323, 9328, 1, 0, 0, 0, 9324, 9325, 5, 273, 0, - 0, 9325, 9326, 5, 94, 0, 0, 9326, 9328, 3, 1164, 582, 0, 9327, 9302, 1, - 0, 0, 0, 9327, 9303, 1, 0, 0, 0, 9327, 9304, 1, 0, 0, 0, 9327, 9305, 1, - 0, 0, 0, 9327, 9306, 1, 0, 0, 0, 9327, 9307, 1, 0, 0, 0, 9327, 9308, 1, - 0, 0, 0, 9327, 9311, 1, 0, 0, 0, 9327, 9318, 1, 0, 0, 0, 9327, 9324, 1, - 0, 0, 0, 9328, 1163, 1, 0, 0, 0, 9329, 9334, 5, 338, 0, 0, 9330, 9331, - 5, 2, 0, 0, 9331, 9332, 3, 1408, 704, 0, 9332, 9333, 5, 3, 0, 0, 9333, - 9335, 1, 0, 0, 0, 9334, 9330, 1, 0, 0, 0, 9334, 9335, 1, 0, 0, 0, 9335, - 1165, 1, 0, 0, 0, 9336, 9337, 5, 216, 0, 0, 9337, 9338, 3, 1168, 584, 0, - 9338, 1167, 1, 0, 0, 0, 9339, 9340, 3, 1170, 585, 0, 9340, 1169, 1, 0, - 0, 0, 9341, 9343, 3, 1172, 586, 0, 9342, 9344, 3, 1324, 662, 0, 9343, 9342, - 1, 0, 0, 0, 9343, 9344, 1, 0, 0, 0, 9344, 1171, 1, 0, 0, 0, 9345, 9350, - 3, 1174, 587, 0, 9346, 9347, 7, 51, 0, 0, 9347, 9349, 3, 1174, 587, 0, - 9348, 9346, 1, 0, 0, 0, 9349, 9352, 1, 0, 0, 0, 9350, 9348, 1, 0, 0, 0, - 9350, 9351, 1, 0, 0, 0, 9351, 1173, 1, 0, 0, 0, 9352, 9350, 1, 0, 0, 0, - 9353, 9358, 3, 1176, 588, 0, 9354, 9355, 5, 82, 0, 0, 9355, 9357, 3, 1176, - 588, 0, 9356, 9354, 1, 0, 0, 0, 9357, 9360, 1, 0, 0, 0, 9358, 9356, 1, - 0, 0, 0, 9358, 9359, 1, 0, 0, 0, 9359, 1175, 1, 0, 0, 0, 9360, 9358, 1, - 0, 0, 0, 9361, 9366, 3, 1178, 589, 0, 9362, 9363, 5, 33, 0, 0, 9363, 9365, - 3, 1178, 589, 0, 9364, 9362, 1, 0, 0, 0, 9365, 9368, 1, 0, 0, 0, 9366, - 9364, 1, 0, 0, 0, 9366, 9367, 1, 0, 0, 0, 9367, 1177, 1, 0, 0, 0, 9368, - 9366, 1, 0, 0, 0, 9369, 9381, 3, 1180, 590, 0, 9370, 9372, 5, 77, 0, 0, - 9371, 9370, 1, 0, 0, 0, 9371, 9372, 1, 0, 0, 0, 9372, 9373, 1, 0, 0, 0, - 9373, 9375, 5, 400, 0, 0, 9374, 9376, 5, 91, 0, 0, 9375, 9374, 1, 0, 0, - 0, 9375, 9376, 1, 0, 0, 0, 9376, 9377, 1, 0, 0, 0, 9377, 9378, 3, 1180, - 590, 0, 9378, 9379, 5, 33, 0, 0, 9379, 9380, 3, 1180, 590, 0, 9380, 9382, - 1, 0, 0, 0, 9381, 9371, 1, 0, 0, 0, 9381, 9382, 1, 0, 0, 0, 9382, 1179, - 1, 0, 0, 0, 9383, 9389, 3, 1182, 591, 0, 9384, 9386, 5, 77, 0, 0, 9385, - 9384, 1, 0, 0, 0, 9385, 9386, 1, 0, 0, 0, 9386, 9387, 1, 0, 0, 0, 9387, - 9388, 5, 68, 0, 0, 9388, 9390, 3, 1356, 678, 0, 9389, 9385, 1, 0, 0, 0, - 9389, 9390, 1, 0, 0, 0, 9390, 1181, 1, 0, 0, 0, 9391, 9393, 5, 77, 0, 0, - 9392, 9391, 1, 0, 0, 0, 9392, 9393, 1, 0, 0, 0, 9393, 9394, 1, 0, 0, 0, - 9394, 9395, 3, 1184, 592, 0, 9395, 1183, 1, 0, 0, 0, 9396, 9398, 3, 1186, - 593, 0, 9397, 9399, 7, 52, 0, 0, 9398, 9397, 1, 0, 0, 0, 9398, 9399, 1, - 0, 0, 0, 9399, 1185, 1, 0, 0, 0, 9400, 9424, 3, 1188, 594, 0, 9401, 9403, - 5, 135, 0, 0, 9402, 9404, 5, 77, 0, 0, 9403, 9402, 1, 0, 0, 0, 9403, 9404, - 1, 0, 0, 0, 9404, 9422, 1, 0, 0, 0, 9405, 9423, 5, 78, 0, 0, 9406, 9423, - 5, 96, 0, 0, 9407, 9423, 5, 60, 0, 0, 9408, 9423, 5, 377, 0, 0, 9409, 9410, - 5, 56, 0, 0, 9410, 9411, 5, 64, 0, 0, 9411, 9423, 3, 1168, 584, 0, 9412, - 9413, 5, 287, 0, 0, 9413, 9414, 5, 2, 0, 0, 9414, 9415, 3, 1336, 668, 0, - 9415, 9416, 5, 3, 0, 0, 9416, 9423, 1, 0, 0, 0, 9417, 9423, 5, 207, 0, - 0, 9418, 9420, 3, 1346, 673, 0, 9419, 9418, 1, 0, 0, 0, 9419, 9420, 1, - 0, 0, 0, 9420, 9421, 1, 0, 0, 0, 9421, 9423, 5, 499, 0, 0, 9422, 9405, - 1, 0, 0, 0, 9422, 9406, 1, 0, 0, 0, 9422, 9407, 1, 0, 0, 0, 9422, 9408, - 1, 0, 0, 0, 9422, 9409, 1, 0, 0, 0, 9422, 9412, 1, 0, 0, 0, 9422, 9417, - 1, 0, 0, 0, 9422, 9419, 1, 0, 0, 0, 9423, 9425, 1, 0, 0, 0, 9424, 9401, - 1, 0, 0, 0, 9424, 9425, 1, 0, 0, 0, 9425, 1187, 1, 0, 0, 0, 9426, 9438, - 3, 1190, 595, 0, 9427, 9428, 7, 53, 0, 0, 9428, 9439, 3, 1190, 595, 0, - 9429, 9430, 3, 1328, 664, 0, 9430, 9436, 3, 1318, 659, 0, 9431, 9437, 3, - 970, 485, 0, 9432, 9433, 5, 2, 0, 0, 9433, 9434, 3, 1168, 584, 0, 9434, - 9435, 5, 3, 0, 0, 9435, 9437, 1, 0, 0, 0, 9436, 9431, 1, 0, 0, 0, 9436, - 9432, 1, 0, 0, 0, 9437, 9439, 1, 0, 0, 0, 9438, 9427, 1, 0, 0, 0, 9438, - 9429, 1, 0, 0, 0, 9438, 9439, 1, 0, 0, 0, 9439, 1189, 1, 0, 0, 0, 9440, - 9454, 3, 1192, 596, 0, 9441, 9443, 5, 77, 0, 0, 9442, 9441, 1, 0, 0, 0, - 9442, 9443, 1, 0, 0, 0, 9443, 9448, 1, 0, 0, 0, 9444, 9449, 5, 139, 0, - 0, 9445, 9449, 5, 133, 0, 0, 9446, 9447, 5, 146, 0, 0, 9447, 9449, 5, 94, - 0, 0, 9448, 9444, 1, 0, 0, 0, 9448, 9445, 1, 0, 0, 0, 9448, 9446, 1, 0, - 0, 0, 9449, 9450, 1, 0, 0, 0, 9450, 9452, 3, 1192, 596, 0, 9451, 9453, - 3, 1166, 583, 0, 9452, 9451, 1, 0, 0, 0, 9452, 9453, 1, 0, 0, 0, 9453, - 9455, 1, 0, 0, 0, 9454, 9442, 1, 0, 0, 0, 9454, 9455, 1, 0, 0, 0, 9455, - 1191, 1, 0, 0, 0, 9456, 9462, 3, 1194, 597, 0, 9457, 9458, 3, 1324, 662, - 0, 9458, 9459, 3, 1194, 597, 0, 9459, 9461, 1, 0, 0, 0, 9460, 9457, 1, - 0, 0, 0, 9461, 9464, 1, 0, 0, 0, 9462, 9460, 1, 0, 0, 0, 9462, 9463, 1, - 0, 0, 0, 9463, 1193, 1, 0, 0, 0, 9464, 9462, 1, 0, 0, 0, 9465, 9467, 3, - 1324, 662, 0, 9466, 9465, 1, 0, 0, 0, 9466, 9467, 1, 0, 0, 0, 9467, 9468, - 1, 0, 0, 0, 9468, 9469, 3, 1196, 598, 0, 9469, 1195, 1, 0, 0, 0, 9470, - 9475, 3, 1198, 599, 0, 9471, 9472, 7, 54, 0, 0, 9472, 9474, 3, 1198, 599, - 0, 9473, 9471, 1, 0, 0, 0, 9474, 9477, 1, 0, 0, 0, 9475, 9473, 1, 0, 0, - 0, 9475, 9476, 1, 0, 0, 0, 9476, 1197, 1, 0, 0, 0, 9477, 9475, 1, 0, 0, - 0, 9478, 9483, 3, 1200, 600, 0, 9479, 9480, 7, 55, 0, 0, 9480, 9482, 3, - 1200, 600, 0, 9481, 9479, 1, 0, 0, 0, 9482, 9485, 1, 0, 0, 0, 9483, 9481, - 1, 0, 0, 0, 9483, 9484, 1, 0, 0, 0, 9484, 1199, 1, 0, 0, 0, 9485, 9483, - 1, 0, 0, 0, 9486, 9489, 3, 1202, 601, 0, 9487, 9488, 5, 15, 0, 0, 9488, - 9490, 3, 1168, 584, 0, 9489, 9487, 1, 0, 0, 0, 9489, 9490, 1, 0, 0, 0, - 9490, 1201, 1, 0, 0, 0, 9491, 9493, 7, 54, 0, 0, 9492, 9491, 1, 0, 0, 0, - 9492, 9493, 1, 0, 0, 0, 9493, 9494, 1, 0, 0, 0, 9494, 9495, 3, 1204, 602, - 0, 9495, 1203, 1, 0, 0, 0, 9496, 9501, 3, 1206, 603, 0, 9497, 9498, 5, - 161, 0, 0, 9498, 9499, 5, 432, 0, 0, 9499, 9500, 5, 398, 0, 0, 9500, 9502, - 3, 1168, 584, 0, 9501, 9497, 1, 0, 0, 0, 9501, 9502, 1, 0, 0, 0, 9502, - 1205, 1, 0, 0, 0, 9503, 9506, 3, 1208, 604, 0, 9504, 9505, 5, 43, 0, 0, - 9505, 9507, 3, 526, 263, 0, 9506, 9504, 1, 0, 0, 0, 9506, 9507, 1, 0, 0, - 0, 9507, 1207, 1, 0, 0, 0, 9508, 9513, 3, 1212, 606, 0, 9509, 9510, 5, - 26, 0, 0, 9510, 9512, 3, 1124, 562, 0, 9511, 9509, 1, 0, 0, 0, 9512, 9515, - 1, 0, 0, 0, 9513, 9511, 1, 0, 0, 0, 9513, 9514, 1, 0, 0, 0, 9514, 1209, - 1, 0, 0, 0, 9515, 9513, 1, 0, 0, 0, 9516, 9517, 6, 605, -1, 0, 9517, 9524, - 3, 1212, 606, 0, 9518, 9519, 7, 54, 0, 0, 9519, 9524, 3, 1210, 605, 9, - 9520, 9521, 3, 1324, 662, 0, 9521, 9522, 3, 1210, 605, 3, 9522, 9524, 1, - 0, 0, 0, 9523, 9516, 1, 0, 0, 0, 9523, 9518, 1, 0, 0, 0, 9523, 9520, 1, - 0, 0, 0, 9524, 9564, 1, 0, 0, 0, 9525, 9526, 10, 8, 0, 0, 9526, 9527, 5, - 15, 0, 0, 9527, 9563, 3, 1210, 605, 9, 9528, 9529, 10, 7, 0, 0, 9529, 9530, - 7, 55, 0, 0, 9530, 9563, 3, 1210, 605, 8, 9531, 9532, 10, 6, 0, 0, 9532, - 9533, 7, 54, 0, 0, 9533, 9563, 3, 1210, 605, 7, 9534, 9535, 10, 5, 0, 0, - 9535, 9536, 3, 1324, 662, 0, 9536, 9537, 3, 1210, 605, 6, 9537, 9563, 1, - 0, 0, 0, 9538, 9539, 10, 4, 0, 0, 9539, 9540, 7, 53, 0, 0, 9540, 9563, - 3, 1210, 605, 5, 9541, 9542, 10, 10, 0, 0, 9542, 9543, 5, 26, 0, 0, 9543, - 9563, 3, 1124, 562, 0, 9544, 9545, 10, 2, 0, 0, 9545, 9563, 3, 1324, 662, - 0, 9546, 9547, 10, 1, 0, 0, 9547, 9549, 5, 135, 0, 0, 9548, 9550, 5, 77, - 0, 0, 9549, 9548, 1, 0, 0, 0, 9549, 9550, 1, 0, 0, 0, 9550, 9560, 1, 0, - 0, 0, 9551, 9552, 5, 56, 0, 0, 9552, 9553, 5, 64, 0, 0, 9553, 9561, 3, - 1210, 605, 0, 9554, 9555, 5, 287, 0, 0, 9555, 9556, 5, 2, 0, 0, 9556, 9557, - 3, 1336, 668, 0, 9557, 9558, 5, 3, 0, 0, 9558, 9561, 1, 0, 0, 0, 9559, - 9561, 5, 207, 0, 0, 9560, 9551, 1, 0, 0, 0, 9560, 9554, 1, 0, 0, 0, 9560, - 9559, 1, 0, 0, 0, 9561, 9563, 1, 0, 0, 0, 9562, 9525, 1, 0, 0, 0, 9562, - 9528, 1, 0, 0, 0, 9562, 9531, 1, 0, 0, 0, 9562, 9534, 1, 0, 0, 0, 9562, - 9538, 1, 0, 0, 0, 9562, 9541, 1, 0, 0, 0, 9562, 9544, 1, 0, 0, 0, 9562, - 9546, 1, 0, 0, 0, 9563, 9566, 1, 0, 0, 0, 9564, 9562, 1, 0, 0, 0, 9564, - 9565, 1, 0, 0, 0, 9565, 1211, 1, 0, 0, 0, 9566, 9564, 1, 0, 0, 0, 9567, - 9568, 5, 409, 0, 0, 9568, 9604, 3, 970, 485, 0, 9569, 9572, 5, 35, 0, 0, - 9570, 9573, 3, 970, 485, 0, 9571, 9573, 3, 1338, 669, 0, 9572, 9570, 1, - 0, 0, 0, 9572, 9571, 1, 0, 0, 0, 9573, 9604, 1, 0, 0, 0, 9574, 9575, 5, - 28, 0, 0, 9575, 9604, 3, 1376, 688, 0, 9576, 9577, 5, 491, 0, 0, 9577, - 9578, 5, 2, 0, 0, 9578, 9579, 3, 1330, 665, 0, 9579, 9580, 5, 3, 0, 0, - 9580, 9604, 1, 0, 0, 0, 9581, 9582, 5, 98, 0, 0, 9582, 9604, 3, 970, 485, - 0, 9583, 9604, 3, 1368, 684, 0, 9584, 9604, 3, 1400, 700, 0, 9585, 9604, - 3, 1214, 607, 0, 9586, 9587, 5, 2, 0, 0, 9587, 9588, 3, 1168, 584, 0, 9588, - 9589, 5, 3, 0, 0, 9589, 9590, 3, 1376, 688, 0, 9590, 9604, 1, 0, 0, 0, - 9591, 9604, 3, 1358, 679, 0, 9592, 9604, 3, 1218, 609, 0, 9593, 9595, 3, - 970, 485, 0, 9594, 9596, 3, 1374, 687, 0, 9595, 9594, 1, 0, 0, 0, 9595, - 9596, 1, 0, 0, 0, 9596, 9604, 1, 0, 0, 0, 9597, 9604, 3, 1314, 657, 0, - 9598, 9604, 3, 1316, 658, 0, 9599, 9600, 3, 1312, 656, 0, 9600, 9601, 5, - 144, 0, 0, 9601, 9602, 3, 1312, 656, 0, 9602, 9604, 1, 0, 0, 0, 9603, 9567, - 1, 0, 0, 0, 9603, 9569, 1, 0, 0, 0, 9603, 9574, 1, 0, 0, 0, 9603, 9576, - 1, 0, 0, 0, 9603, 9581, 1, 0, 0, 0, 9603, 9583, 1, 0, 0, 0, 9603, 9584, - 1, 0, 0, 0, 9603, 9585, 1, 0, 0, 0, 9603, 9586, 1, 0, 0, 0, 9603, 9591, - 1, 0, 0, 0, 9603, 9592, 1, 0, 0, 0, 9603, 9593, 1, 0, 0, 0, 9603, 9597, - 1, 0, 0, 0, 9603, 9598, 1, 0, 0, 0, 9603, 9599, 1, 0, 0, 0, 9604, 1213, - 1, 0, 0, 0, 9605, 9606, 5, 689, 0, 0, 9606, 1215, 1, 0, 0, 0, 9607, 9608, - 3, 1398, 699, 0, 9608, 9630, 5, 2, 0, 0, 9609, 9613, 3, 1332, 666, 0, 9610, - 9611, 5, 6, 0, 0, 9611, 9612, 5, 101, 0, 0, 9612, 9614, 3, 1334, 667, 0, - 9613, 9610, 1, 0, 0, 0, 9613, 9614, 1, 0, 0, 0, 9614, 9616, 1, 0, 0, 0, - 9615, 9617, 3, 1004, 502, 0, 9616, 9615, 1, 0, 0, 0, 9616, 9617, 1, 0, - 0, 0, 9617, 9631, 1, 0, 0, 0, 9618, 9619, 5, 101, 0, 0, 9619, 9621, 3, - 1334, 667, 0, 9620, 9622, 3, 1004, 502, 0, 9621, 9620, 1, 0, 0, 0, 9621, - 9622, 1, 0, 0, 0, 9622, 9631, 1, 0, 0, 0, 9623, 9624, 7, 43, 0, 0, 9624, - 9626, 3, 1332, 666, 0, 9625, 9627, 3, 1004, 502, 0, 9626, 9625, 1, 0, 0, - 0, 9626, 9627, 1, 0, 0, 0, 9627, 9631, 1, 0, 0, 0, 9628, 9631, 5, 9, 0, - 0, 9629, 9631, 1, 0, 0, 0, 9630, 9609, 1, 0, 0, 0, 9630, 9618, 1, 0, 0, - 0, 9630, 9623, 1, 0, 0, 0, 9630, 9628, 1, 0, 0, 0, 9630, 9629, 1, 0, 0, - 0, 9631, 9632, 1, 0, 0, 0, 9632, 9633, 5, 3, 0, 0, 9633, 1217, 1, 0, 0, - 0, 9634, 9636, 3, 1216, 608, 0, 9635, 9637, 3, 1286, 643, 0, 9636, 9635, - 1, 0, 0, 0, 9636, 9637, 1, 0, 0, 0, 9637, 9639, 1, 0, 0, 0, 9638, 9640, - 3, 1288, 644, 0, 9639, 9638, 1, 0, 0, 0, 9639, 9640, 1, 0, 0, 0, 9640, - 9642, 1, 0, 0, 0, 9641, 9643, 3, 1296, 648, 0, 9642, 9641, 1, 0, 0, 0, - 9642, 9643, 1, 0, 0, 0, 9643, 9653, 1, 0, 0, 0, 9644, 9646, 3, 1222, 611, - 0, 9645, 9647, 3, 1288, 644, 0, 9646, 9645, 1, 0, 0, 0, 9646, 9647, 1, - 0, 0, 0, 9647, 9649, 1, 0, 0, 0, 9648, 9650, 3, 1296, 648, 0, 9649, 9648, - 1, 0, 0, 0, 9649, 9650, 1, 0, 0, 0, 9650, 9653, 1, 0, 0, 0, 9651, 9653, - 3, 1228, 614, 0, 9652, 9634, 1, 0, 0, 0, 9652, 9644, 1, 0, 0, 0, 9652, - 9651, 1, 0, 0, 0, 9653, 1219, 1, 0, 0, 0, 9654, 9658, 3, 1216, 608, 0, - 9655, 9658, 3, 1228, 614, 0, 9656, 9658, 3, 1222, 611, 0, 9657, 9654, 1, - 0, 0, 0, 9657, 9655, 1, 0, 0, 0, 9657, 9656, 1, 0, 0, 0, 9658, 1221, 1, - 0, 0, 0, 9659, 9660, 5, 663, 0, 0, 9660, 9661, 5, 2, 0, 0, 9661, 9663, - 3, 1262, 631, 0, 9662, 9664, 3, 1258, 629, 0, 9663, 9662, 1, 0, 0, 0, 9663, - 9664, 1, 0, 0, 0, 9664, 9666, 1, 0, 0, 0, 9665, 9667, 3, 1254, 627, 0, - 9666, 9665, 1, 0, 0, 0, 9666, 9667, 1, 0, 0, 0, 9667, 9669, 1, 0, 0, 0, - 9668, 9670, 3, 1224, 612, 0, 9669, 9668, 1, 0, 0, 0, 9669, 9670, 1, 0, - 0, 0, 9670, 9671, 1, 0, 0, 0, 9671, 9672, 5, 3, 0, 0, 9672, 9688, 1, 0, - 0, 0, 9673, 9674, 5, 662, 0, 0, 9674, 9675, 5, 2, 0, 0, 9675, 9677, 3, - 1264, 632, 0, 9676, 9678, 3, 1226, 613, 0, 9677, 9676, 1, 0, 0, 0, 9677, - 9678, 1, 0, 0, 0, 9678, 9680, 1, 0, 0, 0, 9679, 9681, 3, 1256, 628, 0, - 9680, 9679, 1, 0, 0, 0, 9680, 9681, 1, 0, 0, 0, 9681, 9683, 1, 0, 0, 0, - 9682, 9684, 3, 1224, 612, 0, 9683, 9682, 1, 0, 0, 0, 9683, 9684, 1, 0, - 0, 0, 9684, 9685, 1, 0, 0, 0, 9685, 9686, 5, 3, 0, 0, 9686, 9688, 1, 0, - 0, 0, 9687, 9659, 1, 0, 0, 0, 9687, 9673, 1, 0, 0, 0, 9688, 1223, 1, 0, - 0, 0, 9689, 9690, 5, 87, 0, 0, 9690, 9692, 3, 1124, 562, 0, 9691, 9693, - 3, 1266, 633, 0, 9692, 9691, 1, 0, 0, 0, 9692, 9693, 1, 0, 0, 0, 9693, - 1225, 1, 0, 0, 0, 9694, 9695, 5, 83, 0, 0, 9695, 9696, 5, 166, 0, 0, 9696, - 9697, 3, 1008, 504, 0, 9697, 1227, 1, 0, 0, 0, 9698, 9699, 5, 127, 0, 0, - 9699, 9700, 5, 62, 0, 0, 9700, 9701, 5, 2, 0, 0, 9701, 9702, 3, 1168, 584, - 0, 9702, 9703, 5, 3, 0, 0, 9703, 10008, 1, 0, 0, 0, 9704, 10008, 5, 48, - 0, 0, 9705, 9710, 5, 50, 0, 0, 9706, 9707, 5, 2, 0, 0, 9707, 9708, 3, 1408, - 704, 0, 9708, 9709, 5, 3, 0, 0, 9709, 9711, 1, 0, 0, 0, 9710, 9706, 1, - 0, 0, 0, 9710, 9711, 1, 0, 0, 0, 9711, 10008, 1, 0, 0, 0, 9712, 9717, 5, - 51, 0, 0, 9713, 9714, 5, 2, 0, 0, 9714, 9715, 3, 1408, 704, 0, 9715, 9716, - 5, 3, 0, 0, 9716, 9718, 1, 0, 0, 0, 9717, 9713, 1, 0, 0, 0, 9717, 9718, - 1, 0, 0, 0, 9718, 10008, 1, 0, 0, 0, 9719, 9724, 5, 75, 0, 0, 9720, 9721, - 5, 2, 0, 0, 9721, 9722, 3, 1408, 704, 0, 9722, 9723, 5, 3, 0, 0, 9723, - 9725, 1, 0, 0, 0, 9724, 9720, 1, 0, 0, 0, 9724, 9725, 1, 0, 0, 0, 9725, - 10008, 1, 0, 0, 0, 9726, 9731, 5, 76, 0, 0, 9727, 9728, 5, 2, 0, 0, 9728, - 9729, 3, 1408, 704, 0, 9729, 9730, 5, 3, 0, 0, 9730, 9732, 1, 0, 0, 0, - 9731, 9727, 1, 0, 0, 0, 9731, 9732, 1, 0, 0, 0, 9732, 10008, 1, 0, 0, 0, - 9733, 10008, 5, 49, 0, 0, 9734, 10008, 5, 52, 0, 0, 9735, 10008, 5, 89, - 0, 0, 9736, 10008, 5, 99, 0, 0, 9737, 10008, 5, 47, 0, 0, 9738, 10008, - 5, 130, 0, 0, 9739, 9740, 5, 41, 0, 0, 9740, 9741, 5, 2, 0, 0, 9741, 9742, - 3, 1168, 584, 0, 9742, 9743, 5, 36, 0, 0, 9743, 9744, 3, 1124, 562, 0, - 9744, 9745, 5, 3, 0, 0, 9745, 10008, 1, 0, 0, 0, 9746, 9747, 5, 410, 0, - 0, 9747, 9749, 5, 2, 0, 0, 9748, 9750, 3, 1342, 671, 0, 9749, 9748, 1, - 0, 0, 0, 9749, 9750, 1, 0, 0, 0, 9750, 9751, 1, 0, 0, 0, 9751, 10008, 5, - 3, 0, 0, 9752, 9753, 5, 510, 0, 0, 9753, 9754, 5, 2, 0, 0, 9754, 9757, - 3, 1168, 584, 0, 9755, 9756, 5, 6, 0, 0, 9756, 9758, 3, 1346, 673, 0, 9757, - 9755, 1, 0, 0, 0, 9757, 9758, 1, 0, 0, 0, 9758, 9759, 1, 0, 0, 0, 9759, - 9760, 5, 3, 0, 0, 9760, 10008, 1, 0, 0, 0, 9761, 9762, 5, 423, 0, 0, 9762, - 9763, 5, 2, 0, 0, 9763, 9764, 3, 1348, 674, 0, 9764, 9765, 5, 3, 0, 0, - 9765, 10008, 1, 0, 0, 0, 9766, 9767, 5, 425, 0, 0, 9767, 9769, 5, 2, 0, - 0, 9768, 9770, 3, 1350, 675, 0, 9769, 9768, 1, 0, 0, 0, 9769, 9770, 1, - 0, 0, 0, 9770, 9771, 1, 0, 0, 0, 9771, 10008, 5, 3, 0, 0, 9772, 9773, 5, - 431, 0, 0, 9773, 9774, 5, 2, 0, 0, 9774, 9775, 3, 1352, 676, 0, 9775, 9776, - 5, 3, 0, 0, 9776, 10008, 1, 0, 0, 0, 9777, 9778, 5, 434, 0, 0, 9778, 9779, - 5, 2, 0, 0, 9779, 9780, 3, 1168, 584, 0, 9780, 9781, 5, 36, 0, 0, 9781, - 9782, 3, 1124, 562, 0, 9782, 9783, 5, 3, 0, 0, 9783, 10008, 1, 0, 0, 0, - 9784, 9785, 5, 435, 0, 0, 9785, 9787, 5, 2, 0, 0, 9786, 9788, 7, 56, 0, - 0, 9787, 9786, 1, 0, 0, 0, 9787, 9788, 1, 0, 0, 0, 9788, 9789, 1, 0, 0, - 0, 9789, 9790, 3, 1354, 677, 0, 9790, 9791, 5, 3, 0, 0, 9791, 10008, 1, - 0, 0, 0, 9792, 9793, 5, 421, 0, 0, 9793, 9794, 5, 2, 0, 0, 9794, 9795, - 3, 1168, 584, 0, 9795, 9796, 5, 6, 0, 0, 9796, 9797, 3, 1168, 584, 0, 9797, - 9798, 5, 3, 0, 0, 9798, 10008, 1, 0, 0, 0, 9799, 9800, 5, 406, 0, 0, 9800, - 9801, 5, 2, 0, 0, 9801, 9802, 3, 1330, 665, 0, 9802, 9803, 5, 3, 0, 0, - 9803, 10008, 1, 0, 0, 0, 9804, 9805, 5, 412, 0, 0, 9805, 9806, 5, 2, 0, - 0, 9806, 9807, 3, 1330, 665, 0, 9807, 9808, 5, 3, 0, 0, 9808, 10008, 1, - 0, 0, 0, 9809, 9810, 5, 417, 0, 0, 9810, 9811, 5, 2, 0, 0, 9811, 9812, - 3, 1330, 665, 0, 9812, 9813, 5, 3, 0, 0, 9813, 10008, 1, 0, 0, 0, 9814, - 9815, 5, 446, 0, 0, 9815, 9816, 5, 2, 0, 0, 9816, 9817, 3, 1330, 665, 0, - 9817, 9818, 5, 3, 0, 0, 9818, 10008, 1, 0, 0, 0, 9819, 9820, 5, 447, 0, - 0, 9820, 9821, 5, 2, 0, 0, 9821, 9822, 5, 278, 0, 0, 9822, 9828, 3, 1432, - 716, 0, 9823, 9826, 5, 6, 0, 0, 9824, 9827, 3, 1272, 636, 0, 9825, 9827, - 3, 1330, 665, 0, 9826, 9824, 1, 0, 0, 0, 9826, 9825, 1, 0, 0, 0, 9827, - 9829, 1, 0, 0, 0, 9828, 9823, 1, 0, 0, 0, 9828, 9829, 1, 0, 0, 0, 9829, - 9830, 1, 0, 0, 0, 9830, 9831, 5, 3, 0, 0, 9831, 10008, 1, 0, 0, 0, 9832, - 9833, 5, 448, 0, 0, 9833, 9834, 5, 2, 0, 0, 9834, 9835, 3, 1212, 606, 0, - 9835, 9836, 3, 1282, 641, 0, 9836, 9837, 5, 3, 0, 0, 9837, 10008, 1, 0, - 0, 0, 9838, 9839, 5, 449, 0, 0, 9839, 9840, 5, 2, 0, 0, 9840, 9841, 3, - 1274, 637, 0, 9841, 9842, 5, 3, 0, 0, 9842, 10008, 1, 0, 0, 0, 9843, 9844, - 5, 450, 0, 0, 9844, 9845, 5, 2, 0, 0, 9845, 9846, 3, 1278, 639, 0, 9846, - 9848, 3, 1168, 584, 0, 9847, 9849, 3, 1280, 640, 0, 9848, 9847, 1, 0, 0, - 0, 9848, 9849, 1, 0, 0, 0, 9849, 9850, 1, 0, 0, 0, 9850, 9851, 5, 3, 0, - 0, 9851, 10008, 1, 0, 0, 0, 9852, 9853, 5, 451, 0, 0, 9853, 9854, 5, 2, - 0, 0, 9854, 9855, 5, 278, 0, 0, 9855, 9858, 3, 1432, 716, 0, 9856, 9857, - 5, 6, 0, 0, 9857, 9859, 3, 1168, 584, 0, 9858, 9856, 1, 0, 0, 0, 9858, - 9859, 1, 0, 0, 0, 9859, 9860, 1, 0, 0, 0, 9860, 9861, 5, 3, 0, 0, 9861, - 10008, 1, 0, 0, 0, 9862, 9863, 5, 452, 0, 0, 9863, 9864, 5, 2, 0, 0, 9864, - 9865, 5, 395, 0, 0, 9865, 9866, 3, 1168, 584, 0, 9866, 9867, 5, 6, 0, 0, - 9867, 9869, 3, 1268, 634, 0, 9868, 9870, 3, 1270, 635, 0, 9869, 9868, 1, - 0, 0, 0, 9869, 9870, 1, 0, 0, 0, 9870, 9871, 1, 0, 0, 0, 9871, 9872, 5, - 3, 0, 0, 9872, 10008, 1, 0, 0, 0, 9873, 9874, 5, 453, 0, 0, 9874, 9875, - 5, 2, 0, 0, 9875, 9876, 3, 1278, 639, 0, 9876, 9877, 3, 1168, 584, 0, 9877, - 9878, 5, 36, 0, 0, 9878, 9879, 3, 1128, 564, 0, 9879, 9880, 5, 3, 0, 0, - 9880, 10008, 1, 0, 0, 0, 9881, 9882, 5, 106, 0, 0, 9882, 9883, 5, 2, 0, - 0, 9883, 9884, 3, 1332, 666, 0, 9884, 9885, 5, 3, 0, 0, 9885, 10008, 1, - 0, 0, 0, 9886, 9887, 5, 106, 0, 0, 9887, 9888, 5, 2, 0, 0, 9888, 9890, - 3, 1260, 630, 0, 9889, 9891, 3, 1258, 629, 0, 9890, 9889, 1, 0, 0, 0, 9890, - 9891, 1, 0, 0, 0, 9891, 9893, 1, 0, 0, 0, 9892, 9894, 3, 1254, 627, 0, - 9893, 9892, 1, 0, 0, 0, 9893, 9894, 1, 0, 0, 0, 9894, 9896, 1, 0, 0, 0, - 9895, 9897, 3, 1252, 626, 0, 9896, 9895, 1, 0, 0, 0, 9896, 9897, 1, 0, - 0, 0, 9897, 9898, 1, 0, 0, 0, 9898, 9899, 5, 3, 0, 0, 9899, 10008, 1, 0, - 0, 0, 9900, 9901, 5, 106, 0, 0, 9901, 9903, 5, 2, 0, 0, 9902, 9904, 3, - 1252, 626, 0, 9903, 9902, 1, 0, 0, 0, 9903, 9904, 1, 0, 0, 0, 9904, 9905, - 1, 0, 0, 0, 9905, 10008, 5, 3, 0, 0, 9906, 9907, 5, 107, 0, 0, 9907, 9908, - 5, 2, 0, 0, 9908, 9910, 3, 1250, 625, 0, 9909, 9911, 3, 1256, 628, 0, 9910, - 9909, 1, 0, 0, 0, 9910, 9911, 1, 0, 0, 0, 9911, 9913, 1, 0, 0, 0, 9912, - 9914, 3, 1252, 626, 0, 9913, 9912, 1, 0, 0, 0, 9913, 9914, 1, 0, 0, 0, - 9914, 9915, 1, 0, 0, 0, 9915, 9916, 5, 3, 0, 0, 9916, 10008, 1, 0, 0, 0, - 9917, 9918, 5, 107, 0, 0, 9918, 9919, 5, 2, 0, 0, 9919, 9921, 3, 972, 486, - 0, 9920, 9922, 3, 1248, 624, 0, 9921, 9920, 1, 0, 0, 0, 9921, 9922, 1, - 0, 0, 0, 9922, 9924, 1, 0, 0, 0, 9923, 9925, 3, 1252, 626, 0, 9924, 9923, - 1, 0, 0, 0, 9924, 9925, 1, 0, 0, 0, 9925, 9926, 1, 0, 0, 0, 9926, 9927, - 5, 3, 0, 0, 9927, 10008, 1, 0, 0, 0, 9928, 9929, 5, 107, 0, 0, 9929, 9931, - 5, 2, 0, 0, 9930, 9932, 3, 1252, 626, 0, 9931, 9930, 1, 0, 0, 0, 9931, - 9932, 1, 0, 0, 0, 9932, 9933, 1, 0, 0, 0, 9933, 10008, 5, 3, 0, 0, 9934, - 9935, 5, 108, 0, 0, 9935, 9936, 5, 2, 0, 0, 9936, 9938, 3, 1264, 632, 0, - 9937, 9939, 3, 1254, 627, 0, 9938, 9937, 1, 0, 0, 0, 9938, 9939, 1, 0, - 0, 0, 9939, 9940, 1, 0, 0, 0, 9940, 9941, 5, 3, 0, 0, 9941, 10008, 1, 0, - 0, 0, 9942, 9943, 5, 109, 0, 0, 9943, 9944, 5, 2, 0, 0, 9944, 9945, 3, - 1168, 584, 0, 9945, 9946, 5, 3, 0, 0, 9946, 10008, 1, 0, 0, 0, 9947, 9948, - 5, 110, 0, 0, 9948, 9949, 5, 2, 0, 0, 9949, 9951, 3, 1264, 632, 0, 9950, - 9952, 3, 1252, 626, 0, 9951, 9950, 1, 0, 0, 0, 9951, 9952, 1, 0, 0, 0, - 9952, 9953, 1, 0, 0, 0, 9953, 9954, 5, 3, 0, 0, 9954, 10008, 1, 0, 0, 0, - 9955, 9956, 5, 111, 0, 0, 9956, 9957, 5, 2, 0, 0, 9957, 10008, 5, 3, 0, - 0, 9958, 9959, 5, 112, 0, 0, 9959, 9960, 5, 2, 0, 0, 9960, 9961, 3, 1264, - 632, 0, 9961, 9962, 5, 6, 0, 0, 9962, 9964, 3, 1168, 584, 0, 9963, 9965, - 3, 1242, 621, 0, 9964, 9963, 1, 0, 0, 0, 9964, 9965, 1, 0, 0, 0, 9965, - 9967, 1, 0, 0, 0, 9966, 9968, 3, 1252, 626, 0, 9967, 9966, 1, 0, 0, 0, - 9967, 9968, 1, 0, 0, 0, 9968, 9969, 1, 0, 0, 0, 9969, 9971, 3, 1240, 620, - 0, 9970, 9972, 3, 1238, 619, 0, 9971, 9970, 1, 0, 0, 0, 9971, 9972, 1, - 0, 0, 0, 9972, 9974, 1, 0, 0, 0, 9973, 9975, 3, 1232, 616, 0, 9974, 9973, - 1, 0, 0, 0, 9974, 9975, 1, 0, 0, 0, 9975, 9976, 1, 0, 0, 0, 9976, 9977, - 5, 3, 0, 0, 9977, 10008, 1, 0, 0, 0, 9978, 9979, 5, 113, 0, 0, 9979, 9980, - 5, 2, 0, 0, 9980, 9981, 3, 1264, 632, 0, 9981, 9982, 5, 6, 0, 0, 9982, - 9984, 3, 1168, 584, 0, 9983, 9985, 3, 1242, 621, 0, 9984, 9983, 1, 0, 0, - 0, 9984, 9985, 1, 0, 0, 0, 9985, 9987, 1, 0, 0, 0, 9986, 9988, 3, 1230, - 615, 0, 9987, 9986, 1, 0, 0, 0, 9987, 9988, 1, 0, 0, 0, 9988, 9989, 1, - 0, 0, 0, 9989, 9990, 5, 3, 0, 0, 9990, 10008, 1, 0, 0, 0, 9991, 9992, 5, - 114, 0, 0, 9992, 9993, 5, 2, 0, 0, 9993, 9994, 3, 1264, 632, 0, 9994, 9995, - 5, 6, 0, 0, 9995, 9997, 3, 1168, 584, 0, 9996, 9998, 3, 1242, 621, 0, 9997, - 9996, 1, 0, 0, 0, 9997, 9998, 1, 0, 0, 0, 9998, 10000, 1, 0, 0, 0, 9999, - 10001, 3, 1252, 626, 0, 10000, 9999, 1, 0, 0, 0, 10000, 10001, 1, 0, 0, - 0, 10001, 10003, 1, 0, 0, 0, 10002, 10004, 3, 1232, 616, 0, 10003, 10002, - 1, 0, 0, 0, 10003, 10004, 1, 0, 0, 0, 10004, 10005, 1, 0, 0, 0, 10005, - 10006, 5, 3, 0, 0, 10006, 10008, 1, 0, 0, 0, 10007, 9698, 1, 0, 0, 0, 10007, - 9704, 1, 0, 0, 0, 10007, 9705, 1, 0, 0, 0, 10007, 9712, 1, 0, 0, 0, 10007, - 9719, 1, 0, 0, 0, 10007, 9726, 1, 0, 0, 0, 10007, 9733, 1, 0, 0, 0, 10007, - 9734, 1, 0, 0, 0, 10007, 9735, 1, 0, 0, 0, 10007, 9736, 1, 0, 0, 0, 10007, - 9737, 1, 0, 0, 0, 10007, 9738, 1, 0, 0, 0, 10007, 9739, 1, 0, 0, 0, 10007, - 9746, 1, 0, 0, 0, 10007, 9752, 1, 0, 0, 0, 10007, 9761, 1, 0, 0, 0, 10007, - 9766, 1, 0, 0, 0, 10007, 9772, 1, 0, 0, 0, 10007, 9777, 1, 0, 0, 0, 10007, - 9784, 1, 0, 0, 0, 10007, 9792, 1, 0, 0, 0, 10007, 9799, 1, 0, 0, 0, 10007, - 9804, 1, 0, 0, 0, 10007, 9809, 1, 0, 0, 0, 10007, 9814, 1, 0, 0, 0, 10007, - 9819, 1, 0, 0, 0, 10007, 9832, 1, 0, 0, 0, 10007, 9838, 1, 0, 0, 0, 10007, - 9843, 1, 0, 0, 0, 10007, 9852, 1, 0, 0, 0, 10007, 9862, 1, 0, 0, 0, 10007, - 9873, 1, 0, 0, 0, 10007, 9881, 1, 0, 0, 0, 10007, 9886, 1, 0, 0, 0, 10007, - 9900, 1, 0, 0, 0, 10007, 9906, 1, 0, 0, 0, 10007, 9917, 1, 0, 0, 0, 10007, - 9928, 1, 0, 0, 0, 10007, 9934, 1, 0, 0, 0, 10007, 9942, 1, 0, 0, 0, 10007, - 9947, 1, 0, 0, 0, 10007, 9955, 1, 0, 0, 0, 10007, 9958, 1, 0, 0, 0, 10007, - 9978, 1, 0, 0, 0, 10007, 9991, 1, 0, 0, 0, 10008, 1229, 1, 0, 0, 0, 10009, - 10010, 3, 1234, 617, 0, 10010, 10011, 5, 80, 0, 0, 10011, 10012, 5, 514, - 0, 0, 10012, 1231, 1, 0, 0, 0, 10013, 10014, 3, 1234, 617, 0, 10014, 10015, - 5, 80, 0, 0, 10015, 10016, 5, 115, 0, 0, 10016, 10029, 1, 0, 0, 0, 10017, - 10018, 3, 1234, 617, 0, 10018, 10019, 5, 80, 0, 0, 10019, 10020, 5, 514, - 0, 0, 10020, 10029, 1, 0, 0, 0, 10021, 10022, 3, 1234, 617, 0, 10022, 10023, - 5, 80, 0, 0, 10023, 10024, 5, 115, 0, 0, 10024, 10025, 3, 1234, 617, 0, - 10025, 10026, 5, 80, 0, 0, 10026, 10027, 5, 514, 0, 0, 10027, 10029, 1, - 0, 0, 0, 10028, 10013, 1, 0, 0, 0, 10028, 10017, 1, 0, 0, 0, 10028, 10021, - 1, 0, 0, 0, 10029, 1233, 1, 0, 0, 0, 10030, 10031, 5, 53, 0, 0, 10031, - 10034, 3, 1168, 584, 0, 10032, 10034, 3, 1236, 618, 0, 10033, 10030, 1, - 0, 0, 0, 10033, 10032, 1, 0, 0, 0, 10034, 1235, 1, 0, 0, 0, 10035, 10046, - 5, 514, 0, 0, 10036, 10046, 5, 78, 0, 0, 10037, 10046, 5, 96, 0, 0, 10038, - 10046, 5, 60, 0, 0, 10039, 10046, 5, 377, 0, 0, 10040, 10041, 5, 115, 0, - 0, 10041, 10046, 5, 35, 0, 0, 10042, 10043, 5, 115, 0, 0, 10043, 10046, - 5, 286, 0, 0, 10044, 10046, 5, 115, 0, 0, 10045, 10035, 1, 0, 0, 0, 10045, - 10036, 1, 0, 0, 0, 10045, 10037, 1, 0, 0, 0, 10045, 10038, 1, 0, 0, 0, - 10045, 10039, 1, 0, 0, 0, 10045, 10040, 1, 0, 0, 0, 10045, 10042, 1, 0, - 0, 0, 10045, 10044, 1, 0, 0, 0, 10046, 1237, 1, 0, 0, 0, 10047, 10048, - 7, 57, 0, 0, 10048, 10049, 5, 124, 0, 0, 10049, 10050, 5, 80, 0, 0, 10050, - 10051, 5, 118, 0, 0, 10051, 10052, 5, 119, 0, 0, 10052, 1239, 1, 0, 0, - 0, 10053, 10055, 5, 391, 0, 0, 10054, 10056, 5, 35, 0, 0, 10055, 10054, - 1, 0, 0, 0, 10055, 10056, 1, 0, 0, 0, 10056, 10057, 1, 0, 0, 0, 10057, - 10067, 5, 393, 0, 0, 10058, 10060, 5, 105, 0, 0, 10059, 10061, 7, 58, 0, - 0, 10060, 10059, 1, 0, 0, 0, 10060, 10061, 1, 0, 0, 0, 10061, 10063, 1, - 0, 0, 0, 10062, 10064, 5, 35, 0, 0, 10063, 10062, 1, 0, 0, 0, 10063, 10064, - 1, 0, 0, 0, 10064, 10065, 1, 0, 0, 0, 10065, 10067, 5, 393, 0, 0, 10066, - 10053, 1, 0, 0, 0, 10066, 10058, 1, 0, 0, 0, 10067, 1241, 1, 0, 0, 0, 10068, - 10069, 5, 298, 0, 0, 10069, 10070, 3, 1244, 622, 0, 10070, 1243, 1, 0, - 0, 0, 10071, 10076, 3, 1246, 623, 0, 10072, 10073, 5, 6, 0, 0, 10073, 10075, - 3, 1246, 623, 0, 10074, 10072, 1, 0, 0, 0, 10075, 10078, 1, 0, 0, 0, 10076, - 10074, 1, 0, 0, 0, 10076, 10077, 1, 0, 0, 0, 10077, 1245, 1, 0, 0, 0, 10078, - 10076, 1, 0, 0, 0, 10079, 10080, 3, 1264, 632, 0, 10080, 10081, 5, 36, - 0, 0, 10081, 10082, 3, 1432, 716, 0, 10082, 1247, 1, 0, 0, 0, 10083, 10084, - 5, 602, 0, 0, 10084, 10085, 5, 108, 0, 0, 10085, 10086, 5, 213, 0, 0, 10086, - 10090, 3, 1392, 696, 0, 10087, 10088, 5, 602, 0, 0, 10088, 10090, 5, 108, - 0, 0, 10089, 10083, 1, 0, 0, 0, 10089, 10087, 1, 0, 0, 0, 10090, 1249, - 1, 0, 0, 0, 10091, 10096, 3, 1264, 632, 0, 10092, 10093, 5, 6, 0, 0, 10093, - 10095, 3, 1264, 632, 0, 10094, 10092, 1, 0, 0, 0, 10095, 10098, 1, 0, 0, - 0, 10096, 10094, 1, 0, 0, 0, 10096, 10097, 1, 0, 0, 0, 10097, 1251, 1, - 0, 0, 0, 10098, 10096, 1, 0, 0, 0, 10099, 10100, 5, 87, 0, 0, 10100, 10102, - 3, 1124, 562, 0, 10101, 10103, 3, 1266, 633, 0, 10102, 10101, 1, 0, 0, - 0, 10102, 10103, 1, 0, 0, 0, 10103, 1253, 1, 0, 0, 0, 10104, 10105, 5, - 105, 0, 0, 10105, 10107, 5, 98, 0, 0, 10106, 10108, 5, 122, 0, 0, 10107, - 10106, 1, 0, 0, 0, 10107, 10108, 1, 0, 0, 0, 10108, 10115, 1, 0, 0, 0, - 10109, 10110, 5, 391, 0, 0, 10110, 10112, 5, 98, 0, 0, 10111, 10113, 5, - 122, 0, 0, 10112, 10111, 1, 0, 0, 0, 10112, 10113, 1, 0, 0, 0, 10113, 10115, - 1, 0, 0, 0, 10114, 10104, 1, 0, 0, 0, 10114, 10109, 1, 0, 0, 0, 10115, - 1255, 1, 0, 0, 0, 10116, 10117, 5, 78, 0, 0, 10117, 10118, 5, 80, 0, 0, - 10118, 10123, 5, 78, 0, 0, 10119, 10120, 5, 123, 0, 0, 10120, 10121, 5, - 80, 0, 0, 10121, 10123, 5, 78, 0, 0, 10122, 10116, 1, 0, 0, 0, 10122, 10119, - 1, 0, 0, 0, 10123, 1257, 1, 0, 0, 0, 10124, 10125, 5, 78, 0, 0, 10125, - 10126, 5, 80, 0, 0, 10126, 10131, 5, 78, 0, 0, 10127, 10128, 5, 123, 0, - 0, 10128, 10129, 5, 80, 0, 0, 10129, 10131, 5, 78, 0, 0, 10130, 10124, - 1, 0, 0, 0, 10130, 10127, 1, 0, 0, 0, 10131, 1259, 1, 0, 0, 0, 10132, 10137, - 3, 1262, 631, 0, 10133, 10134, 5, 6, 0, 0, 10134, 10136, 3, 1262, 631, - 0, 10135, 10133, 1, 0, 0, 0, 10136, 10139, 1, 0, 0, 0, 10137, 10135, 1, - 0, 0, 0, 10137, 10138, 1, 0, 0, 0, 10138, 1261, 1, 0, 0, 0, 10139, 10137, - 1, 0, 0, 0, 10140, 10141, 3, 1212, 606, 0, 10141, 10142, 5, 471, 0, 0, - 10142, 10143, 3, 1264, 632, 0, 10143, 10149, 1, 0, 0, 0, 10144, 10145, - 3, 1168, 584, 0, 10145, 10146, 5, 8, 0, 0, 10146, 10147, 3, 1264, 632, - 0, 10147, 10149, 1, 0, 0, 0, 10148, 10140, 1, 0, 0, 0, 10148, 10144, 1, - 0, 0, 0, 10149, 1263, 1, 0, 0, 0, 10150, 10152, 3, 1168, 584, 0, 10151, - 10153, 3, 1266, 633, 0, 10152, 10151, 1, 0, 0, 0, 10152, 10153, 1, 0, 0, - 0, 10153, 1265, 1, 0, 0, 0, 10154, 10155, 5, 602, 0, 0, 10155, 10156, 5, - 108, 0, 0, 10156, 10157, 5, 213, 0, 0, 10157, 10161, 3, 1392, 696, 0, 10158, - 10159, 5, 602, 0, 0, 10159, 10161, 5, 108, 0, 0, 10160, 10154, 1, 0, 0, - 0, 10160, 10158, 1, 0, 0, 0, 10161, 1267, 1, 0, 0, 0, 10162, 10163, 5, - 387, 0, 0, 10163, 10168, 3, 1168, 584, 0, 10164, 10165, 5, 387, 0, 0, 10165, - 10166, 5, 281, 0, 0, 10166, 10168, 5, 471, 0, 0, 10167, 10162, 1, 0, 0, - 0, 10167, 10164, 1, 0, 0, 0, 10168, 1269, 1, 0, 0, 0, 10169, 10170, 5, - 6, 0, 0, 10170, 10171, 5, 351, 0, 0, 10171, 10180, 5, 397, 0, 0, 10172, - 10173, 5, 6, 0, 0, 10173, 10174, 5, 351, 0, 0, 10174, 10180, 5, 281, 0, - 0, 10175, 10176, 5, 6, 0, 0, 10176, 10177, 5, 351, 0, 0, 10177, 10178, - 5, 281, 0, 0, 10178, 10180, 5, 471, 0, 0, 10179, 10169, 1, 0, 0, 0, 10179, - 10172, 1, 0, 0, 0, 10179, 10175, 1, 0, 0, 0, 10180, 1271, 1, 0, 0, 0, 10181, - 10182, 5, 438, 0, 0, 10182, 10183, 5, 2, 0, 0, 10183, 10184, 3, 1274, 637, - 0, 10184, 10185, 5, 3, 0, 0, 10185, 1273, 1, 0, 0, 0, 10186, 10191, 3, - 1276, 638, 0, 10187, 10188, 5, 6, 0, 0, 10188, 10190, 3, 1276, 638, 0, - 10189, 10187, 1, 0, 0, 0, 10190, 10193, 1, 0, 0, 0, 10191, 10189, 1, 0, - 0, 0, 10191, 10192, 1, 0, 0, 0, 10192, 1275, 1, 0, 0, 0, 10193, 10191, - 1, 0, 0, 0, 10194, 10197, 3, 1168, 584, 0, 10195, 10196, 5, 36, 0, 0, 10196, - 10198, 3, 1432, 716, 0, 10197, 10195, 1, 0, 0, 0, 10197, 10198, 1, 0, 0, - 0, 10198, 1277, 1, 0, 0, 0, 10199, 10200, 7, 59, 0, 0, 10200, 1279, 1, - 0, 0, 0, 10201, 10202, 5, 304, 0, 0, 10202, 10206, 5, 390, 0, 0, 10203, - 10204, 5, 359, 0, 0, 10204, 10206, 5, 390, 0, 0, 10205, 10201, 1, 0, 0, - 0, 10205, 10203, 1, 0, 0, 0, 10206, 1281, 1, 0, 0, 0, 10207, 10208, 5, - 298, 0, 0, 10208, 10223, 3, 1212, 606, 0, 10209, 10210, 5, 298, 0, 0, 10210, - 10211, 3, 1212, 606, 0, 10211, 10212, 3, 1284, 642, 0, 10212, 10223, 1, - 0, 0, 0, 10213, 10214, 5, 298, 0, 0, 10214, 10215, 3, 1284, 642, 0, 10215, - 10216, 3, 1212, 606, 0, 10216, 10223, 1, 0, 0, 0, 10217, 10218, 5, 298, - 0, 0, 10218, 10219, 3, 1284, 642, 0, 10219, 10220, 3, 1212, 606, 0, 10220, - 10221, 3, 1284, 642, 0, 10221, 10223, 1, 0, 0, 0, 10222, 10207, 1, 0, 0, - 0, 10222, 10209, 1, 0, 0, 0, 10222, 10213, 1, 0, 0, 0, 10222, 10217, 1, - 0, 0, 0, 10223, 1283, 1, 0, 0, 0, 10224, 10225, 5, 166, 0, 0, 10225, 10226, - 7, 60, 0, 0, 10226, 1285, 1, 0, 0, 0, 10227, 10228, 5, 500, 0, 0, 10228, - 10229, 5, 66, 0, 0, 10229, 10230, 5, 2, 0, 0, 10230, 10231, 3, 1006, 503, - 0, 10231, 10232, 5, 3, 0, 0, 10232, 1287, 1, 0, 0, 0, 10233, 10234, 5, - 501, 0, 0, 10234, 10235, 5, 2, 0, 0, 10235, 10236, 5, 103, 0, 0, 10236, - 10237, 3, 1168, 584, 0, 10237, 10238, 5, 3, 0, 0, 10238, 1289, 1, 0, 0, - 0, 10239, 10240, 5, 104, 0, 0, 10240, 10241, 3, 1292, 646, 0, 10241, 1291, - 1, 0, 0, 0, 10242, 10247, 3, 1294, 647, 0, 10243, 10244, 5, 6, 0, 0, 10244, - 10246, 3, 1294, 647, 0, 10245, 10243, 1, 0, 0, 0, 10246, 10249, 1, 0, 0, - 0, 10247, 10245, 1, 0, 0, 0, 10247, 10248, 1, 0, 0, 0, 10248, 1293, 1, - 0, 0, 0, 10249, 10247, 1, 0, 0, 0, 10250, 10251, 3, 1424, 712, 0, 10251, - 10252, 5, 36, 0, 0, 10252, 10253, 3, 1298, 649, 0, 10253, 1295, 1, 0, 0, - 0, 10254, 10257, 5, 143, 0, 0, 10255, 10258, 3, 1298, 649, 0, 10256, 10258, - 3, 1424, 712, 0, 10257, 10255, 1, 0, 0, 0, 10257, 10256, 1, 0, 0, 0, 10258, - 1297, 1, 0, 0, 0, 10259, 10261, 5, 2, 0, 0, 10260, 10262, 3, 1300, 650, - 0, 10261, 10260, 1, 0, 0, 0, 10261, 10262, 1, 0, 0, 0, 10262, 10264, 1, - 0, 0, 0, 10263, 10265, 3, 1302, 651, 0, 10264, 10263, 1, 0, 0, 0, 10264, - 10265, 1, 0, 0, 0, 10265, 10267, 1, 0, 0, 0, 10266, 10268, 3, 1004, 502, - 0, 10267, 10266, 1, 0, 0, 0, 10267, 10268, 1, 0, 0, 0, 10268, 10270, 1, - 0, 0, 0, 10269, 10271, 3, 1304, 652, 0, 10270, 10269, 1, 0, 0, 0, 10270, - 10271, 1, 0, 0, 0, 10271, 10272, 1, 0, 0, 0, 10272, 10273, 5, 3, 0, 0, - 10273, 1299, 1, 0, 0, 0, 10274, 10275, 3, 1424, 712, 0, 10275, 1301, 1, - 0, 0, 0, 10276, 10277, 5, 297, 0, 0, 10277, 10278, 5, 166, 0, 0, 10278, - 10279, 3, 1330, 665, 0, 10279, 1303, 1, 0, 0, 0, 10280, 10281, 5, 311, - 0, 0, 10281, 10283, 3, 1306, 653, 0, 10282, 10284, 3, 1310, 655, 0, 10283, - 10282, 1, 0, 0, 0, 10283, 10284, 1, 0, 0, 0, 10284, 10296, 1, 0, 0, 0, - 10285, 10286, 5, 332, 0, 0, 10286, 10288, 3, 1306, 653, 0, 10287, 10289, - 3, 1310, 655, 0, 10288, 10287, 1, 0, 0, 0, 10288, 10289, 1, 0, 0, 0, 10289, - 10296, 1, 0, 0, 0, 10290, 10291, 5, 502, 0, 0, 10291, 10293, 3, 1306, 653, - 0, 10292, 10294, 3, 1310, 655, 0, 10293, 10292, 1, 0, 0, 0, 10293, 10294, - 1, 0, 0, 0, 10294, 10296, 1, 0, 0, 0, 10295, 10280, 1, 0, 0, 0, 10295, - 10285, 1, 0, 0, 0, 10295, 10290, 1, 0, 0, 0, 10296, 1305, 1, 0, 0, 0, 10297, - 10304, 3, 1308, 654, 0, 10298, 10299, 5, 400, 0, 0, 10299, 10300, 3, 1308, - 654, 0, 10300, 10301, 5, 33, 0, 0, 10301, 10302, 3, 1308, 654, 0, 10302, - 10304, 1, 0, 0, 0, 10303, 10297, 1, 0, 0, 0, 10303, 10298, 1, 0, 0, 0, - 10304, 1307, 1, 0, 0, 0, 10305, 10306, 5, 374, 0, 0, 10306, 10313, 7, 61, - 0, 0, 10307, 10308, 5, 455, 0, 0, 10308, 10313, 5, 428, 0, 0, 10309, 10310, - 3, 1168, 584, 0, 10310, 10311, 7, 61, 0, 0, 10311, 10313, 1, 0, 0, 0, 10312, - 10305, 1, 0, 0, 0, 10312, 10307, 1, 0, 0, 0, 10312, 10309, 1, 0, 0, 0, - 10313, 1309, 1, 0, 0, 0, 10314, 10321, 5, 218, 0, 0, 10315, 10316, 5, 455, - 0, 0, 10316, 10322, 5, 428, 0, 0, 10317, 10322, 5, 66, 0, 0, 10318, 10322, - 5, 488, 0, 0, 10319, 10320, 5, 281, 0, 0, 10320, 10322, 5, 503, 0, 0, 10321, - 10315, 1, 0, 0, 0, 10321, 10317, 1, 0, 0, 0, 10321, 10318, 1, 0, 0, 0, - 10321, 10319, 1, 0, 0, 0, 10322, 1311, 1, 0, 0, 0, 10323, 10324, 5, 428, - 0, 0, 10324, 10326, 5, 2, 0, 0, 10325, 10327, 3, 1330, 665, 0, 10326, 10325, - 1, 0, 0, 0, 10326, 10327, 1, 0, 0, 0, 10327, 10328, 1, 0, 0, 0, 10328, - 10336, 5, 3, 0, 0, 10329, 10330, 5, 2, 0, 0, 10330, 10331, 3, 1330, 665, - 0, 10331, 10332, 5, 6, 0, 0, 10332, 10333, 3, 1168, 584, 0, 10333, 10334, - 5, 3, 0, 0, 10334, 10336, 1, 0, 0, 0, 10335, 10323, 1, 0, 0, 0, 10335, - 10329, 1, 0, 0, 0, 10336, 1313, 1, 0, 0, 0, 10337, 10338, 5, 428, 0, 0, - 10338, 10340, 5, 2, 0, 0, 10339, 10341, 3, 1330, 665, 0, 10340, 10339, - 1, 0, 0, 0, 10340, 10341, 1, 0, 0, 0, 10341, 10342, 1, 0, 0, 0, 10342, - 10343, 5, 3, 0, 0, 10343, 1315, 1, 0, 0, 0, 10344, 10345, 5, 2, 0, 0, 10345, - 10346, 3, 1330, 665, 0, 10346, 10347, 5, 6, 0, 0, 10347, 10348, 3, 1168, - 584, 0, 10348, 10349, 5, 3, 0, 0, 10349, 1317, 1, 0, 0, 0, 10350, 10351, - 7, 62, 0, 0, 10351, 1319, 1, 0, 0, 0, 10352, 10355, 5, 29, 0, 0, 10353, - 10355, 3, 1322, 661, 0, 10354, 10352, 1, 0, 0, 0, 10354, 10353, 1, 0, 0, - 0, 10355, 1321, 1, 0, 0, 0, 10356, 10357, 7, 63, 0, 0, 10357, 1323, 1, - 0, 0, 0, 10358, 10365, 5, 29, 0, 0, 10359, 10360, 5, 290, 0, 0, 10360, - 10361, 5, 2, 0, 0, 10361, 10362, 3, 690, 345, 0, 10362, 10363, 5, 3, 0, - 0, 10363, 10365, 1, 0, 0, 0, 10364, 10358, 1, 0, 0, 0, 10364, 10359, 1, - 0, 0, 0, 10365, 1325, 1, 0, 0, 0, 10366, 10373, 3, 1320, 660, 0, 10367, - 10368, 5, 290, 0, 0, 10368, 10369, 5, 2, 0, 0, 10369, 10370, 3, 690, 345, - 0, 10370, 10371, 5, 3, 0, 0, 10371, 10373, 1, 0, 0, 0, 10372, 10366, 1, - 0, 0, 0, 10372, 10367, 1, 0, 0, 0, 10373, 1327, 1, 0, 0, 0, 10374, 10387, - 3, 1320, 660, 0, 10375, 10376, 5, 290, 0, 0, 10376, 10377, 5, 2, 0, 0, - 10377, 10378, 3, 690, 345, 0, 10378, 10379, 5, 3, 0, 0, 10379, 10387, 1, - 0, 0, 0, 10380, 10387, 5, 139, 0, 0, 10381, 10382, 5, 77, 0, 0, 10382, - 10387, 5, 139, 0, 0, 10383, 10387, 5, 133, 0, 0, 10384, 10385, 5, 77, 0, - 0, 10385, 10387, 5, 133, 0, 0, 10386, 10374, 1, 0, 0, 0, 10386, 10375, - 1, 0, 0, 0, 10386, 10380, 1, 0, 0, 0, 10386, 10381, 1, 0, 0, 0, 10386, - 10383, 1, 0, 0, 0, 10386, 10384, 1, 0, 0, 0, 10387, 1329, 1, 0, 0, 0, 10388, - 10393, 3, 1168, 584, 0, 10389, 10390, 5, 6, 0, 0, 10390, 10392, 3, 1168, - 584, 0, 10391, 10389, 1, 0, 0, 0, 10392, 10395, 1, 0, 0, 0, 10393, 10391, - 1, 0, 0, 0, 10393, 10394, 1, 0, 0, 0, 10394, 1331, 1, 0, 0, 0, 10395, 10393, - 1, 0, 0, 0, 10396, 10401, 3, 1334, 667, 0, 10397, 10398, 5, 6, 0, 0, 10398, - 10400, 3, 1334, 667, 0, 10399, 10397, 1, 0, 0, 0, 10400, 10403, 1, 0, 0, - 0, 10401, 10399, 1, 0, 0, 0, 10401, 10402, 1, 0, 0, 0, 10402, 1333, 1, - 0, 0, 0, 10403, 10401, 1, 0, 0, 0, 10404, 10410, 3, 1168, 584, 0, 10405, - 10406, 3, 642, 321, 0, 10406, 10407, 7, 64, 0, 0, 10407, 10408, 3, 1168, - 584, 0, 10408, 10410, 1, 0, 0, 0, 10409, 10404, 1, 0, 0, 0, 10409, 10405, - 1, 0, 0, 0, 10410, 1335, 1, 0, 0, 0, 10411, 10416, 3, 1124, 562, 0, 10412, - 10413, 5, 6, 0, 0, 10413, 10415, 3, 1124, 562, 0, 10414, 10412, 1, 0, 0, - 0, 10415, 10418, 1, 0, 0, 0, 10416, 10414, 1, 0, 0, 0, 10416, 10417, 1, - 0, 0, 0, 10417, 1337, 1, 0, 0, 0, 10418, 10416, 1, 0, 0, 0, 10419, 10422, - 5, 4, 0, 0, 10420, 10423, 3, 1330, 665, 0, 10421, 10423, 3, 1340, 670, - 0, 10422, 10420, 1, 0, 0, 0, 10422, 10421, 1, 0, 0, 0, 10422, 10423, 1, - 0, 0, 0, 10423, 10424, 1, 0, 0, 0, 10424, 10425, 5, 5, 0, 0, 10425, 1339, - 1, 0, 0, 0, 10426, 10431, 3, 1338, 669, 0, 10427, 10428, 5, 6, 0, 0, 10428, - 10430, 3, 1338, 669, 0, 10429, 10427, 1, 0, 0, 0, 10430, 10433, 1, 0, 0, - 0, 10431, 10429, 1, 0, 0, 0, 10431, 10432, 1, 0, 0, 0, 10432, 1341, 1, - 0, 0, 0, 10433, 10431, 1, 0, 0, 0, 10434, 10435, 3, 1344, 672, 0, 10435, - 10436, 5, 64, 0, 0, 10436, 10437, 3, 1168, 584, 0, 10437, 1343, 1, 0, 0, - 0, 10438, 10447, 3, 1434, 717, 0, 10439, 10447, 5, 396, 0, 0, 10440, 10447, - 5, 276, 0, 0, 10441, 10447, 5, 195, 0, 0, 10442, 10447, 5, 237, 0, 0, 10443, - 10447, 5, 273, 0, 0, 10444, 10447, 5, 338, 0, 0, 10445, 10447, 3, 1410, - 705, 0, 10446, 10438, 1, 0, 0, 0, 10446, 10439, 1, 0, 0, 0, 10446, 10440, - 1, 0, 0, 0, 10446, 10441, 1, 0, 0, 0, 10446, 10442, 1, 0, 0, 0, 10446, - 10443, 1, 0, 0, 0, 10446, 10444, 1, 0, 0, 0, 10446, 10445, 1, 0, 0, 0, - 10447, 1345, 1, 0, 0, 0, 10448, 10449, 7, 65, 0, 0, 10449, 1347, 1, 0, - 0, 0, 10450, 10451, 3, 1168, 584, 0, 10451, 10452, 5, 84, 0, 0, 10452, - 10453, 3, 1168, 584, 0, 10453, 10454, 5, 64, 0, 0, 10454, 10457, 3, 1168, - 584, 0, 10455, 10456, 5, 62, 0, 0, 10456, 10458, 3, 1168, 584, 0, 10457, - 10455, 1, 0, 0, 0, 10457, 10458, 1, 0, 0, 0, 10458, 1349, 1, 0, 0, 0, 10459, - 10460, 3, 1210, 605, 0, 10460, 10461, 5, 68, 0, 0, 10461, 10462, 3, 1210, - 605, 0, 10462, 1351, 1, 0, 0, 0, 10463, 10464, 3, 1168, 584, 0, 10464, - 10465, 5, 64, 0, 0, 10465, 10466, 3, 1168, 584, 0, 10466, 10467, 5, 62, - 0, 0, 10467, 10468, 3, 1168, 584, 0, 10468, 10491, 1, 0, 0, 0, 10469, 10470, - 3, 1168, 584, 0, 10470, 10471, 5, 62, 0, 0, 10471, 10472, 3, 1168, 584, - 0, 10472, 10473, 5, 64, 0, 0, 10473, 10474, 3, 1168, 584, 0, 10474, 10491, - 1, 0, 0, 0, 10475, 10476, 3, 1168, 584, 0, 10476, 10477, 5, 64, 0, 0, 10477, - 10478, 3, 1168, 584, 0, 10478, 10491, 1, 0, 0, 0, 10479, 10480, 3, 1168, - 584, 0, 10480, 10481, 5, 62, 0, 0, 10481, 10482, 3, 1168, 584, 0, 10482, - 10491, 1, 0, 0, 0, 10483, 10484, 3, 1168, 584, 0, 10484, 10485, 5, 146, - 0, 0, 10485, 10486, 3, 1168, 584, 0, 10486, 10487, 5, 216, 0, 0, 10487, - 10488, 3, 1168, 584, 0, 10488, 10491, 1, 0, 0, 0, 10489, 10491, 3, 1330, - 665, 0, 10490, 10463, 1, 0, 0, 0, 10490, 10469, 1, 0, 0, 0, 10490, 10475, - 1, 0, 0, 0, 10490, 10479, 1, 0, 0, 0, 10490, 10483, 1, 0, 0, 0, 10490, - 10489, 1, 0, 0, 0, 10491, 1353, 1, 0, 0, 0, 10492, 10493, 3, 1168, 584, - 0, 10493, 10494, 5, 64, 0, 0, 10494, 10495, 3, 1330, 665, 0, 10495, 10500, - 1, 0, 0, 0, 10496, 10497, 5, 64, 0, 0, 10497, 10500, 3, 1330, 665, 0, 10498, - 10500, 3, 1330, 665, 0, 10499, 10492, 1, 0, 0, 0, 10499, 10496, 1, 0, 0, - 0, 10499, 10498, 1, 0, 0, 0, 10500, 1355, 1, 0, 0, 0, 10501, 10507, 3, - 970, 485, 0, 10502, 10503, 5, 2, 0, 0, 10503, 10504, 3, 1330, 665, 0, 10504, - 10505, 5, 3, 0, 0, 10505, 10507, 1, 0, 0, 0, 10506, 10501, 1, 0, 0, 0, - 10506, 10502, 1, 0, 0, 0, 10507, 1357, 1, 0, 0, 0, 10508, 10510, 5, 40, - 0, 0, 10509, 10511, 3, 1366, 683, 0, 10510, 10509, 1, 0, 0, 0, 10510, 10511, - 1, 0, 0, 0, 10511, 10512, 1, 0, 0, 0, 10512, 10514, 3, 1360, 680, 0, 10513, - 10515, 3, 1364, 682, 0, 10514, 10513, 1, 0, 0, 0, 10514, 10515, 1, 0, 0, - 0, 10515, 10516, 1, 0, 0, 0, 10516, 10517, 5, 475, 0, 0, 10517, 1359, 1, - 0, 0, 0, 10518, 10520, 3, 1362, 681, 0, 10519, 10518, 1, 0, 0, 0, 10520, - 10521, 1, 0, 0, 0, 10521, 10519, 1, 0, 0, 0, 10521, 10522, 1, 0, 0, 0, - 10522, 1361, 1, 0, 0, 0, 10523, 10524, 5, 102, 0, 0, 10524, 10525, 3, 1168, - 584, 0, 10525, 10526, 5, 93, 0, 0, 10526, 10527, 3, 1168, 584, 0, 10527, - 1363, 1, 0, 0, 0, 10528, 10529, 5, 58, 0, 0, 10529, 10530, 3, 1168, 584, - 0, 10530, 1365, 1, 0, 0, 0, 10531, 10532, 3, 1168, 584, 0, 10532, 1367, - 1, 0, 0, 0, 10533, 10535, 3, 1424, 712, 0, 10534, 10536, 3, 1374, 687, - 0, 10535, 10534, 1, 0, 0, 0, 10535, 10536, 1, 0, 0, 0, 10536, 1369, 1, - 0, 0, 0, 10537, 10540, 5, 11, 0, 0, 10538, 10541, 3, 1394, 697, 0, 10539, - 10541, 5, 9, 0, 0, 10540, 10538, 1, 0, 0, 0, 10540, 10539, 1, 0, 0, 0, - 10541, 10555, 1, 0, 0, 0, 10542, 10551, 5, 4, 0, 0, 10543, 10552, 3, 1168, - 584, 0, 10544, 10546, 3, 1372, 686, 0, 10545, 10544, 1, 0, 0, 0, 10545, - 10546, 1, 0, 0, 0, 10546, 10547, 1, 0, 0, 0, 10547, 10549, 5, 8, 0, 0, - 10548, 10550, 3, 1372, 686, 0, 10549, 10548, 1, 0, 0, 0, 10549, 10550, - 1, 0, 0, 0, 10550, 10552, 1, 0, 0, 0, 10551, 10543, 1, 0, 0, 0, 10551, - 10545, 1, 0, 0, 0, 10552, 10553, 1, 0, 0, 0, 10553, 10555, 5, 5, 0, 0, - 10554, 10537, 1, 0, 0, 0, 10554, 10542, 1, 0, 0, 0, 10555, 1371, 1, 0, - 0, 0, 10556, 10557, 3, 1168, 584, 0, 10557, 1373, 1, 0, 0, 0, 10558, 10560, - 3, 1370, 685, 0, 10559, 10558, 1, 0, 0, 0, 10560, 10561, 1, 0, 0, 0, 10561, - 10559, 1, 0, 0, 0, 10561, 10562, 1, 0, 0, 0, 10562, 1375, 1, 0, 0, 0, 10563, - 10565, 3, 1370, 685, 0, 10564, 10563, 1, 0, 0, 0, 10565, 10568, 1, 0, 0, - 0, 10566, 10564, 1, 0, 0, 0, 10566, 10567, 1, 0, 0, 0, 10567, 1377, 1, - 0, 0, 0, 10568, 10566, 1, 0, 0, 0, 10569, 10570, 3, 1380, 690, 0, 10570, - 1379, 1, 0, 0, 0, 10571, 10576, 3, 1382, 691, 0, 10572, 10573, 5, 6, 0, - 0, 10573, 10575, 3, 1382, 691, 0, 10574, 10572, 1, 0, 0, 0, 10575, 10578, - 1, 0, 0, 0, 10576, 10574, 1, 0, 0, 0, 10576, 10577, 1, 0, 0, 0, 10577, - 1381, 1, 0, 0, 0, 10578, 10576, 1, 0, 0, 0, 10579, 10581, 3, 1168, 584, - 0, 10580, 10582, 3, 1384, 692, 0, 10581, 10580, 1, 0, 0, 0, 10581, 10582, - 1, 0, 0, 0, 10582, 10585, 1, 0, 0, 0, 10583, 10585, 5, 9, 0, 0, 10584, - 10579, 1, 0, 0, 0, 10584, 10583, 1, 0, 0, 0, 10585, 1383, 1, 0, 0, 0, 10586, - 10587, 5, 36, 0, 0, 10587, 10590, 3, 1432, 716, 0, 10588, 10590, 3, 1434, - 717, 0, 10589, 10586, 1, 0, 0, 0, 10589, 10588, 1, 0, 0, 0, 10590, 1385, - 1, 0, 0, 0, 10591, 10596, 3, 1388, 694, 0, 10592, 10593, 5, 6, 0, 0, 10593, - 10595, 3, 1388, 694, 0, 10594, 10592, 1, 0, 0, 0, 10595, 10598, 1, 0, 0, - 0, 10596, 10594, 1, 0, 0, 0, 10596, 10597, 1, 0, 0, 0, 10597, 1387, 1, - 0, 0, 0, 10598, 10596, 1, 0, 0, 0, 10599, 10601, 3, 1424, 712, 0, 10600, - 10602, 3, 1374, 687, 0, 10601, 10600, 1, 0, 0, 0, 10601, 10602, 1, 0, 0, - 0, 10602, 1389, 1, 0, 0, 0, 10603, 10608, 3, 1392, 696, 0, 10604, 10605, - 5, 6, 0, 0, 10605, 10607, 3, 1392, 696, 0, 10606, 10604, 1, 0, 0, 0, 10607, - 10610, 1, 0, 0, 0, 10608, 10606, 1, 0, 0, 0, 10608, 10609, 1, 0, 0, 0, - 10609, 1391, 1, 0, 0, 0, 10610, 10608, 1, 0, 0, 0, 10611, 10612, 3, 1424, - 712, 0, 10612, 1393, 1, 0, 0, 0, 10613, 10614, 3, 1432, 716, 0, 10614, - 1395, 1, 0, 0, 0, 10615, 10616, 3, 1410, 705, 0, 10616, 1397, 1, 0, 0, - 0, 10617, 10625, 3, 1446, 723, 0, 10618, 10625, 3, 1428, 714, 0, 10619, - 10620, 3, 1424, 712, 0, 10620, 10621, 3, 1374, 687, 0, 10621, 10625, 1, - 0, 0, 0, 10622, 10625, 5, 138, 0, 0, 10623, 10625, 5, 145, 0, 0, 10624, - 10617, 1, 0, 0, 0, 10624, 10618, 1, 0, 0, 0, 10624, 10619, 1, 0, 0, 0, - 10624, 10622, 1, 0, 0, 0, 10624, 10623, 1, 0, 0, 0, 10625, 1399, 1, 0, - 0, 0, 10626, 10662, 3, 1408, 704, 0, 10627, 10662, 3, 1406, 703, 0, 10628, - 10662, 3, 1410, 705, 0, 10629, 10662, 3, 1404, 702, 0, 10630, 10662, 3, - 1402, 701, 0, 10631, 10641, 3, 1398, 699, 0, 10632, 10642, 3, 1410, 705, - 0, 10633, 10634, 5, 2, 0, 0, 10634, 10636, 3, 1332, 666, 0, 10635, 10637, - 3, 1004, 502, 0, 10636, 10635, 1, 0, 0, 0, 10636, 10637, 1, 0, 0, 0, 10637, - 10638, 1, 0, 0, 0, 10638, 10639, 5, 3, 0, 0, 10639, 10640, 3, 1410, 705, - 0, 10640, 10642, 1, 0, 0, 0, 10641, 10632, 1, 0, 0, 0, 10641, 10633, 1, - 0, 0, 0, 10642, 10662, 1, 0, 0, 0, 10643, 10644, 3, 1130, 565, 0, 10644, - 10645, 3, 1410, 705, 0, 10645, 10662, 1, 0, 0, 0, 10646, 10656, 3, 1158, - 579, 0, 10647, 10649, 3, 1410, 705, 0, 10648, 10650, 3, 1162, 581, 0, 10649, - 10648, 1, 0, 0, 0, 10649, 10650, 1, 0, 0, 0, 10650, 10657, 1, 0, 0, 0, - 10651, 10652, 5, 2, 0, 0, 10652, 10653, 3, 1408, 704, 0, 10653, 10654, - 5, 3, 0, 0, 10654, 10655, 3, 1410, 705, 0, 10655, 10657, 1, 0, 0, 0, 10656, - 10647, 1, 0, 0, 0, 10656, 10651, 1, 0, 0, 0, 10657, 10662, 1, 0, 0, 0, - 10658, 10662, 5, 96, 0, 0, 10659, 10662, 5, 60, 0, 0, 10660, 10662, 5, - 78, 0, 0, 10661, 10626, 1, 0, 0, 0, 10661, 10627, 1, 0, 0, 0, 10661, 10628, - 1, 0, 0, 0, 10661, 10629, 1, 0, 0, 0, 10661, 10630, 1, 0, 0, 0, 10661, - 10631, 1, 0, 0, 0, 10661, 10643, 1, 0, 0, 0, 10661, 10646, 1, 0, 0, 0, - 10661, 10658, 1, 0, 0, 0, 10661, 10659, 1, 0, 0, 0, 10661, 10660, 1, 0, - 0, 0, 10662, 1401, 1, 0, 0, 0, 10663, 10664, 5, 682, 0, 0, 10664, 1403, - 1, 0, 0, 0, 10665, 10666, 5, 678, 0, 0, 10666, 1405, 1, 0, 0, 0, 10667, - 10668, 5, 688, 0, 0, 10668, 1407, 1, 0, 0, 0, 10669, 10670, 5, 686, 0, - 0, 10670, 1409, 1, 0, 0, 0, 10671, 10673, 3, 1412, 706, 0, 10672, 10674, - 3, 1414, 707, 0, 10673, 10672, 1, 0, 0, 0, 10673, 10674, 1, 0, 0, 0, 10674, - 1411, 1, 0, 0, 0, 10675, 10687, 5, 673, 0, 0, 10676, 10687, 5, 675, 0, - 0, 10677, 10681, 5, 677, 0, 0, 10678, 10680, 5, 705, 0, 0, 10679, 10678, - 1, 0, 0, 0, 10680, 10683, 1, 0, 0, 0, 10681, 10679, 1, 0, 0, 0, 10681, - 10682, 1, 0, 0, 0, 10682, 10684, 1, 0, 0, 0, 10683, 10681, 1, 0, 0, 0, - 10684, 10687, 5, 706, 0, 0, 10685, 10687, 5, 699, 0, 0, 10686, 10675, 1, - 0, 0, 0, 10686, 10676, 1, 0, 0, 0, 10686, 10677, 1, 0, 0, 0, 10686, 10685, - 1, 0, 0, 0, 10687, 1413, 1, 0, 0, 0, 10688, 10689, 5, 508, 0, 0, 10689, - 10690, 3, 1412, 706, 0, 10690, 1415, 1, 0, 0, 0, 10691, 10697, 3, 1408, - 704, 0, 10692, 10693, 5, 12, 0, 0, 10693, 10697, 3, 1408, 704, 0, 10694, - 10695, 5, 13, 0, 0, 10695, 10697, 3, 1408, 704, 0, 10696, 10691, 1, 0, - 0, 0, 10696, 10692, 1, 0, 0, 0, 10696, 10694, 1, 0, 0, 0, 10697, 1417, - 1, 0, 0, 0, 10698, 10699, 3, 1420, 710, 0, 10699, 1419, 1, 0, 0, 0, 10700, - 10704, 3, 1430, 715, 0, 10701, 10704, 5, 52, 0, 0, 10702, 10704, 5, 89, - 0, 0, 10703, 10700, 1, 0, 0, 0, 10703, 10701, 1, 0, 0, 0, 10703, 10702, - 1, 0, 0, 0, 10704, 1421, 1, 0, 0, 0, 10705, 10710, 3, 1420, 710, 0, 10706, - 10707, 5, 6, 0, 0, 10707, 10709, 3, 1420, 710, 0, 10708, 10706, 1, 0, 0, - 0, 10709, 10712, 1, 0, 0, 0, 10710, 10708, 1, 0, 0, 0, 10710, 10711, 1, - 0, 0, 0, 10711, 1423, 1, 0, 0, 0, 10712, 10710, 1, 0, 0, 0, 10713, 10720, - 3, 1434, 717, 0, 10714, 10720, 3, 1438, 719, 0, 10715, 10720, 3, 1440, - 720, 0, 10716, 10720, 3, 1660, 830, 0, 10717, 10720, 5, 138, 0, 0, 10718, - 10720, 5, 145, 0, 0, 10719, 10713, 1, 0, 0, 0, 10719, 10714, 1, 0, 0, 0, - 10719, 10715, 1, 0, 0, 0, 10719, 10716, 1, 0, 0, 0, 10719, 10717, 1, 0, - 0, 0, 10719, 10718, 1, 0, 0, 0, 10720, 1425, 1, 0, 0, 0, 10721, 10726, - 3, 1434, 717, 0, 10722, 10726, 3, 1438, 719, 0, 10723, 10726, 3, 1440, - 720, 0, 10724, 10726, 3, 1660, 830, 0, 10725, 10721, 1, 0, 0, 0, 10725, - 10722, 1, 0, 0, 0, 10725, 10723, 1, 0, 0, 0, 10725, 10724, 1, 0, 0, 0, - 10726, 1427, 1, 0, 0, 0, 10727, 10732, 3, 1434, 717, 0, 10728, 10732, 3, - 1438, 719, 0, 10729, 10732, 3, 1660, 830, 0, 10730, 10732, 3, 1442, 721, - 0, 10731, 10727, 1, 0, 0, 0, 10731, 10728, 1, 0, 0, 0, 10731, 10729, 1, - 0, 0, 0, 10731, 10730, 1, 0, 0, 0, 10732, 1429, 1, 0, 0, 0, 10733, 10738, - 3, 1434, 717, 0, 10734, 10738, 3, 1438, 719, 0, 10735, 10738, 3, 1440, - 720, 0, 10736, 10738, 3, 1442, 721, 0, 10737, 10733, 1, 0, 0, 0, 10737, - 10734, 1, 0, 0, 0, 10737, 10735, 1, 0, 0, 0, 10737, 10736, 1, 0, 0, 0, - 10738, 1431, 1, 0, 0, 0, 10739, 10746, 3, 1434, 717, 0, 10740, 10746, 3, - 1660, 830, 0, 10741, 10746, 3, 1438, 719, 0, 10742, 10746, 3, 1440, 720, - 0, 10743, 10746, 3, 1442, 721, 0, 10744, 10746, 3, 1444, 722, 0, 10745, - 10739, 1, 0, 0, 0, 10745, 10740, 1, 0, 0, 0, 10745, 10741, 1, 0, 0, 0, - 10745, 10742, 1, 0, 0, 0, 10745, 10743, 1, 0, 0, 0, 10745, 10744, 1, 0, - 0, 0, 10746, 1433, 1, 0, 0, 0, 10747, 10749, 5, 664, 0, 0, 10748, 10750, - 3, 1414, 707, 0, 10749, 10748, 1, 0, 0, 0, 10749, 10750, 1, 0, 0, 0, 10750, - 10757, 1, 0, 0, 0, 10751, 10757, 5, 665, 0, 0, 10752, 10757, 5, 669, 0, - 0, 10753, 10757, 3, 1214, 607, 0, 10754, 10757, 3, 1436, 718, 0, 10755, - 10757, 3, 1660, 830, 0, 10756, 10747, 1, 0, 0, 0, 10756, 10751, 1, 0, 0, - 0, 10756, 10752, 1, 0, 0, 0, 10756, 10753, 1, 0, 0, 0, 10756, 10754, 1, - 0, 0, 0, 10756, 10755, 1, 0, 0, 0, 10757, 1435, 1, 0, 0, 0, 10758, 10759, - 5, 690, 0, 0, 10759, 1437, 1, 0, 0, 0, 10760, 10761, 7, 66, 0, 0, 10761, - 1439, 1, 0, 0, 0, 10762, 10819, 5, 400, 0, 0, 10763, 10819, 5, 401, 0, - 0, 10764, 10819, 3, 1140, 570, 0, 10765, 10819, 5, 403, 0, 0, 10766, 10819, - 5, 404, 0, 0, 10767, 10819, 3, 1148, 574, 0, 10768, 10819, 5, 406, 0, 0, - 10769, 10819, 5, 407, 0, 0, 10770, 10819, 5, 408, 0, 0, 10771, 10819, 5, - 409, 0, 0, 10772, 10819, 5, 410, 0, 0, 10773, 10819, 5, 411, 0, 0, 10774, - 10819, 5, 412, 0, 0, 10775, 10819, 5, 491, 0, 0, 10776, 10819, 5, 413, - 0, 0, 10777, 10819, 5, 414, 0, 0, 10778, 10819, 5, 415, 0, 0, 10779, 10819, - 5, 416, 0, 0, 10780, 10819, 5, 107, 0, 0, 10781, 10819, 5, 662, 0, 0, 10782, - 10819, 5, 106, 0, 0, 10783, 10819, 5, 663, 0, 0, 10784, 10819, 5, 417, - 0, 0, 10785, 10819, 5, 418, 0, 0, 10786, 10819, 5, 419, 0, 0, 10787, 10819, - 5, 420, 0, 0, 10788, 10819, 5, 510, 0, 0, 10789, 10819, 5, 421, 0, 0, 10790, - 10819, 3, 1136, 568, 0, 10791, 10819, 5, 474, 0, 0, 10792, 10819, 5, 423, - 0, 0, 10793, 10819, 5, 425, 0, 0, 10794, 10819, 5, 426, 0, 0, 10795, 10819, - 5, 427, 0, 0, 10796, 10819, 5, 428, 0, 0, 10797, 10819, 5, 429, 0, 0, 10798, - 10819, 5, 430, 0, 0, 10799, 10819, 5, 431, 0, 0, 10800, 10819, 5, 432, - 0, 0, 10801, 10819, 5, 433, 0, 0, 10802, 10819, 5, 434, 0, 0, 10803, 10819, - 5, 435, 0, 0, 10804, 10819, 5, 436, 0, 0, 10805, 10819, 5, 437, 0, 0, 10806, - 10819, 5, 438, 0, 0, 10807, 10819, 5, 446, 0, 0, 10808, 10819, 5, 447, - 0, 0, 10809, 10819, 5, 448, 0, 0, 10810, 10819, 5, 449, 0, 0, 10811, 10819, - 5, 497, 0, 0, 10812, 10819, 5, 450, 0, 0, 10813, 10819, 5, 451, 0, 0, 10814, - 10819, 5, 452, 0, 0, 10815, 10819, 5, 453, 0, 0, 10816, 10819, 5, 495, - 0, 0, 10817, 10819, 3, 1446, 723, 0, 10818, 10762, 1, 0, 0, 0, 10818, 10763, - 1, 0, 0, 0, 10818, 10764, 1, 0, 0, 0, 10818, 10765, 1, 0, 0, 0, 10818, - 10766, 1, 0, 0, 0, 10818, 10767, 1, 0, 0, 0, 10818, 10768, 1, 0, 0, 0, - 10818, 10769, 1, 0, 0, 0, 10818, 10770, 1, 0, 0, 0, 10818, 10771, 1, 0, - 0, 0, 10818, 10772, 1, 0, 0, 0, 10818, 10773, 1, 0, 0, 0, 10818, 10774, - 1, 0, 0, 0, 10818, 10775, 1, 0, 0, 0, 10818, 10776, 1, 0, 0, 0, 10818, - 10777, 1, 0, 0, 0, 10818, 10778, 1, 0, 0, 0, 10818, 10779, 1, 0, 0, 0, - 10818, 10780, 1, 0, 0, 0, 10818, 10781, 1, 0, 0, 0, 10818, 10782, 1, 0, - 0, 0, 10818, 10783, 1, 0, 0, 0, 10818, 10784, 1, 0, 0, 0, 10818, 10785, - 1, 0, 0, 0, 10818, 10786, 1, 0, 0, 0, 10818, 10787, 1, 0, 0, 0, 10818, - 10788, 1, 0, 0, 0, 10818, 10789, 1, 0, 0, 0, 10818, 10790, 1, 0, 0, 0, - 10818, 10791, 1, 0, 0, 0, 10818, 10792, 1, 0, 0, 0, 10818, 10793, 1, 0, - 0, 0, 10818, 10794, 1, 0, 0, 0, 10818, 10795, 1, 0, 0, 0, 10818, 10796, - 1, 0, 0, 0, 10818, 10797, 1, 0, 0, 0, 10818, 10798, 1, 0, 0, 0, 10818, - 10799, 1, 0, 0, 0, 10818, 10800, 1, 0, 0, 0, 10818, 10801, 1, 0, 0, 0, - 10818, 10802, 1, 0, 0, 0, 10818, 10803, 1, 0, 0, 0, 10818, 10804, 1, 0, - 0, 0, 10818, 10805, 1, 0, 0, 0, 10818, 10806, 1, 0, 0, 0, 10818, 10807, - 1, 0, 0, 0, 10818, 10808, 1, 0, 0, 0, 10818, 10809, 1, 0, 0, 0, 10818, - 10810, 1, 0, 0, 0, 10818, 10811, 1, 0, 0, 0, 10818, 10812, 1, 0, 0, 0, - 10818, 10813, 1, 0, 0, 0, 10818, 10814, 1, 0, 0, 0, 10818, 10815, 1, 0, - 0, 0, 10818, 10816, 1, 0, 0, 0, 10818, 10817, 1, 0, 0, 0, 10819, 1441, - 1, 0, 0, 0, 10820, 10821, 7, 67, 0, 0, 10821, 1443, 1, 0, 0, 0, 10822, - 10823, 7, 68, 0, 0, 10823, 1445, 1, 0, 0, 0, 10824, 10825, 7, 69, 0, 0, - 10825, 1447, 1, 0, 0, 0, 10826, 10827, 3, 1450, 725, 0, 10827, 10829, 3, - 1460, 730, 0, 10828, 10830, 3, 1458, 729, 0, 10829, 10828, 1, 0, 0, 0, - 10829, 10830, 1, 0, 0, 0, 10830, 1449, 1, 0, 0, 0, 10831, 10833, 3, 1452, - 726, 0, 10832, 10831, 1, 0, 0, 0, 10833, 10836, 1, 0, 0, 0, 10834, 10832, - 1, 0, 0, 0, 10834, 10835, 1, 0, 0, 0, 10835, 1451, 1, 0, 0, 0, 10836, 10834, - 1, 0, 0, 0, 10837, 10838, 3, 1454, 727, 0, 10838, 10839, 5, 291, 0, 0, - 10839, 10840, 5, 511, 0, 0, 10840, 10858, 1, 0, 0, 0, 10841, 10842, 3, - 1454, 727, 0, 10842, 10843, 5, 512, 0, 0, 10843, 10844, 3, 1456, 728, 0, - 10844, 10858, 1, 0, 0, 0, 10845, 10846, 3, 1454, 727, 0, 10846, 10847, - 5, 513, 0, 0, 10847, 10848, 5, 514, 0, 0, 10848, 10858, 1, 0, 0, 0, 10849, - 10850, 3, 1454, 727, 0, 10850, 10851, 5, 513, 0, 0, 10851, 10852, 5, 515, - 0, 0, 10852, 10858, 1, 0, 0, 0, 10853, 10854, 3, 1454, 727, 0, 10854, 10855, - 5, 513, 0, 0, 10855, 10856, 5, 516, 0, 0, 10856, 10858, 1, 0, 0, 0, 10857, - 10837, 1, 0, 0, 0, 10857, 10841, 1, 0, 0, 0, 10857, 10845, 1, 0, 0, 0, - 10857, 10849, 1, 0, 0, 0, 10857, 10853, 1, 0, 0, 0, 10858, 1453, 1, 0, - 0, 0, 10859, 10860, 5, 29, 0, 0, 10860, 1455, 1, 0, 0, 0, 10861, 10866, - 3, 1410, 705, 0, 10862, 10866, 3, 1444, 722, 0, 10863, 10866, 3, 1660, - 830, 0, 10864, 10866, 3, 1438, 719, 0, 10865, 10861, 1, 0, 0, 0, 10865, - 10862, 1, 0, 0, 0, 10865, 10863, 1, 0, 0, 0, 10865, 10864, 1, 0, 0, 0, - 10866, 1457, 1, 0, 0, 0, 10867, 10868, 5, 7, 0, 0, 10868, 1459, 1, 0, 0, - 0, 10869, 10870, 3, 1462, 731, 0, 10870, 10871, 5, 165, 0, 0, 10871, 10873, - 3, 1504, 752, 0, 10872, 10874, 3, 1640, 820, 0, 10873, 10872, 1, 0, 0, - 0, 10873, 10874, 1, 0, 0, 0, 10874, 10875, 1, 0, 0, 0, 10875, 10877, 5, - 475, 0, 0, 10876, 10878, 3, 1654, 827, 0, 10877, 10876, 1, 0, 0, 0, 10877, - 10878, 1, 0, 0, 0, 10878, 1461, 1, 0, 0, 0, 10879, 10881, 3, 1650, 825, - 0, 10880, 10879, 1, 0, 0, 0, 10880, 10881, 1, 0, 0, 0, 10881, 10886, 1, - 0, 0, 0, 10882, 10884, 3, 1464, 732, 0, 10883, 10885, 3, 1466, 733, 0, - 10884, 10883, 1, 0, 0, 0, 10884, 10885, 1, 0, 0, 0, 10885, 10887, 1, 0, - 0, 0, 10886, 10882, 1, 0, 0, 0, 10886, 10887, 1, 0, 0, 0, 10887, 1463, - 1, 0, 0, 0, 10888, 10889, 5, 197, 0, 0, 10889, 1465, 1, 0, 0, 0, 10890, - 10892, 3, 1470, 735, 0, 10891, 10890, 1, 0, 0, 0, 10892, 10893, 1, 0, 0, - 0, 10893, 10891, 1, 0, 0, 0, 10893, 10894, 1, 0, 0, 0, 10894, 1467, 1, - 0, 0, 0, 10895, 10896, 5, 18, 0, 0, 10896, 10897, 3, 1658, 829, 0, 10897, - 10898, 5, 19, 0, 0, 10898, 1469, 1, 0, 0, 0, 10899, 10903, 3, 1472, 736, - 0, 10900, 10903, 5, 197, 0, 0, 10901, 10903, 3, 1468, 734, 0, 10902, 10899, - 1, 0, 0, 0, 10902, 10900, 1, 0, 0, 0, 10902, 10901, 1, 0, 0, 0, 10903, - 1471, 1, 0, 0, 0, 10904, 10931, 3, 1488, 744, 0, 10905, 10906, 5, 517, - 0, 0, 10906, 10907, 5, 62, 0, 0, 10907, 10932, 3, 1486, 743, 0, 10908, - 10910, 3, 1490, 745, 0, 10909, 10908, 1, 0, 0, 0, 10909, 10910, 1, 0, 0, - 0, 10910, 10911, 1, 0, 0, 0, 10911, 10913, 3, 1492, 746, 0, 10912, 10914, - 3, 1494, 747, 0, 10913, 10912, 1, 0, 0, 0, 10913, 10914, 1, 0, 0, 0, 10914, - 10916, 1, 0, 0, 0, 10915, 10917, 3, 1496, 748, 0, 10916, 10915, 1, 0, 0, - 0, 10916, 10917, 1, 0, 0, 0, 10917, 10919, 1, 0, 0, 0, 10918, 10920, 3, - 1498, 749, 0, 10919, 10918, 1, 0, 0, 0, 10919, 10920, 1, 0, 0, 0, 10920, - 10932, 1, 0, 0, 0, 10921, 10923, 3, 1474, 737, 0, 10922, 10921, 1, 0, 0, - 0, 10922, 10923, 1, 0, 0, 0, 10923, 10924, 1, 0, 0, 0, 10924, 10926, 5, - 191, 0, 0, 10925, 10927, 3, 1478, 739, 0, 10926, 10925, 1, 0, 0, 0, 10926, - 10927, 1, 0, 0, 0, 10927, 10928, 1, 0, 0, 0, 10928, 10929, 3, 1484, 742, - 0, 10929, 10930, 3, 1476, 738, 0, 10930, 10932, 1, 0, 0, 0, 10931, 10905, - 1, 0, 0, 0, 10931, 10909, 1, 0, 0, 0, 10931, 10922, 1, 0, 0, 0, 10932, - 10933, 1, 0, 0, 0, 10933, 10934, 5, 7, 0, 0, 10934, 1473, 1, 0, 0, 0, 10935, - 10936, 5, 281, 0, 0, 10936, 10939, 5, 336, 0, 0, 10937, 10939, 5, 336, - 0, 0, 10938, 10935, 1, 0, 0, 0, 10938, 10937, 1, 0, 0, 0, 10939, 1475, - 1, 0, 0, 0, 10940, 10941, 3, 968, 484, 0, 10941, 1477, 1, 0, 0, 0, 10942, - 10943, 5, 2, 0, 0, 10943, 10944, 3, 1480, 740, 0, 10944, 10945, 5, 3, 0, - 0, 10945, 1479, 1, 0, 0, 0, 10946, 10951, 3, 1482, 741, 0, 10947, 10948, - 5, 6, 0, 0, 10948, 10950, 3, 1482, 741, 0, 10949, 10947, 1, 0, 0, 0, 10950, - 10953, 1, 0, 0, 0, 10951, 10949, 1, 0, 0, 0, 10951, 10952, 1, 0, 0, 0, - 10952, 1481, 1, 0, 0, 0, 10953, 10951, 1, 0, 0, 0, 10954, 10955, 3, 1488, - 744, 0, 10955, 10956, 3, 1492, 746, 0, 10956, 1483, 1, 0, 0, 0, 10957, - 10958, 7, 70, 0, 0, 10958, 1485, 1, 0, 0, 0, 10959, 10962, 5, 28, 0, 0, - 10960, 10962, 3, 1424, 712, 0, 10961, 10959, 1, 0, 0, 0, 10961, 10960, - 1, 0, 0, 0, 10962, 1487, 1, 0, 0, 0, 10963, 10964, 3, 1658, 829, 0, 10964, - 1489, 1, 0, 0, 0, 10965, 10966, 5, 518, 0, 0, 10966, 1491, 1, 0, 0, 0, - 10967, 10968, 3, 1124, 562, 0, 10968, 1493, 1, 0, 0, 0, 10969, 10970, 5, - 43, 0, 0, 10970, 10971, 3, 526, 263, 0, 10971, 1495, 1, 0, 0, 0, 10972, - 10973, 5, 77, 0, 0, 10973, 10974, 5, 78, 0, 0, 10974, 1497, 1, 0, 0, 0, - 10975, 10976, 3, 1500, 750, 0, 10976, 10977, 3, 1662, 831, 0, 10977, 1499, - 1, 0, 0, 0, 10978, 10981, 3, 1502, 751, 0, 10979, 10981, 5, 53, 0, 0, 10980, - 10978, 1, 0, 0, 0, 10980, 10979, 1, 0, 0, 0, 10981, 1501, 1, 0, 0, 0, 10982, - 10983, 7, 71, 0, 0, 10983, 1503, 1, 0, 0, 0, 10984, 10986, 3, 1506, 753, - 0, 10985, 10984, 1, 0, 0, 0, 10986, 10989, 1, 0, 0, 0, 10987, 10985, 1, - 0, 0, 0, 10987, 10988, 1, 0, 0, 0, 10988, 1505, 1, 0, 0, 0, 10989, 10987, - 1, 0, 0, 0, 10990, 10991, 3, 1460, 730, 0, 10991, 10992, 5, 7, 0, 0, 10992, - 11018, 1, 0, 0, 0, 10993, 11018, 3, 1572, 786, 0, 10994, 11018, 3, 1576, - 788, 0, 10995, 11018, 3, 1514, 757, 0, 10996, 11018, 3, 1530, 765, 0, 10997, - 11018, 3, 1536, 768, 0, 10998, 11018, 3, 1546, 773, 0, 10999, 11018, 3, - 1548, 774, 0, 11000, 11018, 3, 1550, 775, 0, 11001, 11018, 3, 1564, 782, - 0, 11002, 11018, 3, 1568, 784, 0, 11003, 11018, 3, 1588, 794, 0, 11004, - 11018, 3, 1594, 797, 0, 11005, 11018, 3, 1596, 798, 0, 11006, 11018, 3, - 1508, 754, 0, 11007, 11018, 3, 1510, 755, 0, 11008, 11018, 3, 1516, 758, - 0, 11009, 11018, 3, 1604, 802, 0, 11010, 11018, 3, 1616, 808, 0, 11011, - 11018, 3, 1624, 812, 0, 11012, 11018, 3, 1626, 813, 0, 11013, 11018, 3, - 1628, 814, 0, 11014, 11018, 3, 1630, 815, 0, 11015, 11018, 3, 1632, 816, - 0, 11016, 11018, 3, 1636, 818, 0, 11017, 10990, 1, 0, 0, 0, 11017, 10993, - 1, 0, 0, 0, 11017, 10994, 1, 0, 0, 0, 11017, 10995, 1, 0, 0, 0, 11017, - 10996, 1, 0, 0, 0, 11017, 10997, 1, 0, 0, 0, 11017, 10998, 1, 0, 0, 0, - 11017, 10999, 1, 0, 0, 0, 11017, 11000, 1, 0, 0, 0, 11017, 11001, 1, 0, - 0, 0, 11017, 11002, 1, 0, 0, 0, 11017, 11003, 1, 0, 0, 0, 11017, 11004, - 1, 0, 0, 0, 11017, 11005, 1, 0, 0, 0, 11017, 11006, 1, 0, 0, 0, 11017, - 11007, 1, 0, 0, 0, 11017, 11008, 1, 0, 0, 0, 11017, 11009, 1, 0, 0, 0, - 11017, 11010, 1, 0, 0, 0, 11017, 11011, 1, 0, 0, 0, 11017, 11012, 1, 0, - 0, 0, 11017, 11013, 1, 0, 0, 0, 11017, 11014, 1, 0, 0, 0, 11017, 11015, - 1, 0, 0, 0, 11017, 11016, 1, 0, 0, 0, 11018, 1507, 1, 0, 0, 0, 11019, 11020, - 5, 519, 0, 0, 11020, 11021, 3, 1666, 833, 0, 11021, 11022, 5, 7, 0, 0, - 11022, 1509, 1, 0, 0, 0, 11023, 11024, 5, 454, 0, 0, 11024, 11025, 3, 1658, - 829, 0, 11025, 11027, 5, 2, 0, 0, 11026, 11028, 3, 1512, 756, 0, 11027, - 11026, 1, 0, 0, 0, 11027, 11028, 1, 0, 0, 0, 11028, 11029, 1, 0, 0, 0, - 11029, 11030, 5, 3, 0, 0, 11030, 11031, 5, 7, 0, 0, 11031, 11042, 1, 0, - 0, 0, 11032, 11033, 5, 57, 0, 0, 11033, 11034, 3, 1658, 829, 0, 11034, - 11036, 5, 2, 0, 0, 11035, 11037, 3, 1512, 756, 0, 11036, 11035, 1, 0, 0, - 0, 11036, 11037, 1, 0, 0, 0, 11037, 11038, 1, 0, 0, 0, 11038, 11039, 5, - 3, 0, 0, 11039, 11040, 5, 7, 0, 0, 11040, 11042, 1, 0, 0, 0, 11041, 11023, - 1, 0, 0, 0, 11041, 11032, 1, 0, 0, 0, 11042, 1511, 1, 0, 0, 0, 11043, 11044, - 3, 1330, 665, 0, 11044, 1513, 1, 0, 0, 0, 11045, 11046, 3, 1528, 764, 0, - 11046, 11047, 3, 1502, 751, 0, 11047, 11048, 3, 1662, 831, 0, 11048, 11049, - 5, 7, 0, 0, 11049, 1515, 1, 0, 0, 0, 11050, 11052, 5, 520, 0, 0, 11051, - 11053, 3, 1518, 759, 0, 11052, 11051, 1, 0, 0, 0, 11052, 11053, 1, 0, 0, - 0, 11053, 11054, 1, 0, 0, 0, 11054, 11055, 5, 521, 0, 0, 11055, 11056, - 3, 1520, 760, 0, 11056, 11057, 5, 7, 0, 0, 11057, 1517, 1, 0, 0, 0, 11058, - 11059, 7, 72, 0, 0, 11059, 1519, 1, 0, 0, 0, 11060, 11065, 3, 1522, 761, - 0, 11061, 11062, 5, 6, 0, 0, 11062, 11064, 3, 1522, 761, 0, 11063, 11061, - 1, 0, 0, 0, 11064, 11067, 1, 0, 0, 0, 11065, 11063, 1, 0, 0, 0, 11065, - 11066, 1, 0, 0, 0, 11066, 1521, 1, 0, 0, 0, 11067, 11065, 1, 0, 0, 0, 11068, - 11069, 3, 1526, 763, 0, 11069, 11070, 3, 1502, 751, 0, 11070, 11071, 3, - 1524, 762, 0, 11071, 1523, 1, 0, 0, 0, 11072, 11073, 3, 1424, 712, 0, 11073, - 1525, 1, 0, 0, 0, 11074, 11075, 3, 1528, 764, 0, 11075, 1527, 1, 0, 0, - 0, 11076, 11079, 3, 526, 263, 0, 11077, 11079, 5, 28, 0, 0, 11078, 11076, - 1, 0, 0, 0, 11078, 11077, 1, 0, 0, 0, 11079, 11086, 1, 0, 0, 0, 11080, - 11081, 5, 4, 0, 0, 11081, 11082, 3, 1668, 834, 0, 11082, 11083, 5, 5, 0, - 0, 11083, 11085, 1, 0, 0, 0, 11084, 11080, 1, 0, 0, 0, 11085, 11088, 1, - 0, 0, 0, 11086, 11084, 1, 0, 0, 0, 11086, 11087, 1, 0, 0, 0, 11087, 1529, - 1, 0, 0, 0, 11088, 11086, 1, 0, 0, 0, 11089, 11090, 5, 239, 0, 0, 11090, - 11091, 3, 1664, 832, 0, 11091, 11092, 5, 93, 0, 0, 11092, 11093, 3, 1504, - 752, 0, 11093, 11095, 3, 1532, 766, 0, 11094, 11096, 3, 1534, 767, 0, 11095, - 11094, 1, 0, 0, 0, 11095, 11096, 1, 0, 0, 0, 11096, 11097, 1, 0, 0, 0, - 11097, 11098, 5, 475, 0, 0, 11098, 11099, 5, 239, 0, 0, 11099, 11100, 5, - 7, 0, 0, 11100, 1531, 1, 0, 0, 0, 11101, 11102, 5, 523, 0, 0, 11102, 11103, - 3, 1168, 584, 0, 11103, 11104, 5, 93, 0, 0, 11104, 11105, 3, 1504, 752, - 0, 11105, 11107, 1, 0, 0, 0, 11106, 11101, 1, 0, 0, 0, 11107, 11110, 1, - 0, 0, 0, 11108, 11106, 1, 0, 0, 0, 11108, 11109, 1, 0, 0, 0, 11109, 1533, - 1, 0, 0, 0, 11110, 11108, 1, 0, 0, 0, 11111, 11112, 5, 58, 0, 0, 11112, - 11113, 3, 1504, 752, 0, 11113, 1535, 1, 0, 0, 0, 11114, 11116, 5, 40, 0, - 0, 11115, 11117, 3, 1538, 769, 0, 11116, 11115, 1, 0, 0, 0, 11116, 11117, - 1, 0, 0, 0, 11117, 11118, 1, 0, 0, 0, 11118, 11120, 3, 1540, 770, 0, 11119, - 11121, 3, 1544, 772, 0, 11120, 11119, 1, 0, 0, 0, 11120, 11121, 1, 0, 0, - 0, 11121, 11122, 1, 0, 0, 0, 11122, 11123, 5, 475, 0, 0, 11123, 11124, - 5, 40, 0, 0, 11124, 11125, 5, 7, 0, 0, 11125, 1537, 1, 0, 0, 0, 11126, - 11127, 3, 1662, 831, 0, 11127, 1539, 1, 0, 0, 0, 11128, 11130, 3, 1542, - 771, 0, 11129, 11128, 1, 0, 0, 0, 11130, 11131, 1, 0, 0, 0, 11131, 11129, - 1, 0, 0, 0, 11131, 11132, 1, 0, 0, 0, 11132, 1541, 1, 0, 0, 0, 11133, 11134, - 5, 102, 0, 0, 11134, 11135, 3, 1330, 665, 0, 11135, 11136, 5, 93, 0, 0, - 11136, 11137, 3, 1504, 752, 0, 11137, 1543, 1, 0, 0, 0, 11138, 11139, 5, - 58, 0, 0, 11139, 11140, 3, 1504, 752, 0, 11140, 1545, 1, 0, 0, 0, 11141, - 11143, 3, 1652, 826, 0, 11142, 11141, 1, 0, 0, 0, 11142, 11143, 1, 0, 0, - 0, 11143, 11144, 1, 0, 0, 0, 11144, 11145, 3, 1592, 796, 0, 11145, 1547, - 1, 0, 0, 0, 11146, 11148, 3, 1652, 826, 0, 11147, 11146, 1, 0, 0, 0, 11147, - 11148, 1, 0, 0, 0, 11148, 11149, 1, 0, 0, 0, 11149, 11150, 5, 524, 0, 0, - 11150, 11151, 3, 1670, 835, 0, 11151, 11152, 3, 1592, 796, 0, 11152, 1549, - 1, 0, 0, 0, 11153, 11155, 3, 1652, 826, 0, 11154, 11153, 1, 0, 0, 0, 11154, - 11155, 1, 0, 0, 0, 11155, 11156, 1, 0, 0, 0, 11156, 11157, 5, 62, 0, 0, - 11157, 11158, 3, 1552, 776, 0, 11158, 11159, 3, 1592, 796, 0, 11159, 1551, - 1, 0, 0, 0, 11160, 11161, 3, 1562, 781, 0, 11161, 11182, 5, 68, 0, 0, 11162, - 11164, 3, 962, 481, 0, 11163, 11165, 3, 1556, 778, 0, 11164, 11163, 1, - 0, 0, 0, 11164, 11165, 1, 0, 0, 0, 11165, 11183, 1, 0, 0, 0, 11166, 11183, - 3, 968, 484, 0, 11167, 11183, 3, 886, 443, 0, 11168, 11169, 5, 221, 0, - 0, 11169, 11171, 3, 1168, 584, 0, 11170, 11172, 3, 1554, 777, 0, 11171, - 11170, 1, 0, 0, 0, 11171, 11172, 1, 0, 0, 0, 11172, 11183, 1, 0, 0, 0, - 11173, 11175, 3, 1558, 779, 0, 11174, 11173, 1, 0, 0, 0, 11174, 11175, - 1, 0, 0, 0, 11175, 11176, 1, 0, 0, 0, 11176, 11177, 3, 1168, 584, 0, 11177, - 11178, 5, 24, 0, 0, 11178, 11180, 3, 1168, 584, 0, 11179, 11181, 3, 1560, - 780, 0, 11180, 11179, 1, 0, 0, 0, 11180, 11181, 1, 0, 0, 0, 11181, 11183, - 1, 0, 0, 0, 11182, 11162, 1, 0, 0, 0, 11182, 11166, 1, 0, 0, 0, 11182, - 11167, 1, 0, 0, 0, 11182, 11168, 1, 0, 0, 0, 11182, 11174, 1, 0, 0, 0, - 11183, 1553, 1, 0, 0, 0, 11184, 11185, 5, 100, 0, 0, 11185, 11186, 3, 1330, - 665, 0, 11186, 1555, 1, 0, 0, 0, 11187, 11188, 5, 2, 0, 0, 11188, 11193, - 3, 1168, 584, 0, 11189, 11190, 5, 6, 0, 0, 11190, 11192, 3, 1168, 584, - 0, 11191, 11189, 1, 0, 0, 0, 11192, 11195, 1, 0, 0, 0, 11193, 11191, 1, - 0, 0, 0, 11193, 11194, 1, 0, 0, 0, 11194, 11196, 1, 0, 0, 0, 11195, 11193, - 1, 0, 0, 0, 11196, 11197, 5, 3, 0, 0, 11197, 1557, 1, 0, 0, 0, 11198, 11199, - 5, 525, 0, 0, 11199, 1559, 1, 0, 0, 0, 11200, 11201, 5, 166, 0, 0, 11201, - 11202, 3, 1168, 584, 0, 11202, 1561, 1, 0, 0, 0, 11203, 11204, 3, 524, - 262, 0, 11204, 1563, 1, 0, 0, 0, 11205, 11207, 3, 1652, 826, 0, 11206, - 11205, 1, 0, 0, 0, 11206, 11207, 1, 0, 0, 0, 11207, 11208, 1, 0, 0, 0, - 11208, 11209, 5, 526, 0, 0, 11209, 11211, 3, 1562, 781, 0, 11210, 11212, - 3, 1566, 783, 0, 11211, 11210, 1, 0, 0, 0, 11211, 11212, 1, 0, 0, 0, 11212, - 11213, 1, 0, 0, 0, 11213, 11214, 5, 68, 0, 0, 11214, 11215, 5, 35, 0, 0, - 11215, 11216, 3, 1168, 584, 0, 11216, 11217, 3, 1592, 796, 0, 11217, 1565, - 1, 0, 0, 0, 11218, 11219, 5, 527, 0, 0, 11219, 11220, 3, 1408, 704, 0, - 11220, 1567, 1, 0, 0, 0, 11221, 11223, 3, 1570, 785, 0, 11222, 11224, 3, - 1654, 827, 0, 11223, 11222, 1, 0, 0, 0, 11223, 11224, 1, 0, 0, 0, 11224, - 11226, 1, 0, 0, 0, 11225, 11227, 3, 1656, 828, 0, 11226, 11225, 1, 0, 0, - 0, 11226, 11227, 1, 0, 0, 0, 11227, 11228, 1, 0, 0, 0, 11228, 11229, 5, - 7, 0, 0, 11229, 1569, 1, 0, 0, 0, 11230, 11231, 7, 73, 0, 0, 11231, 1571, - 1, 0, 0, 0, 11232, 11247, 5, 529, 0, 0, 11233, 11234, 5, 280, 0, 0, 11234, - 11248, 3, 1662, 831, 0, 11235, 11242, 5, 530, 0, 0, 11236, 11237, 5, 221, - 0, 0, 11237, 11239, 3, 1168, 584, 0, 11238, 11240, 3, 1554, 777, 0, 11239, - 11238, 1, 0, 0, 0, 11239, 11240, 1, 0, 0, 0, 11240, 11243, 1, 0, 0, 0, - 11241, 11243, 3, 968, 484, 0, 11242, 11236, 1, 0, 0, 0, 11242, 11241, 1, - 0, 0, 0, 11243, 11248, 1, 0, 0, 0, 11244, 11246, 3, 1574, 787, 0, 11245, - 11244, 1, 0, 0, 0, 11245, 11246, 1, 0, 0, 0, 11246, 11248, 1, 0, 0, 0, - 11247, 11233, 1, 0, 0, 0, 11247, 11235, 1, 0, 0, 0, 11247, 11245, 1, 0, - 0, 0, 11248, 11249, 1, 0, 0, 0, 11249, 11250, 5, 7, 0, 0, 11250, 1573, - 1, 0, 0, 0, 11251, 11252, 3, 1662, 831, 0, 11252, 1575, 1, 0, 0, 0, 11253, - 11255, 5, 531, 0, 0, 11254, 11256, 3, 1578, 789, 0, 11255, 11254, 1, 0, - 0, 0, 11255, 11256, 1, 0, 0, 0, 11256, 11257, 1, 0, 0, 0, 11257, 11259, - 3, 1410, 705, 0, 11258, 11260, 3, 1580, 790, 0, 11259, 11258, 1, 0, 0, - 0, 11259, 11260, 1, 0, 0, 0, 11260, 11262, 1, 0, 0, 0, 11261, 11263, 3, - 1582, 791, 0, 11262, 11261, 1, 0, 0, 0, 11262, 11263, 1, 0, 0, 0, 11263, - 11264, 1, 0, 0, 0, 11264, 11265, 5, 7, 0, 0, 11265, 11297, 1, 0, 0, 0, - 11266, 11268, 5, 531, 0, 0, 11267, 11269, 3, 1578, 789, 0, 11268, 11267, - 1, 0, 0, 0, 11268, 11269, 1, 0, 0, 0, 11269, 11270, 1, 0, 0, 0, 11270, - 11272, 3, 1434, 717, 0, 11271, 11273, 3, 1582, 791, 0, 11272, 11271, 1, - 0, 0, 0, 11272, 11273, 1, 0, 0, 0, 11273, 11274, 1, 0, 0, 0, 11274, 11275, - 5, 7, 0, 0, 11275, 11297, 1, 0, 0, 0, 11276, 11278, 5, 531, 0, 0, 11277, - 11279, 3, 1578, 789, 0, 11278, 11277, 1, 0, 0, 0, 11278, 11279, 1, 0, 0, - 0, 11279, 11280, 1, 0, 0, 0, 11280, 11281, 5, 532, 0, 0, 11281, 11283, - 3, 1410, 705, 0, 11282, 11284, 3, 1582, 791, 0, 11283, 11282, 1, 0, 0, - 0, 11283, 11284, 1, 0, 0, 0, 11284, 11285, 1, 0, 0, 0, 11285, 11286, 5, - 7, 0, 0, 11286, 11297, 1, 0, 0, 0, 11287, 11289, 5, 531, 0, 0, 11288, 11290, - 3, 1578, 789, 0, 11289, 11288, 1, 0, 0, 0, 11289, 11290, 1, 0, 0, 0, 11290, - 11292, 1, 0, 0, 0, 11291, 11293, 3, 1582, 791, 0, 11292, 11291, 1, 0, 0, - 0, 11292, 11293, 1, 0, 0, 0, 11293, 11294, 1, 0, 0, 0, 11294, 11297, 5, - 7, 0, 0, 11295, 11297, 5, 531, 0, 0, 11296, 11253, 1, 0, 0, 0, 11296, 11266, - 1, 0, 0, 0, 11296, 11276, 1, 0, 0, 0, 11296, 11287, 1, 0, 0, 0, 11296, - 11295, 1, 0, 0, 0, 11297, 1577, 1, 0, 0, 0, 11298, 11299, 7, 74, 0, 0, - 11299, 1579, 1, 0, 0, 0, 11300, 11301, 5, 6, 0, 0, 11301, 11303, 3, 1168, - 584, 0, 11302, 11300, 1, 0, 0, 0, 11303, 11304, 1, 0, 0, 0, 11304, 11302, - 1, 0, 0, 0, 11304, 11305, 1, 0, 0, 0, 11305, 1581, 1, 0, 0, 0, 11306, 11307, - 5, 100, 0, 0, 11307, 11308, 3, 1586, 793, 0, 11308, 1583, 1, 0, 0, 0, 11309, - 11310, 3, 1434, 717, 0, 11310, 11311, 5, 10, 0, 0, 11311, 11312, 3, 1168, - 584, 0, 11312, 1585, 1, 0, 0, 0, 11313, 11318, 3, 1584, 792, 0, 11314, - 11315, 5, 6, 0, 0, 11315, 11317, 3, 1584, 792, 0, 11316, 11314, 1, 0, 0, - 0, 11317, 11320, 1, 0, 0, 0, 11318, 11316, 1, 0, 0, 0, 11318, 11319, 1, - 0, 0, 0, 11319, 1587, 1, 0, 0, 0, 11320, 11318, 1, 0, 0, 0, 11321, 11322, - 5, 539, 0, 0, 11322, 11324, 3, 1662, 831, 0, 11323, 11325, 3, 1590, 795, - 0, 11324, 11323, 1, 0, 0, 0, 11324, 11325, 1, 0, 0, 0, 11325, 11326, 1, - 0, 0, 0, 11326, 11327, 5, 7, 0, 0, 11327, 1589, 1, 0, 0, 0, 11328, 11329, - 5, 6, 0, 0, 11329, 11330, 3, 1662, 831, 0, 11330, 1591, 1, 0, 0, 0, 11331, - 11332, 5, 540, 0, 0, 11332, 11333, 3, 1504, 752, 0, 11333, 11334, 5, 475, - 0, 0, 11334, 11336, 5, 540, 0, 0, 11335, 11337, 3, 1654, 827, 0, 11336, - 11335, 1, 0, 0, 0, 11336, 11337, 1, 0, 0, 0, 11337, 11338, 1, 0, 0, 0, - 11338, 11339, 5, 7, 0, 0, 11339, 1593, 1, 0, 0, 0, 11340, 11341, 3, 1672, - 836, 0, 11341, 11342, 5, 7, 0, 0, 11342, 1595, 1, 0, 0, 0, 11343, 11344, - 5, 221, 0, 0, 11344, 11358, 3, 1168, 584, 0, 11345, 11347, 3, 1602, 801, - 0, 11346, 11345, 1, 0, 0, 0, 11346, 11347, 1, 0, 0, 0, 11347, 11349, 1, - 0, 0, 0, 11348, 11350, 3, 1598, 799, 0, 11349, 11348, 1, 0, 0, 0, 11349, - 11350, 1, 0, 0, 0, 11350, 11359, 1, 0, 0, 0, 11351, 11353, 3, 1598, 799, - 0, 11352, 11351, 1, 0, 0, 0, 11352, 11353, 1, 0, 0, 0, 11353, 11355, 1, - 0, 0, 0, 11354, 11356, 3, 1602, 801, 0, 11355, 11354, 1, 0, 0, 0, 11355, - 11356, 1, 0, 0, 0, 11356, 11359, 1, 0, 0, 0, 11357, 11359, 1, 0, 0, 0, - 11358, 11346, 1, 0, 0, 0, 11358, 11352, 1, 0, 0, 0, 11358, 11357, 1, 0, - 0, 0, 11359, 11360, 1, 0, 0, 0, 11360, 11361, 5, 7, 0, 0, 11361, 1597, - 1, 0, 0, 0, 11362, 11363, 5, 100, 0, 0, 11363, 11364, 3, 1600, 800, 0, - 11364, 1599, 1, 0, 0, 0, 11365, 11370, 3, 1168, 584, 0, 11366, 11367, 5, - 6, 0, 0, 11367, 11369, 3, 1168, 584, 0, 11368, 11366, 1, 0, 0, 0, 11369, - 11372, 1, 0, 0, 0, 11370, 11368, 1, 0, 0, 0, 11370, 11371, 1, 0, 0, 0, - 11371, 1601, 1, 0, 0, 0, 11372, 11370, 1, 0, 0, 0, 11373, 11375, 5, 71, - 0, 0, 11374, 11376, 5, 358, 0, 0, 11375, 11374, 1, 0, 0, 0, 11375, 11376, - 1, 0, 0, 0, 11376, 11377, 1, 0, 0, 0, 11377, 11378, 3, 1618, 809, 0, 11378, - 1603, 1, 0, 0, 0, 11379, 11400, 5, 541, 0, 0, 11380, 11382, 3, 1638, 819, - 0, 11381, 11383, 3, 1612, 806, 0, 11382, 11381, 1, 0, 0, 0, 11382, 11383, - 1, 0, 0, 0, 11383, 11384, 1, 0, 0, 0, 11384, 11391, 5, 62, 0, 0, 11385, - 11392, 3, 968, 484, 0, 11386, 11387, 5, 221, 0, 0, 11387, 11389, 3, 1662, - 831, 0, 11388, 11390, 3, 1610, 805, 0, 11389, 11388, 1, 0, 0, 0, 11389, - 11390, 1, 0, 0, 0, 11390, 11392, 1, 0, 0, 0, 11391, 11385, 1, 0, 0, 0, - 11391, 11386, 1, 0, 0, 0, 11392, 11401, 1, 0, 0, 0, 11393, 11398, 3, 1424, - 712, 0, 11394, 11395, 5, 2, 0, 0, 11395, 11396, 3, 1608, 804, 0, 11396, - 11397, 5, 3, 0, 0, 11397, 11399, 1, 0, 0, 0, 11398, 11394, 1, 0, 0, 0, - 11398, 11399, 1, 0, 0, 0, 11399, 11401, 1, 0, 0, 0, 11400, 11380, 1, 0, - 0, 0, 11400, 11393, 1, 0, 0, 0, 11401, 11402, 1, 0, 0, 0, 11402, 11403, - 5, 7, 0, 0, 11403, 1605, 1, 0, 0, 0, 11404, 11405, 3, 1424, 712, 0, 11405, - 11406, 5, 20, 0, 0, 11406, 11407, 3, 1168, 584, 0, 11407, 11410, 1, 0, - 0, 0, 11408, 11410, 3, 1168, 584, 0, 11409, 11404, 1, 0, 0, 0, 11409, 11408, - 1, 0, 0, 0, 11410, 1607, 1, 0, 0, 0, 11411, 11416, 3, 1606, 803, 0, 11412, - 11413, 5, 6, 0, 0, 11413, 11415, 3, 1606, 803, 0, 11414, 11412, 1, 0, 0, - 0, 11415, 11418, 1, 0, 0, 0, 11416, 11414, 1, 0, 0, 0, 11416, 11417, 1, - 0, 0, 0, 11417, 1609, 1, 0, 0, 0, 11418, 11416, 1, 0, 0, 0, 11419, 11420, - 5, 100, 0, 0, 11420, 11421, 3, 1330, 665, 0, 11421, 1611, 1, 0, 0, 0, 11422, - 11424, 3, 1614, 807, 0, 11423, 11422, 1, 0, 0, 0, 11423, 11424, 1, 0, 0, - 0, 11424, 11425, 1, 0, 0, 0, 11425, 11426, 5, 336, 0, 0, 11426, 1613, 1, - 0, 0, 0, 11427, 11428, 5, 281, 0, 0, 11428, 1615, 1, 0, 0, 0, 11429, 11431, - 5, 61, 0, 0, 11430, 11432, 3, 1622, 811, 0, 11431, 11430, 1, 0, 0, 0, 11431, - 11432, 1, 0, 0, 0, 11432, 11434, 1, 0, 0, 0, 11433, 11435, 3, 1620, 810, - 0, 11434, 11433, 1, 0, 0, 0, 11434, 11435, 1, 0, 0, 0, 11435, 11436, 1, - 0, 0, 0, 11436, 11437, 3, 1638, 819, 0, 11437, 11438, 5, 71, 0, 0, 11438, - 11439, 3, 1618, 809, 0, 11439, 11440, 5, 7, 0, 0, 11440, 1617, 1, 0, 0, - 0, 11441, 11442, 3, 1330, 665, 0, 11442, 1619, 1, 0, 0, 0, 11443, 11444, - 7, 25, 0, 0, 11444, 1621, 1, 0, 0, 0, 11445, 11461, 5, 280, 0, 0, 11446, - 11461, 5, 305, 0, 0, 11447, 11461, 5, 226, 0, 0, 11448, 11461, 5, 259, - 0, 0, 11449, 11450, 5, 149, 0, 0, 11450, 11461, 3, 1168, 584, 0, 11451, - 11452, 5, 319, 0, 0, 11452, 11461, 3, 1168, 584, 0, 11453, 11461, 3, 1168, - 584, 0, 11454, 11461, 5, 30, 0, 0, 11455, 11458, 7, 75, 0, 0, 11456, 11459, - 3, 1168, 584, 0, 11457, 11459, 5, 30, 0, 0, 11458, 11456, 1, 0, 0, 0, 11458, - 11457, 1, 0, 0, 0, 11458, 11459, 1, 0, 0, 0, 11459, 11461, 1, 0, 0, 0, - 11460, 11445, 1, 0, 0, 0, 11460, 11446, 1, 0, 0, 0, 11460, 11447, 1, 0, - 0, 0, 11460, 11448, 1, 0, 0, 0, 11460, 11449, 1, 0, 0, 0, 11460, 11451, - 1, 0, 0, 0, 11460, 11453, 1, 0, 0, 0, 11460, 11454, 1, 0, 0, 0, 11460, - 11455, 1, 0, 0, 0, 11461, 1623, 1, 0, 0, 0, 11462, 11464, 5, 277, 0, 0, - 11463, 11465, 3, 1622, 811, 0, 11464, 11463, 1, 0, 0, 0, 11464, 11465, - 1, 0, 0, 0, 11465, 11466, 1, 0, 0, 0, 11466, 11467, 3, 1638, 819, 0, 11467, - 11468, 5, 7, 0, 0, 11468, 1625, 1, 0, 0, 0, 11469, 11470, 5, 176, 0, 0, - 11470, 11471, 3, 1638, 819, 0, 11471, 11472, 5, 7, 0, 0, 11472, 1627, 1, - 0, 0, 0, 11473, 11474, 5, 78, 0, 0, 11474, 11475, 5, 7, 0, 0, 11475, 1629, - 1, 0, 0, 0, 11476, 11478, 5, 180, 0, 0, 11477, 11479, 3, 1634, 817, 0, - 11478, 11477, 1, 0, 0, 0, 11478, 11479, 1, 0, 0, 0, 11479, 11480, 1, 0, - 0, 0, 11480, 11481, 5, 7, 0, 0, 11481, 1631, 1, 0, 0, 0, 11482, 11484, - 5, 331, 0, 0, 11483, 11485, 3, 1634, 817, 0, 11484, 11483, 1, 0, 0, 0, - 11484, 11485, 1, 0, 0, 0, 11485, 11486, 1, 0, 0, 0, 11486, 11487, 5, 7, - 0, 0, 11487, 1633, 1, 0, 0, 0, 11488, 11490, 5, 33, 0, 0, 11489, 11491, - 5, 281, 0, 0, 11490, 11489, 1, 0, 0, 0, 11490, 11491, 1, 0, 0, 0, 11491, - 11492, 1, 0, 0, 0, 11492, 11493, 5, 172, 0, 0, 11493, 1635, 1, 0, 0, 0, - 11494, 11495, 5, 345, 0, 0, 11495, 11496, 3, 526, 263, 0, 11496, 11497, - 5, 94, 0, 0, 11497, 11498, 5, 53, 0, 0, 11498, 11499, 5, 7, 0, 0, 11499, - 11507, 1, 0, 0, 0, 11500, 11503, 5, 325, 0, 0, 11501, 11504, 3, 526, 263, - 0, 11502, 11504, 5, 30, 0, 0, 11503, 11501, 1, 0, 0, 0, 11503, 11502, 1, - 0, 0, 0, 11504, 11505, 1, 0, 0, 0, 11505, 11507, 5, 7, 0, 0, 11506, 11494, - 1, 0, 0, 0, 11506, 11500, 1, 0, 0, 0, 11507, 1637, 1, 0, 0, 0, 11508, 11511, - 3, 1424, 712, 0, 11509, 11511, 5, 28, 0, 0, 11510, 11508, 1, 0, 0, 0, 11510, - 11509, 1, 0, 0, 0, 11511, 1639, 1, 0, 0, 0, 11512, 11513, 5, 538, 0, 0, - 11513, 11514, 3, 1642, 821, 0, 11514, 1641, 1, 0, 0, 0, 11515, 11517, 3, - 1644, 822, 0, 11516, 11515, 1, 0, 0, 0, 11517, 11518, 1, 0, 0, 0, 11518, - 11516, 1, 0, 0, 0, 11518, 11519, 1, 0, 0, 0, 11519, 1643, 1, 0, 0, 0, 11520, - 11521, 5, 102, 0, 0, 11521, 11522, 3, 1646, 823, 0, 11522, 11523, 5, 93, - 0, 0, 11523, 11524, 3, 1504, 752, 0, 11524, 1645, 1, 0, 0, 0, 11525, 11530, - 3, 1648, 824, 0, 11526, 11527, 5, 82, 0, 0, 11527, 11529, 3, 1648, 824, - 0, 11528, 11526, 1, 0, 0, 0, 11529, 11532, 1, 0, 0, 0, 11530, 11528, 1, - 0, 0, 0, 11530, 11531, 1, 0, 0, 0, 11531, 1647, 1, 0, 0, 0, 11532, 11530, - 1, 0, 0, 0, 11533, 11537, 3, 1658, 829, 0, 11534, 11535, 5, 532, 0, 0, - 11535, 11537, 3, 1410, 705, 0, 11536, 11533, 1, 0, 0, 0, 11536, 11534, - 1, 0, 0, 0, 11537, 1649, 1, 0, 0, 0, 11538, 11539, 3, 1468, 734, 0, 11539, - 1651, 1, 0, 0, 0, 11540, 11541, 3, 1468, 734, 0, 11541, 1653, 1, 0, 0, - 0, 11542, 11543, 3, 1658, 829, 0, 11543, 1655, 1, 0, 0, 0, 11544, 11545, - 5, 102, 0, 0, 11545, 11546, 3, 1666, 833, 0, 11546, 1657, 1, 0, 0, 0, 11547, - 11550, 3, 1424, 712, 0, 11548, 11550, 3, 1660, 830, 0, 11549, 11547, 1, - 0, 0, 0, 11549, 11548, 1, 0, 0, 0, 11550, 1659, 1, 0, 0, 0, 11551, 11552, - 7, 76, 0, 0, 11552, 1661, 1, 0, 0, 0, 11553, 11555, 3, 1000, 500, 0, 11554, - 11553, 1, 0, 0, 0, 11554, 11555, 1, 0, 0, 0, 11555, 11556, 1, 0, 0, 0, - 11556, 11558, 3, 1378, 689, 0, 11557, 11559, 3, 1062, 531, 0, 11558, 11557, - 1, 0, 0, 0, 11558, 11559, 1, 0, 0, 0, 11559, 11561, 1, 0, 0, 0, 11560, - 11562, 3, 1100, 550, 0, 11561, 11560, 1, 0, 0, 0, 11561, 11562, 1, 0, 0, - 0, 11562, 11564, 1, 0, 0, 0, 11563, 11565, 3, 1032, 516, 0, 11564, 11563, - 1, 0, 0, 0, 11564, 11565, 1, 0, 0, 0, 11565, 11567, 1, 0, 0, 0, 11566, - 11568, 3, 1046, 523, 0, 11567, 11566, 1, 0, 0, 0, 11567, 11568, 1, 0, 0, - 0, 11568, 11570, 1, 0, 0, 0, 11569, 11571, 3, 1290, 645, 0, 11570, 11569, - 1, 0, 0, 0, 11570, 11571, 1, 0, 0, 0, 11571, 11573, 1, 0, 0, 0, 11572, - 11574, 3, 1004, 502, 0, 11573, 11572, 1, 0, 0, 0, 11573, 11574, 1, 0, 0, - 0, 11574, 11576, 1, 0, 0, 0, 11575, 11577, 3, 1014, 507, 0, 11576, 11575, - 1, 0, 0, 0, 11576, 11577, 1, 0, 0, 0, 11577, 11579, 1, 0, 0, 0, 11578, - 11580, 3, 1050, 525, 0, 11579, 11578, 1, 0, 0, 0, 11579, 11580, 1, 0, 0, - 0, 11580, 1663, 1, 0, 0, 0, 11581, 11582, 3, 1662, 831, 0, 11582, 1665, - 1, 0, 0, 0, 11583, 11584, 3, 1662, 831, 0, 11584, 1667, 1, 0, 0, 0, 11585, - 11586, 3, 1168, 584, 0, 11586, 1669, 1, 0, 0, 0, 11587, 11588, 3, 1168, - 584, 0, 11588, 1671, 1, 0, 0, 0, 11589, 11591, 3, 8, 4, 0, 11590, 11592, - 3, 1674, 837, 0, 11591, 11590, 1, 0, 0, 0, 11591, 11592, 1, 0, 0, 0, 11592, - 1673, 1, 0, 0, 0, 11593, 11595, 5, 71, 0, 0, 11594, 11596, 3, 992, 496, - 0, 11595, 11594, 1, 0, 0, 0, 11595, 11596, 1, 0, 0, 0, 11596, 11597, 1, - 0, 0, 0, 11597, 11598, 3, 1618, 809, 0, 11598, 1675, 1, 0, 0, 0, 1167, - 1685, 1689, 1817, 1821, 1830, 1839, 1845, 1851, 1866, 1878, 1884, 1892, - 1903, 1907, 1915, 1923, 1941, 1944, 1949, 1958, 1967, 1971, 1983, 2003, - 2016, 2023, 2031, 2036, 2043, 2049, 2056, 2067, 2071, 2075, 2088, 2092, - 2097, 2102, 2114, 2123, 2136, 2141, 2152, 2158, 2164, 2169, 2180, 2186, - 2192, 2201, 2211, 2226, 2232, 2239, 2244, 2251, 2262, 2286, 2293, 2302, - 2311, 2319, 2329, 2338, 2347, 2355, 2363, 2372, 2381, 2385, 2392, 2400, - 2410, 2416, 2420, 2424, 2428, 2432, 2437, 2440, 2444, 2465, 2471, 2570, - 2577, 2593, 2607, 2617, 2619, 2624, 2628, 2631, 2637, 2639, 2667, 2677, - 2690, 2697, 2703, 2707, 2713, 2718, 2721, 2723, 2728, 2732, 2736, 2740, - 2744, 2747, 2751, 2759, 2763, 2767, 2776, 2783, 2788, 2795, 2800, 2807, - 2812, 2830, 2835, 2847, 2852, 2861, 2868, 2875, 2881, 2886, 2890, 2893, - 2896, 2899, 2902, 2905, 2910, 2913, 2916, 2919, 2922, 2925, 2931, 2935, - 2938, 2941, 2944, 2947, 2949, 2958, 2971, 2979, 2985, 2989, 2994, 3001, - 3008, 3019, 3026, 3029, 3032, 3037, 3040, 3047, 3056, 3063, 3068, 3071, - 3074, 3076, 3080, 3087, 3094, 3104, 3114, 3124, 3130, 3133, 3136, 3143, - 3151, 3154, 3157, 3164, 3168, 3174, 3177, 3180, 3183, 3195, 3198, 3201, - 3205, 3219, 3237, 3248, 3263, 3280, 3282, 3303, 3308, 3311, 3315, 3318, - 3324, 3327, 3329, 3338, 3347, 3366, 3370, 3381, 3390, 3396, 3402, 3406, - 3409, 3412, 3415, 3418, 3424, 3428, 3435, 3441, 3445, 3448, 3451, 3454, - 3462, 3466, 3470, 3476, 3480, 3486, 3500, 3509, 3527, 3532, 3535, 3538, - 3548, 3555, 3560, 3563, 3566, 3573, 3576, 3578, 3584, 3593, 3603, 3608, - 3617, 3626, 3630, 3637, 3647, 3658, 3768, 3776, 3779, 3789, 3794, 3804, - 3815, 3827, 3840, 3850, 3863, 3866, 3873, 3882, 3885, 3892, 3894, 3902, - 3912, 3914, 3922, 3926, 3931, 3942, 3946, 3951, 3961, 3967, 3980, 3986, - 3988, 3995, 4003, 4008, 4023, 4036, 4038, 4042, 4062, 4079, 4082, 4085, - 4088, 4091, 4099, 4102, 4105, 4151, 4154, 4157, 4175, 4182, 4191, 4197, - 4204, 4214, 4222, 4227, 4239, 4256, 4262, 4269, 4277, 4291, 4319, 4326, - 4340, 4355, 4368, 4377, 4402, 4413, 4480, 4491, 4497, 4505, 4516, 4530, - 4539, 4549, 4561, 4576, 4587, 4595, 4605, 4612, 4615, 4621, 4624, 4639, - 4652, 4681, 4688, 4703, 4712, 4723, 4725, 4734, 4745, 4747, 4754, 4769, - 4775, 4783, 4789, 4797, 4807, 4813, 4821, 4827, 4835, 4842, 4851, 4853, - 4878, 4885, 4896, 4902, 4911, 4916, 4922, 4929, 4934, 4938, 4941, 4947, - 5096, 5100, 5105, 5116, 5127, 5138, 5149, 5160, 5171, 5182, 5194, 5205, - 5213, 5220, 5226, 5234, 5239, 5244, 5249, 5255, 5262, 5268, 5274, 5279, - 5285, 5292, 5297, 5303, 5310, 5313, 5326, 5335, 5347, 5349, 5366, 5373, - 5378, 5382, 5386, 5392, 5394, 5456, 5463, 5469, 5476, 5482, 5493, 5496, - 5503, 5506, 5516, 5519, 5521, 5540, 5552, 5561, 5570, 5582, 5584, 5590, - 5594, 5599, 5602, 5607, 5613, 5616, 5619, 5622, 5625, 5641, 5645, 5648, - 5651, 5654, 5657, 5662, 5665, 5667, 5680, 5692, 5706, 5710, 5722, 5724, - 5733, 5742, 5750, 5759, 5761, 5765, 5774, 5779, 5785, 5790, 5794, 5799, - 5805, 5811, 5817, 5823, 5828, 5843, 5852, 5863, 5869, 5908, 5923, 5930, - 5941, 5955, 5963, 5968, 5976, 5984, 5990, 5998, 6004, 6012, 6014, 6020, - 6028, 6030, 6036, 6044, 6046, 6070, 6077, 6087, 6099, 6104, 6117, 6129, - 6141, 6143, 6149, 6154, 6162, 6169, 6214, 6219, 6226, 6231, 6238, 6248, - 6258, 6262, 6273, 6290, 6361, 6556, 6569, 6580, 6593, 6605, 6619, 6651, - 6665, 6777, 6779, 6790, 6801, 6812, 6825, 6837, 6848, 6855, 7076, 7091, - 7102, 7109, 7163, 7304, 7310, 7319, 7327, 7329, 7336, 7342, 7345, 7352, - 7356, 7359, 7364, 7367, 7371, 7374, 7377, 7408, 7418, 7425, 7448, 7457, - 7475, 7481, 7489, 7491, 7495, 7505, 7509, 7519, 7522, 7526, 7530, 7538, - 7549, 7561, 7565, 7568, 7572, 7575, 7580, 7584, 7587, 7591, 7594, 7598, - 7601, 7612, 7619, 7632, 7646, 7650, 7655, 7662, 7669, 7672, 7677, 7680, - 7689, 7691, 7696, 7700, 7712, 7715, 7722, 7726, 7731, 7741, 7750, 7753, - 7761, 7772, 7776, 7782, 7789, 7809, 7830, 7834, 7839, 7922, 7928, 7941, - 7945, 7949, 7953, 7959, 7966, 7969, 7972, 7975, 7978, 7985, 7987, 7991, - 7994, 8001, 8003, 8010, 8017, 8021, 8025, 8041, 8048, 8058, 8071, 8082, - 8089, 8094, 8098, 8102, 8107, 8121, 8126, 8130, 8138, 8141, 8145, 8156, - 8159, 8161, 8177, 8180, 8187, 8190, 8195, 8210, 8216, 8225, 8234, 8241, - 8244, 8250, 8255, 8261, 8266, 8270, 8275, 8278, 8284, 8288, 8290, 8293, - 8300, 8303, 8310, 8318, 8321, 8330, 8335, 8341, 8344, 8347, 8354, 8358, - 8361, 8376, 8379, 8386, 8389, 8396, 8399, 8402, 8409, 8422, 8432, 8440, - 8452, 8454, 8461, 8465, 8475, 8479, 8483, 8487, 8489, 8494, 8498, 8502, - 8504, 8506, 8511, 8516, 8522, 8527, 8532, 8535, 8538, 8543, 8546, 8549, - 8552, 8555, 8558, 8561, 8567, 8571, 8580, 8585, 8589, 8598, 8604, 8608, - 8613, 8617, 8622, 8628, 8640, 8655, 8662, 8664, 8667, 8671, 8675, 8677, - 8685, 8694, 8700, 8702, 8704, 8711, 8715, 8724, 8728, 8743, 8751, 8779, - 8786, 8790, 8793, 8798, 8802, 8805, 8821, 8832, 8837, 8840, 8844, 8848, - 8852, 8857, 8861, 8865, 8867, 8876, 8881, 8887, 8891, 8893, 8900, 8905, - 8911, 8913, 8917, 8924, 8929, 8936, 8941, 8944, 8950, 8954, 8963, 8967, - 8975, 8977, 8984, 8989, 8992, 9000, 9009, 9017, 9019, 9023, 9030, 9049, - 9058, 9064, 9083, 9092, 9098, 9102, 9107, 9117, 9124, 9133, 9136, 9145, - 9147, 9153, 9157, 9162, 9172, 9178, 9180, 9186, 9192, 9195, 9198, 9211, - 9217, 9221, 9225, 9228, 9236, 9240, 9244, 9252, 9259, 9266, 9270, 9276, - 9278, 9287, 9290, 9300, 9316, 9322, 9327, 9334, 9343, 9350, 9358, 9366, - 9371, 9375, 9381, 9385, 9389, 9392, 9398, 9403, 9419, 9422, 9424, 9436, - 9438, 9442, 9448, 9452, 9454, 9462, 9466, 9475, 9483, 9489, 9492, 9501, - 9506, 9513, 9523, 9549, 9560, 9562, 9564, 9572, 9595, 9603, 9613, 9616, - 9621, 9626, 9630, 9636, 9639, 9642, 9646, 9649, 9652, 9657, 9663, 9666, - 9669, 9677, 9680, 9683, 9687, 9692, 9710, 9717, 9724, 9731, 9749, 9757, - 9769, 9787, 9826, 9828, 9848, 9858, 9869, 9890, 9893, 9896, 9903, 9910, - 9913, 9921, 9924, 9931, 9938, 9951, 9964, 9967, 9971, 9974, 9984, 9987, - 9997, 10000, 10003, 10007, 10028, 10033, 10045, 10055, 10060, 10063, 10066, - 10076, 10089, 10096, 10102, 10107, 10112, 10114, 10122, 10130, 10137, 10148, - 10152, 10160, 10167, 10179, 10191, 10197, 10205, 10222, 10247, 10257, 10261, - 10264, 10267, 10270, 10283, 10288, 10293, 10295, 10303, 10312, 10321, 10326, - 10335, 10340, 10354, 10364, 10372, 10386, 10393, 10401, 10409, 10416, 10422, - 10431, 10446, 10457, 10490, 10499, 10506, 10510, 10514, 10521, 10535, 10540, - 10545, 10549, 10551, 10554, 10561, 10566, 10576, 10581, 10584, 10589, 10596, - 10601, 10608, 10624, 10636, 10641, 10649, 10656, 10661, 10673, 10681, 10686, - 10696, 10703, 10710, 10719, 10725, 10731, 10737, 10745, 10749, 10756, 10818, - 10829, 10834, 10857, 10865, 10873, 10877, 10880, 10884, 10886, 10893, 10902, - 10909, 10913, 10916, 10919, 10922, 10926, 10931, 10938, 10951, 10961, 10980, - 10987, 11017, 11027, 11036, 11041, 11052, 11065, 11078, 11086, 11095, 11108, - 11116, 11120, 11131, 11142, 11147, 11154, 11164, 11171, 11174, 11180, 11182, - 11193, 11206, 11211, 11223, 11226, 11239, 11242, 11245, 11247, 11255, 11259, - 11262, 11268, 11272, 11278, 11283, 11289, 11292, 11296, 11304, 11318, 11324, - 11336, 11346, 11349, 11352, 11355, 11358, 11370, 11375, 11382, 11389, 11391, - 11398, 11400, 11409, 11416, 11423, 11431, 11434, 11458, 11460, 11464, 11478, - 11484, 11490, 11503, 11506, 11510, 11518, 11530, 11536, 11549, 11554, 11558, - 11561, 11564, 11567, 11570, 11573, 11576, 11579, 11591, 11595, + 498, 511, 523, 527, 533, 535, 539, 541, 541, 12845, 0, 1678, 1, 0, 0, 0, + 2, 1681, 1, 0, 0, 0, 4, 1683, 1, 0, 0, 0, 6, 1691, 1, 0, 0, 0, 8, 1819, + 1, 0, 0, 0, 10, 1821, 1, 0, 0, 0, 12, 1825, 1, 0, 0, 0, 14, 1828, 1, 0, + 0, 0, 16, 1836, 1, 0, 0, 0, 18, 1841, 1, 0, 0, 0, 20, 1847, 1, 0, 0, 0, + 22, 1868, 1, 0, 0, 0, 24, 1880, 1, 0, 0, 0, 26, 1882, 1, 0, 0, 0, 28, 1890, + 1, 0, 0, 0, 30, 1898, 1, 0, 0, 0, 32, 1902, 1, 0, 0, 0, 34, 1913, 1, 0, + 0, 0, 36, 1921, 1, 0, 0, 0, 38, 1929, 1, 0, 0, 0, 40, 1936, 1, 0, 0, 0, + 42, 1938, 1, 0, 0, 0, 44, 1955, 1, 0, 0, 0, 46, 1960, 1, 0, 0, 0, 48, 1969, + 1, 0, 0, 0, 50, 1971, 1, 0, 0, 0, 52, 1985, 1, 0, 0, 0, 54, 1987, 1, 0, + 0, 0, 56, 2018, 1, 0, 0, 0, 58, 2020, 1, 0, 0, 0, 60, 2028, 1, 0, 0, 0, + 62, 2038, 1, 0, 0, 0, 64, 2045, 1, 0, 0, 0, 66, 2051, 1, 0, 0, 0, 68, 2069, + 1, 0, 0, 0, 70, 2073, 1, 0, 0, 0, 72, 2077, 1, 0, 0, 0, 74, 2079, 1, 0, + 0, 0, 76, 2090, 1, 0, 0, 0, 78, 2094, 1, 0, 0, 0, 80, 2099, 1, 0, 0, 0, + 82, 2104, 1, 0, 0, 0, 84, 2106, 1, 0, 0, 0, 86, 2118, 1, 0, 0, 0, 88, 2125, + 1, 0, 0, 0, 90, 2127, 1, 0, 0, 0, 92, 2129, 1, 0, 0, 0, 94, 2131, 1, 0, + 0, 0, 96, 2246, 1, 0, 0, 0, 98, 2248, 1, 0, 0, 0, 100, 2264, 1, 0, 0, 0, + 102, 2266, 1, 0, 0, 0, 104, 2572, 1, 0, 0, 0, 106, 2579, 1, 0, 0, 0, 108, + 2581, 1, 0, 0, 0, 110, 2583, 1, 0, 0, 0, 112, 2586, 1, 0, 0, 0, 114, 2595, + 1, 0, 0, 0, 116, 2597, 1, 0, 0, 0, 118, 2601, 1, 0, 0, 0, 120, 2604, 1, + 0, 0, 0, 122, 2612, 1, 0, 0, 0, 124, 2624, 1, 0, 0, 0, 126, 2641, 1, 0, + 0, 0, 128, 2669, 1, 0, 0, 0, 130, 2671, 1, 0, 0, 0, 132, 2674, 1, 0, 0, + 0, 134, 2682, 1, 0, 0, 0, 136, 2687, 1, 0, 0, 0, 138, 2725, 1, 0, 0, 0, + 140, 2727, 1, 0, 0, 0, 142, 2769, 1, 0, 0, 0, 144, 2771, 1, 0, 0, 0, 146, + 2773, 1, 0, 0, 0, 148, 2778, 1, 0, 0, 0, 150, 2785, 1, 0, 0, 0, 152, 2790, + 1, 0, 0, 0, 154, 2832, 1, 0, 0, 0, 156, 2834, 1, 0, 0, 0, 158, 2837, 1, + 0, 0, 0, 160, 2842, 1, 0, 0, 0, 162, 2844, 1, 0, 0, 0, 164, 2852, 1, 0, + 0, 0, 166, 2863, 1, 0, 0, 0, 168, 2865, 1, 0, 0, 0, 170, 2873, 1, 0, 0, + 0, 172, 2875, 1, 0, 0, 0, 174, 2960, 1, 0, 0, 0, 176, 2962, 1, 0, 0, 0, + 178, 2964, 1, 0, 0, 0, 180, 2968, 1, 0, 0, 0, 182, 2976, 1, 0, 0, 0, 184, + 2987, 1, 0, 0, 0, 186, 2991, 1, 0, 0, 0, 188, 2993, 1, 0, 0, 0, 190, 3000, + 1, 0, 0, 0, 192, 3010, 1, 0, 0, 0, 194, 3021, 1, 0, 0, 0, 196, 3078, 1, + 0, 0, 0, 198, 3080, 1, 0, 0, 0, 200, 3089, 1, 0, 0, 0, 202, 3096, 1, 0, + 0, 0, 204, 3098, 1, 0, 0, 0, 206, 3106, 1, 0, 0, 0, 208, 3109, 1, 0, 0, + 0, 210, 3116, 1, 0, 0, 0, 212, 3207, 1, 0, 0, 0, 214, 3209, 1, 0, 0, 0, + 216, 3212, 1, 0, 0, 0, 218, 3216, 1, 0, 0, 0, 220, 3224, 1, 0, 0, 0, 222, + 3226, 1, 0, 0, 0, 224, 3231, 1, 0, 0, 0, 226, 3234, 1, 0, 0, 0, 228, 3242, + 1, 0, 0, 0, 230, 3252, 1, 0, 0, 0, 232, 3265, 1, 0, 0, 0, 234, 3267, 1, + 0, 0, 0, 236, 3271, 1, 0, 0, 0, 238, 3284, 1, 0, 0, 0, 240, 3286, 1, 0, + 0, 0, 242, 3291, 1, 0, 0, 0, 244, 3293, 1, 0, 0, 0, 246, 3300, 1, 0, 0, + 0, 248, 3331, 1, 0, 0, 0, 250, 3333, 1, 0, 0, 0, 252, 3340, 1, 0, 0, 0, + 254, 3342, 1, 0, 0, 0, 256, 3351, 1, 0, 0, 0, 258, 3354, 1, 0, 0, 0, 260, + 3359, 1, 0, 0, 0, 262, 3363, 1, 0, 0, 0, 264, 3379, 1, 0, 0, 0, 266, 3390, + 1, 0, 0, 0, 268, 3406, 1, 0, 0, 0, 270, 3422, 1, 0, 0, 0, 272, 3428, 1, + 0, 0, 0, 274, 3445, 1, 0, 0, 0, 276, 3458, 1, 0, 0, 0, 278, 3460, 1, 0, + 0, 0, 280, 3470, 1, 0, 0, 0, 282, 3484, 1, 0, 0, 0, 284, 3493, 1, 0, 0, + 0, 286, 3495, 1, 0, 0, 0, 288, 3500, 1, 0, 0, 0, 290, 3540, 1, 0, 0, 0, + 292, 3542, 1, 0, 0, 0, 294, 3550, 1, 0, 0, 0, 296, 3552, 1, 0, 0, 0, 298, + 3560, 1, 0, 0, 0, 300, 3582, 1, 0, 0, 0, 302, 3584, 1, 0, 0, 0, 304, 3588, + 1, 0, 0, 0, 306, 3595, 1, 0, 0, 0, 308, 3597, 1, 0, 0, 0, 310, 3599, 1, + 0, 0, 0, 312, 3601, 1, 0, 0, 0, 314, 3612, 1, 0, 0, 0, 316, 3615, 1, 0, + 0, 0, 318, 3623, 1, 0, 0, 0, 320, 3639, 1, 0, 0, 0, 322, 3649, 1, 0, 0, + 0, 324, 3651, 1, 0, 0, 0, 326, 3660, 1, 0, 0, 0, 328, 3663, 1, 0, 0, 0, + 330, 3770, 1, 0, 0, 0, 332, 3772, 1, 0, 0, 0, 334, 3791, 1, 0, 0, 0, 336, + 3794, 1, 0, 0, 0, 338, 3798, 1, 0, 0, 0, 340, 3817, 1, 0, 0, 0, 342, 3819, + 1, 0, 0, 0, 344, 3824, 1, 0, 0, 0, 346, 3832, 1, 0, 0, 0, 348, 3837, 1, + 0, 0, 0, 350, 3852, 1, 0, 0, 0, 352, 3854, 1, 0, 0, 0, 354, 3857, 1, 0, + 0, 0, 356, 3859, 1, 0, 0, 0, 358, 3896, 1, 0, 0, 0, 360, 3898, 1, 0, 0, + 0, 362, 3901, 1, 0, 0, 0, 364, 3906, 1, 0, 0, 0, 366, 3908, 1, 0, 0, 0, + 368, 3990, 1, 0, 0, 0, 370, 3992, 1, 0, 0, 0, 372, 4010, 1, 0, 0, 0, 374, + 4012, 1, 0, 0, 0, 376, 4040, 1, 0, 0, 0, 378, 4044, 1, 0, 0, 0, 380, 4064, + 1, 0, 0, 0, 382, 4066, 1, 0, 0, 0, 384, 4075, 1, 0, 0, 0, 386, 4095, 1, + 0, 0, 0, 388, 4109, 1, 0, 0, 0, 390, 4114, 1, 0, 0, 0, 392, 4120, 1, 0, + 0, 0, 394, 4123, 1, 0, 0, 0, 396, 4126, 1, 0, 0, 0, 398, 4129, 1, 0, 0, + 0, 400, 4132, 1, 0, 0, 0, 402, 4134, 1, 0, 0, 0, 404, 4143, 1, 0, 0, 0, + 406, 4193, 1, 0, 0, 0, 408, 4199, 1, 0, 0, 0, 410, 4201, 1, 0, 0, 0, 412, + 4216, 1, 0, 0, 0, 414, 4218, 1, 0, 0, 0, 416, 4222, 1, 0, 0, 0, 418, 4226, + 1, 0, 0, 0, 420, 4233, 1, 0, 0, 0, 422, 4235, 1, 0, 0, 0, 424, 4237, 1, + 0, 0, 0, 426, 4239, 1, 0, 0, 0, 428, 4245, 1, 0, 0, 0, 430, 4247, 1, 0, + 0, 0, 432, 4249, 1, 0, 0, 0, 434, 4254, 1, 0, 0, 0, 436, 4258, 1, 0, 0, + 0, 438, 4271, 1, 0, 0, 0, 440, 4273, 1, 0, 0, 0, 442, 4279, 1, 0, 0, 0, + 444, 4293, 1, 0, 0, 0, 446, 4321, 1, 0, 0, 0, 448, 4323, 1, 0, 0, 0, 450, + 4331, 1, 0, 0, 0, 452, 4337, 1, 0, 0, 0, 454, 4345, 1, 0, 0, 0, 456, 4357, + 1, 0, 0, 0, 458, 4359, 1, 0, 0, 0, 460, 4482, 1, 0, 0, 0, 462, 4484, 1, + 0, 0, 0, 464, 4488, 1, 0, 0, 0, 466, 4496, 1, 0, 0, 0, 468, 4507, 1, 0, + 0, 0, 470, 4509, 1, 0, 0, 0, 472, 4513, 1, 0, 0, 0, 474, 4521, 1, 0, 0, + 0, 476, 4525, 1, 0, 0, 0, 478, 4527, 1, 0, 0, 0, 480, 4578, 1, 0, 0, 0, + 482, 4580, 1, 0, 0, 0, 484, 4584, 1, 0, 0, 0, 486, 4602, 1, 0, 0, 0, 488, + 4641, 1, 0, 0, 0, 490, 4643, 1, 0, 0, 0, 492, 4645, 1, 0, 0, 0, 494, 4654, + 1, 0, 0, 0, 496, 4656, 1, 0, 0, 0, 498, 4658, 1, 0, 0, 0, 500, 4683, 1, + 0, 0, 0, 502, 4685, 1, 0, 0, 0, 504, 4705, 1, 0, 0, 0, 506, 4727, 1, 0, + 0, 0, 508, 4749, 1, 0, 0, 0, 510, 4751, 1, 0, 0, 0, 512, 4758, 1, 0, 0, + 0, 514, 4855, 1, 0, 0, 0, 516, 4880, 1, 0, 0, 0, 518, 4887, 1, 0, 0, 0, + 520, 4904, 1, 0, 0, 0, 522, 4906, 1, 0, 0, 0, 524, 4908, 1, 0, 0, 0, 526, + 4916, 1, 0, 0, 0, 528, 4922, 1, 0, 0, 0, 530, 4926, 1, 0, 0, 0, 532, 4934, + 1, 0, 0, 0, 534, 4949, 1, 0, 0, 0, 536, 5098, 1, 0, 0, 0, 538, 5102, 1, + 0, 0, 0, 540, 5215, 1, 0, 0, 0, 542, 5217, 1, 0, 0, 0, 544, 5222, 1, 0, + 0, 0, 546, 5228, 1, 0, 0, 0, 548, 5315, 1, 0, 0, 0, 550, 5317, 1, 0, 0, + 0, 552, 5319, 1, 0, 0, 0, 554, 5321, 1, 0, 0, 0, 556, 5351, 1, 0, 0, 0, + 558, 5368, 1, 0, 0, 0, 560, 5370, 1, 0, 0, 0, 562, 5396, 1, 0, 0, 0, 564, + 5458, 1, 0, 0, 0, 566, 5460, 1, 0, 0, 0, 568, 5468, 1, 0, 0, 0, 570, 5473, + 1, 0, 0, 0, 572, 5484, 1, 0, 0, 0, 574, 5486, 1, 0, 0, 0, 576, 5490, 1, + 0, 0, 0, 578, 5523, 1, 0, 0, 0, 580, 5525, 1, 0, 0, 0, 582, 5529, 1, 0, + 0, 0, 584, 5533, 1, 0, 0, 0, 586, 5542, 1, 0, 0, 0, 588, 5554, 1, 0, 0, + 0, 590, 5586, 1, 0, 0, 0, 592, 5588, 1, 0, 0, 0, 594, 5590, 1, 0, 0, 0, + 596, 5629, 1, 0, 0, 0, 598, 5631, 1, 0, 0, 0, 600, 5633, 1, 0, 0, 0, 602, + 5635, 1, 0, 0, 0, 604, 5638, 1, 0, 0, 0, 606, 5669, 1, 0, 0, 0, 608, 5682, + 1, 0, 0, 0, 610, 5684, 1, 0, 0, 0, 612, 5689, 1, 0, 0, 0, 614, 5697, 1, + 0, 0, 0, 616, 5700, 1, 0, 0, 0, 618, 5702, 1, 0, 0, 0, 620, 5708, 1, 0, + 0, 0, 622, 5710, 1, 0, 0, 0, 624, 5730, 1, 0, 0, 0, 626, 5733, 1, 0, 0, + 0, 628, 5739, 1, 0, 0, 0, 630, 5747, 1, 0, 0, 0, 632, 5763, 1, 0, 0, 0, + 634, 5765, 1, 0, 0, 0, 636, 5771, 1, 0, 0, 0, 638, 5792, 1, 0, 0, 0, 640, + 5801, 1, 0, 0, 0, 642, 5807, 1, 0, 0, 0, 644, 5809, 1, 0, 0, 0, 646, 5825, + 1, 0, 0, 0, 648, 5827, 1, 0, 0, 0, 650, 5832, 1, 0, 0, 0, 652, 5834, 1, + 0, 0, 0, 654, 5849, 1, 0, 0, 0, 656, 5857, 1, 0, 0, 0, 658, 5860, 1, 0, + 0, 0, 660, 5869, 1, 0, 0, 0, 662, 5910, 1, 0, 0, 0, 664, 5925, 1, 0, 0, + 0, 666, 5932, 1, 0, 0, 0, 668, 5934, 1, 0, 0, 0, 670, 5946, 1, 0, 0, 0, + 672, 5949, 1, 0, 0, 0, 674, 5952, 1, 0, 0, 0, 676, 5960, 1, 0, 0, 0, 678, + 5968, 1, 0, 0, 0, 680, 5972, 1, 0, 0, 0, 682, 6016, 1, 0, 0, 0, 684, 6032, + 1, 0, 0, 0, 686, 6048, 1, 0, 0, 0, 688, 6072, 1, 0, 0, 0, 690, 6079, 1, + 0, 0, 0, 692, 6084, 1, 0, 0, 0, 694, 6092, 1, 0, 0, 0, 696, 6095, 1, 0, + 0, 0, 698, 6099, 1, 0, 0, 0, 700, 6106, 1, 0, 0, 0, 702, 6145, 1, 0, 0, + 0, 704, 6151, 1, 0, 0, 0, 706, 6153, 1, 0, 0, 0, 708, 6166, 1, 0, 0, 0, + 710, 6169, 1, 0, 0, 0, 712, 6216, 1, 0, 0, 0, 714, 6218, 1, 0, 0, 0, 716, + 6264, 1, 0, 0, 0, 718, 6266, 1, 0, 0, 0, 720, 6268, 1, 0, 0, 0, 722, 6270, + 1, 0, 0, 0, 724, 6278, 1, 0, 0, 0, 726, 6292, 1, 0, 0, 0, 728, 6781, 1, + 0, 0, 0, 730, 6783, 1, 0, 0, 0, 732, 6785, 1, 0, 0, 0, 734, 6857, 1, 0, + 0, 0, 736, 6859, 1, 0, 0, 0, 738, 7078, 1, 0, 0, 0, 740, 7080, 1, 0, 0, + 0, 742, 7088, 1, 0, 0, 0, 744, 7104, 1, 0, 0, 0, 746, 7111, 1, 0, 0, 0, + 748, 7113, 1, 0, 0, 0, 750, 7306, 1, 0, 0, 0, 752, 7331, 1, 0, 0, 0, 754, + 7333, 1, 0, 0, 0, 756, 7379, 1, 0, 0, 0, 758, 7381, 1, 0, 0, 0, 760, 7410, + 1, 0, 0, 0, 762, 7412, 1, 0, 0, 0, 764, 7422, 1, 0, 0, 0, 766, 7430, 1, + 0, 0, 0, 768, 7477, 1, 0, 0, 0, 770, 7493, 1, 0, 0, 0, 772, 7495, 1, 0, + 0, 0, 774, 7521, 1, 0, 0, 0, 776, 7524, 1, 0, 0, 0, 778, 7540, 1, 0, 0, + 0, 780, 7542, 1, 0, 0, 0, 782, 7544, 1, 0, 0, 0, 784, 7546, 1, 0, 0, 0, + 786, 7548, 1, 0, 0, 0, 788, 7553, 1, 0, 0, 0, 790, 7556, 1, 0, 0, 0, 792, + 7563, 1, 0, 0, 0, 794, 7634, 1, 0, 0, 0, 796, 7636, 1, 0, 0, 0, 798, 7648, + 1, 0, 0, 0, 800, 7650, 1, 0, 0, 0, 802, 7660, 1, 0, 0, 0, 804, 7662, 1, + 0, 0, 0, 806, 7668, 1, 0, 0, 0, 808, 7700, 1, 0, 0, 0, 810, 7707, 1, 0, + 0, 0, 812, 7710, 1, 0, 0, 0, 814, 7719, 1, 0, 0, 0, 816, 7722, 1, 0, 0, + 0, 818, 7726, 1, 0, 0, 0, 820, 7743, 1, 0, 0, 0, 822, 7745, 1, 0, 0, 0, + 824, 7747, 1, 0, 0, 0, 826, 7765, 1, 0, 0, 0, 828, 7770, 1, 0, 0, 0, 830, + 7786, 1, 0, 0, 0, 832, 7794, 1, 0, 0, 0, 834, 7796, 1, 0, 0, 0, 836, 7802, + 1, 0, 0, 0, 838, 7807, 1, 0, 0, 0, 840, 7816, 1, 0, 0, 0, 842, 7843, 1, + 0, 0, 0, 844, 7845, 1, 0, 0, 0, 846, 7924, 1, 0, 0, 0, 848, 7926, 1, 0, + 0, 0, 850, 7928, 1, 0, 0, 0, 852, 7961, 1, 0, 0, 0, 854, 7963, 1, 0, 0, + 0, 856, 7989, 1, 0, 0, 0, 858, 8005, 1, 0, 0, 0, 860, 8007, 1, 0, 0, 0, + 862, 8015, 1, 0, 0, 0, 864, 8017, 1, 0, 0, 0, 866, 8023, 1, 0, 0, 0, 868, + 8027, 1, 0, 0, 0, 870, 8029, 1, 0, 0, 0, 872, 8031, 1, 0, 0, 0, 874, 8033, + 1, 0, 0, 0, 876, 8035, 1, 0, 0, 0, 878, 8037, 1, 0, 0, 0, 880, 8041, 1, + 0, 0, 0, 882, 8045, 1, 0, 0, 0, 884, 8053, 1, 0, 0, 0, 886, 8073, 1, 0, + 0, 0, 888, 8084, 1, 0, 0, 0, 890, 8086, 1, 0, 0, 0, 892, 8094, 1, 0, 0, + 0, 894, 8100, 1, 0, 0, 0, 896, 8104, 1, 0, 0, 0, 898, 8106, 1, 0, 0, 0, + 900, 8114, 1, 0, 0, 0, 902, 8123, 1, 0, 0, 0, 904, 8163, 1, 0, 0, 0, 906, + 8165, 1, 0, 0, 0, 908, 8179, 1, 0, 0, 0, 910, 8182, 1, 0, 0, 0, 912, 8194, + 1, 0, 0, 0, 914, 8218, 1, 0, 0, 0, 916, 8220, 1, 0, 0, 0, 918, 8222, 1, + 0, 0, 0, 920, 8230, 1, 0, 0, 0, 922, 8233, 1, 0, 0, 0, 924, 8257, 1, 0, + 0, 0, 926, 8259, 1, 0, 0, 0, 928, 8263, 1, 0, 0, 0, 930, 8297, 1, 0, 0, + 0, 932, 8316, 1, 0, 0, 0, 934, 8329, 1, 0, 0, 0, 936, 8337, 1, 0, 0, 0, + 938, 8351, 1, 0, 0, 0, 940, 8354, 1, 0, 0, 0, 942, 8365, 1, 0, 0, 0, 944, + 8381, 1, 0, 0, 0, 946, 8383, 1, 0, 0, 0, 948, 8388, 1, 0, 0, 0, 950, 8391, + 1, 0, 0, 0, 952, 8406, 1, 0, 0, 0, 954, 8424, 1, 0, 0, 0, 956, 8426, 1, + 0, 0, 0, 958, 8429, 1, 0, 0, 0, 960, 8437, 1, 0, 0, 0, 962, 8447, 1, 0, + 0, 0, 964, 8456, 1, 0, 0, 0, 966, 8463, 1, 0, 0, 0, 968, 8467, 1, 0, 0, + 0, 970, 8477, 1, 0, 0, 0, 972, 8508, 1, 0, 0, 0, 974, 8510, 1, 0, 0, 0, + 976, 8521, 1, 0, 0, 0, 978, 8569, 1, 0, 0, 0, 980, 8571, 1, 0, 0, 0, 982, + 8577, 1, 0, 0, 0, 984, 8585, 1, 0, 0, 0, 986, 8600, 1, 0, 0, 0, 988, 8602, + 1, 0, 0, 0, 990, 8604, 1, 0, 0, 0, 992, 8612, 1, 0, 0, 0, 994, 8630, 1, + 0, 0, 0, 996, 8632, 1, 0, 0, 0, 998, 8634, 1, 0, 0, 0, 1000, 8636, 1, 0, + 0, 0, 1002, 8644, 1, 0, 0, 0, 1004, 8646, 1, 0, 0, 0, 1006, 8648, 1, 0, + 0, 0, 1008, 8652, 1, 0, 0, 0, 1010, 8660, 1, 0, 0, 0, 1012, 8679, 1, 0, + 0, 0, 1014, 8681, 1, 0, 0, 0, 1016, 8706, 1, 0, 0, 0, 1018, 8708, 1, 0, + 0, 0, 1020, 8717, 1, 0, 0, 0, 1022, 8719, 1, 0, 0, 0, 1024, 8726, 1, 0, + 0, 0, 1026, 8730, 1, 0, 0, 0, 1028, 8732, 1, 0, 0, 0, 1030, 8734, 1, 0, + 0, 0, 1032, 8736, 1, 0, 0, 0, 1034, 8740, 1, 0, 0, 0, 1036, 8753, 1, 0, + 0, 0, 1038, 8755, 1, 0, 0, 0, 1040, 8758, 1, 0, 0, 0, 1042, 8763, 1, 0, + 0, 0, 1044, 8768, 1, 0, 0, 0, 1046, 8774, 1, 0, 0, 0, 1048, 8781, 1, 0, + 0, 0, 1050, 8783, 1, 0, 0, 0, 1052, 8786, 1, 0, 0, 0, 1054, 8790, 1, 0, + 0, 0, 1056, 8797, 1, 0, 0, 0, 1058, 8809, 1, 0, 0, 0, 1060, 8812, 1, 0, + 0, 0, 1062, 8826, 1, 0, 0, 0, 1064, 8829, 1, 0, 0, 0, 1066, 8880, 1, 0, + 0, 0, 1068, 8904, 1, 0, 0, 0, 1070, 8907, 1, 0, 0, 0, 1072, 8916, 1, 0, + 0, 0, 1074, 8919, 1, 0, 0, 0, 1076, 8940, 1, 0, 0, 0, 1078, 8942, 1, 0, + 0, 0, 1080, 8953, 1, 0, 0, 0, 1082, 8967, 1, 0, 0, 0, 1084, 8969, 1, 0, + 0, 0, 1086, 8977, 1, 0, 0, 0, 1088, 8984, 1, 0, 0, 0, 1090, 8992, 1, 0, + 0, 0, 1092, 9009, 1, 0, 0, 0, 1094, 9011, 1, 0, 0, 0, 1096, 9015, 1, 0, + 0, 0, 1098, 9023, 1, 0, 0, 0, 1100, 9028, 1, 0, 0, 0, 1102, 9031, 1, 0, + 0, 0, 1104, 9034, 1, 0, 0, 0, 1106, 9041, 1, 0, 0, 0, 1108, 9043, 1, 0, + 0, 0, 1110, 9051, 1, 0, 0, 0, 1112, 9056, 1, 0, 0, 0, 1114, 9077, 1, 0, + 0, 0, 1116, 9085, 1, 0, 0, 0, 1118, 9095, 1, 0, 0, 0, 1120, 9107, 1, 0, + 0, 0, 1122, 9109, 1, 0, 0, 0, 1124, 9123, 1, 0, 0, 0, 1126, 9143, 1, 0, + 0, 0, 1128, 9152, 1, 0, 0, 0, 1130, 9170, 1, 0, 0, 0, 1132, 9176, 1, 0, + 0, 0, 1134, 9182, 1, 0, 0, 0, 1136, 9190, 1, 0, 0, 0, 1138, 9218, 1, 0, + 0, 0, 1140, 9220, 1, 0, 0, 0, 1142, 9226, 1, 0, 0, 0, 1144, 9230, 1, 0, + 0, 0, 1146, 9232, 1, 0, 0, 0, 1148, 9240, 1, 0, 0, 0, 1150, 9244, 1, 0, + 0, 0, 1152, 9251, 1, 0, 0, 0, 1154, 9268, 1, 0, 0, 0, 1156, 9270, 1, 0, + 0, 0, 1158, 9272, 1, 0, 0, 0, 1160, 9282, 1, 0, 0, 0, 1162, 9290, 1, 0, + 0, 0, 1164, 9317, 1, 0, 0, 0, 1166, 9319, 1, 0, 0, 0, 1168, 9326, 1, 0, + 0, 0, 1170, 9329, 1, 0, 0, 0, 1172, 9331, 1, 0, 0, 0, 1174, 9335, 1, 0, + 0, 0, 1176, 9343, 1, 0, 0, 0, 1178, 9351, 1, 0, 0, 0, 1180, 9359, 1, 0, + 0, 0, 1182, 9373, 1, 0, 0, 0, 1184, 9382, 1, 0, 0, 0, 1186, 9386, 1, 0, + 0, 0, 1188, 9390, 1, 0, 0, 0, 1190, 9416, 1, 0, 0, 0, 1192, 9430, 1, 0, + 0, 0, 1194, 9446, 1, 0, 0, 0, 1196, 9456, 1, 0, 0, 0, 1198, 9460, 1, 0, + 0, 0, 1200, 9468, 1, 0, 0, 0, 1202, 9476, 1, 0, 0, 0, 1204, 9482, 1, 0, + 0, 0, 1206, 9486, 1, 0, 0, 0, 1208, 9493, 1, 0, 0, 0, 1210, 9498, 1, 0, + 0, 0, 1212, 9513, 1, 0, 0, 0, 1214, 9593, 1, 0, 0, 0, 1216, 9595, 1, 0, + 0, 0, 1218, 9597, 1, 0, 0, 0, 1220, 9642, 1, 0, 0, 0, 1222, 9647, 1, 0, + 0, 0, 1224, 9677, 1, 0, 0, 0, 1226, 9679, 1, 0, 0, 0, 1228, 9684, 1, 0, + 0, 0, 1230, 9997, 1, 0, 0, 0, 1232, 9999, 1, 0, 0, 0, 1234, 10018, 1, 0, + 0, 0, 1236, 10023, 1, 0, 0, 0, 1238, 10035, 1, 0, 0, 0, 1240, 10037, 1, + 0, 0, 0, 1242, 10056, 1, 0, 0, 0, 1244, 10058, 1, 0, 0, 0, 1246, 10061, + 1, 0, 0, 0, 1248, 10069, 1, 0, 0, 0, 1250, 10079, 1, 0, 0, 0, 1252, 10081, + 1, 0, 0, 0, 1254, 10089, 1, 0, 0, 0, 1256, 10104, 1, 0, 0, 0, 1258, 10112, + 1, 0, 0, 0, 1260, 10120, 1, 0, 0, 0, 1262, 10122, 1, 0, 0, 0, 1264, 10138, + 1, 0, 0, 0, 1266, 10140, 1, 0, 0, 0, 1268, 10150, 1, 0, 0, 0, 1270, 10157, + 1, 0, 0, 0, 1272, 10169, 1, 0, 0, 0, 1274, 10171, 1, 0, 0, 0, 1276, 10176, + 1, 0, 0, 0, 1278, 10184, 1, 0, 0, 0, 1280, 10189, 1, 0, 0, 0, 1282, 10195, + 1, 0, 0, 0, 1284, 10212, 1, 0, 0, 0, 1286, 10214, 1, 0, 0, 0, 1288, 10217, + 1, 0, 0, 0, 1290, 10223, 1, 0, 0, 0, 1292, 10229, 1, 0, 0, 0, 1294, 10232, + 1, 0, 0, 0, 1296, 10240, 1, 0, 0, 0, 1298, 10244, 1, 0, 0, 0, 1300, 10249, + 1, 0, 0, 0, 1302, 10264, 1, 0, 0, 0, 1304, 10266, 1, 0, 0, 0, 1306, 10285, + 1, 0, 0, 0, 1308, 10293, 1, 0, 0, 0, 1310, 10302, 1, 0, 0, 0, 1312, 10304, + 1, 0, 0, 0, 1314, 10325, 1, 0, 0, 0, 1316, 10327, 1, 0, 0, 0, 1318, 10334, + 1, 0, 0, 0, 1320, 10340, 1, 0, 0, 0, 1322, 10344, 1, 0, 0, 0, 1324, 10346, + 1, 0, 0, 0, 1326, 10354, 1, 0, 0, 0, 1328, 10362, 1, 0, 0, 0, 1330, 10376, + 1, 0, 0, 0, 1332, 10378, 1, 0, 0, 0, 1334, 10386, 1, 0, 0, 0, 1336, 10399, + 1, 0, 0, 0, 1338, 10401, 1, 0, 0, 0, 1340, 10409, 1, 0, 0, 0, 1342, 10416, + 1, 0, 0, 0, 1344, 10424, 1, 0, 0, 0, 1346, 10436, 1, 0, 0, 0, 1348, 10438, + 1, 0, 0, 0, 1350, 10440, 1, 0, 0, 0, 1352, 10449, 1, 0, 0, 0, 1354, 10480, + 1, 0, 0, 0, 1356, 10489, 1, 0, 0, 0, 1358, 10496, 1, 0, 0, 0, 1360, 10498, + 1, 0, 0, 0, 1362, 10509, 1, 0, 0, 0, 1364, 10513, 1, 0, 0, 0, 1366, 10518, + 1, 0, 0, 0, 1368, 10521, 1, 0, 0, 0, 1370, 10523, 1, 0, 0, 0, 1372, 10544, + 1, 0, 0, 0, 1374, 10546, 1, 0, 0, 0, 1376, 10549, 1, 0, 0, 0, 1378, 10556, + 1, 0, 0, 0, 1380, 10559, 1, 0, 0, 0, 1382, 10561, 1, 0, 0, 0, 1384, 10574, + 1, 0, 0, 0, 1386, 10579, 1, 0, 0, 0, 1388, 10581, 1, 0, 0, 0, 1390, 10589, + 1, 0, 0, 0, 1392, 10593, 1, 0, 0, 0, 1394, 10601, 1, 0, 0, 0, 1396, 10603, + 1, 0, 0, 0, 1398, 10605, 1, 0, 0, 0, 1400, 10614, 1, 0, 0, 0, 1402, 10651, + 1, 0, 0, 0, 1404, 10653, 1, 0, 0, 0, 1406, 10655, 1, 0, 0, 0, 1408, 10657, + 1, 0, 0, 0, 1410, 10659, 1, 0, 0, 0, 1412, 10661, 1, 0, 0, 0, 1414, 10676, + 1, 0, 0, 0, 1416, 10678, 1, 0, 0, 0, 1418, 10686, 1, 0, 0, 0, 1420, 10688, + 1, 0, 0, 0, 1422, 10693, 1, 0, 0, 0, 1424, 10695, 1, 0, 0, 0, 1426, 10709, + 1, 0, 0, 0, 1428, 10715, 1, 0, 0, 0, 1430, 10721, 1, 0, 0, 0, 1432, 10727, + 1, 0, 0, 0, 1434, 10735, 1, 0, 0, 0, 1436, 10746, 1, 0, 0, 0, 1438, 10748, + 1, 0, 0, 0, 1440, 10750, 1, 0, 0, 0, 1442, 10808, 1, 0, 0, 0, 1444, 10810, + 1, 0, 0, 0, 1446, 10812, 1, 0, 0, 0, 1448, 10814, 1, 0, 0, 0, 1450, 10816, + 1, 0, 0, 0, 1452, 10824, 1, 0, 0, 0, 1454, 10847, 1, 0, 0, 0, 1456, 10849, + 1, 0, 0, 0, 1458, 10855, 1, 0, 0, 0, 1460, 10857, 1, 0, 0, 0, 1462, 10859, + 1, 0, 0, 0, 1464, 10870, 1, 0, 0, 0, 1466, 10878, 1, 0, 0, 0, 1468, 10881, + 1, 0, 0, 0, 1470, 10885, 1, 0, 0, 0, 1472, 10892, 1, 0, 0, 0, 1474, 10894, + 1, 0, 0, 0, 1476, 10928, 1, 0, 0, 0, 1478, 10930, 1, 0, 0, 0, 1480, 10932, + 1, 0, 0, 0, 1482, 10936, 1, 0, 0, 0, 1484, 10944, 1, 0, 0, 0, 1486, 10947, + 1, 0, 0, 0, 1488, 10951, 1, 0, 0, 0, 1490, 10953, 1, 0, 0, 0, 1492, 10955, + 1, 0, 0, 0, 1494, 10957, 1, 0, 0, 0, 1496, 10959, 1, 0, 0, 0, 1498, 10962, + 1, 0, 0, 0, 1500, 10965, 1, 0, 0, 0, 1502, 10970, 1, 0, 0, 0, 1504, 10972, + 1, 0, 0, 0, 1506, 10977, 1, 0, 0, 0, 1508, 11007, 1, 0, 0, 0, 1510, 11009, + 1, 0, 0, 0, 1512, 11031, 1, 0, 0, 0, 1514, 11033, 1, 0, 0, 0, 1516, 11035, + 1, 0, 0, 0, 1518, 11040, 1, 0, 0, 0, 1520, 11048, 1, 0, 0, 0, 1522, 11050, + 1, 0, 0, 0, 1524, 11058, 1, 0, 0, 0, 1526, 11062, 1, 0, 0, 0, 1528, 11064, + 1, 0, 0, 0, 1530, 11068, 1, 0, 0, 0, 1532, 11079, 1, 0, 0, 0, 1534, 11098, + 1, 0, 0, 0, 1536, 11101, 1, 0, 0, 0, 1538, 11104, 1, 0, 0, 0, 1540, 11116, + 1, 0, 0, 0, 1542, 11119, 1, 0, 0, 0, 1544, 11123, 1, 0, 0, 0, 1546, 11128, + 1, 0, 0, 0, 1548, 11132, 1, 0, 0, 0, 1550, 11137, 1, 0, 0, 0, 1552, 11144, + 1, 0, 0, 0, 1554, 11150, 1, 0, 0, 0, 1556, 11174, 1, 0, 0, 0, 1558, 11177, + 1, 0, 0, 0, 1560, 11188, 1, 0, 0, 0, 1562, 11190, 1, 0, 0, 0, 1564, 11193, + 1, 0, 0, 0, 1566, 11196, 1, 0, 0, 0, 1568, 11208, 1, 0, 0, 0, 1570, 11211, + 1, 0, 0, 0, 1572, 11220, 1, 0, 0, 0, 1574, 11222, 1, 0, 0, 0, 1576, 11241, + 1, 0, 0, 0, 1578, 11286, 1, 0, 0, 0, 1580, 11288, 1, 0, 0, 0, 1582, 11292, + 1, 0, 0, 0, 1584, 11296, 1, 0, 0, 0, 1586, 11299, 1, 0, 0, 0, 1588, 11303, + 1, 0, 0, 0, 1590, 11311, 1, 0, 0, 0, 1592, 11318, 1, 0, 0, 0, 1594, 11321, + 1, 0, 0, 0, 1596, 11330, 1, 0, 0, 0, 1598, 11333, 1, 0, 0, 0, 1600, 11352, + 1, 0, 0, 0, 1602, 11355, 1, 0, 0, 0, 1604, 11363, 1, 0, 0, 0, 1606, 11369, + 1, 0, 0, 0, 1608, 11399, 1, 0, 0, 0, 1610, 11401, 1, 0, 0, 0, 1612, 11409, + 1, 0, 0, 0, 1614, 11413, 1, 0, 0, 0, 1616, 11417, 1, 0, 0, 0, 1618, 11419, + 1, 0, 0, 0, 1620, 11431, 1, 0, 0, 0, 1622, 11433, 1, 0, 0, 0, 1624, 11450, + 1, 0, 0, 0, 1626, 11452, 1, 0, 0, 0, 1628, 11459, 1, 0, 0, 0, 1630, 11463, + 1, 0, 0, 0, 1632, 11466, 1, 0, 0, 0, 1634, 11472, 1, 0, 0, 0, 1636, 11478, + 1, 0, 0, 0, 1638, 11496, 1, 0, 0, 0, 1640, 11500, 1, 0, 0, 0, 1642, 11502, + 1, 0, 0, 0, 1644, 11506, 1, 0, 0, 0, 1646, 11510, 1, 0, 0, 0, 1648, 11515, + 1, 0, 0, 0, 1650, 11526, 1, 0, 0, 0, 1652, 11528, 1, 0, 0, 0, 1654, 11530, + 1, 0, 0, 0, 1656, 11532, 1, 0, 0, 0, 1658, 11534, 1, 0, 0, 0, 1660, 11539, + 1, 0, 0, 0, 1662, 11541, 1, 0, 0, 0, 1664, 11544, 1, 0, 0, 0, 1666, 11571, + 1, 0, 0, 0, 1668, 11573, 1, 0, 0, 0, 1670, 11575, 1, 0, 0, 0, 1672, 11577, + 1, 0, 0, 0, 1674, 11579, 1, 0, 0, 0, 1676, 11583, 1, 0, 0, 0, 1678, 1679, + 3, 4, 2, 0, 1679, 1680, 5, 0, 0, 1, 1680, 1, 1, 0, 0, 0, 1681, 1682, 3, + 1450, 725, 0, 1682, 3, 1, 0, 0, 0, 1683, 1684, 3, 6, 3, 0, 1684, 5, 1, + 0, 0, 0, 1685, 1687, 3, 8, 4, 0, 1686, 1688, 5, 7, 0, 0, 1687, 1686, 1, + 0, 0, 0, 1687, 1688, 1, 0, 0, 0, 1688, 1690, 1, 0, 0, 0, 1689, 1685, 1, + 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, + 0, 0, 0, 1692, 7, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1820, 3, 454, + 227, 0, 1695, 1820, 3, 834, 417, 0, 1696, 1820, 3, 824, 412, 0, 1697, 1820, + 3, 826, 413, 0, 1698, 1820, 3, 584, 292, 0, 1699, 1820, 3, 840, 420, 0, + 1700, 1820, 3, 480, 240, 0, 1701, 1820, 3, 324, 162, 0, 1702, 1820, 3, + 330, 165, 0, 1703, 1820, 3, 340, 170, 0, 1704, 1820, 3, 366, 183, 0, 1705, + 1820, 3, 676, 338, 0, 1706, 1820, 3, 38, 19, 0, 1707, 1820, 3, 734, 367, + 0, 1708, 1820, 3, 738, 369, 0, 1709, 1820, 3, 750, 375, 0, 1710, 1820, + 3, 740, 370, 0, 1711, 1820, 3, 748, 374, 0, 1712, 1820, 3, 386, 193, 0, + 1713, 1820, 3, 282, 141, 0, 1714, 1820, 3, 836, 418, 0, 1715, 1820, 3, + 96, 48, 0, 1716, 1820, 3, 726, 363, 0, 1717, 1820, 3, 134, 67, 0, 1718, + 1820, 3, 760, 380, 0, 1719, 1820, 3, 32, 16, 0, 1720, 1820, 3, 28, 14, + 0, 1721, 1820, 3, 768, 384, 0, 1722, 1820, 3, 264, 132, 0, 1723, 1820, + 3, 846, 423, 0, 1724, 1820, 3, 844, 422, 0, 1725, 1820, 3, 382, 191, 0, + 1726, 1820, 3, 858, 429, 0, 1727, 1820, 3, 12, 6, 0, 1728, 1820, 3, 92, + 46, 0, 1729, 1820, 3, 140, 70, 0, 1730, 1820, 3, 852, 426, 0, 1731, 1820, + 3, 536, 268, 0, 1732, 1820, 3, 86, 43, 0, 1733, 1820, 3, 142, 71, 0, 1734, + 1820, 3, 402, 201, 0, 1735, 1820, 3, 266, 133, 0, 1736, 1820, 3, 458, 229, + 0, 1737, 1820, 3, 702, 351, 0, 1738, 1820, 3, 850, 425, 0, 1739, 1820, + 3, 838, 419, 0, 1740, 1820, 3, 318, 159, 0, 1741, 1820, 3, 332, 166, 0, + 1742, 1820, 3, 358, 179, 0, 1743, 1820, 3, 368, 184, 0, 1744, 1820, 3, + 622, 311, 0, 1745, 1820, 3, 36, 18, 0, 1746, 1820, 3, 272, 136, 0, 1747, + 1820, 3, 484, 242, 0, 1748, 1820, 3, 498, 249, 0, 1749, 1820, 3, 752, 376, + 0, 1750, 1820, 3, 500, 250, 0, 1751, 1820, 3, 384, 192, 0, 1752, 1820, + 3, 298, 149, 0, 1753, 1820, 3, 42, 21, 0, 1754, 1820, 3, 280, 140, 0, 1755, + 1820, 3, 172, 86, 0, 1756, 1820, 3, 762, 381, 0, 1757, 1820, 3, 262, 131, + 0, 1758, 1820, 3, 312, 156, 0, 1759, 1820, 3, 710, 355, 0, 1760, 1820, + 3, 406, 203, 0, 1761, 1820, 3, 446, 223, 0, 1762, 1820, 3, 14, 7, 0, 1763, + 1820, 3, 26, 13, 0, 1764, 1820, 3, 376, 188, 0, 1765, 1820, 3, 812, 406, + 0, 1766, 1820, 3, 908, 454, 0, 1767, 1820, 3, 960, 480, 0, 1768, 1820, + 3, 460, 230, 0, 1769, 1820, 3, 936, 468, 0, 1770, 1820, 3, 94, 47, 0, 1771, + 1820, 3, 696, 348, 0, 1772, 1820, 3, 706, 353, 0, 1773, 1820, 3, 506, 253, + 0, 1774, 1820, 3, 508, 254, 0, 1775, 1820, 3, 510, 255, 0, 1776, 1820, + 3, 514, 257, 0, 1777, 1820, 3, 770, 385, 0, 1778, 1820, 3, 316, 158, 0, + 1779, 1820, 3, 714, 357, 0, 1780, 1820, 3, 34, 17, 0, 1781, 1820, 3, 380, + 190, 0, 1782, 1820, 3, 828, 414, 0, 1783, 1820, 3, 904, 452, 0, 1784, 1820, + 3, 886, 443, 0, 1785, 1820, 3, 546, 273, 0, 1786, 1820, 3, 554, 277, 0, + 1787, 1820, 3, 576, 288, 0, 1788, 1820, 3, 370, 185, 0, 1789, 1820, 3, + 594, 297, 0, 1790, 1820, 3, 910, 455, 0, 1791, 1820, 3, 928, 464, 0, 1792, + 1820, 3, 790, 395, 0, 1793, 1820, 3, 278, 139, 0, 1794, 1820, 3, 810, 405, + 0, 1795, 1820, 3, 940, 470, 0, 1796, 1820, 3, 786, 393, 0, 1797, 1820, + 3, 898, 449, 0, 1798, 1820, 3, 512, 256, 0, 1799, 1820, 3, 716, 358, 0, + 1800, 1820, 3, 684, 342, 0, 1801, 1820, 3, 682, 341, 0, 1802, 1820, 3, + 686, 343, 0, 1803, 1820, 3, 728, 364, 0, 1804, 1820, 3, 556, 278, 0, 1805, + 1820, 3, 578, 289, 0, 1806, 1820, 3, 772, 386, 0, 1807, 1820, 3, 540, 270, + 0, 1808, 1820, 3, 968, 484, 0, 1809, 1820, 3, 794, 397, 0, 1810, 1820, + 3, 532, 266, 0, 1811, 1820, 3, 792, 396, 0, 1812, 1820, 3, 950, 475, 0, + 1813, 1820, 3, 856, 428, 0, 1814, 1820, 3, 74, 37, 0, 1815, 1820, 3, 50, + 25, 0, 1816, 1820, 3, 84, 42, 0, 1817, 1820, 3, 806, 403, 0, 1818, 1820, + 3, 10, 5, 0, 1819, 1694, 1, 0, 0, 0, 1819, 1695, 1, 0, 0, 0, 1819, 1696, + 1, 0, 0, 0, 1819, 1697, 1, 0, 0, 0, 1819, 1698, 1, 0, 0, 0, 1819, 1699, + 1, 0, 0, 0, 1819, 1700, 1, 0, 0, 0, 1819, 1701, 1, 0, 0, 0, 1819, 1702, + 1, 0, 0, 0, 1819, 1703, 1, 0, 0, 0, 1819, 1704, 1, 0, 0, 0, 1819, 1705, + 1, 0, 0, 0, 1819, 1706, 1, 0, 0, 0, 1819, 1707, 1, 0, 0, 0, 1819, 1708, + 1, 0, 0, 0, 1819, 1709, 1, 0, 0, 0, 1819, 1710, 1, 0, 0, 0, 1819, 1711, + 1, 0, 0, 0, 1819, 1712, 1, 0, 0, 0, 1819, 1713, 1, 0, 0, 0, 1819, 1714, + 1, 0, 0, 0, 1819, 1715, 1, 0, 0, 0, 1819, 1716, 1, 0, 0, 0, 1819, 1717, + 1, 0, 0, 0, 1819, 1718, 1, 0, 0, 0, 1819, 1719, 1, 0, 0, 0, 1819, 1720, + 1, 0, 0, 0, 1819, 1721, 1, 0, 0, 0, 1819, 1722, 1, 0, 0, 0, 1819, 1723, + 1, 0, 0, 0, 1819, 1724, 1, 0, 0, 0, 1819, 1725, 1, 0, 0, 0, 1819, 1726, + 1, 0, 0, 0, 1819, 1727, 1, 0, 0, 0, 1819, 1728, 1, 0, 0, 0, 1819, 1729, + 1, 0, 0, 0, 1819, 1730, 1, 0, 0, 0, 1819, 1731, 1, 0, 0, 0, 1819, 1732, + 1, 0, 0, 0, 1819, 1733, 1, 0, 0, 0, 1819, 1734, 1, 0, 0, 0, 1819, 1735, + 1, 0, 0, 0, 1819, 1736, 1, 0, 0, 0, 1819, 1737, 1, 0, 0, 0, 1819, 1738, + 1, 0, 0, 0, 1819, 1739, 1, 0, 0, 0, 1819, 1740, 1, 0, 0, 0, 1819, 1741, + 1, 0, 0, 0, 1819, 1742, 1, 0, 0, 0, 1819, 1743, 1, 0, 0, 0, 1819, 1744, + 1, 0, 0, 0, 1819, 1745, 1, 0, 0, 0, 1819, 1746, 1, 0, 0, 0, 1819, 1747, + 1, 0, 0, 0, 1819, 1748, 1, 0, 0, 0, 1819, 1749, 1, 0, 0, 0, 1819, 1750, + 1, 0, 0, 0, 1819, 1751, 1, 0, 0, 0, 1819, 1752, 1, 0, 0, 0, 1819, 1753, + 1, 0, 0, 0, 1819, 1754, 1, 0, 0, 0, 1819, 1755, 1, 0, 0, 0, 1819, 1756, + 1, 0, 0, 0, 1819, 1757, 1, 0, 0, 0, 1819, 1758, 1, 0, 0, 0, 1819, 1759, + 1, 0, 0, 0, 1819, 1760, 1, 0, 0, 0, 1819, 1761, 1, 0, 0, 0, 1819, 1762, + 1, 0, 0, 0, 1819, 1763, 1, 0, 0, 0, 1819, 1764, 1, 0, 0, 0, 1819, 1765, + 1, 0, 0, 0, 1819, 1766, 1, 0, 0, 0, 1819, 1767, 1, 0, 0, 0, 1819, 1768, + 1, 0, 0, 0, 1819, 1769, 1, 0, 0, 0, 1819, 1770, 1, 0, 0, 0, 1819, 1771, + 1, 0, 0, 0, 1819, 1772, 1, 0, 0, 0, 1819, 1773, 1, 0, 0, 0, 1819, 1774, + 1, 0, 0, 0, 1819, 1775, 1, 0, 0, 0, 1819, 1776, 1, 0, 0, 0, 1819, 1777, + 1, 0, 0, 0, 1819, 1778, 1, 0, 0, 0, 1819, 1779, 1, 0, 0, 0, 1819, 1780, + 1, 0, 0, 0, 1819, 1781, 1, 0, 0, 0, 1819, 1782, 1, 0, 0, 0, 1819, 1783, + 1, 0, 0, 0, 1819, 1784, 1, 0, 0, 0, 1819, 1785, 1, 0, 0, 0, 1819, 1786, + 1, 0, 0, 0, 1819, 1787, 1, 0, 0, 0, 1819, 1788, 1, 0, 0, 0, 1819, 1789, + 1, 0, 0, 0, 1819, 1790, 1, 0, 0, 0, 1819, 1791, 1, 0, 0, 0, 1819, 1792, + 1, 0, 0, 0, 1819, 1793, 1, 0, 0, 0, 1819, 1794, 1, 0, 0, 0, 1819, 1795, + 1, 0, 0, 0, 1819, 1796, 1, 0, 0, 0, 1819, 1797, 1, 0, 0, 0, 1819, 1798, + 1, 0, 0, 0, 1819, 1799, 1, 0, 0, 0, 1819, 1800, 1, 0, 0, 0, 1819, 1801, + 1, 0, 0, 0, 1819, 1802, 1, 0, 0, 0, 1819, 1803, 1, 0, 0, 0, 1819, 1804, + 1, 0, 0, 0, 1819, 1805, 1, 0, 0, 0, 1819, 1806, 1, 0, 0, 0, 1819, 1807, + 1, 0, 0, 0, 1819, 1808, 1, 0, 0, 0, 1819, 1809, 1, 0, 0, 0, 1819, 1810, + 1, 0, 0, 0, 1819, 1811, 1, 0, 0, 0, 1819, 1812, 1, 0, 0, 0, 1819, 1813, + 1, 0, 0, 0, 1819, 1814, 1, 0, 0, 0, 1819, 1815, 1, 0, 0, 0, 1819, 1816, + 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1818, 1, 0, 0, 0, 1820, 9, 1, + 0, 0, 0, 1821, 1823, 5, 696, 0, 0, 1822, 1824, 5, 697, 0, 0, 1823, 1822, + 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 11, 1, 0, 0, 0, 1825, 1826, 5, + 454, 0, 0, 1826, 1827, 3, 1218, 609, 0, 1827, 13, 1, 0, 0, 0, 1828, 1829, + 5, 46, 0, 0, 1829, 1830, 5, 330, 0, 0, 1830, 1832, 3, 1420, 710, 0, 1831, + 1833, 3, 16, 8, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, + 1834, 1, 0, 0, 0, 1834, 1835, 3, 18, 9, 0, 1835, 15, 1, 0, 0, 0, 1836, + 1837, 5, 105, 0, 0, 1837, 17, 1, 0, 0, 0, 1838, 1840, 3, 24, 12, 0, 1839, + 1838, 1, 0, 0, 0, 1840, 1843, 1, 0, 0, 0, 1841, 1839, 1, 0, 0, 0, 1841, + 1842, 1, 0, 0, 0, 1842, 19, 1, 0, 0, 0, 1843, 1841, 1, 0, 0, 0, 1844, 1846, + 3, 22, 11, 0, 1845, 1844, 1, 0, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1845, + 1, 0, 0, 0, 1847, 1848, 1, 0, 0, 0, 1848, 21, 1, 0, 0, 0, 1849, 1847, 1, + 0, 0, 0, 1850, 1853, 5, 299, 0, 0, 1851, 1854, 3, 1412, 706, 0, 1852, 1854, + 5, 78, 0, 0, 1853, 1851, 1, 0, 0, 0, 1853, 1852, 1, 0, 0, 0, 1854, 1869, + 1, 0, 0, 0, 1855, 1856, 7, 0, 0, 0, 1856, 1857, 5, 299, 0, 0, 1857, 1869, + 3, 1412, 706, 0, 1858, 1869, 5, 247, 0, 0, 1859, 1860, 5, 183, 0, 0, 1860, + 1861, 5, 74, 0, 0, 1861, 1869, 3, 1418, 709, 0, 1862, 1863, 5, 383, 0, + 0, 1863, 1864, 5, 380, 0, 0, 1864, 1869, 3, 1412, 706, 0, 1865, 1866, 5, + 99, 0, 0, 1866, 1869, 3, 1424, 712, 0, 1867, 1869, 3, 1436, 718, 0, 1868, + 1850, 1, 0, 0, 0, 1868, 1855, 1, 0, 0, 0, 1868, 1858, 1, 0, 0, 0, 1868, + 1859, 1, 0, 0, 0, 1868, 1862, 1, 0, 0, 0, 1868, 1865, 1, 0, 0, 0, 1868, + 1867, 1, 0, 0, 0, 1869, 23, 1, 0, 0, 0, 1870, 1881, 3, 22, 11, 0, 1871, + 1872, 5, 360, 0, 0, 1872, 1881, 3, 1410, 705, 0, 1873, 1874, 5, 153, 0, + 0, 1874, 1881, 3, 1424, 712, 0, 1875, 1876, 5, 330, 0, 0, 1876, 1881, 3, + 1424, 712, 0, 1877, 1878, 5, 68, 0, 0, 1878, 1879, 7, 1, 0, 0, 1879, 1881, + 3, 1424, 712, 0, 1880, 1870, 1, 0, 0, 0, 1880, 1871, 1, 0, 0, 0, 1880, + 1873, 1, 0, 0, 0, 1880, 1875, 1, 0, 0, 0, 1880, 1877, 1, 0, 0, 0, 1881, + 25, 1, 0, 0, 0, 1882, 1883, 5, 46, 0, 0, 1883, 1884, 5, 99, 0, 0, 1884, + 1886, 3, 1420, 710, 0, 1885, 1887, 3, 16, 8, 0, 1886, 1885, 1, 0, 0, 0, + 1886, 1887, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 3, 18, 9, 0, + 1889, 27, 1, 0, 0, 0, 1890, 1891, 5, 157, 0, 0, 1891, 1892, 7, 2, 0, 0, + 1892, 1894, 3, 1422, 711, 0, 1893, 1895, 3, 16, 8, 0, 1894, 1893, 1, 0, + 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1897, 3, 20, + 10, 0, 1897, 29, 1, 0, 0, 0, 1898, 1899, 5, 68, 0, 0, 1899, 1900, 5, 194, + 0, 0, 1900, 1901, 3, 1394, 697, 0, 1901, 31, 1, 0, 0, 0, 1902, 1903, 5, + 157, 0, 0, 1903, 1905, 7, 2, 0, 0, 1904, 1906, 5, 30, 0, 0, 1905, 1904, + 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, + 3, 1422, 711, 0, 1908, 1910, 3, 30, 15, 0, 1909, 1908, 1, 0, 0, 0, 1909, + 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1912, 3, 80, 40, 0, 1912, + 33, 1, 0, 0, 0, 1913, 1914, 5, 210, 0, 0, 1914, 1917, 7, 3, 0, 0, 1915, + 1916, 5, 239, 0, 0, 1916, 1918, 5, 409, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, + 1918, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 3, 1424, 712, 0, + 1920, 35, 1, 0, 0, 0, 1921, 1922, 5, 46, 0, 0, 1922, 1923, 5, 66, 0, 0, + 1923, 1925, 3, 1420, 710, 0, 1924, 1926, 3, 16, 8, 0, 1925, 1924, 1, 0, + 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1928, 3, 18, + 9, 0, 1928, 37, 1, 0, 0, 0, 1929, 1930, 5, 157, 0, 0, 1930, 1931, 5, 66, + 0, 0, 1931, 1932, 3, 1422, 711, 0, 1932, 1933, 3, 40, 20, 0, 1933, 1934, + 5, 99, 0, 0, 1934, 1935, 3, 1424, 712, 0, 1935, 39, 1, 0, 0, 0, 1936, 1937, + 7, 4, 0, 0, 1937, 41, 1, 0, 0, 0, 1938, 1939, 5, 46, 0, 0, 1939, 1943, + 5, 335, 0, 0, 1940, 1941, 5, 239, 0, 0, 1941, 1942, 5, 77, 0, 0, 1942, + 1944, 5, 409, 0, 0, 1943, 1940, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, + 1951, 1, 0, 0, 0, 1945, 1947, 3, 44, 22, 0, 1946, 1945, 1, 0, 0, 0, 1946, + 1947, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1949, 5, 125, 0, 0, 1949, + 1952, 3, 1422, 711, 0, 1950, 1952, 3, 1426, 713, 0, 1951, 1946, 1, 0, 0, + 0, 1951, 1950, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1954, 3, 46, 23, + 0, 1954, 43, 1, 0, 0, 0, 1955, 1956, 3, 1426, 713, 0, 1956, 45, 1, 0, 0, + 0, 1957, 1959, 3, 48, 24, 0, 1958, 1957, 1, 0, 0, 0, 1959, 1962, 1, 0, + 0, 0, 1960, 1958, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 47, 1, 0, 0, + 0, 1962, 1960, 1, 0, 0, 0, 1963, 1970, 3, 172, 86, 0, 1964, 1970, 3, 594, + 297, 0, 1965, 1970, 3, 280, 140, 0, 1966, 1970, 3, 406, 203, 0, 1967, 1970, + 3, 554, 277, 0, 1968, 1970, 3, 806, 403, 0, 1969, 1963, 1, 0, 0, 0, 1969, + 1964, 1, 0, 0, 0, 1969, 1965, 1, 0, 0, 0, 1969, 1966, 1, 0, 0, 0, 1969, + 1967, 1, 0, 0, 0, 1969, 1968, 1, 0, 0, 0, 1970, 49, 1, 0, 0, 0, 1971, 1973, + 5, 345, 0, 0, 1972, 1974, 7, 5, 0, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, + 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 3, 52, 26, 0, 1976, 51, + 1, 0, 0, 0, 1977, 1978, 5, 368, 0, 0, 1978, 1986, 3, 800, 400, 0, 1979, + 1980, 5, 344, 0, 0, 1980, 1981, 5, 173, 0, 0, 1981, 1982, 5, 36, 0, 0, + 1982, 1983, 5, 368, 0, 0, 1983, 1986, 3, 800, 400, 0, 1984, 1986, 3, 56, + 28, 0, 1985, 1977, 1, 0, 0, 0, 1985, 1979, 1, 0, 0, 0, 1985, 1984, 1, 0, + 0, 0, 1986, 53, 1, 0, 0, 0, 1987, 1988, 3, 58, 29, 0, 1988, 1989, 7, 6, + 0, 0, 1989, 1990, 3, 60, 30, 0, 1990, 55, 1, 0, 0, 0, 1991, 2019, 3, 54, + 27, 0, 1992, 1993, 3, 58, 29, 0, 1993, 1994, 5, 64, 0, 0, 1994, 1995, 5, + 455, 0, 0, 1995, 2019, 1, 0, 0, 0, 1996, 1997, 5, 432, 0, 0, 1997, 1998, + 5, 398, 0, 0, 1998, 2019, 3, 68, 34, 0, 1999, 2000, 5, 171, 0, 0, 2000, + 2019, 3, 1412, 706, 0, 2001, 2002, 5, 335, 0, 0, 2002, 2019, 3, 1412, 706, + 0, 2003, 2005, 5, 279, 0, 0, 2004, 2006, 3, 70, 35, 0, 2005, 2004, 1, 0, + 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2019, 1, 0, 0, 0, 2007, 2008, 5, 330, + 0, 0, 2008, 2019, 3, 72, 36, 0, 2009, 2010, 5, 344, 0, 0, 2010, 2011, 5, + 125, 0, 0, 2011, 2019, 3, 72, 36, 0, 2012, 2013, 5, 395, 0, 0, 2013, 2014, + 5, 291, 0, 0, 2014, 2019, 3, 1280, 640, 0, 2015, 2016, 5, 368, 0, 0, 2016, + 2017, 5, 349, 0, 0, 2017, 2019, 3, 1412, 706, 0, 2018, 1991, 1, 0, 0, 0, + 2018, 1992, 1, 0, 0, 0, 2018, 1996, 1, 0, 0, 0, 2018, 1999, 1, 0, 0, 0, + 2018, 2001, 1, 0, 0, 0, 2018, 2003, 1, 0, 0, 0, 2018, 2007, 1, 0, 0, 0, + 2018, 2009, 1, 0, 0, 0, 2018, 2012, 1, 0, 0, 0, 2018, 2015, 1, 0, 0, 0, + 2019, 57, 1, 0, 0, 0, 2020, 2025, 3, 1426, 713, 0, 2021, 2022, 5, 11, 0, + 0, 2022, 2024, 3, 1426, 713, 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, 59, 1, 0, + 0, 0, 2027, 2025, 1, 0, 0, 0, 2028, 2033, 3, 62, 31, 0, 2029, 2030, 5, + 6, 0, 0, 2030, 2032, 3, 62, 31, 0, 2031, 2029, 1, 0, 0, 0, 2032, 2035, + 1, 0, 0, 0, 2033, 2031, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 61, 1, + 0, 0, 0, 2035, 2033, 1, 0, 0, 0, 2036, 2039, 3, 66, 33, 0, 2037, 2039, + 3, 294, 147, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2037, 1, 0, 0, 0, 2039, 63, + 1, 0, 0, 0, 2040, 2041, 5, 312, 0, 0, 2041, 2046, 7, 7, 0, 0, 2042, 2043, + 5, 322, 0, 0, 2043, 2046, 5, 312, 0, 0, 2044, 2046, 5, 342, 0, 0, 2045, + 2040, 1, 0, 0, 0, 2045, 2042, 1, 0, 0, 0, 2045, 2044, 1, 0, 0, 0, 2046, + 65, 1, 0, 0, 0, 2047, 2052, 5, 96, 0, 0, 2048, 2052, 5, 60, 0, 0, 2049, + 2052, 5, 80, 0, 0, 2050, 2052, 3, 72, 36, 0, 2051, 2047, 1, 0, 0, 0, 2051, + 2048, 1, 0, 0, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2050, 1, 0, 0, 0, 2052, + 67, 1, 0, 0, 0, 2053, 2070, 3, 1412, 706, 0, 2054, 2070, 3, 1436, 718, + 0, 2055, 2056, 3, 1160, 580, 0, 2056, 2058, 3, 1412, 706, 0, 2057, 2059, + 3, 1164, 582, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, + 2070, 1, 0, 0, 0, 2060, 2061, 3, 1160, 580, 0, 2061, 2062, 5, 2, 0, 0, + 2062, 2063, 3, 1410, 705, 0, 2063, 2064, 5, 3, 0, 0, 2064, 2065, 3, 1412, + 706, 0, 2065, 2070, 1, 0, 0, 0, 2066, 2070, 3, 294, 147, 0, 2067, 2070, + 5, 53, 0, 0, 2068, 2070, 5, 264, 0, 0, 2069, 2053, 1, 0, 0, 0, 2069, 2054, + 1, 0, 0, 0, 2069, 2055, 1, 0, 0, 0, 2069, 2060, 1, 0, 0, 0, 2069, 2066, + 1, 0, 0, 0, 2069, 2067, 1, 0, 0, 0, 2069, 2068, 1, 0, 0, 0, 2070, 69, 1, + 0, 0, 0, 2071, 2074, 3, 1412, 706, 0, 2072, 2074, 5, 53, 0, 0, 2073, 2071, + 1, 0, 0, 0, 2073, 2072, 1, 0, 0, 0, 2074, 71, 1, 0, 0, 0, 2075, 2078, 3, + 1432, 716, 0, 2076, 2078, 3, 1412, 706, 0, 2077, 2075, 1, 0, 0, 0, 2077, + 2076, 1, 0, 0, 0, 2078, 73, 1, 0, 0, 0, 2079, 2080, 5, 325, 0, 0, 2080, + 2081, 3, 76, 38, 0, 2081, 75, 1, 0, 0, 0, 2082, 2091, 3, 78, 39, 0, 2083, + 2084, 5, 432, 0, 0, 2084, 2091, 5, 398, 0, 0, 2085, 2086, 5, 368, 0, 0, + 2086, 2087, 5, 254, 0, 0, 2087, 2091, 5, 261, 0, 0, 2088, 2089, 5, 344, + 0, 0, 2089, 2091, 5, 125, 0, 0, 2090, 2082, 1, 0, 0, 0, 2090, 2083, 1, + 0, 0, 0, 2090, 2085, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2091, 77, 1, 0, + 0, 0, 2092, 2095, 3, 58, 29, 0, 2093, 2095, 5, 30, 0, 0, 2094, 2092, 1, + 0, 0, 0, 2094, 2093, 1, 0, 0, 0, 2095, 79, 1, 0, 0, 0, 2096, 2097, 5, 345, + 0, 0, 2097, 2100, 3, 52, 26, 0, 2098, 2100, 3, 74, 37, 0, 2099, 2096, 1, + 0, 0, 0, 2099, 2098, 1, 0, 0, 0, 2100, 81, 1, 0, 0, 0, 2101, 2102, 5, 345, + 0, 0, 2102, 2105, 3, 56, 28, 0, 2103, 2105, 3, 74, 37, 0, 2104, 2101, 1, + 0, 0, 0, 2104, 2103, 1, 0, 0, 0, 2105, 83, 1, 0, 0, 0, 2106, 2116, 5, 347, + 0, 0, 2107, 2117, 3, 58, 29, 0, 2108, 2109, 5, 432, 0, 0, 2109, 2117, 5, + 398, 0, 0, 2110, 2111, 5, 368, 0, 0, 2111, 2112, 5, 254, 0, 0, 2112, 2117, + 5, 261, 0, 0, 2113, 2114, 5, 344, 0, 0, 2114, 2117, 5, 125, 0, 0, 2115, + 2117, 5, 30, 0, 0, 2116, 2107, 1, 0, 0, 0, 2116, 2108, 1, 0, 0, 0, 2116, + 2110, 1, 0, 0, 0, 2116, 2113, 1, 0, 0, 0, 2116, 2115, 1, 0, 0, 0, 2117, + 85, 1, 0, 0, 0, 2118, 2119, 5, 345, 0, 0, 2119, 2120, 5, 184, 0, 0, 2120, + 2121, 3, 88, 44, 0, 2121, 2122, 3, 90, 45, 0, 2122, 87, 1, 0, 0, 0, 2123, + 2126, 5, 30, 0, 0, 2124, 2126, 3, 1388, 694, 0, 2125, 2123, 1, 0, 0, 0, + 2125, 2124, 1, 0, 0, 0, 2126, 89, 1, 0, 0, 0, 2127, 2128, 7, 8, 0, 0, 2128, + 91, 1, 0, 0, 0, 2129, 2130, 5, 174, 0, 0, 2130, 93, 1, 0, 0, 0, 2131, 2132, + 5, 206, 0, 0, 2132, 2133, 7, 9, 0, 0, 2133, 95, 1, 0, 0, 0, 2134, 2135, + 5, 157, 0, 0, 2135, 2138, 5, 92, 0, 0, 2136, 2137, 5, 239, 0, 0, 2137, + 2139, 5, 409, 0, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, + 2140, 1, 0, 0, 0, 2140, 2143, 3, 1082, 541, 0, 2141, 2144, 3, 98, 49, 0, + 2142, 2144, 3, 100, 50, 0, 2143, 2141, 1, 0, 0, 0, 2143, 2142, 1, 0, 0, + 0, 2144, 2247, 1, 0, 0, 0, 2145, 2146, 5, 157, 0, 0, 2146, 2147, 5, 92, + 0, 0, 2147, 2148, 5, 30, 0, 0, 2148, 2149, 5, 68, 0, 0, 2149, 2150, 5, + 363, 0, 0, 2150, 2154, 3, 1394, 697, 0, 2151, 2152, 5, 293, 0, 0, 2152, + 2153, 5, 166, 0, 0, 2153, 2155, 3, 1424, 712, 0, 2154, 2151, 1, 0, 0, 0, + 2154, 2155, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 2157, 5, 345, 0, + 0, 2157, 2158, 5, 363, 0, 0, 2158, 2160, 3, 1394, 697, 0, 2159, 2161, 3, + 946, 473, 0, 2160, 2159, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2247, + 1, 0, 0, 0, 2162, 2163, 5, 157, 0, 0, 2163, 2166, 5, 245, 0, 0, 2164, 2165, + 5, 239, 0, 0, 2165, 2167, 5, 409, 0, 0, 2166, 2164, 1, 0, 0, 0, 2166, 2167, + 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2171, 3, 1390, 695, 0, 2169, + 2172, 3, 98, 49, 0, 2170, 2172, 3, 102, 51, 0, 2171, 2169, 1, 0, 0, 0, + 2171, 2170, 1, 0, 0, 0, 2172, 2247, 1, 0, 0, 0, 2173, 2174, 5, 157, 0, + 0, 2174, 2175, 5, 245, 0, 0, 2175, 2176, 5, 30, 0, 0, 2176, 2177, 5, 68, + 0, 0, 2177, 2178, 5, 363, 0, 0, 2178, 2182, 3, 1394, 697, 0, 2179, 2180, + 5, 293, 0, 0, 2180, 2181, 5, 166, 0, 0, 2181, 2183, 3, 1424, 712, 0, 2182, + 2179, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, + 2185, 5, 345, 0, 0, 2185, 2186, 5, 363, 0, 0, 2186, 2188, 3, 1394, 697, + 0, 2187, 2189, 3, 946, 473, 0, 2188, 2187, 1, 0, 0, 0, 2188, 2189, 1, 0, + 0, 0, 2189, 2247, 1, 0, 0, 0, 2190, 2191, 5, 157, 0, 0, 2191, 2194, 5, + 340, 0, 0, 2192, 2193, 5, 239, 0, 0, 2193, 2195, 5, 409, 0, 0, 2194, 2192, + 1, 0, 0, 0, 2194, 2195, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, + 3, 1390, 695, 0, 2197, 2198, 3, 98, 49, 0, 2198, 2247, 1, 0, 0, 0, 2199, + 2200, 5, 157, 0, 0, 2200, 2203, 5, 388, 0, 0, 2201, 2202, 5, 239, 0, 0, + 2202, 2204, 5, 409, 0, 0, 2203, 2201, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, + 0, 2204, 2205, 1, 0, 0, 0, 2205, 2206, 3, 1390, 695, 0, 2206, 2207, 3, + 98, 49, 0, 2207, 2247, 1, 0, 0, 0, 2208, 2209, 5, 157, 0, 0, 2209, 2210, + 5, 270, 0, 0, 2210, 2213, 5, 388, 0, 0, 2211, 2212, 5, 239, 0, 0, 2212, + 2214, 5, 409, 0, 0, 2213, 2211, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, + 2215, 1, 0, 0, 0, 2215, 2216, 3, 1390, 695, 0, 2216, 2217, 3, 98, 49, 0, + 2217, 2247, 1, 0, 0, 0, 2218, 2219, 5, 157, 0, 0, 2219, 2220, 5, 270, 0, + 0, 2220, 2221, 5, 388, 0, 0, 2221, 2222, 5, 30, 0, 0, 2222, 2223, 5, 68, + 0, 0, 2223, 2224, 5, 363, 0, 0, 2224, 2228, 3, 1394, 697, 0, 2225, 2226, + 5, 293, 0, 0, 2226, 2227, 5, 166, 0, 0, 2227, 2229, 3, 1424, 712, 0, 2228, + 2225, 1, 0, 0, 0, 2228, 2229, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, + 2231, 5, 345, 0, 0, 2231, 2232, 5, 363, 0, 0, 2232, 2234, 3, 1394, 697, + 0, 2233, 2235, 3, 946, 473, 0, 2234, 2233, 1, 0, 0, 0, 2234, 2235, 1, 0, + 0, 0, 2235, 2247, 1, 0, 0, 0, 2236, 2237, 5, 157, 0, 0, 2237, 2238, 5, + 63, 0, 0, 2238, 2241, 5, 92, 0, 0, 2239, 2240, 5, 239, 0, 0, 2240, 2242, + 5, 409, 0, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 2243, + 1, 0, 0, 0, 2243, 2244, 3, 1082, 541, 0, 2244, 2245, 3, 98, 49, 0, 2245, + 2247, 1, 0, 0, 0, 2246, 2134, 1, 0, 0, 0, 2246, 2145, 1, 0, 0, 0, 2246, + 2162, 1, 0, 0, 0, 2246, 2173, 1, 0, 0, 0, 2246, 2190, 1, 0, 0, 0, 2246, + 2199, 1, 0, 0, 0, 2246, 2208, 1, 0, 0, 0, 2246, 2218, 1, 0, 0, 0, 2246, + 2236, 1, 0, 0, 0, 2247, 97, 1, 0, 0, 0, 2248, 2253, 3, 104, 52, 0, 2249, + 2250, 5, 6, 0, 0, 2250, 2252, 3, 104, 52, 0, 2251, 2249, 1, 0, 0, 0, 2252, + 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, + 99, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 456, 0, 0, 2257, + 2258, 5, 297, 0, 0, 2258, 2259, 3, 1390, 695, 0, 2259, 2260, 3, 128, 64, + 0, 2260, 2265, 1, 0, 0, 0, 2261, 2262, 5, 457, 0, 0, 2262, 2263, 5, 297, + 0, 0, 2263, 2265, 3, 1390, 695, 0, 2264, 2256, 1, 0, 0, 0, 2264, 2261, + 1, 0, 0, 0, 2265, 101, 1, 0, 0, 0, 2266, 2267, 5, 456, 0, 0, 2267, 2268, + 5, 297, 0, 0, 2268, 2269, 3, 1390, 695, 0, 2269, 103, 1, 0, 0, 0, 2270, + 2271, 5, 152, 0, 0, 2271, 2573, 3, 188, 94, 0, 2272, 2273, 5, 152, 0, 0, + 2273, 2274, 5, 239, 0, 0, 2274, 2275, 5, 77, 0, 0, 2275, 2276, 5, 409, + 0, 0, 2276, 2573, 3, 188, 94, 0, 2277, 2278, 5, 152, 0, 0, 2278, 2279, + 5, 44, 0, 0, 2279, 2573, 3, 188, 94, 0, 2280, 2281, 5, 152, 0, 0, 2281, + 2282, 5, 44, 0, 0, 2282, 2283, 5, 239, 0, 0, 2283, 2284, 5, 77, 0, 0, 2284, + 2285, 5, 409, 0, 0, 2285, 2573, 3, 188, 94, 0, 2286, 2288, 5, 157, 0, 0, + 2287, 2289, 3, 730, 365, 0, 2288, 2287, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, + 0, 2289, 2290, 1, 0, 0, 0, 2290, 2291, 3, 1426, 713, 0, 2291, 2292, 3, + 106, 53, 0, 2292, 2573, 1, 0, 0, 0, 2293, 2295, 5, 157, 0, 0, 2294, 2296, + 3, 730, 365, 0, 2295, 2294, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2297, + 1, 0, 0, 0, 2297, 2298, 3, 1426, 713, 0, 2298, 2299, 5, 210, 0, 0, 2299, + 2300, 5, 77, 0, 0, 2300, 2301, 5, 78, 0, 0, 2301, 2573, 1, 0, 0, 0, 2302, + 2304, 5, 157, 0, 0, 2303, 2305, 3, 730, 365, 0, 2304, 2303, 1, 0, 0, 0, + 2304, 2305, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2307, 3, 1426, 713, + 0, 2307, 2308, 5, 345, 0, 0, 2308, 2309, 5, 77, 0, 0, 2309, 2310, 5, 78, + 0, 0, 2310, 2573, 1, 0, 0, 0, 2311, 2313, 5, 157, 0, 0, 2312, 2314, 3, + 730, 365, 0, 2313, 2312, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2315, + 1, 0, 0, 0, 2315, 2316, 3, 1426, 713, 0, 2316, 2317, 5, 210, 0, 0, 2317, + 2318, 5, 458, 0, 0, 2318, 2573, 1, 0, 0, 0, 2319, 2321, 5, 157, 0, 0, 2320, + 2322, 3, 730, 365, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, + 2323, 1, 0, 0, 0, 2323, 2324, 3, 1426, 713, 0, 2324, 2325, 5, 210, 0, 0, + 2325, 2326, 5, 458, 0, 0, 2326, 2327, 5, 239, 0, 0, 2327, 2328, 5, 409, + 0, 0, 2328, 2573, 1, 0, 0, 0, 2329, 2331, 5, 157, 0, 0, 2330, 2332, 3, + 730, 365, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, + 1, 0, 0, 0, 2333, 2334, 3, 1426, 713, 0, 2334, 2335, 5, 345, 0, 0, 2335, + 2336, 5, 354, 0, 0, 2336, 2337, 3, 1418, 709, 0, 2337, 2573, 1, 0, 0, 0, + 2338, 2340, 5, 157, 0, 0, 2339, 2341, 3, 730, 365, 0, 2340, 2339, 1, 0, + 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2343, 3, 1410, + 705, 0, 2343, 2344, 5, 345, 0, 0, 2344, 2345, 5, 354, 0, 0, 2345, 2346, + 3, 1418, 709, 0, 2346, 2573, 1, 0, 0, 0, 2347, 2349, 5, 157, 0, 0, 2348, + 2350, 3, 730, 365, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, + 2351, 1, 0, 0, 0, 2351, 2352, 3, 1426, 713, 0, 2352, 2353, 5, 345, 0, 0, + 2353, 2354, 3, 116, 58, 0, 2354, 2573, 1, 0, 0, 0, 2355, 2357, 5, 157, + 0, 0, 2356, 2358, 3, 730, 365, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, + 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 3, 1426, 713, 0, 2360, 2361, + 5, 325, 0, 0, 2361, 2362, 3, 116, 58, 0, 2362, 2573, 1, 0, 0, 0, 2363, + 2365, 5, 157, 0, 0, 2364, 2366, 3, 730, 365, 0, 2365, 2364, 1, 0, 0, 0, + 2365, 2366, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2368, 3, 1426, 713, + 0, 2368, 2369, 5, 345, 0, 0, 2369, 2370, 5, 357, 0, 0, 2370, 2371, 3, 1426, + 713, 0, 2371, 2573, 1, 0, 0, 0, 2372, 2374, 5, 157, 0, 0, 2373, 2375, 3, + 730, 365, 0, 2374, 2373, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2376, + 1, 0, 0, 0, 2376, 2377, 3, 1426, 713, 0, 2377, 2378, 5, 152, 0, 0, 2378, + 2379, 5, 459, 0, 0, 2379, 2380, 3, 200, 100, 0, 2380, 2381, 5, 36, 0, 0, + 2381, 2383, 5, 238, 0, 0, 2382, 2384, 3, 286, 143, 0, 2383, 2382, 1, 0, + 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2573, 1, 0, 0, 0, 2385, 2387, 5, 157, + 0, 0, 2386, 2388, 3, 730, 365, 0, 2387, 2386, 1, 0, 0, 0, 2387, 2388, 1, + 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 3, 1426, 713, 0, 2390, 2391, + 3, 124, 62, 0, 2391, 2573, 1, 0, 0, 0, 2392, 2394, 5, 157, 0, 0, 2393, + 2395, 3, 730, 365, 0, 2394, 2393, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, + 2396, 1, 0, 0, 0, 2396, 2397, 3, 1426, 713, 0, 2397, 2398, 5, 210, 0, 0, + 2398, 2399, 5, 238, 0, 0, 2399, 2573, 1, 0, 0, 0, 2400, 2402, 5, 157, 0, + 0, 2401, 2403, 3, 730, 365, 0, 2402, 2401, 1, 0, 0, 0, 2402, 2403, 1, 0, + 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 3, 1426, 713, 0, 2405, 2406, + 5, 210, 0, 0, 2406, 2407, 5, 238, 0, 0, 2407, 2408, 5, 239, 0, 0, 2408, + 2409, 5, 409, 0, 0, 2409, 2573, 1, 0, 0, 0, 2410, 2412, 5, 210, 0, 0, 2411, + 2413, 3, 730, 365, 0, 2412, 2411, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, + 2414, 1, 0, 0, 0, 2414, 2415, 5, 239, 0, 0, 2415, 2416, 5, 409, 0, 0, 2416, + 2418, 3, 1426, 713, 0, 2417, 2419, 3, 108, 54, 0, 2418, 2417, 1, 0, 0, + 0, 2418, 2419, 1, 0, 0, 0, 2419, 2573, 1, 0, 0, 0, 2420, 2422, 5, 210, + 0, 0, 2421, 2423, 3, 730, 365, 0, 2422, 2421, 1, 0, 0, 0, 2422, 2423, 1, + 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2426, 3, 1426, 713, 0, 2425, 2427, + 3, 108, 54, 0, 2426, 2425, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2573, + 1, 0, 0, 0, 2428, 2430, 5, 157, 0, 0, 2429, 2431, 3, 730, 365, 0, 2430, + 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, + 2434, 3, 1426, 713, 0, 2433, 2435, 3, 732, 366, 0, 2434, 2433, 1, 0, 0, + 0, 2434, 2435, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 5, 372, + 0, 0, 2437, 2439, 3, 1126, 563, 0, 2438, 2440, 3, 110, 55, 0, 2439, 2438, + 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2442, 1, 0, 0, 0, 2441, 2443, + 3, 112, 56, 0, 2442, 2441, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2573, + 1, 0, 0, 0, 2444, 2446, 5, 157, 0, 0, 2445, 2447, 3, 730, 365, 0, 2446, + 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, + 2449, 3, 1426, 713, 0, 2449, 2450, 3, 346, 173, 0, 2450, 2573, 1, 0, 0, + 0, 2451, 2452, 5, 152, 0, 0, 2452, 2573, 3, 210, 105, 0, 2453, 2454, 5, + 157, 0, 0, 2454, 2455, 5, 45, 0, 0, 2455, 2456, 3, 1394, 697, 0, 2456, + 2457, 3, 442, 221, 0, 2457, 2573, 1, 0, 0, 0, 2458, 2459, 5, 384, 0, 0, + 2459, 2460, 5, 45, 0, 0, 2460, 2573, 3, 1394, 697, 0, 2461, 2462, 5, 210, + 0, 0, 2462, 2463, 5, 45, 0, 0, 2463, 2464, 5, 239, 0, 0, 2464, 2465, 5, + 409, 0, 0, 2465, 2467, 3, 1394, 697, 0, 2466, 2468, 3, 108, 54, 0, 2467, + 2466, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2573, 1, 0, 0, 0, 2469, + 2470, 5, 210, 0, 0, 2470, 2471, 5, 45, 0, 0, 2471, 2473, 3, 1394, 697, + 0, 2472, 2474, 3, 108, 54, 0, 2473, 2472, 1, 0, 0, 0, 2473, 2474, 1, 0, + 0, 0, 2474, 2573, 1, 0, 0, 0, 2475, 2476, 5, 345, 0, 0, 2476, 2477, 5, + 391, 0, 0, 2477, 2573, 5, 289, 0, 0, 2478, 2479, 5, 177, 0, 0, 2479, 2480, + 5, 80, 0, 0, 2480, 2573, 3, 1394, 697, 0, 2481, 2482, 5, 345, 0, 0, 2482, + 2483, 5, 391, 0, 0, 2483, 2573, 5, 177, 0, 0, 2484, 2485, 5, 345, 0, 0, + 2485, 2573, 5, 460, 0, 0, 2486, 2487, 5, 345, 0, 0, 2487, 2573, 5, 379, + 0, 0, 2488, 2489, 5, 212, 0, 0, 2489, 2490, 5, 369, 0, 0, 2490, 2573, 3, + 1394, 697, 0, 2491, 2492, 5, 212, 0, 0, 2492, 2493, 5, 158, 0, 0, 2493, + 2494, 5, 369, 0, 0, 2494, 2573, 3, 1394, 697, 0, 2495, 2496, 5, 212, 0, + 0, 2496, 2497, 5, 324, 0, 0, 2497, 2498, 5, 369, 0, 0, 2498, 2573, 3, 1394, + 697, 0, 2499, 2500, 5, 212, 0, 0, 2500, 2501, 5, 369, 0, 0, 2501, 2573, + 5, 30, 0, 0, 2502, 2503, 5, 212, 0, 0, 2503, 2504, 5, 369, 0, 0, 2504, + 2573, 5, 99, 0, 0, 2505, 2506, 5, 205, 0, 0, 2506, 2507, 5, 369, 0, 0, + 2507, 2573, 3, 1394, 697, 0, 2508, 2509, 5, 205, 0, 0, 2509, 2510, 5, 369, + 0, 0, 2510, 2573, 5, 30, 0, 0, 2511, 2512, 5, 205, 0, 0, 2512, 2513, 5, + 369, 0, 0, 2513, 2573, 5, 99, 0, 0, 2514, 2515, 5, 212, 0, 0, 2515, 2516, + 5, 333, 0, 0, 2516, 2573, 3, 1394, 697, 0, 2517, 2518, 5, 212, 0, 0, 2518, + 2519, 5, 158, 0, 0, 2519, 2520, 5, 333, 0, 0, 2520, 2573, 3, 1394, 697, + 0, 2521, 2522, 5, 212, 0, 0, 2522, 2523, 5, 324, 0, 0, 2523, 2524, 5, 333, + 0, 0, 2524, 2573, 3, 1394, 697, 0, 2525, 2526, 5, 205, 0, 0, 2526, 2527, + 5, 333, 0, 0, 2527, 2573, 3, 1394, 697, 0, 2528, 2529, 5, 247, 0, 0, 2529, + 2573, 3, 1390, 695, 0, 2530, 2531, 5, 281, 0, 0, 2531, 2532, 5, 247, 0, + 0, 2532, 2573, 3, 1390, 695, 0, 2533, 2534, 5, 287, 0, 0, 2534, 2573, 3, + 526, 263, 0, 2535, 2536, 5, 77, 0, 0, 2536, 2573, 5, 287, 0, 0, 2537, 2538, + 5, 294, 0, 0, 2538, 2539, 5, 94, 0, 0, 2539, 2573, 3, 1422, 711, 0, 2540, + 2541, 5, 345, 0, 0, 2541, 2542, 5, 150, 0, 0, 2542, 2543, 5, 467, 0, 0, + 2543, 2573, 3, 1394, 697, 0, 2544, 2545, 5, 345, 0, 0, 2545, 2546, 5, 363, + 0, 0, 2546, 2573, 3, 1394, 697, 0, 2547, 2548, 5, 345, 0, 0, 2548, 2573, + 3, 116, 58, 0, 2549, 2550, 5, 325, 0, 0, 2550, 2573, 3, 116, 58, 0, 2551, + 2552, 5, 324, 0, 0, 2552, 2553, 5, 238, 0, 0, 2553, 2573, 3, 114, 57, 0, + 2554, 2555, 5, 212, 0, 0, 2555, 2556, 5, 428, 0, 0, 2556, 2557, 5, 261, + 0, 0, 2557, 2573, 5, 339, 0, 0, 2558, 2559, 5, 205, 0, 0, 2559, 2560, 5, + 428, 0, 0, 2560, 2561, 5, 261, 0, 0, 2561, 2573, 5, 339, 0, 0, 2562, 2563, + 5, 228, 0, 0, 2563, 2564, 5, 428, 0, 0, 2564, 2565, 5, 261, 0, 0, 2565, + 2573, 5, 339, 0, 0, 2566, 2567, 5, 281, 0, 0, 2567, 2568, 5, 228, 0, 0, + 2568, 2569, 5, 428, 0, 0, 2569, 2570, 5, 261, 0, 0, 2570, 2573, 5, 339, + 0, 0, 2571, 2573, 3, 346, 173, 0, 2572, 2270, 1, 0, 0, 0, 2572, 2272, 1, + 0, 0, 0, 2572, 2277, 1, 0, 0, 0, 2572, 2280, 1, 0, 0, 0, 2572, 2286, 1, + 0, 0, 0, 2572, 2293, 1, 0, 0, 0, 2572, 2302, 1, 0, 0, 0, 2572, 2311, 1, + 0, 0, 0, 2572, 2319, 1, 0, 0, 0, 2572, 2329, 1, 0, 0, 0, 2572, 2338, 1, + 0, 0, 0, 2572, 2347, 1, 0, 0, 0, 2572, 2355, 1, 0, 0, 0, 2572, 2363, 1, + 0, 0, 0, 2572, 2372, 1, 0, 0, 0, 2572, 2385, 1, 0, 0, 0, 2572, 2392, 1, + 0, 0, 0, 2572, 2400, 1, 0, 0, 0, 2572, 2410, 1, 0, 0, 0, 2572, 2420, 1, + 0, 0, 0, 2572, 2428, 1, 0, 0, 0, 2572, 2444, 1, 0, 0, 0, 2572, 2451, 1, + 0, 0, 0, 2572, 2453, 1, 0, 0, 0, 2572, 2458, 1, 0, 0, 0, 2572, 2461, 1, + 0, 0, 0, 2572, 2469, 1, 0, 0, 0, 2572, 2475, 1, 0, 0, 0, 2572, 2478, 1, + 0, 0, 0, 2572, 2481, 1, 0, 0, 0, 2572, 2484, 1, 0, 0, 0, 2572, 2486, 1, + 0, 0, 0, 2572, 2488, 1, 0, 0, 0, 2572, 2491, 1, 0, 0, 0, 2572, 2495, 1, + 0, 0, 0, 2572, 2499, 1, 0, 0, 0, 2572, 2502, 1, 0, 0, 0, 2572, 2505, 1, + 0, 0, 0, 2572, 2508, 1, 0, 0, 0, 2572, 2511, 1, 0, 0, 0, 2572, 2514, 1, + 0, 0, 0, 2572, 2517, 1, 0, 0, 0, 2572, 2521, 1, 0, 0, 0, 2572, 2525, 1, + 0, 0, 0, 2572, 2528, 1, 0, 0, 0, 2572, 2530, 1, 0, 0, 0, 2572, 2533, 1, + 0, 0, 0, 2572, 2535, 1, 0, 0, 0, 2572, 2537, 1, 0, 0, 0, 2572, 2540, 1, + 0, 0, 0, 2572, 2544, 1, 0, 0, 0, 2572, 2547, 1, 0, 0, 0, 2572, 2549, 1, + 0, 0, 0, 2572, 2551, 1, 0, 0, 0, 2572, 2554, 1, 0, 0, 0, 2572, 2558, 1, + 0, 0, 0, 2572, 2562, 1, 0, 0, 0, 2572, 2566, 1, 0, 0, 0, 2572, 2571, 1, + 0, 0, 0, 2573, 105, 1, 0, 0, 0, 2574, 2575, 5, 345, 0, 0, 2575, 2576, 5, + 53, 0, 0, 2576, 2580, 3, 1170, 585, 0, 2577, 2578, 5, 210, 0, 0, 2578, + 2580, 5, 53, 0, 0, 2579, 2574, 1, 0, 0, 0, 2579, 2577, 1, 0, 0, 0, 2580, + 107, 1, 0, 0, 0, 2581, 2582, 7, 10, 0, 0, 2582, 109, 1, 0, 0, 0, 2583, + 2584, 5, 43, 0, 0, 2584, 2585, 3, 526, 263, 0, 2585, 111, 1, 0, 0, 0, 2586, + 2587, 5, 100, 0, 0, 2587, 2588, 3, 1170, 585, 0, 2588, 113, 1, 0, 0, 0, + 2589, 2596, 5, 282, 0, 0, 2590, 2596, 5, 132, 0, 0, 2591, 2596, 5, 53, + 0, 0, 2592, 2593, 5, 100, 0, 0, 2593, 2594, 5, 245, 0, 0, 2594, 2596, 3, + 1394, 697, 0, 2595, 2589, 1, 0, 0, 0, 2595, 2590, 1, 0, 0, 0, 2595, 2591, + 1, 0, 0, 0, 2595, 2592, 1, 0, 0, 0, 2596, 115, 1, 0, 0, 0, 2597, 2598, + 5, 2, 0, 0, 2598, 2599, 3, 120, 60, 0, 2599, 2600, 5, 3, 0, 0, 2600, 117, + 1, 0, 0, 0, 2601, 2602, 5, 105, 0, 0, 2602, 2603, 3, 116, 58, 0, 2603, + 119, 1, 0, 0, 0, 2604, 2609, 3, 122, 61, 0, 2605, 2606, 5, 6, 0, 0, 2606, + 2608, 3, 122, 61, 0, 2607, 2605, 1, 0, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, + 2607, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 121, 1, 0, 0, 0, 2611, + 2609, 1, 0, 0, 0, 2612, 2621, 3, 1434, 717, 0, 2613, 2614, 5, 10, 0, 0, + 2614, 2622, 3, 468, 234, 0, 2615, 2616, 5, 11, 0, 0, 2616, 2619, 3, 1434, + 717, 0, 2617, 2618, 5, 10, 0, 0, 2618, 2620, 3, 468, 234, 0, 2619, 2617, + 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2613, + 1, 0, 0, 0, 2621, 2615, 1, 0, 0, 0, 2621, 2622, 1, 0, 0, 0, 2622, 123, + 1, 0, 0, 0, 2623, 2625, 3, 126, 63, 0, 2624, 2623, 1, 0, 0, 0, 2625, 2626, + 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 125, + 1, 0, 0, 0, 2628, 2633, 5, 326, 0, 0, 2629, 2631, 3, 16, 8, 0, 2630, 2629, + 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2634, + 3, 294, 147, 0, 2633, 2630, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 2642, + 1, 0, 0, 0, 2635, 2639, 5, 345, 0, 0, 2636, 2640, 3, 290, 145, 0, 2637, + 2638, 5, 459, 0, 0, 2638, 2640, 3, 200, 100, 0, 2639, 2636, 1, 0, 0, 0, + 2639, 2637, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2628, 1, 0, 0, 0, + 2641, 2635, 1, 0, 0, 0, 2642, 127, 1, 0, 0, 0, 2643, 2644, 5, 62, 0, 0, + 2644, 2645, 5, 436, 0, 0, 2645, 2646, 5, 105, 0, 0, 2646, 2647, 5, 2, 0, + 0, 2647, 2648, 3, 132, 66, 0, 2648, 2649, 5, 3, 0, 0, 2649, 2670, 1, 0, + 0, 0, 2650, 2651, 5, 62, 0, 0, 2651, 2652, 5, 436, 0, 0, 2652, 2653, 5, + 68, 0, 0, 2653, 2654, 5, 2, 0, 0, 2654, 2655, 3, 1332, 666, 0, 2655, 2656, + 5, 3, 0, 0, 2656, 2670, 1, 0, 0, 0, 2657, 2658, 5, 62, 0, 0, 2658, 2659, + 5, 436, 0, 0, 2659, 2660, 5, 64, 0, 0, 2660, 2661, 5, 2, 0, 0, 2661, 2662, + 3, 1332, 666, 0, 2662, 2663, 5, 3, 0, 0, 2663, 2664, 5, 94, 0, 0, 2664, + 2665, 5, 2, 0, 0, 2665, 2666, 3, 1332, 666, 0, 2666, 2667, 5, 3, 0, 0, + 2667, 2670, 1, 0, 0, 0, 2668, 2670, 5, 53, 0, 0, 2669, 2643, 1, 0, 0, 0, + 2669, 2650, 1, 0, 0, 0, 2669, 2657, 1, 0, 0, 0, 2669, 2668, 1, 0, 0, 0, + 2670, 129, 1, 0, 0, 0, 2671, 2672, 3, 1432, 716, 0, 2672, 2673, 3, 1410, + 705, 0, 2673, 131, 1, 0, 0, 0, 2674, 2679, 3, 130, 65, 0, 2675, 2676, 5, + 6, 0, 0, 2676, 2678, 3, 130, 65, 0, 2677, 2675, 1, 0, 0, 0, 2678, 2681, + 1, 0, 0, 0, 2679, 2677, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 133, + 1, 0, 0, 0, 2681, 2679, 1, 0, 0, 0, 2682, 2683, 5, 157, 0, 0, 2683, 2684, + 5, 372, 0, 0, 2684, 2685, 3, 526, 263, 0, 2685, 2686, 3, 136, 68, 0, 2686, + 135, 1, 0, 0, 0, 2687, 2692, 3, 138, 69, 0, 2688, 2689, 5, 6, 0, 0, 2689, + 2691, 3, 138, 69, 0, 2690, 2688, 1, 0, 0, 0, 2691, 2694, 1, 0, 0, 0, 2692, + 2690, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 137, 1, 0, 0, 0, 2694, + 2692, 1, 0, 0, 0, 2695, 2696, 5, 152, 0, 0, 2696, 2697, 5, 162, 0, 0, 2697, + 2699, 3, 1110, 555, 0, 2698, 2700, 3, 108, 54, 0, 2699, 2698, 1, 0, 0, + 0, 2699, 2700, 1, 0, 0, 0, 2700, 2726, 1, 0, 0, 0, 2701, 2702, 5, 210, + 0, 0, 2702, 2705, 5, 162, 0, 0, 2703, 2704, 5, 239, 0, 0, 2704, 2706, 5, + 409, 0, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2707, + 1, 0, 0, 0, 2707, 2709, 3, 1426, 713, 0, 2708, 2710, 3, 108, 54, 0, 2709, + 2708, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2726, 1, 0, 0, 0, 2711, + 2712, 5, 157, 0, 0, 2712, 2713, 5, 162, 0, 0, 2713, 2715, 3, 1426, 713, + 0, 2714, 2716, 3, 732, 366, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, + 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2718, 5, 372, 0, 0, 2718, 2720, 3, + 1126, 563, 0, 2719, 2721, 3, 110, 55, 0, 2720, 2719, 1, 0, 0, 0, 2720, + 2721, 1, 0, 0, 0, 2721, 2723, 1, 0, 0, 0, 2722, 2724, 3, 108, 54, 0, 2723, + 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, + 2695, 1, 0, 0, 0, 2725, 2701, 1, 0, 0, 0, 2725, 2711, 1, 0, 0, 0, 2726, + 139, 1, 0, 0, 0, 2727, 2730, 5, 176, 0, 0, 2728, 2731, 3, 962, 481, 0, + 2729, 2731, 5, 30, 0, 0, 2730, 2728, 1, 0, 0, 0, 2730, 2729, 1, 0, 0, 0, + 2731, 141, 1, 0, 0, 0, 2732, 2734, 5, 188, 0, 0, 2733, 2735, 3, 156, 78, + 0, 2734, 2733, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 1, 0, 0, + 0, 2736, 2738, 3, 1390, 695, 0, 2737, 2739, 3, 216, 108, 0, 2738, 2737, + 1, 0, 0, 0, 2738, 2739, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2742, + 3, 144, 72, 0, 2741, 2743, 3, 146, 73, 0, 2742, 2741, 1, 0, 0, 0, 2742, + 2743, 1, 0, 0, 0, 2743, 2744, 1, 0, 0, 0, 2744, 2746, 3, 148, 74, 0, 2745, + 2747, 3, 158, 79, 0, 2746, 2745, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, + 2749, 1, 0, 0, 0, 2748, 2750, 3, 16, 8, 0, 2749, 2748, 1, 0, 0, 0, 2749, + 2750, 1, 0, 0, 0, 2750, 2751, 1, 0, 0, 0, 2751, 2753, 3, 150, 75, 0, 2752, + 2754, 3, 1102, 551, 0, 2753, 2752, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, + 2754, 2770, 1, 0, 0, 0, 2755, 2756, 5, 188, 0, 0, 2756, 2757, 5, 2, 0, + 0, 2757, 2758, 3, 902, 451, 0, 2758, 2759, 5, 3, 0, 0, 2759, 2761, 5, 94, + 0, 0, 2760, 2762, 3, 146, 73, 0, 2761, 2760, 1, 0, 0, 0, 2761, 2762, 1, + 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2765, 3, 148, 74, 0, 2764, 2766, + 3, 16, 8, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2767, + 1, 0, 0, 0, 2767, 2768, 3, 150, 75, 0, 2768, 2770, 1, 0, 0, 0, 2769, 2732, + 1, 0, 0, 0, 2769, 2755, 1, 0, 0, 0, 2770, 143, 1, 0, 0, 0, 2771, 2772, + 7, 11, 0, 0, 2772, 145, 1, 0, 0, 0, 2773, 2774, 5, 309, 0, 0, 2774, 147, + 1, 0, 0, 0, 2775, 2779, 3, 1412, 706, 0, 2776, 2779, 5, 355, 0, 0, 2777, + 2779, 5, 356, 0, 0, 2778, 2775, 1, 0, 0, 0, 2778, 2776, 1, 0, 0, 0, 2778, + 2777, 1, 0, 0, 0, 2779, 149, 1, 0, 0, 0, 2780, 2786, 3, 152, 76, 0, 2781, + 2782, 5, 2, 0, 0, 2782, 2783, 3, 162, 81, 0, 2783, 2784, 5, 3, 0, 0, 2784, + 2786, 1, 0, 0, 0, 2785, 2780, 1, 0, 0, 0, 2785, 2781, 1, 0, 0, 0, 2786, + 151, 1, 0, 0, 0, 2787, 2789, 3, 154, 77, 0, 2788, 2787, 1, 0, 0, 0, 2789, + 2792, 1, 0, 0, 0, 2790, 2788, 1, 0, 0, 0, 2790, 2791, 1, 0, 0, 0, 2791, + 153, 1, 0, 0, 0, 2792, 2790, 1, 0, 0, 0, 2793, 2833, 5, 126, 0, 0, 2794, + 2833, 5, 131, 0, 0, 2795, 2797, 5, 202, 0, 0, 2796, 2798, 3, 842, 421, + 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, + 0, 2799, 2833, 3, 1412, 706, 0, 2800, 2802, 5, 78, 0, 0, 2801, 2803, 3, + 842, 421, 0, 2802, 2801, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2804, + 1, 0, 0, 0, 2804, 2833, 3, 1412, 706, 0, 2805, 2833, 5, 190, 0, 0, 2806, + 2833, 5, 235, 0, 0, 2807, 2809, 5, 310, 0, 0, 2808, 2810, 3, 842, 421, + 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2811, 1, 0, 0, + 0, 2811, 2833, 3, 1412, 706, 0, 2812, 2814, 5, 216, 0, 0, 2813, 2815, 3, + 842, 421, 0, 2814, 2813, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2816, + 1, 0, 0, 0, 2816, 2833, 3, 1412, 706, 0, 2817, 2818, 5, 228, 0, 0, 2818, + 2819, 5, 310, 0, 0, 2819, 2833, 3, 218, 109, 0, 2820, 2821, 5, 228, 0, + 0, 2821, 2822, 5, 310, 0, 0, 2822, 2833, 5, 9, 0, 0, 2823, 2824, 5, 228, + 0, 0, 2824, 2825, 5, 77, 0, 0, 2825, 2826, 5, 78, 0, 0, 2826, 2833, 3, + 218, 109, 0, 2827, 2828, 5, 228, 0, 0, 2828, 2829, 5, 78, 0, 0, 2829, 2833, + 3, 218, 109, 0, 2830, 2831, 5, 213, 0, 0, 2831, 2833, 3, 1412, 706, 0, + 2832, 2793, 1, 0, 0, 0, 2832, 2794, 1, 0, 0, 0, 2832, 2795, 1, 0, 0, 0, + 2832, 2800, 1, 0, 0, 0, 2832, 2805, 1, 0, 0, 0, 2832, 2806, 1, 0, 0, 0, + 2832, 2807, 1, 0, 0, 0, 2832, 2812, 1, 0, 0, 0, 2832, 2817, 1, 0, 0, 0, + 2832, 2820, 1, 0, 0, 0, 2832, 2823, 1, 0, 0, 0, 2832, 2827, 1, 0, 0, 0, + 2832, 2830, 1, 0, 0, 0, 2833, 155, 1, 0, 0, 0, 2834, 2835, 5, 126, 0, 0, + 2835, 157, 1, 0, 0, 0, 2836, 2838, 3, 160, 80, 0, 2837, 2836, 1, 0, 0, + 0, 2837, 2838, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2840, 5, 203, + 0, 0, 2840, 2841, 3, 1412, 706, 0, 2841, 159, 1, 0, 0, 0, 2842, 2843, 5, + 100, 0, 0, 2843, 161, 1, 0, 0, 0, 2844, 2849, 3, 164, 82, 0, 2845, 2846, + 5, 6, 0, 0, 2846, 2848, 3, 164, 82, 0, 2847, 2845, 1, 0, 0, 0, 2848, 2851, + 1, 0, 0, 0, 2849, 2847, 1, 0, 0, 0, 2849, 2850, 1, 0, 0, 0, 2850, 163, + 1, 0, 0, 0, 2851, 2849, 1, 0, 0, 0, 2852, 2854, 3, 1434, 717, 0, 2853, + 2855, 3, 166, 83, 0, 2854, 2853, 1, 0, 0, 0, 2854, 2855, 1, 0, 0, 0, 2855, + 165, 1, 0, 0, 0, 2856, 2864, 3, 66, 33, 0, 2857, 2864, 3, 294, 147, 0, + 2858, 2864, 5, 9, 0, 0, 2859, 2860, 5, 2, 0, 0, 2860, 2861, 3, 168, 84, + 0, 2861, 2862, 5, 3, 0, 0, 2862, 2864, 1, 0, 0, 0, 2863, 2856, 1, 0, 0, + 0, 2863, 2857, 1, 0, 0, 0, 2863, 2858, 1, 0, 0, 0, 2863, 2859, 1, 0, 0, + 0, 2864, 167, 1, 0, 0, 0, 2865, 2870, 3, 170, 85, 0, 2866, 2867, 5, 6, + 0, 0, 2867, 2869, 3, 170, 85, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2872, 1, + 0, 0, 0, 2870, 2868, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 169, 1, + 0, 0, 0, 2872, 2870, 1, 0, 0, 0, 2873, 2874, 3, 66, 33, 0, 2874, 171, 1, + 0, 0, 0, 2875, 2877, 5, 46, 0, 0, 2876, 2878, 3, 174, 87, 0, 2877, 2876, + 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2883, + 5, 92, 0, 0, 2880, 2881, 5, 239, 0, 0, 2881, 2882, 5, 77, 0, 0, 2882, 2884, + 5, 409, 0, 0, 2883, 2880, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2885, + 1, 0, 0, 0, 2885, 2951, 3, 1390, 695, 0, 2886, 2888, 5, 2, 0, 0, 2887, + 2889, 3, 176, 88, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, + 2890, 1, 0, 0, 0, 2890, 2892, 5, 3, 0, 0, 2891, 2893, 3, 240, 120, 0, 2892, + 2891, 1, 0, 0, 0, 2892, 2893, 1, 0, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, + 2896, 3, 242, 121, 0, 2895, 2894, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, + 2898, 1, 0, 0, 0, 2897, 2899, 3, 250, 125, 0, 2898, 2897, 1, 0, 0, 0, 2898, + 2899, 1, 0, 0, 0, 2899, 2901, 1, 0, 0, 0, 2900, 2902, 3, 252, 126, 0, 2901, + 2900, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2904, 1, 0, 0, 0, 2903, + 2905, 3, 254, 127, 0, 2904, 2903, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, + 2907, 1, 0, 0, 0, 2906, 2908, 3, 256, 128, 0, 2907, 2906, 1, 0, 0, 0, 2907, + 2908, 1, 0, 0, 0, 2908, 2952, 1, 0, 0, 0, 2909, 2910, 5, 287, 0, 0, 2910, + 2912, 3, 526, 263, 0, 2911, 2913, 3, 178, 89, 0, 2912, 2911, 1, 0, 0, 0, + 2912, 2913, 1, 0, 0, 0, 2913, 2915, 1, 0, 0, 0, 2914, 2916, 3, 242, 121, + 0, 2915, 2914, 1, 0, 0, 0, 2915, 2916, 1, 0, 0, 0, 2916, 2918, 1, 0, 0, + 0, 2917, 2919, 3, 250, 125, 0, 2918, 2917, 1, 0, 0, 0, 2918, 2919, 1, 0, + 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2922, 3, 252, 126, 0, 2921, 2920, 1, + 0, 0, 0, 2921, 2922, 1, 0, 0, 0, 2922, 2924, 1, 0, 0, 0, 2923, 2925, 3, + 254, 127, 0, 2924, 2923, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2927, + 1, 0, 0, 0, 2926, 2928, 3, 256, 128, 0, 2927, 2926, 1, 0, 0, 0, 2927, 2928, + 1, 0, 0, 0, 2928, 2952, 1, 0, 0, 0, 2929, 2930, 5, 297, 0, 0, 2930, 2931, + 5, 287, 0, 0, 2931, 2933, 3, 1390, 695, 0, 2932, 2934, 3, 178, 89, 0, 2933, + 2932, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, + 2937, 3, 128, 64, 0, 2936, 2938, 3, 242, 121, 0, 2937, 2936, 1, 0, 0, 0, + 2937, 2938, 1, 0, 0, 0, 2938, 2940, 1, 0, 0, 0, 2939, 2941, 3, 250, 125, + 0, 2940, 2939, 1, 0, 0, 0, 2940, 2941, 1, 0, 0, 0, 2941, 2943, 1, 0, 0, + 0, 2942, 2944, 3, 252, 126, 0, 2943, 2942, 1, 0, 0, 0, 2943, 2944, 1, 0, + 0, 0, 2944, 2946, 1, 0, 0, 0, 2945, 2947, 3, 254, 127, 0, 2946, 2945, 1, + 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2950, 3, + 256, 128, 0, 2949, 2948, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 2952, + 1, 0, 0, 0, 2951, 2886, 1, 0, 0, 0, 2951, 2909, 1, 0, 0, 0, 2951, 2929, + 1, 0, 0, 0, 2952, 173, 1, 0, 0, 0, 2953, 2961, 5, 366, 0, 0, 2954, 2961, + 5, 364, 0, 0, 2955, 2956, 5, 264, 0, 0, 2956, 2961, 7, 12, 0, 0, 2957, + 2958, 5, 232, 0, 0, 2958, 2961, 7, 12, 0, 0, 2959, 2961, 5, 379, 0, 0, + 2960, 2953, 1, 0, 0, 0, 2960, 2954, 1, 0, 0, 0, 2960, 2955, 1, 0, 0, 0, + 2960, 2957, 1, 0, 0, 0, 2960, 2959, 1, 0, 0, 0, 2961, 175, 1, 0, 0, 0, + 2962, 2963, 3, 180, 90, 0, 2963, 177, 1, 0, 0, 0, 2964, 2965, 5, 2, 0, + 0, 2965, 2966, 3, 182, 91, 0, 2966, 2967, 5, 3, 0, 0, 2967, 179, 1, 0, + 0, 0, 2968, 2973, 3, 184, 92, 0, 2969, 2970, 5, 6, 0, 0, 2970, 2972, 3, + 184, 92, 0, 2971, 2969, 1, 0, 0, 0, 2972, 2975, 1, 0, 0, 0, 2973, 2971, + 1, 0, 0, 0, 2973, 2974, 1, 0, 0, 0, 2974, 181, 1, 0, 0, 0, 2975, 2973, + 1, 0, 0, 0, 2976, 2981, 3, 186, 93, 0, 2977, 2978, 5, 6, 0, 0, 2978, 2980, + 3, 186, 93, 0, 2979, 2977, 1, 0, 0, 0, 2980, 2983, 1, 0, 0, 0, 2981, 2979, + 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 183, 1, 0, 0, 0, 2983, 2981, + 1, 0, 0, 0, 2984, 2988, 3, 210, 105, 0, 2985, 2988, 3, 204, 102, 0, 2986, + 2988, 3, 188, 94, 0, 2987, 2984, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2987, + 2986, 1, 0, 0, 0, 2988, 185, 1, 0, 0, 0, 2989, 2992, 3, 190, 95, 0, 2990, + 2992, 3, 210, 105, 0, 2991, 2989, 1, 0, 0, 0, 2991, 2990, 1, 0, 0, 0, 2992, + 187, 1, 0, 0, 0, 2993, 2994, 3, 1426, 713, 0, 2994, 2996, 3, 1126, 563, + 0, 2995, 2997, 3, 342, 171, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, + 0, 0, 2997, 2998, 1, 0, 0, 0, 2998, 2999, 3, 192, 96, 0, 2999, 189, 1, + 0, 0, 0, 3000, 3003, 3, 1426, 713, 0, 3001, 3002, 5, 105, 0, 0, 3002, 3004, + 5, 292, 0, 0, 3003, 3001, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3005, + 1, 0, 0, 0, 3005, 3006, 3, 192, 96, 0, 3006, 191, 1, 0, 0, 0, 3007, 3009, + 3, 194, 97, 0, 3008, 3007, 1, 0, 0, 0, 3009, 3012, 1, 0, 0, 0, 3010, 3008, + 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 193, 1, 0, 0, 0, 3012, 3010, + 1, 0, 0, 0, 3013, 3014, 5, 45, 0, 0, 3014, 3015, 3, 1394, 697, 0, 3015, + 3016, 3, 196, 98, 0, 3016, 3022, 1, 0, 0, 0, 3017, 3022, 3, 196, 98, 0, + 3018, 3022, 3, 202, 101, 0, 3019, 3020, 5, 43, 0, 0, 3020, 3022, 3, 526, + 263, 0, 3021, 3013, 1, 0, 0, 0, 3021, 3017, 1, 0, 0, 0, 3021, 3018, 1, + 0, 0, 0, 3021, 3019, 1, 0, 0, 0, 3022, 195, 1, 0, 0, 0, 3023, 3024, 5, + 77, 0, 0, 3024, 3079, 5, 78, 0, 0, 3025, 3079, 5, 78, 0, 0, 3026, 3028, + 5, 98, 0, 0, 3027, 3029, 3, 198, 99, 0, 3028, 3027, 1, 0, 0, 0, 3028, 3029, + 1, 0, 0, 0, 3029, 3031, 1, 0, 0, 0, 3030, 3032, 3, 670, 335, 0, 3031, 3030, + 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3035, + 3, 258, 129, 0, 3034, 3033, 1, 0, 0, 0, 3034, 3035, 1, 0, 0, 0, 3035, 3079, + 1, 0, 0, 0, 3036, 3037, 5, 85, 0, 0, 3037, 3039, 5, 255, 0, 0, 3038, 3040, + 3, 670, 335, 0, 3039, 3038, 1, 0, 0, 0, 3039, 3040, 1, 0, 0, 0, 3040, 3042, + 1, 0, 0, 0, 3041, 3043, 3, 258, 129, 0, 3042, 3041, 1, 0, 0, 0, 3042, 3043, + 1, 0, 0, 0, 3043, 3079, 1, 0, 0, 0, 3044, 3045, 5, 42, 0, 0, 3045, 3046, + 5, 2, 0, 0, 3046, 3047, 3, 1170, 585, 0, 3047, 3049, 5, 3, 0, 0, 3048, + 3050, 3, 214, 107, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, + 3079, 1, 0, 0, 0, 3051, 3052, 5, 53, 0, 0, 3052, 3079, 3, 1212, 606, 0, + 3053, 3054, 5, 459, 0, 0, 3054, 3055, 3, 200, 100, 0, 3055, 3065, 5, 36, + 0, 0, 3056, 3058, 5, 238, 0, 0, 3057, 3059, 3, 286, 143, 0, 3058, 3057, + 1, 0, 0, 0, 3058, 3059, 1, 0, 0, 0, 3059, 3066, 1, 0, 0, 0, 3060, 3061, + 5, 2, 0, 0, 3061, 3062, 3, 1170, 585, 0, 3062, 3063, 5, 3, 0, 0, 3063, + 3064, 5, 461, 0, 0, 3064, 3066, 1, 0, 0, 0, 3065, 3056, 1, 0, 0, 0, 3065, + 3060, 1, 0, 0, 0, 3066, 3079, 1, 0, 0, 0, 3067, 3068, 5, 86, 0, 0, 3068, + 3070, 3, 1390, 695, 0, 3069, 3071, 3, 216, 108, 0, 3070, 3069, 1, 0, 0, + 0, 3070, 3071, 1, 0, 0, 0, 3071, 3073, 1, 0, 0, 0, 3072, 3074, 3, 224, + 112, 0, 3073, 3072, 1, 0, 0, 0, 3073, 3074, 1, 0, 0, 0, 3074, 3076, 1, + 0, 0, 0, 3075, 3077, 3, 232, 116, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, + 1, 0, 0, 0, 3077, 3079, 1, 0, 0, 0, 3078, 3023, 1, 0, 0, 0, 3078, 3025, + 1, 0, 0, 0, 3078, 3026, 1, 0, 0, 0, 3078, 3036, 1, 0, 0, 0, 3078, 3044, + 1, 0, 0, 0, 3078, 3051, 1, 0, 0, 0, 3078, 3053, 1, 0, 0, 0, 3078, 3067, + 1, 0, 0, 0, 3079, 197, 1, 0, 0, 0, 3080, 3082, 5, 285, 0, 0, 3081, 3083, + 5, 77, 0, 0, 3082, 3081, 1, 0, 0, 0, 3082, 3083, 1, 0, 0, 0, 3083, 3084, + 1, 0, 0, 0, 3084, 3085, 5, 56, 0, 0, 3085, 199, 1, 0, 0, 0, 3086, 3090, + 5, 158, 0, 0, 3087, 3088, 5, 166, 0, 0, 3088, 3090, 5, 53, 0, 0, 3089, + 3086, 1, 0, 0, 0, 3089, 3087, 1, 0, 0, 0, 3090, 201, 1, 0, 0, 0, 3091, + 3097, 5, 54, 0, 0, 3092, 3093, 5, 77, 0, 0, 3093, 3097, 5, 54, 0, 0, 3094, + 3095, 5, 69, 0, 0, 3095, 3097, 7, 8, 0, 0, 3096, 3091, 1, 0, 0, 0, 3096, + 3092, 1, 0, 0, 0, 3096, 3094, 1, 0, 0, 0, 3097, 203, 1, 0, 0, 0, 3098, + 3099, 5, 139, 0, 0, 3099, 3100, 3, 1390, 695, 0, 3100, 3101, 3, 206, 103, + 0, 3101, 205, 1, 0, 0, 0, 3102, 3103, 7, 13, 0, 0, 3103, 3105, 3, 208, + 104, 0, 3104, 3102, 1, 0, 0, 0, 3105, 3108, 1, 0, 0, 0, 3106, 3104, 1, + 0, 0, 0, 3106, 3107, 1, 0, 0, 0, 3107, 207, 1, 0, 0, 0, 3108, 3106, 1, + 0, 0, 0, 3109, 3110, 7, 14, 0, 0, 3110, 209, 1, 0, 0, 0, 3111, 3112, 5, + 45, 0, 0, 3112, 3113, 3, 1394, 697, 0, 3113, 3114, 3, 212, 106, 0, 3114, + 3117, 1, 0, 0, 0, 3115, 3117, 3, 212, 106, 0, 3116, 3111, 1, 0, 0, 0, 3116, + 3115, 1, 0, 0, 0, 3117, 211, 1, 0, 0, 0, 3118, 3119, 5, 42, 0, 0, 3119, + 3120, 5, 2, 0, 0, 3120, 3121, 3, 1170, 585, 0, 3121, 3122, 5, 3, 0, 0, + 3122, 3123, 3, 442, 221, 0, 3123, 3208, 1, 0, 0, 0, 3124, 3126, 5, 98, + 0, 0, 3125, 3127, 3, 198, 99, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, + 0, 0, 0, 3127, 3145, 1, 0, 0, 0, 3128, 3129, 5, 2, 0, 0, 3129, 3130, 3, + 218, 109, 0, 3130, 3132, 5, 3, 0, 0, 3131, 3133, 3, 222, 111, 0, 3132, + 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3135, 1, 0, 0, 0, 3134, + 3136, 3, 670, 335, 0, 3135, 3134, 1, 0, 0, 0, 3135, 3136, 1, 0, 0, 0, 3136, + 3138, 1, 0, 0, 0, 3137, 3139, 3, 258, 129, 0, 3138, 3137, 1, 0, 0, 0, 3138, + 3139, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 3, 442, 221, 0, 3141, + 3146, 1, 0, 0, 0, 3142, 3143, 3, 260, 130, 0, 3143, 3144, 3, 442, 221, + 0, 3144, 3146, 1, 0, 0, 0, 3145, 3128, 1, 0, 0, 0, 3145, 3142, 1, 0, 0, + 0, 3146, 3208, 1, 0, 0, 0, 3147, 3148, 5, 85, 0, 0, 3148, 3166, 5, 255, + 0, 0, 3149, 3150, 5, 2, 0, 0, 3150, 3151, 3, 218, 109, 0, 3151, 3153, 5, + 3, 0, 0, 3152, 3154, 3, 222, 111, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, + 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 670, 335, 0, 3156, 3155, + 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 3159, 1, 0, 0, 0, 3158, 3160, + 3, 258, 129, 0, 3159, 3158, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3161, + 1, 0, 0, 0, 3161, 3162, 3, 442, 221, 0, 3162, 3167, 1, 0, 0, 0, 3163, 3164, + 3, 260, 130, 0, 3164, 3165, 3, 442, 221, 0, 3165, 3167, 1, 0, 0, 0, 3166, + 3149, 1, 0, 0, 0, 3166, 3163, 1, 0, 0, 0, 3167, 3208, 1, 0, 0, 0, 3168, + 3170, 5, 218, 0, 0, 3169, 3171, 3, 602, 301, 0, 3170, 3169, 1, 0, 0, 0, + 3170, 3171, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3173, 5, 2, 0, 0, + 3173, 3174, 3, 226, 113, 0, 3174, 3176, 5, 3, 0, 0, 3175, 3177, 3, 222, + 111, 0, 3176, 3175, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3179, 1, + 0, 0, 0, 3178, 3180, 3, 670, 335, 0, 3179, 3178, 1, 0, 0, 0, 3179, 3180, + 1, 0, 0, 0, 3180, 3182, 1, 0, 0, 0, 3181, 3183, 3, 258, 129, 0, 3182, 3181, + 1, 0, 0, 0, 3182, 3183, 1, 0, 0, 0, 3183, 3185, 1, 0, 0, 0, 3184, 3186, + 3, 230, 115, 0, 3185, 3184, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3187, + 1, 0, 0, 0, 3187, 3188, 3, 442, 221, 0, 3188, 3208, 1, 0, 0, 0, 3189, 3190, + 5, 63, 0, 0, 3190, 3191, 5, 255, 0, 0, 3191, 3192, 5, 2, 0, 0, 3192, 3193, + 3, 218, 109, 0, 3193, 3194, 5, 3, 0, 0, 3194, 3195, 5, 86, 0, 0, 3195, + 3197, 3, 1390, 695, 0, 3196, 3198, 3, 216, 108, 0, 3197, 3196, 1, 0, 0, + 0, 3197, 3198, 1, 0, 0, 0, 3198, 3200, 1, 0, 0, 0, 3199, 3201, 3, 224, + 112, 0, 3200, 3199, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3203, 1, + 0, 0, 0, 3202, 3204, 3, 232, 116, 0, 3203, 3202, 1, 0, 0, 0, 3203, 3204, + 1, 0, 0, 0, 3204, 3205, 1, 0, 0, 0, 3205, 3206, 3, 442, 221, 0, 3206, 3208, + 1, 0, 0, 0, 3207, 3118, 1, 0, 0, 0, 3207, 3124, 1, 0, 0, 0, 3207, 3147, + 1, 0, 0, 0, 3207, 3168, 1, 0, 0, 0, 3207, 3189, 1, 0, 0, 0, 3208, 213, + 1, 0, 0, 0, 3209, 3210, 5, 281, 0, 0, 3210, 3211, 5, 247, 0, 0, 3211, 215, + 1, 0, 0, 0, 3212, 3213, 5, 2, 0, 0, 3213, 3214, 3, 218, 109, 0, 3214, 3215, + 5, 3, 0, 0, 3215, 217, 1, 0, 0, 0, 3216, 3221, 3, 220, 110, 0, 3217, 3218, + 5, 6, 0, 0, 3218, 3220, 3, 220, 110, 0, 3219, 3217, 1, 0, 0, 0, 3220, 3223, + 1, 0, 0, 0, 3221, 3219, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 219, + 1, 0, 0, 0, 3223, 3221, 1, 0, 0, 0, 3224, 3225, 3, 1426, 713, 0, 3225, + 221, 1, 0, 0, 0, 3226, 3227, 5, 462, 0, 0, 3227, 3228, 5, 2, 0, 0, 3228, + 3229, 3, 218, 109, 0, 3229, 3230, 5, 3, 0, 0, 3230, 223, 1, 0, 0, 0, 3231, + 3232, 5, 268, 0, 0, 3232, 3233, 7, 15, 0, 0, 3233, 225, 1, 0, 0, 0, 3234, + 3239, 3, 228, 114, 0, 3235, 3236, 5, 6, 0, 0, 3236, 3238, 3, 228, 114, + 0, 3237, 3235, 1, 0, 0, 0, 3238, 3241, 1, 0, 0, 0, 3239, 3237, 1, 0, 0, + 0, 3239, 3240, 1, 0, 0, 0, 3240, 227, 1, 0, 0, 0, 3241, 3239, 1, 0, 0, + 0, 3242, 3243, 3, 608, 304, 0, 3243, 3250, 5, 105, 0, 0, 3244, 3251, 3, + 690, 345, 0, 3245, 3246, 5, 290, 0, 0, 3246, 3247, 5, 2, 0, 0, 3247, 3248, + 3, 690, 345, 0, 3248, 3249, 5, 3, 0, 0, 3249, 3251, 1, 0, 0, 0, 3250, 3244, + 1, 0, 0, 0, 3250, 3245, 1, 0, 0, 0, 3251, 229, 1, 0, 0, 0, 3252, 3253, + 5, 103, 0, 0, 3253, 3254, 5, 2, 0, 0, 3254, 3255, 3, 1170, 585, 0, 3255, + 3256, 5, 3, 0, 0, 3256, 231, 1, 0, 0, 0, 3257, 3266, 3, 234, 117, 0, 3258, + 3266, 3, 236, 118, 0, 3259, 3260, 3, 234, 117, 0, 3260, 3261, 3, 236, 118, + 0, 3261, 3266, 1, 0, 0, 0, 3262, 3263, 3, 236, 118, 0, 3263, 3264, 3, 234, + 117, 0, 3264, 3266, 1, 0, 0, 0, 3265, 3257, 1, 0, 0, 0, 3265, 3258, 1, + 0, 0, 0, 3265, 3259, 1, 0, 0, 0, 3265, 3262, 1, 0, 0, 0, 3266, 233, 1, + 0, 0, 0, 3267, 3268, 5, 80, 0, 0, 3268, 3269, 5, 381, 0, 0, 3269, 3270, + 3, 238, 119, 0, 3270, 235, 1, 0, 0, 0, 3271, 3272, 5, 80, 0, 0, 3272, 3273, + 5, 201, 0, 0, 3273, 3274, 3, 238, 119, 0, 3274, 237, 1, 0, 0, 0, 3275, + 3276, 5, 281, 0, 0, 3276, 3285, 5, 151, 0, 0, 3277, 3285, 5, 327, 0, 0, + 3278, 3285, 5, 169, 0, 0, 3279, 3280, 5, 345, 0, 0, 3280, 3282, 7, 16, + 0, 0, 3281, 3283, 3, 216, 108, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, + 0, 0, 0, 3283, 3285, 1, 0, 0, 0, 3284, 3275, 1, 0, 0, 0, 3284, 3277, 1, + 0, 0, 0, 3284, 3278, 1, 0, 0, 0, 3284, 3279, 1, 0, 0, 0, 3285, 239, 1, + 0, 0, 0, 3286, 3287, 5, 248, 0, 0, 3287, 3288, 5, 2, 0, 0, 3288, 3289, + 3, 1388, 694, 0, 3289, 3290, 5, 3, 0, 0, 3290, 241, 1, 0, 0, 0, 3291, 3292, + 3, 244, 122, 0, 3292, 243, 1, 0, 0, 0, 3293, 3294, 5, 297, 0, 0, 3294, + 3295, 5, 166, 0, 0, 3295, 3296, 3, 1426, 713, 0, 3296, 3297, 5, 2, 0, 0, + 3297, 3298, 3, 246, 123, 0, 3298, 3299, 5, 3, 0, 0, 3299, 245, 1, 0, 0, + 0, 3300, 3305, 3, 248, 124, 0, 3301, 3302, 5, 6, 0, 0, 3302, 3304, 3, 248, + 124, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3307, 1, 0, 0, 0, 3305, 3303, 1, + 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 247, 1, 0, 0, 0, 3307, 3305, 1, + 0, 0, 0, 3308, 3310, 3, 1426, 713, 0, 3309, 3311, 3, 614, 307, 0, 3310, + 3309, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 3313, 1, 0, 0, 0, 3312, + 3314, 3, 616, 308, 0, 3313, 3312, 1, 0, 0, 0, 3313, 3314, 1, 0, 0, 0, 3314, + 3332, 1, 0, 0, 0, 3315, 3317, 3, 1222, 611, 0, 3316, 3318, 3, 614, 307, + 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, + 0, 3319, 3321, 3, 616, 308, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, + 0, 0, 3321, 3332, 1, 0, 0, 0, 3322, 3323, 5, 2, 0, 0, 3323, 3324, 3, 1170, + 585, 0, 3324, 3326, 5, 3, 0, 0, 3325, 3327, 3, 614, 307, 0, 3326, 3325, + 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, + 3, 616, 308, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, + 1, 0, 0, 0, 3331, 3308, 1, 0, 0, 0, 3331, 3315, 1, 0, 0, 0, 3331, 3322, + 1, 0, 0, 0, 3332, 249, 1, 0, 0, 0, 3333, 3334, 5, 100, 0, 0, 3334, 3335, + 3, 1394, 697, 0, 3335, 251, 1, 0, 0, 0, 3336, 3337, 5, 105, 0, 0, 3337, + 3341, 3, 116, 58, 0, 3338, 3339, 5, 391, 0, 0, 3339, 3341, 5, 289, 0, 0, + 3340, 3336, 1, 0, 0, 0, 3340, 3338, 1, 0, 0, 0, 3341, 253, 1, 0, 0, 0, + 3342, 3343, 5, 80, 0, 0, 3343, 3349, 5, 180, 0, 0, 3344, 3350, 5, 210, + 0, 0, 3345, 3346, 5, 201, 0, 0, 3346, 3350, 5, 332, 0, 0, 3347, 3348, 5, + 304, 0, 0, 3348, 3350, 5, 332, 0, 0, 3349, 3344, 1, 0, 0, 0, 3349, 3345, + 1, 0, 0, 0, 3349, 3347, 1, 0, 0, 0, 3350, 255, 1, 0, 0, 0, 3351, 3352, + 5, 363, 0, 0, 3352, 3353, 3, 1394, 697, 0, 3353, 257, 1, 0, 0, 0, 3354, + 3355, 5, 100, 0, 0, 3355, 3356, 5, 245, 0, 0, 3356, 3357, 5, 363, 0, 0, + 3357, 3358, 3, 1394, 697, 0, 3358, 259, 1, 0, 0, 0, 3359, 3360, 5, 100, + 0, 0, 3360, 3361, 5, 245, 0, 0, 3361, 3362, 3, 1394, 697, 0, 3362, 261, + 1, 0, 0, 0, 3363, 3364, 5, 46, 0, 0, 3364, 3368, 5, 354, 0, 0, 3365, 3366, + 5, 239, 0, 0, 3366, 3367, 5, 77, 0, 0, 3367, 3369, 5, 409, 0, 0, 3368, + 3365, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, + 3372, 3, 526, 263, 0, 3371, 3373, 3, 878, 439, 0, 3372, 3371, 1, 0, 0, + 0, 3372, 3373, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3375, 5, 80, 0, + 0, 3375, 3376, 3, 1332, 666, 0, 3376, 3377, 5, 64, 0, 0, 3377, 3378, 3, + 1064, 532, 0, 3378, 263, 1, 0, 0, 0, 3379, 3380, 5, 157, 0, 0, 3380, 3383, + 5, 354, 0, 0, 3381, 3382, 5, 239, 0, 0, 3382, 3384, 5, 409, 0, 0, 3383, + 3381, 1, 0, 0, 0, 3383, 3384, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, + 3386, 3, 526, 263, 0, 3386, 3387, 5, 345, 0, 0, 3387, 3388, 5, 354, 0, + 0, 3388, 3389, 3, 1418, 709, 0, 3389, 265, 1, 0, 0, 0, 3390, 3392, 5, 46, + 0, 0, 3391, 3393, 3, 174, 87, 0, 3392, 3391, 1, 0, 0, 0, 3392, 3393, 1, + 0, 0, 0, 3393, 3394, 1, 0, 0, 0, 3394, 3398, 5, 92, 0, 0, 3395, 3396, 5, + 239, 0, 0, 3396, 3397, 5, 77, 0, 0, 3397, 3399, 5, 409, 0, 0, 3398, 3395, + 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, + 3, 268, 134, 0, 3401, 3402, 5, 36, 0, 0, 3402, 3404, 3, 968, 484, 0, 3403, + 3405, 3, 270, 135, 0, 3404, 3403, 1, 0, 0, 0, 3404, 3405, 1, 0, 0, 0, 3405, + 267, 1, 0, 0, 0, 3406, 3408, 3, 1390, 695, 0, 3407, 3409, 3, 216, 108, + 0, 3408, 3407, 1, 0, 0, 0, 3408, 3409, 1, 0, 0, 0, 3409, 3411, 1, 0, 0, + 0, 3410, 3412, 3, 250, 125, 0, 3411, 3410, 1, 0, 0, 0, 3411, 3412, 1, 0, + 0, 0, 3412, 3414, 1, 0, 0, 0, 3413, 3415, 3, 252, 126, 0, 3414, 3413, 1, + 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3417, 1, 0, 0, 0, 3416, 3418, 3, + 254, 127, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3420, + 1, 0, 0, 0, 3419, 3421, 3, 256, 128, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, + 1, 0, 0, 0, 3421, 269, 1, 0, 0, 0, 3422, 3426, 5, 105, 0, 0, 3423, 3427, + 5, 193, 0, 0, 3424, 3425, 5, 281, 0, 0, 3425, 3427, 5, 193, 0, 0, 3426, + 3423, 1, 0, 0, 0, 3426, 3424, 1, 0, 0, 0, 3427, 271, 1, 0, 0, 0, 3428, + 3430, 5, 46, 0, 0, 3429, 3431, 3, 276, 138, 0, 3430, 3429, 1, 0, 0, 0, + 3430, 3431, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3433, 5, 270, 0, + 0, 3433, 3437, 5, 388, 0, 0, 3434, 3435, 5, 239, 0, 0, 3435, 3436, 5, 77, + 0, 0, 3436, 3438, 5, 409, 0, 0, 3437, 3434, 1, 0, 0, 0, 3437, 3438, 1, + 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 3440, 3, 274, 137, 0, 3440, 3441, + 5, 36, 0, 0, 3441, 3443, 3, 968, 484, 0, 3442, 3444, 3, 270, 135, 0, 3443, + 3442, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 273, 1, 0, 0, 0, 3445, + 3447, 3, 1390, 695, 0, 3446, 3448, 3, 216, 108, 0, 3447, 3446, 1, 0, 0, + 0, 3447, 3448, 1, 0, 0, 0, 3448, 3450, 1, 0, 0, 0, 3449, 3451, 3, 250, + 125, 0, 3450, 3449, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 3453, 1, + 0, 0, 0, 3452, 3454, 3, 118, 59, 0, 3453, 3452, 1, 0, 0, 0, 3453, 3454, + 1, 0, 0, 0, 3454, 3456, 1, 0, 0, 0, 3455, 3457, 3, 256, 128, 0, 3456, 3455, + 1, 0, 0, 0, 3456, 3457, 1, 0, 0, 0, 3457, 275, 1, 0, 0, 0, 3458, 3459, + 5, 379, 0, 0, 3459, 277, 1, 0, 0, 0, 3460, 3461, 5, 317, 0, 0, 3461, 3462, + 5, 270, 0, 0, 3462, 3464, 5, 388, 0, 0, 3463, 3465, 3, 598, 299, 0, 3464, + 3463, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3466, 1, 0, 0, 0, 3466, + 3468, 3, 1390, 695, 0, 3467, 3469, 3, 270, 135, 0, 3468, 3467, 1, 0, 0, + 0, 3468, 3469, 1, 0, 0, 0, 3469, 279, 1, 0, 0, 0, 3470, 3472, 5, 46, 0, + 0, 3471, 3473, 3, 174, 87, 0, 3472, 3471, 1, 0, 0, 0, 3472, 3473, 1, 0, + 0, 0, 3473, 3474, 1, 0, 0, 0, 3474, 3478, 5, 340, 0, 0, 3475, 3476, 5, + 239, 0, 0, 3476, 3477, 5, 77, 0, 0, 3477, 3479, 5, 409, 0, 0, 3478, 3475, + 1, 0, 0, 0, 3478, 3479, 1, 0, 0, 0, 3479, 3480, 1, 0, 0, 0, 3480, 3482, + 3, 1390, 695, 0, 3481, 3483, 3, 284, 142, 0, 3482, 3481, 1, 0, 0, 0, 3482, + 3483, 1, 0, 0, 0, 3483, 281, 1, 0, 0, 0, 3484, 3485, 5, 157, 0, 0, 3485, + 3488, 5, 340, 0, 0, 3486, 3487, 5, 239, 0, 0, 3487, 3489, 5, 409, 0, 0, + 3488, 3486, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, + 3490, 3491, 3, 1390, 695, 0, 3491, 3492, 3, 288, 144, 0, 3492, 283, 1, + 0, 0, 0, 3493, 3494, 3, 288, 144, 0, 3494, 285, 1, 0, 0, 0, 3495, 3496, + 5, 2, 0, 0, 3496, 3497, 3, 288, 144, 0, 3497, 3498, 5, 3, 0, 0, 3498, 287, + 1, 0, 0, 0, 3499, 3501, 3, 290, 145, 0, 3500, 3499, 1, 0, 0, 0, 3501, 3502, + 1, 0, 0, 0, 3502, 3500, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 289, + 1, 0, 0, 0, 3504, 3505, 5, 36, 0, 0, 3505, 3541, 3, 1130, 565, 0, 3506, + 3507, 5, 167, 0, 0, 3507, 3541, 3, 294, 147, 0, 3508, 3541, 5, 192, 0, + 0, 3509, 3511, 5, 244, 0, 0, 3510, 3512, 3, 292, 146, 0, 3511, 3510, 1, + 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3541, 3, + 294, 147, 0, 3514, 3541, 5, 460, 0, 0, 3515, 3516, 5, 271, 0, 0, 3516, + 3541, 3, 294, 147, 0, 3517, 3518, 5, 274, 0, 0, 3518, 3541, 3, 294, 147, + 0, 3519, 3520, 5, 281, 0, 0, 3520, 3541, 7, 17, 0, 0, 3521, 3522, 5, 293, + 0, 0, 3522, 3523, 5, 166, 0, 0, 3523, 3541, 3, 526, 263, 0, 3524, 3525, + 5, 340, 0, 0, 3525, 3526, 5, 278, 0, 0, 3526, 3541, 3, 526, 263, 0, 3527, + 3529, 5, 352, 0, 0, 3528, 3530, 3, 16, 8, 0, 3529, 3528, 1, 0, 0, 0, 3529, + 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3541, 3, 294, 147, 0, 3532, + 3534, 5, 326, 0, 0, 3533, 3535, 3, 16, 8, 0, 3534, 3533, 1, 0, 0, 0, 3534, + 3535, 1, 0, 0, 0, 3535, 3537, 1, 0, 0, 0, 3536, 3538, 3, 294, 147, 0, 3537, + 3536, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3541, 1, 0, 0, 0, 3539, + 3541, 5, 379, 0, 0, 3540, 3504, 1, 0, 0, 0, 3540, 3506, 1, 0, 0, 0, 3540, + 3508, 1, 0, 0, 0, 3540, 3509, 1, 0, 0, 0, 3540, 3514, 1, 0, 0, 0, 3540, + 3515, 1, 0, 0, 0, 3540, 3517, 1, 0, 0, 0, 3540, 3519, 1, 0, 0, 0, 3540, + 3521, 1, 0, 0, 0, 3540, 3524, 1, 0, 0, 0, 3540, 3527, 1, 0, 0, 0, 3540, + 3532, 1, 0, 0, 0, 3540, 3539, 1, 0, 0, 0, 3541, 291, 1, 0, 0, 0, 3542, + 3543, 5, 166, 0, 0, 3543, 293, 1, 0, 0, 0, 3544, 3551, 3, 1408, 704, 0, + 3545, 3546, 5, 12, 0, 0, 3546, 3551, 3, 1408, 704, 0, 3547, 3548, 5, 13, + 0, 0, 3548, 3551, 3, 1408, 704, 0, 3549, 3551, 3, 1418, 709, 0, 3550, 3544, + 1, 0, 0, 0, 3550, 3545, 1, 0, 0, 0, 3550, 3547, 1, 0, 0, 0, 3550, 3549, + 1, 0, 0, 0, 3551, 295, 1, 0, 0, 0, 3552, 3557, 3, 294, 147, 0, 3553, 3554, + 5, 6, 0, 0, 3554, 3556, 3, 294, 147, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3559, + 1, 0, 0, 0, 3557, 3555, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 297, + 1, 0, 0, 0, 3559, 3557, 1, 0, 0, 0, 3560, 3562, 5, 46, 0, 0, 3561, 3563, + 3, 624, 312, 0, 3562, 3561, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3565, + 1, 0, 0, 0, 3564, 3566, 3, 300, 150, 0, 3565, 3564, 1, 0, 0, 0, 3565, 3566, + 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3569, 3, 310, 155, 0, 3568, 3567, + 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3570, 1, 0, 0, 0, 3570, 3571, + 5, 257, 0, 0, 3571, 3580, 3, 1394, 697, 0, 3572, 3573, 5, 234, 0, 0, 3573, + 3575, 3, 302, 151, 0, 3574, 3576, 3, 304, 152, 0, 3575, 3574, 1, 0, 0, + 0, 3575, 3576, 1, 0, 0, 0, 3576, 3578, 1, 0, 0, 0, 3577, 3579, 3, 308, + 154, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3581, 1, + 0, 0, 0, 3580, 3572, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 299, 1, + 0, 0, 0, 3582, 3583, 5, 371, 0, 0, 3583, 301, 1, 0, 0, 0, 3584, 3586, 3, + 1394, 697, 0, 3585, 3587, 3, 528, 264, 0, 3586, 3585, 1, 0, 0, 0, 3586, + 3587, 1, 0, 0, 0, 3587, 303, 1, 0, 0, 0, 3588, 3589, 5, 249, 0, 0, 3589, + 3590, 3, 302, 151, 0, 3590, 305, 1, 0, 0, 0, 3591, 3592, 5, 385, 0, 0, + 3592, 3596, 3, 302, 151, 0, 3593, 3594, 5, 281, 0, 0, 3594, 3596, 5, 385, + 0, 0, 3595, 3591, 1, 0, 0, 0, 3595, 3593, 1, 0, 0, 0, 3596, 307, 1, 0, + 0, 0, 3597, 3598, 3, 306, 153, 0, 3598, 309, 1, 0, 0, 0, 3599, 3600, 5, + 307, 0, 0, 3600, 311, 1, 0, 0, 0, 3601, 3602, 5, 46, 0, 0, 3602, 3603, + 5, 363, 0, 0, 3603, 3605, 3, 1394, 697, 0, 3604, 3606, 3, 314, 157, 0, + 3605, 3604, 1, 0, 0, 0, 3605, 3606, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, + 3607, 3608, 5, 265, 0, 0, 3608, 3610, 3, 1412, 706, 0, 3609, 3611, 3, 118, + 59, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 313, 1, 0, + 0, 0, 3612, 3613, 5, 294, 0, 0, 3613, 3614, 3, 1422, 711, 0, 3614, 315, + 1, 0, 0, 0, 3615, 3616, 5, 210, 0, 0, 3616, 3619, 5, 363, 0, 0, 3617, 3618, + 5, 239, 0, 0, 3618, 3620, 5, 409, 0, 0, 3619, 3617, 1, 0, 0, 0, 3619, 3620, + 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3622, 3, 1394, 697, 0, 3622, + 317, 1, 0, 0, 0, 3623, 3624, 5, 46, 0, 0, 3624, 3628, 5, 223, 0, 0, 3625, + 3626, 5, 239, 0, 0, 3626, 3627, 5, 77, 0, 0, 3627, 3629, 5, 409, 0, 0, + 3628, 3625, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 3630, 1, 0, 0, 0, + 3630, 3632, 3, 1394, 697, 0, 3631, 3633, 3, 16, 8, 0, 3632, 3631, 1, 0, + 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3634, 1, 0, 0, 0, 3634, 3635, 3, 320, + 160, 0, 3635, 319, 1, 0, 0, 0, 3636, 3638, 3, 322, 161, 0, 3637, 3636, + 1, 0, 0, 0, 3638, 3641, 1, 0, 0, 0, 3639, 3637, 1, 0, 0, 0, 3639, 3640, + 1, 0, 0, 0, 3640, 321, 1, 0, 0, 0, 3641, 3639, 1, 0, 0, 0, 3642, 3643, + 5, 335, 0, 0, 3643, 3650, 3, 1394, 697, 0, 3644, 3645, 5, 387, 0, 0, 3645, + 3650, 3, 72, 36, 0, 3646, 3647, 5, 64, 0, 0, 3647, 3650, 3, 72, 36, 0, + 3648, 3650, 5, 169, 0, 0, 3649, 3642, 1, 0, 0, 0, 3649, 3644, 1, 0, 0, + 0, 3649, 3646, 1, 0, 0, 0, 3649, 3648, 1, 0, 0, 0, 3650, 323, 1, 0, 0, + 0, 3651, 3652, 5, 157, 0, 0, 3652, 3653, 5, 223, 0, 0, 3653, 3654, 3, 1394, + 697, 0, 3654, 3655, 5, 381, 0, 0, 3655, 3656, 3, 326, 163, 0, 3656, 325, + 1, 0, 0, 0, 3657, 3659, 3, 328, 164, 0, 3658, 3657, 1, 0, 0, 0, 3659, 3662, + 1, 0, 0, 0, 3660, 3658, 1, 0, 0, 0, 3660, 3661, 1, 0, 0, 0, 3661, 327, + 1, 0, 0, 0, 3662, 3660, 1, 0, 0, 0, 3663, 3664, 5, 94, 0, 0, 3664, 3665, + 3, 72, 36, 0, 3665, 329, 1, 0, 0, 0, 3666, 3667, 5, 157, 0, 0, 3667, 3668, + 5, 223, 0, 0, 3668, 3669, 3, 1394, 697, 0, 3669, 3670, 3, 40, 20, 0, 3670, + 3671, 3, 518, 259, 0, 3671, 3672, 3, 1394, 697, 0, 3672, 3771, 1, 0, 0, + 0, 3673, 3674, 5, 157, 0, 0, 3674, 3675, 5, 223, 0, 0, 3675, 3676, 3, 1394, + 697, 0, 3676, 3677, 3, 40, 20, 0, 3677, 3678, 3, 516, 258, 0, 3678, 3679, + 3, 526, 263, 0, 3679, 3771, 1, 0, 0, 0, 3680, 3681, 5, 157, 0, 0, 3681, + 3682, 5, 223, 0, 0, 3682, 3683, 3, 1394, 697, 0, 3683, 3684, 3, 40, 20, + 0, 3684, 3685, 5, 155, 0, 0, 3685, 3686, 3, 656, 328, 0, 3686, 3771, 1, + 0, 0, 0, 3687, 3688, 5, 157, 0, 0, 3688, 3689, 5, 223, 0, 0, 3689, 3690, + 3, 1394, 697, 0, 3690, 3691, 3, 40, 20, 0, 3691, 3692, 5, 41, 0, 0, 3692, + 3693, 5, 2, 0, 0, 3693, 3694, 3, 1126, 563, 0, 3694, 3695, 5, 36, 0, 0, + 3695, 3696, 3, 1126, 563, 0, 3696, 3697, 5, 3, 0, 0, 3697, 3771, 1, 0, + 0, 0, 3698, 3699, 5, 157, 0, 0, 3699, 3700, 5, 223, 0, 0, 3700, 3701, 3, + 1394, 697, 0, 3701, 3702, 3, 40, 20, 0, 3702, 3703, 5, 208, 0, 0, 3703, + 3704, 3, 1126, 563, 0, 3704, 3771, 1, 0, 0, 0, 3705, 3706, 5, 157, 0, 0, + 3706, 3707, 5, 223, 0, 0, 3707, 3708, 3, 1394, 697, 0, 3708, 3709, 3, 40, + 20, 0, 3709, 3710, 5, 230, 0, 0, 3710, 3711, 3, 632, 316, 0, 3711, 3771, + 1, 0, 0, 0, 3712, 3713, 5, 157, 0, 0, 3713, 3714, 5, 223, 0, 0, 3714, 3715, + 3, 1394, 697, 0, 3715, 3716, 3, 40, 20, 0, 3716, 3717, 5, 290, 0, 0, 3717, + 3718, 3, 694, 347, 0, 3718, 3771, 1, 0, 0, 0, 3719, 3720, 5, 157, 0, 0, + 3720, 3721, 5, 223, 0, 0, 3721, 3722, 3, 1394, 697, 0, 3722, 3723, 3, 40, + 20, 0, 3723, 3724, 5, 290, 0, 0, 3724, 3725, 5, 175, 0, 0, 3725, 3726, + 3, 526, 263, 0, 3726, 3727, 5, 100, 0, 0, 3727, 3728, 3, 1394, 697, 0, + 3728, 3771, 1, 0, 0, 0, 3729, 3730, 5, 157, 0, 0, 3730, 3731, 5, 223, 0, + 0, 3731, 3732, 3, 1394, 697, 0, 3732, 3733, 3, 40, 20, 0, 3733, 3734, 5, + 290, 0, 0, 3734, 3735, 5, 225, 0, 0, 3735, 3736, 3, 526, 263, 0, 3736, + 3737, 5, 100, 0, 0, 3737, 3738, 3, 1394, 697, 0, 3738, 3771, 1, 0, 0, 0, + 3739, 3740, 5, 157, 0, 0, 3740, 3741, 5, 223, 0, 0, 3741, 3742, 3, 1394, + 697, 0, 3742, 3743, 3, 40, 20, 0, 3743, 3744, 5, 308, 0, 0, 3744, 3745, + 3, 632, 316, 0, 3745, 3771, 1, 0, 0, 0, 3746, 3747, 5, 157, 0, 0, 3747, + 3748, 5, 223, 0, 0, 3748, 3749, 3, 1394, 697, 0, 3749, 3750, 3, 40, 20, + 0, 3750, 3751, 5, 463, 0, 0, 3751, 3752, 3, 632, 316, 0, 3752, 3771, 1, + 0, 0, 0, 3753, 3754, 5, 157, 0, 0, 3754, 3755, 5, 223, 0, 0, 3755, 3756, + 3, 1394, 697, 0, 3756, 3757, 3, 40, 20, 0, 3757, 3758, 5, 464, 0, 0, 3758, + 3759, 5, 62, 0, 0, 3759, 3760, 3, 1126, 563, 0, 3760, 3761, 5, 257, 0, + 0, 3761, 3762, 3, 1394, 697, 0, 3762, 3771, 1, 0, 0, 0, 3763, 3764, 5, + 157, 0, 0, 3764, 3765, 5, 223, 0, 0, 3765, 3766, 3, 1394, 697, 0, 3766, + 3767, 3, 40, 20, 0, 3767, 3768, 5, 372, 0, 0, 3768, 3769, 3, 1126, 563, + 0, 3769, 3771, 1, 0, 0, 0, 3770, 3666, 1, 0, 0, 0, 3770, 3673, 1, 0, 0, + 0, 3770, 3680, 1, 0, 0, 0, 3770, 3687, 1, 0, 0, 0, 3770, 3698, 1, 0, 0, + 0, 3770, 3705, 1, 0, 0, 0, 3770, 3712, 1, 0, 0, 0, 3770, 3719, 1, 0, 0, + 0, 3770, 3729, 1, 0, 0, 0, 3770, 3739, 1, 0, 0, 0, 3770, 3746, 1, 0, 0, + 0, 3770, 3753, 1, 0, 0, 0, 3770, 3763, 1, 0, 0, 0, 3771, 331, 1, 0, 0, + 0, 3772, 3773, 5, 46, 0, 0, 3773, 3774, 5, 63, 0, 0, 3774, 3775, 5, 193, + 0, 0, 3775, 3776, 5, 393, 0, 0, 3776, 3778, 3, 1394, 697, 0, 3777, 3779, + 3, 338, 169, 0, 3778, 3777, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3781, + 1, 0, 0, 0, 3780, 3782, 3, 342, 171, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, + 1, 0, 0, 0, 3782, 333, 1, 0, 0, 0, 3783, 3784, 5, 234, 0, 0, 3784, 3792, + 3, 302, 151, 0, 3785, 3786, 5, 281, 0, 0, 3786, 3792, 5, 234, 0, 0, 3787, + 3788, 5, 385, 0, 0, 3788, 3792, 3, 302, 151, 0, 3789, 3790, 5, 281, 0, + 0, 3790, 3792, 5, 385, 0, 0, 3791, 3783, 1, 0, 0, 0, 3791, 3785, 1, 0, + 0, 0, 3791, 3787, 1, 0, 0, 0, 3791, 3789, 1, 0, 0, 0, 3792, 335, 1, 0, + 0, 0, 3793, 3795, 3, 334, 167, 0, 3794, 3793, 1, 0, 0, 0, 3795, 3796, 1, + 0, 0, 0, 3796, 3794, 1, 0, 0, 0, 3796, 3797, 1, 0, 0, 0, 3797, 337, 1, + 0, 0, 0, 3798, 3799, 3, 336, 168, 0, 3799, 339, 1, 0, 0, 0, 3800, 3801, + 5, 157, 0, 0, 3801, 3802, 5, 63, 0, 0, 3802, 3803, 5, 193, 0, 0, 3803, + 3804, 5, 393, 0, 0, 3804, 3806, 3, 1394, 697, 0, 3805, 3807, 3, 338, 169, + 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, + 0, 3808, 3809, 3, 346, 173, 0, 3809, 3818, 1, 0, 0, 0, 3810, 3811, 5, 157, + 0, 0, 3811, 3812, 5, 63, 0, 0, 3812, 3813, 5, 193, 0, 0, 3813, 3814, 5, + 393, 0, 0, 3814, 3815, 3, 1394, 697, 0, 3815, 3816, 3, 336, 168, 0, 3816, + 3818, 1, 0, 0, 0, 3817, 3800, 1, 0, 0, 0, 3817, 3810, 1, 0, 0, 0, 3818, + 341, 1, 0, 0, 0, 3819, 3820, 5, 292, 0, 0, 3820, 3821, 5, 2, 0, 0, 3821, + 3822, 3, 344, 172, 0, 3822, 3823, 5, 3, 0, 0, 3823, 343, 1, 0, 0, 0, 3824, + 3829, 3, 352, 176, 0, 3825, 3826, 5, 6, 0, 0, 3826, 3828, 3, 352, 176, + 0, 3827, 3825, 1, 0, 0, 0, 3828, 3831, 1, 0, 0, 0, 3829, 3827, 1, 0, 0, + 0, 3829, 3830, 1, 0, 0, 0, 3830, 345, 1, 0, 0, 0, 3831, 3829, 1, 0, 0, + 0, 3832, 3833, 5, 292, 0, 0, 3833, 3834, 5, 2, 0, 0, 3834, 3835, 3, 348, + 174, 0, 3835, 3836, 5, 3, 0, 0, 3836, 347, 1, 0, 0, 0, 3837, 3842, 3, 350, + 175, 0, 3838, 3839, 5, 6, 0, 0, 3839, 3841, 3, 350, 175, 0, 3840, 3838, + 1, 0, 0, 0, 3841, 3844, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3842, 3843, + 1, 0, 0, 0, 3843, 349, 1, 0, 0, 0, 3844, 3842, 1, 0, 0, 0, 3845, 3853, + 3, 352, 176, 0, 3846, 3847, 5, 345, 0, 0, 3847, 3853, 3, 352, 176, 0, 3848, + 3849, 5, 152, 0, 0, 3849, 3853, 3, 352, 176, 0, 3850, 3851, 5, 210, 0, + 0, 3851, 3853, 3, 354, 177, 0, 3852, 3845, 1, 0, 0, 0, 3852, 3846, 1, 0, + 0, 0, 3852, 3848, 1, 0, 0, 0, 3852, 3850, 1, 0, 0, 0, 3853, 351, 1, 0, + 0, 0, 3854, 3855, 3, 354, 177, 0, 3855, 3856, 3, 356, 178, 0, 3856, 353, + 1, 0, 0, 0, 3857, 3858, 3, 1434, 717, 0, 3858, 355, 1, 0, 0, 0, 3859, 3860, + 3, 1412, 706, 0, 3860, 357, 1, 0, 0, 0, 3861, 3862, 5, 46, 0, 0, 3862, + 3863, 5, 343, 0, 0, 3863, 3865, 3, 1394, 697, 0, 3864, 3866, 3, 360, 180, + 0, 3865, 3864, 1, 0, 0, 0, 3865, 3866, 1, 0, 0, 0, 3866, 3868, 1, 0, 0, + 0, 3867, 3869, 3, 364, 182, 0, 3868, 3867, 1, 0, 0, 0, 3868, 3869, 1, 0, + 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 3871, 5, 63, 0, 0, 3871, 3872, 5, 193, + 0, 0, 3872, 3873, 5, 393, 0, 0, 3873, 3875, 3, 1394, 697, 0, 3874, 3876, + 3, 342, 171, 0, 3875, 3874, 1, 0, 0, 0, 3875, 3876, 1, 0, 0, 0, 3876, 3897, + 1, 0, 0, 0, 3877, 3878, 5, 46, 0, 0, 3878, 3879, 5, 343, 0, 0, 3879, 3880, + 5, 239, 0, 0, 3880, 3881, 5, 77, 0, 0, 3881, 3882, 5, 409, 0, 0, 3882, + 3884, 3, 1394, 697, 0, 3883, 3885, 3, 360, 180, 0, 3884, 3883, 1, 0, 0, + 0, 3884, 3885, 1, 0, 0, 0, 3885, 3887, 1, 0, 0, 0, 3886, 3888, 3, 364, + 182, 0, 3887, 3886, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 3889, 1, + 0, 0, 0, 3889, 3890, 5, 63, 0, 0, 3890, 3891, 5, 193, 0, 0, 3891, 3892, + 5, 393, 0, 0, 3892, 3894, 3, 1394, 697, 0, 3893, 3895, 3, 342, 171, 0, + 3894, 3893, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3897, 1, 0, 0, 0, + 3896, 3861, 1, 0, 0, 0, 3896, 3877, 1, 0, 0, 0, 3897, 359, 1, 0, 0, 0, + 3898, 3899, 5, 372, 0, 0, 3899, 3900, 3, 1412, 706, 0, 3900, 361, 1, 0, + 0, 0, 3901, 3904, 5, 387, 0, 0, 3902, 3905, 3, 1412, 706, 0, 3903, 3905, + 5, 78, 0, 0, 3904, 3902, 1, 0, 0, 0, 3904, 3903, 1, 0, 0, 0, 3905, 363, + 1, 0, 0, 0, 3906, 3907, 3, 362, 181, 0, 3907, 365, 1, 0, 0, 0, 3908, 3909, + 5, 157, 0, 0, 3909, 3910, 5, 343, 0, 0, 3910, 3916, 3, 1394, 697, 0, 3911, + 3917, 3, 346, 173, 0, 3912, 3914, 3, 362, 181, 0, 3913, 3915, 3, 346, 173, + 0, 3914, 3913, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 1, 0, 0, + 0, 3916, 3911, 1, 0, 0, 0, 3916, 3912, 1, 0, 0, 0, 3917, 367, 1, 0, 0, + 0, 3918, 3919, 5, 46, 0, 0, 3919, 3920, 5, 63, 0, 0, 3920, 3921, 5, 92, + 0, 0, 3921, 3922, 3, 1390, 695, 0, 3922, 3924, 5, 2, 0, 0, 3923, 3925, + 3, 176, 88, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, + 1, 0, 0, 0, 3926, 3928, 5, 3, 0, 0, 3927, 3929, 3, 240, 120, 0, 3928, 3927, + 1, 0, 0, 0, 3928, 3929, 1, 0, 0, 0, 3929, 3930, 1, 0, 0, 0, 3930, 3931, + 5, 343, 0, 0, 3931, 3933, 3, 1394, 697, 0, 3932, 3934, 3, 342, 171, 0, + 3933, 3932, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3991, 1, 0, 0, 0, + 3935, 3936, 5, 46, 0, 0, 3936, 3937, 5, 63, 0, 0, 3937, 3938, 5, 92, 0, + 0, 3938, 3939, 5, 239, 0, 0, 3939, 3940, 5, 77, 0, 0, 3940, 3941, 5, 409, + 0, 0, 3941, 3942, 3, 1390, 695, 0, 3942, 3944, 5, 2, 0, 0, 3943, 3945, + 3, 176, 88, 0, 3944, 3943, 1, 0, 0, 0, 3944, 3945, 1, 0, 0, 0, 3945, 3946, + 1, 0, 0, 0, 3946, 3948, 5, 3, 0, 0, 3947, 3949, 3, 240, 120, 0, 3948, 3947, + 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3951, + 5, 343, 0, 0, 3951, 3953, 3, 1394, 697, 0, 3952, 3954, 3, 342, 171, 0, + 3953, 3952, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 3991, 1, 0, 0, 0, + 3955, 3956, 5, 46, 0, 0, 3956, 3957, 5, 63, 0, 0, 3957, 3958, 5, 92, 0, + 0, 3958, 3959, 3, 1390, 695, 0, 3959, 3960, 5, 297, 0, 0, 3960, 3961, 5, + 287, 0, 0, 3961, 3963, 3, 1390, 695, 0, 3962, 3964, 3, 178, 89, 0, 3963, + 3962, 1, 0, 0, 0, 3963, 3964, 1, 0, 0, 0, 3964, 3965, 1, 0, 0, 0, 3965, + 3966, 3, 128, 64, 0, 3966, 3967, 5, 343, 0, 0, 3967, 3969, 3, 1394, 697, + 0, 3968, 3970, 3, 342, 171, 0, 3969, 3968, 1, 0, 0, 0, 3969, 3970, 1, 0, + 0, 0, 3970, 3991, 1, 0, 0, 0, 3971, 3972, 5, 46, 0, 0, 3972, 3973, 5, 63, + 0, 0, 3973, 3974, 5, 92, 0, 0, 3974, 3975, 5, 239, 0, 0, 3975, 3976, 5, + 77, 0, 0, 3976, 3977, 5, 409, 0, 0, 3977, 3978, 3, 1390, 695, 0, 3978, + 3979, 5, 297, 0, 0, 3979, 3980, 5, 287, 0, 0, 3980, 3982, 3, 1390, 695, + 0, 3981, 3983, 3, 178, 89, 0, 3982, 3981, 1, 0, 0, 0, 3982, 3983, 1, 0, + 0, 0, 3983, 3984, 1, 0, 0, 0, 3984, 3985, 3, 128, 64, 0, 3985, 3986, 5, + 343, 0, 0, 3986, 3988, 3, 1394, 697, 0, 3987, 3989, 3, 342, 171, 0, 3988, + 3987, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3991, 1, 0, 0, 0, 3990, + 3918, 1, 0, 0, 0, 3990, 3935, 1, 0, 0, 0, 3990, 3955, 1, 0, 0, 0, 3990, + 3971, 1, 0, 0, 0, 3991, 369, 1, 0, 0, 0, 3992, 3993, 5, 465, 0, 0, 3993, + 3994, 5, 63, 0, 0, 3994, 3995, 5, 335, 0, 0, 3995, 3997, 3, 1394, 697, + 0, 3996, 3998, 3, 374, 187, 0, 3997, 3996, 1, 0, 0, 0, 3997, 3998, 1, 0, + 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4000, 5, 64, 0, 0, 4000, 4001, 5, 343, + 0, 0, 4001, 4002, 3, 1394, 697, 0, 4002, 4003, 5, 71, 0, 0, 4003, 4005, + 3, 1394, 697, 0, 4004, 4006, 3, 342, 171, 0, 4005, 4004, 1, 0, 0, 0, 4005, + 4006, 1, 0, 0, 0, 4006, 371, 1, 0, 0, 0, 4007, 4008, 5, 74, 0, 0, 4008, + 4011, 5, 94, 0, 0, 4009, 4011, 5, 59, 0, 0, 4010, 4007, 1, 0, 0, 0, 4010, + 4009, 1, 0, 0, 0, 4011, 373, 1, 0, 0, 0, 4012, 4013, 3, 372, 186, 0, 4013, + 4014, 5, 2, 0, 0, 4014, 4015, 3, 1084, 542, 0, 4015, 4016, 5, 3, 0, 0, + 4016, 375, 1, 0, 0, 0, 4017, 4018, 5, 46, 0, 0, 4018, 4019, 5, 99, 0, 0, + 4019, 4020, 5, 267, 0, 0, 4020, 4021, 5, 62, 0, 0, 4021, 4022, 3, 378, + 189, 0, 4022, 4023, 5, 343, 0, 0, 4023, 4025, 3, 1394, 697, 0, 4024, 4026, + 3, 342, 171, 0, 4025, 4024, 1, 0, 0, 0, 4025, 4026, 1, 0, 0, 0, 4026, 4041, + 1, 0, 0, 0, 4027, 4028, 5, 46, 0, 0, 4028, 4029, 5, 99, 0, 0, 4029, 4030, + 5, 267, 0, 0, 4030, 4031, 5, 239, 0, 0, 4031, 4032, 5, 77, 0, 0, 4032, + 4033, 5, 409, 0, 0, 4033, 4034, 5, 62, 0, 0, 4034, 4035, 3, 378, 189, 0, + 4035, 4036, 5, 343, 0, 0, 4036, 4038, 3, 1394, 697, 0, 4037, 4039, 3, 342, + 171, 0, 4038, 4037, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4041, 1, + 0, 0, 0, 4040, 4017, 1, 0, 0, 0, 4040, 4027, 1, 0, 0, 0, 4041, 377, 1, + 0, 0, 0, 4042, 4045, 3, 1422, 711, 0, 4043, 4045, 5, 99, 0, 0, 4044, 4042, + 1, 0, 0, 0, 4044, 4043, 1, 0, 0, 0, 4045, 379, 1, 0, 0, 0, 4046, 4047, + 5, 210, 0, 0, 4047, 4048, 5, 99, 0, 0, 4048, 4049, 5, 267, 0, 0, 4049, + 4050, 5, 62, 0, 0, 4050, 4051, 3, 378, 189, 0, 4051, 4052, 5, 343, 0, 0, + 4052, 4053, 3, 1394, 697, 0, 4053, 4065, 1, 0, 0, 0, 4054, 4055, 5, 210, + 0, 0, 4055, 4056, 5, 99, 0, 0, 4056, 4057, 5, 267, 0, 0, 4057, 4058, 5, + 239, 0, 0, 4058, 4059, 5, 409, 0, 0, 4059, 4060, 5, 62, 0, 0, 4060, 4061, + 3, 378, 189, 0, 4061, 4062, 5, 343, 0, 0, 4062, 4063, 3, 1394, 697, 0, + 4063, 4065, 1, 0, 0, 0, 4064, 4046, 1, 0, 0, 0, 4064, 4054, 1, 0, 0, 0, + 4065, 381, 1, 0, 0, 0, 4066, 4067, 5, 157, 0, 0, 4067, 4068, 5, 99, 0, + 0, 4068, 4069, 5, 267, 0, 0, 4069, 4070, 5, 62, 0, 0, 4070, 4071, 3, 378, + 189, 0, 4071, 4072, 5, 343, 0, 0, 4072, 4073, 3, 1394, 697, 0, 4073, 4074, + 3, 346, 173, 0, 4074, 383, 1, 0, 0, 0, 4075, 4076, 5, 46, 0, 0, 4076, 4077, + 5, 466, 0, 0, 4077, 4078, 3, 1394, 697, 0, 4078, 4079, 5, 80, 0, 0, 4079, + 4081, 3, 1390, 695, 0, 4080, 4082, 3, 396, 198, 0, 4081, 4080, 1, 0, 0, + 0, 4081, 4082, 1, 0, 0, 0, 4082, 4084, 1, 0, 0, 0, 4083, 4085, 3, 398, + 199, 0, 4084, 4083, 1, 0, 0, 0, 4084, 4085, 1, 0, 0, 0, 4085, 4087, 1, + 0, 0, 0, 4086, 4088, 3, 392, 196, 0, 4087, 4086, 1, 0, 0, 0, 4087, 4088, + 1, 0, 0, 0, 4088, 4090, 1, 0, 0, 0, 4089, 4091, 3, 388, 194, 0, 4090, 4089, + 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4093, 1, 0, 0, 0, 4092, 4094, + 3, 390, 195, 0, 4093, 4092, 1, 0, 0, 0, 4093, 4094, 1, 0, 0, 0, 4094, 385, + 1, 0, 0, 0, 4095, 4096, 5, 157, 0, 0, 4096, 4097, 5, 466, 0, 0, 4097, 4098, + 3, 1394, 697, 0, 4098, 4099, 5, 80, 0, 0, 4099, 4101, 3, 1390, 695, 0, + 4100, 4102, 3, 394, 197, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, + 0, 4102, 4104, 1, 0, 0, 0, 4103, 4105, 3, 388, 194, 0, 4104, 4103, 1, 0, + 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4107, 1, 0, 0, 0, 4106, 4108, 3, 390, + 195, 0, 4107, 4106, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 387, 1, 0, + 0, 0, 4109, 4110, 5, 100, 0, 0, 4110, 4111, 5, 2, 0, 0, 4111, 4112, 3, + 1170, 585, 0, 4112, 4113, 5, 3, 0, 0, 4113, 389, 1, 0, 0, 0, 4114, 4115, + 5, 105, 0, 0, 4115, 4116, 5, 42, 0, 0, 4116, 4117, 5, 2, 0, 0, 4117, 4118, + 3, 1170, 585, 0, 4118, 4119, 5, 3, 0, 0, 4119, 391, 1, 0, 0, 0, 4120, 4121, + 5, 94, 0, 0, 4121, 4122, 3, 1424, 712, 0, 4122, 393, 1, 0, 0, 0, 4123, + 4124, 5, 94, 0, 0, 4124, 4125, 3, 1424, 712, 0, 4125, 395, 1, 0, 0, 0, + 4126, 4127, 5, 36, 0, 0, 4127, 4128, 3, 1436, 718, 0, 4128, 397, 1, 0, + 0, 0, 4129, 4130, 5, 62, 0, 0, 4130, 4131, 3, 400, 200, 0, 4131, 399, 1, + 0, 0, 0, 4132, 4133, 7, 18, 0, 0, 4133, 401, 1, 0, 0, 0, 4134, 4135, 5, + 46, 0, 0, 4135, 4136, 5, 150, 0, 0, 4136, 4137, 5, 467, 0, 0, 4137, 4138, + 3, 1394, 697, 0, 4138, 4139, 5, 372, 0, 0, 4139, 4140, 3, 404, 202, 0, + 4140, 4141, 5, 234, 0, 0, 4141, 4142, 3, 302, 151, 0, 4142, 403, 1, 0, + 0, 0, 4143, 4144, 7, 19, 0, 0, 4144, 405, 1, 0, 0, 0, 4145, 4146, 5, 46, + 0, 0, 4146, 4147, 5, 369, 0, 0, 4147, 4148, 3, 1394, 697, 0, 4148, 4149, + 3, 408, 204, 0, 4149, 4150, 3, 410, 205, 0, 4150, 4151, 5, 80, 0, 0, 4151, + 4153, 3, 1390, 695, 0, 4152, 4154, 3, 414, 207, 0, 4153, 4152, 1, 0, 0, + 0, 4153, 4154, 1, 0, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4157, 3, 426, + 213, 0, 4156, 4155, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 4159, 1, + 0, 0, 0, 4158, 4160, 3, 432, 216, 0, 4159, 4158, 1, 0, 0, 0, 4159, 4160, + 1, 0, 0, 0, 4160, 4161, 1, 0, 0, 0, 4161, 4162, 5, 221, 0, 0, 4162, 4163, + 3, 434, 217, 0, 4163, 4164, 3, 1400, 700, 0, 4164, 4165, 5, 2, 0, 0, 4165, + 4166, 3, 436, 218, 0, 4166, 4167, 5, 3, 0, 0, 4167, 4194, 1, 0, 0, 0, 4168, + 4169, 5, 46, 0, 0, 4169, 4170, 5, 45, 0, 0, 4170, 4171, 5, 369, 0, 0, 4171, + 4172, 3, 1394, 697, 0, 4172, 4173, 5, 154, 0, 0, 4173, 4174, 3, 410, 205, + 0, 4174, 4175, 5, 80, 0, 0, 4175, 4177, 3, 1390, 695, 0, 4176, 4178, 3, + 440, 220, 0, 4177, 4176, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4179, + 1, 0, 0, 0, 4179, 4180, 3, 442, 221, 0, 4180, 4181, 5, 62, 0, 0, 4181, + 4182, 5, 211, 0, 0, 4182, 4184, 5, 428, 0, 0, 4183, 4185, 3, 432, 216, + 0, 4184, 4183, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 4186, 1, 0, 0, + 0, 4186, 4187, 5, 221, 0, 0, 4187, 4188, 3, 434, 217, 0, 4188, 4189, 3, + 1400, 700, 0, 4189, 4190, 5, 2, 0, 0, 4190, 4191, 3, 436, 218, 0, 4191, + 4192, 5, 3, 0, 0, 4192, 4194, 1, 0, 0, 0, 4193, 4145, 1, 0, 0, 0, 4193, + 4168, 1, 0, 0, 0, 4194, 407, 1, 0, 0, 0, 4195, 4200, 5, 164, 0, 0, 4196, + 4200, 5, 154, 0, 0, 4197, 4198, 5, 252, 0, 0, 4198, 4200, 5, 287, 0, 0, + 4199, 4195, 1, 0, 0, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4197, 1, 0, 0, 0, + 4200, 409, 1, 0, 0, 0, 4201, 4206, 3, 412, 206, 0, 4202, 4203, 5, 82, 0, + 0, 4203, 4205, 3, 412, 206, 0, 4204, 4202, 1, 0, 0, 0, 4205, 4208, 1, 0, + 0, 0, 4206, 4204, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 411, 1, 0, + 0, 0, 4208, 4206, 1, 0, 0, 0, 4209, 4217, 5, 251, 0, 0, 4210, 4217, 5, + 201, 0, 0, 4211, 4217, 5, 381, 0, 0, 4212, 4213, 5, 381, 0, 0, 4213, 4214, + 5, 287, 0, 0, 4214, 4217, 3, 218, 109, 0, 4215, 4217, 5, 370, 0, 0, 4216, + 4209, 1, 0, 0, 0, 4216, 4210, 1, 0, 0, 0, 4216, 4211, 1, 0, 0, 0, 4216, + 4212, 1, 0, 0, 0, 4216, 4215, 1, 0, 0, 0, 4217, 413, 1, 0, 0, 0, 4218, + 4219, 5, 468, 0, 0, 4219, 4220, 3, 416, 208, 0, 4220, 415, 1, 0, 0, 0, + 4221, 4223, 3, 418, 209, 0, 4222, 4221, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, + 0, 4224, 4222, 1, 0, 0, 0, 4224, 4225, 1, 0, 0, 0, 4225, 417, 1, 0, 0, + 0, 4226, 4227, 3, 420, 210, 0, 4227, 4229, 3, 422, 211, 0, 4228, 4230, + 3, 842, 421, 0, 4229, 4228, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 4231, + 1, 0, 0, 0, 4231, 4232, 3, 424, 212, 0, 4232, 419, 1, 0, 0, 0, 4233, 4234, + 7, 20, 0, 0, 4234, 421, 1, 0, 0, 0, 4235, 4236, 7, 21, 0, 0, 4236, 423, + 1, 0, 0, 0, 4237, 4238, 3, 1426, 713, 0, 4238, 425, 1, 0, 0, 0, 4239, 4241, + 5, 62, 0, 0, 4240, 4242, 3, 428, 214, 0, 4241, 4240, 1, 0, 0, 0, 4241, + 4242, 1, 0, 0, 0, 4242, 4243, 1, 0, 0, 0, 4243, 4244, 3, 430, 215, 0, 4244, + 427, 1, 0, 0, 0, 4245, 4246, 5, 211, 0, 0, 4246, 429, 1, 0, 0, 0, 4247, + 4248, 7, 22, 0, 0, 4248, 431, 1, 0, 0, 0, 4249, 4250, 5, 102, 0, 0, 4250, + 4251, 5, 2, 0, 0, 4251, 4252, 3, 1170, 585, 0, 4252, 4253, 5, 3, 0, 0, + 4253, 433, 1, 0, 0, 0, 4254, 4255, 7, 23, 0, 0, 4255, 435, 1, 0, 0, 0, + 4256, 4259, 3, 438, 219, 0, 4257, 4259, 1, 0, 0, 0, 4258, 4256, 1, 0, 0, + 0, 4258, 4257, 1, 0, 0, 0, 4259, 4264, 1, 0, 0, 0, 4260, 4261, 5, 6, 0, + 0, 4261, 4263, 3, 438, 219, 0, 4262, 4260, 1, 0, 0, 0, 4263, 4266, 1, 0, + 0, 0, 4264, 4262, 1, 0, 0, 0, 4264, 4265, 1, 0, 0, 0, 4265, 437, 1, 0, + 0, 0, 4266, 4264, 1, 0, 0, 0, 4267, 4272, 3, 1410, 705, 0, 4268, 4272, + 3, 1408, 704, 0, 4269, 4272, 3, 1412, 706, 0, 4270, 4272, 3, 1434, 717, + 0, 4271, 4267, 1, 0, 0, 0, 4271, 4268, 1, 0, 0, 0, 4271, 4269, 1, 0, 0, + 0, 4271, 4270, 1, 0, 0, 0, 4272, 439, 1, 0, 0, 0, 4273, 4274, 5, 64, 0, + 0, 4274, 4275, 3, 1390, 695, 0, 4275, 441, 1, 0, 0, 0, 4276, 4278, 3, 444, + 222, 0, 4277, 4276, 1, 0, 0, 0, 4278, 4281, 1, 0, 0, 0, 4279, 4277, 1, + 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 443, 1, 0, 0, 0, 4281, 4279, 1, + 0, 0, 0, 4282, 4283, 5, 77, 0, 0, 4283, 4294, 5, 54, 0, 0, 4284, 4294, + 5, 54, 0, 0, 4285, 4286, 5, 69, 0, 0, 4286, 4294, 5, 240, 0, 0, 4287, 4288, + 5, 69, 0, 0, 4288, 4294, 5, 199, 0, 0, 4289, 4290, 5, 77, 0, 0, 4290, 4294, + 5, 383, 0, 0, 4291, 4292, 5, 281, 0, 0, 4292, 4294, 5, 247, 0, 0, 4293, + 4282, 1, 0, 0, 0, 4293, 4284, 1, 0, 0, 0, 4293, 4285, 1, 0, 0, 0, 4293, + 4287, 1, 0, 0, 0, 4293, 4289, 1, 0, 0, 0, 4293, 4291, 1, 0, 0, 0, 4294, + 445, 1, 0, 0, 0, 4295, 4296, 5, 46, 0, 0, 4296, 4297, 5, 217, 0, 0, 4297, + 4298, 5, 369, 0, 0, 4298, 4299, 3, 1394, 697, 0, 4299, 4300, 5, 80, 0, + 0, 4300, 4301, 3, 1434, 717, 0, 4301, 4302, 5, 221, 0, 0, 4302, 4303, 3, + 434, 217, 0, 4303, 4304, 3, 1400, 700, 0, 4304, 4305, 5, 2, 0, 0, 4305, + 4306, 5, 3, 0, 0, 4306, 4322, 1, 0, 0, 0, 4307, 4308, 5, 46, 0, 0, 4308, + 4309, 5, 217, 0, 0, 4309, 4310, 5, 369, 0, 0, 4310, 4311, 3, 1394, 697, + 0, 4311, 4312, 5, 80, 0, 0, 4312, 4313, 3, 1434, 717, 0, 4313, 4314, 5, + 102, 0, 0, 4314, 4315, 3, 448, 224, 0, 4315, 4316, 5, 221, 0, 0, 4316, + 4317, 3, 434, 217, 0, 4317, 4318, 3, 1400, 700, 0, 4318, 4319, 5, 2, 0, + 0, 4319, 4320, 5, 3, 0, 0, 4320, 4322, 1, 0, 0, 0, 4321, 4295, 1, 0, 0, + 0, 4321, 4307, 1, 0, 0, 0, 4322, 447, 1, 0, 0, 0, 4323, 4328, 3, 450, 225, + 0, 4324, 4325, 5, 33, 0, 0, 4325, 4327, 3, 450, 225, 0, 4326, 4324, 1, + 0, 0, 0, 4327, 4330, 1, 0, 0, 0, 4328, 4326, 1, 0, 0, 0, 4328, 4329, 1, + 0, 0, 0, 4329, 449, 1, 0, 0, 0, 4330, 4328, 1, 0, 0, 0, 4331, 4332, 3, + 1426, 713, 0, 4332, 4333, 5, 68, 0, 0, 4333, 4334, 5, 2, 0, 0, 4334, 4335, + 3, 452, 226, 0, 4335, 4336, 5, 3, 0, 0, 4336, 451, 1, 0, 0, 0, 4337, 4342, + 3, 1412, 706, 0, 4338, 4339, 5, 6, 0, 0, 4339, 4341, 3, 1412, 706, 0, 4340, + 4338, 1, 0, 0, 0, 4341, 4344, 1, 0, 0, 0, 4342, 4340, 1, 0, 0, 0, 4342, + 4343, 1, 0, 0, 0, 4343, 453, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4345, + 4346, 5, 157, 0, 0, 4346, 4347, 5, 217, 0, 0, 4347, 4348, 5, 369, 0, 0, + 4348, 4349, 3, 1394, 697, 0, 4349, 4350, 3, 456, 228, 0, 4350, 455, 1, + 0, 0, 0, 4351, 4358, 5, 212, 0, 0, 4352, 4353, 5, 212, 0, 0, 4353, 4358, + 5, 324, 0, 0, 4354, 4355, 5, 212, 0, 0, 4355, 4358, 5, 158, 0, 0, 4356, + 4358, 5, 205, 0, 0, 4357, 4351, 1, 0, 0, 0, 4357, 4352, 1, 0, 0, 0, 4357, + 4354, 1, 0, 0, 0, 4357, 4356, 1, 0, 0, 0, 4358, 457, 1, 0, 0, 0, 4359, + 4360, 5, 46, 0, 0, 4360, 4361, 5, 159, 0, 0, 4361, 4362, 3, 526, 263, 0, + 4362, 4363, 5, 42, 0, 0, 4363, 4364, 5, 2, 0, 0, 4364, 4365, 3, 1170, 585, + 0, 4365, 4366, 5, 3, 0, 0, 4366, 4367, 3, 442, 221, 0, 4367, 459, 1, 0, + 0, 0, 4368, 4370, 5, 46, 0, 0, 4369, 4371, 3, 624, 312, 0, 4370, 4369, + 1, 0, 0, 0, 4370, 4371, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4373, + 5, 155, 0, 0, 4373, 4374, 3, 1400, 700, 0, 4374, 4375, 3, 652, 326, 0, + 4375, 4376, 3, 462, 231, 0, 4376, 4483, 1, 0, 0, 0, 4377, 4379, 5, 46, + 0, 0, 4378, 4380, 3, 624, 312, 0, 4379, 4378, 1, 0, 0, 0, 4379, 4380, 1, + 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4382, 5, 155, 0, 0, 4382, 4383, + 3, 1400, 700, 0, 4383, 4384, 3, 470, 235, 0, 4384, 4483, 1, 0, 0, 0, 4385, + 4386, 5, 46, 0, 0, 4386, 4387, 5, 290, 0, 0, 4387, 4388, 3, 690, 345, 0, + 4388, 4389, 3, 462, 231, 0, 4389, 4483, 1, 0, 0, 0, 4390, 4391, 5, 46, + 0, 0, 4391, 4392, 5, 372, 0, 0, 4392, 4393, 3, 526, 263, 0, 4393, 4394, + 3, 462, 231, 0, 4394, 4483, 1, 0, 0, 0, 4395, 4396, 5, 46, 0, 0, 4396, + 4397, 5, 372, 0, 0, 4397, 4483, 3, 526, 263, 0, 4398, 4399, 5, 46, 0, 0, + 4399, 4400, 5, 372, 0, 0, 4400, 4401, 3, 526, 263, 0, 4401, 4402, 5, 36, + 0, 0, 4402, 4404, 5, 2, 0, 0, 4403, 4405, 3, 1106, 553, 0, 4404, 4403, + 1, 0, 0, 0, 4404, 4405, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4407, + 5, 3, 0, 0, 4407, 4483, 1, 0, 0, 0, 4408, 4409, 5, 46, 0, 0, 4409, 4410, + 5, 372, 0, 0, 4410, 4411, 3, 526, 263, 0, 4411, 4412, 5, 36, 0, 0, 4412, + 4413, 5, 215, 0, 0, 4413, 4415, 5, 2, 0, 0, 4414, 4416, 3, 476, 238, 0, + 4415, 4414, 1, 0, 0, 0, 4415, 4416, 1, 0, 0, 0, 4416, 4417, 1, 0, 0, 0, + 4417, 4418, 5, 3, 0, 0, 4418, 4483, 1, 0, 0, 0, 4419, 4420, 5, 46, 0, 0, + 4420, 4421, 5, 372, 0, 0, 4421, 4422, 3, 526, 263, 0, 4422, 4423, 5, 36, + 0, 0, 4423, 4424, 5, 311, 0, 0, 4424, 4425, 3, 462, 231, 0, 4425, 4483, + 1, 0, 0, 0, 4426, 4427, 5, 46, 0, 0, 4427, 4428, 5, 367, 0, 0, 4428, 4429, + 5, 337, 0, 0, 4429, 4430, 5, 295, 0, 0, 4430, 4431, 3, 526, 263, 0, 4431, + 4432, 3, 462, 231, 0, 4432, 4483, 1, 0, 0, 0, 4433, 4434, 5, 46, 0, 0, + 4434, 4435, 5, 367, 0, 0, 4435, 4436, 5, 337, 0, 0, 4436, 4437, 5, 204, + 0, 0, 4437, 4438, 3, 526, 263, 0, 4438, 4439, 3, 462, 231, 0, 4439, 4483, + 1, 0, 0, 0, 4440, 4441, 5, 46, 0, 0, 4441, 4442, 5, 367, 0, 0, 4442, 4443, + 5, 337, 0, 0, 4443, 4444, 5, 365, 0, 0, 4444, 4445, 3, 526, 263, 0, 4445, + 4446, 3, 462, 231, 0, 4446, 4483, 1, 0, 0, 0, 4447, 4448, 5, 46, 0, 0, + 4448, 4449, 5, 367, 0, 0, 4449, 4450, 5, 337, 0, 0, 4450, 4451, 5, 182, + 0, 0, 4451, 4452, 3, 526, 263, 0, 4452, 4453, 3, 462, 231, 0, 4453, 4483, + 1, 0, 0, 0, 4454, 4455, 5, 46, 0, 0, 4455, 4456, 5, 127, 0, 0, 4456, 4457, + 3, 526, 263, 0, 4457, 4458, 3, 462, 231, 0, 4458, 4483, 1, 0, 0, 0, 4459, + 4460, 5, 46, 0, 0, 4460, 4461, 5, 127, 0, 0, 4461, 4462, 5, 239, 0, 0, + 4462, 4463, 5, 77, 0, 0, 4463, 4464, 5, 409, 0, 0, 4464, 4465, 3, 526, + 263, 0, 4465, 4466, 3, 462, 231, 0, 4466, 4483, 1, 0, 0, 0, 4467, 4468, + 5, 46, 0, 0, 4468, 4469, 5, 127, 0, 0, 4469, 4470, 3, 526, 263, 0, 4470, + 4471, 5, 64, 0, 0, 4471, 4472, 3, 526, 263, 0, 4472, 4483, 1, 0, 0, 0, + 4473, 4474, 5, 46, 0, 0, 4474, 4475, 5, 127, 0, 0, 4475, 4476, 5, 239, + 0, 0, 4476, 4477, 5, 77, 0, 0, 4477, 4478, 5, 409, 0, 0, 4478, 4479, 3, + 526, 263, 0, 4479, 4480, 5, 64, 0, 0, 4480, 4481, 3, 526, 263, 0, 4481, + 4483, 1, 0, 0, 0, 4482, 4368, 1, 0, 0, 0, 4482, 4377, 1, 0, 0, 0, 4482, + 4385, 1, 0, 0, 0, 4482, 4390, 1, 0, 0, 0, 4482, 4395, 1, 0, 0, 0, 4482, + 4398, 1, 0, 0, 0, 4482, 4408, 1, 0, 0, 0, 4482, 4419, 1, 0, 0, 0, 4482, + 4426, 1, 0, 0, 0, 4482, 4433, 1, 0, 0, 0, 4482, 4440, 1, 0, 0, 0, 4482, + 4447, 1, 0, 0, 0, 4482, 4454, 1, 0, 0, 0, 4482, 4459, 1, 0, 0, 0, 4482, + 4467, 1, 0, 0, 0, 4482, 4473, 1, 0, 0, 0, 4483, 461, 1, 0, 0, 0, 4484, + 4485, 5, 2, 0, 0, 4485, 4486, 3, 464, 232, 0, 4486, 4487, 5, 3, 0, 0, 4487, + 463, 1, 0, 0, 0, 4488, 4493, 3, 466, 233, 0, 4489, 4490, 5, 6, 0, 0, 4490, + 4492, 3, 466, 233, 0, 4491, 4489, 1, 0, 0, 0, 4492, 4495, 1, 0, 0, 0, 4493, + 4491, 1, 0, 0, 0, 4493, 4494, 1, 0, 0, 0, 4494, 465, 1, 0, 0, 0, 4495, + 4493, 1, 0, 0, 0, 4496, 4499, 3, 1434, 717, 0, 4497, 4498, 5, 10, 0, 0, + 4498, 4500, 3, 468, 234, 0, 4499, 4497, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, + 0, 4500, 467, 1, 0, 0, 0, 4501, 4508, 3, 646, 323, 0, 4502, 4508, 3, 1446, + 723, 0, 4503, 4508, 3, 1328, 664, 0, 4504, 4508, 3, 294, 147, 0, 4505, + 4508, 3, 1412, 706, 0, 4506, 4508, 5, 420, 0, 0, 4507, 4501, 1, 0, 0, 0, + 4507, 4502, 1, 0, 0, 0, 4507, 4503, 1, 0, 0, 0, 4507, 4504, 1, 0, 0, 0, + 4507, 4505, 1, 0, 0, 0, 4507, 4506, 1, 0, 0, 0, 4508, 469, 1, 0, 0, 0, + 4509, 4510, 5, 2, 0, 0, 4510, 4511, 3, 472, 236, 0, 4511, 4512, 5, 3, 0, + 0, 4512, 471, 1, 0, 0, 0, 4513, 4518, 3, 474, 237, 0, 4514, 4515, 5, 6, + 0, 0, 4515, 4517, 3, 474, 237, 0, 4516, 4514, 1, 0, 0, 0, 4517, 4520, 1, + 0, 0, 0, 4518, 4516, 1, 0, 0, 0, 4518, 4519, 1, 0, 0, 0, 4519, 473, 1, + 0, 0, 0, 4520, 4518, 1, 0, 0, 0, 4521, 4522, 3, 1436, 718, 0, 4522, 4523, + 5, 10, 0, 0, 4523, 4524, 3, 468, 234, 0, 4524, 475, 1, 0, 0, 0, 4525, 4526, + 3, 478, 239, 0, 4526, 477, 1, 0, 0, 0, 4527, 4532, 3, 1412, 706, 0, 4528, + 4529, 5, 6, 0, 0, 4529, 4531, 3, 1412, 706, 0, 4530, 4528, 1, 0, 0, 0, + 4531, 4534, 1, 0, 0, 0, 4532, 4530, 1, 0, 0, 0, 4532, 4533, 1, 0, 0, 0, + 4533, 479, 1, 0, 0, 0, 4534, 4532, 1, 0, 0, 0, 4535, 4536, 5, 157, 0, 0, + 4536, 4537, 5, 372, 0, 0, 4537, 4538, 3, 526, 263, 0, 4538, 4539, 5, 152, + 0, 0, 4539, 4541, 5, 471, 0, 0, 4540, 4542, 3, 482, 241, 0, 4541, 4540, + 1, 0, 0, 0, 4541, 4542, 1, 0, 0, 0, 4542, 4543, 1, 0, 0, 0, 4543, 4544, + 3, 1412, 706, 0, 4544, 4579, 1, 0, 0, 0, 4545, 4546, 5, 157, 0, 0, 4546, + 4547, 5, 372, 0, 0, 4547, 4548, 3, 526, 263, 0, 4548, 4549, 5, 152, 0, + 0, 4549, 4551, 5, 471, 0, 0, 4550, 4552, 3, 482, 241, 0, 4551, 4550, 1, + 0, 0, 0, 4551, 4552, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4554, 3, + 1412, 706, 0, 4554, 4555, 5, 164, 0, 0, 4555, 4556, 3, 1412, 706, 0, 4556, + 4579, 1, 0, 0, 0, 4557, 4558, 5, 157, 0, 0, 4558, 4559, 5, 372, 0, 0, 4559, + 4560, 3, 526, 263, 0, 4560, 4561, 5, 152, 0, 0, 4561, 4563, 5, 471, 0, + 0, 4562, 4564, 3, 482, 241, 0, 4563, 4562, 1, 0, 0, 0, 4563, 4564, 1, 0, + 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4566, 3, 1412, 706, 0, 4566, 4567, + 5, 154, 0, 0, 4567, 4568, 3, 1412, 706, 0, 4568, 4579, 1, 0, 0, 0, 4569, + 4570, 5, 157, 0, 0, 4570, 4571, 5, 372, 0, 0, 4571, 4572, 3, 526, 263, + 0, 4572, 4573, 5, 321, 0, 0, 4573, 4574, 5, 471, 0, 0, 4574, 4575, 3, 1412, + 706, 0, 4575, 4576, 5, 94, 0, 0, 4576, 4577, 3, 1412, 706, 0, 4577, 4579, + 1, 0, 0, 0, 4578, 4535, 1, 0, 0, 0, 4578, 4545, 1, 0, 0, 0, 4578, 4557, + 1, 0, 0, 0, 4578, 4569, 1, 0, 0, 0, 4579, 481, 1, 0, 0, 0, 4580, 4581, + 5, 239, 0, 0, 4581, 4582, 5, 77, 0, 0, 4582, 4583, 5, 409, 0, 0, 4583, + 483, 1, 0, 0, 0, 4584, 4585, 5, 46, 0, 0, 4585, 4586, 5, 290, 0, 0, 4586, + 4587, 5, 175, 0, 0, 4587, 4589, 3, 526, 263, 0, 4588, 4590, 3, 490, 245, + 0, 4589, 4588, 1, 0, 0, 0, 4589, 4590, 1, 0, 0, 0, 4590, 4591, 1, 0, 0, + 0, 4591, 4592, 5, 62, 0, 0, 4592, 4593, 5, 372, 0, 0, 4593, 4594, 3, 1126, + 563, 0, 4594, 4595, 5, 100, 0, 0, 4595, 4597, 3, 1394, 697, 0, 4596, 4598, + 3, 492, 246, 0, 4597, 4596, 1, 0, 0, 0, 4597, 4598, 1, 0, 0, 0, 4598, 4599, + 1, 0, 0, 0, 4599, 4600, 5, 36, 0, 0, 4600, 4601, 3, 486, 243, 0, 4601, + 485, 1, 0, 0, 0, 4602, 4607, 3, 488, 244, 0, 4603, 4604, 5, 6, 0, 0, 4604, + 4606, 3, 488, 244, 0, 4605, 4603, 1, 0, 0, 0, 4606, 4609, 1, 0, 0, 0, 4607, + 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 487, 1, 0, 0, 0, 4609, + 4607, 1, 0, 0, 0, 4610, 4611, 5, 290, 0, 0, 4611, 4612, 3, 1410, 705, 0, + 4612, 4614, 3, 690, 345, 0, 4613, 4615, 3, 494, 247, 0, 4614, 4613, 1, + 0, 0, 0, 4614, 4615, 1, 0, 0, 0, 4615, 4617, 1, 0, 0, 0, 4616, 4618, 3, + 496, 248, 0, 4617, 4616, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4642, + 1, 0, 0, 0, 4619, 4620, 5, 290, 0, 0, 4620, 4621, 3, 1410, 705, 0, 4621, + 4623, 3, 694, 347, 0, 4622, 4624, 3, 494, 247, 0, 4623, 4622, 1, 0, 0, + 0, 4623, 4624, 1, 0, 0, 0, 4624, 4626, 1, 0, 0, 0, 4625, 4627, 3, 496, + 248, 0, 4626, 4625, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4642, 1, + 0, 0, 0, 4628, 4629, 5, 230, 0, 0, 4629, 4630, 3, 1410, 705, 0, 4630, 4631, + 3, 632, 316, 0, 4631, 4642, 1, 0, 0, 0, 4632, 4633, 5, 230, 0, 0, 4633, + 4634, 3, 1410, 705, 0, 4634, 4635, 5, 2, 0, 0, 4635, 4636, 3, 1338, 669, + 0, 4636, 4637, 5, 3, 0, 0, 4637, 4638, 3, 632, 316, 0, 4638, 4642, 1, 0, + 0, 0, 4639, 4640, 5, 357, 0, 0, 4640, 4642, 3, 1126, 563, 0, 4641, 4610, + 1, 0, 0, 0, 4641, 4619, 1, 0, 0, 0, 4641, 4628, 1, 0, 0, 0, 4641, 4632, + 1, 0, 0, 0, 4641, 4639, 1, 0, 0, 0, 4642, 489, 1, 0, 0, 0, 4643, 4644, + 5, 53, 0, 0, 4644, 491, 1, 0, 0, 0, 4645, 4646, 5, 225, 0, 0, 4646, 4647, + 3, 526, 263, 0, 4647, 493, 1, 0, 0, 0, 4648, 4649, 5, 62, 0, 0, 4649, 4655, + 5, 337, 0, 0, 4650, 4651, 5, 62, 0, 0, 4651, 4652, 5, 83, 0, 0, 4652, 4653, + 5, 166, 0, 0, 4653, 4655, 3, 526, 263, 0, 4654, 4648, 1, 0, 0, 0, 4654, + 4650, 1, 0, 0, 0, 4655, 495, 1, 0, 0, 0, 4656, 4657, 5, 314, 0, 0, 4657, + 497, 1, 0, 0, 0, 4658, 4659, 5, 46, 0, 0, 4659, 4660, 5, 290, 0, 0, 4660, + 4661, 5, 225, 0, 0, 4661, 4662, 3, 526, 263, 0, 4662, 4663, 5, 100, 0, + 0, 4663, 4664, 3, 1394, 697, 0, 4664, 499, 1, 0, 0, 0, 4665, 4666, 5, 157, + 0, 0, 4666, 4667, 5, 290, 0, 0, 4667, 4668, 5, 225, 0, 0, 4668, 4669, 3, + 526, 263, 0, 4669, 4670, 5, 100, 0, 0, 4670, 4671, 3, 1394, 697, 0, 4671, + 4672, 5, 152, 0, 0, 4672, 4673, 3, 486, 243, 0, 4673, 4684, 1, 0, 0, 0, + 4674, 4675, 5, 157, 0, 0, 4675, 4676, 5, 290, 0, 0, 4676, 4677, 5, 225, + 0, 0, 4677, 4678, 3, 526, 263, 0, 4678, 4679, 5, 100, 0, 0, 4679, 4680, + 3, 1394, 697, 0, 4680, 4681, 5, 210, 0, 0, 4681, 4682, 3, 502, 251, 0, + 4682, 4684, 1, 0, 0, 0, 4683, 4665, 1, 0, 0, 0, 4683, 4674, 1, 0, 0, 0, + 4684, 501, 1, 0, 0, 0, 4685, 4690, 3, 504, 252, 0, 4686, 4687, 5, 6, 0, + 0, 4687, 4689, 3, 504, 252, 0, 4688, 4686, 1, 0, 0, 0, 4689, 4692, 1, 0, + 0, 0, 4690, 4688, 1, 0, 0, 0, 4690, 4691, 1, 0, 0, 0, 4691, 503, 1, 0, + 0, 0, 4692, 4690, 1, 0, 0, 0, 4693, 4694, 5, 290, 0, 0, 4694, 4695, 3, + 1410, 705, 0, 4695, 4696, 5, 2, 0, 0, 4696, 4697, 3, 1338, 669, 0, 4697, + 4698, 5, 3, 0, 0, 4698, 4706, 1, 0, 0, 0, 4699, 4700, 5, 230, 0, 0, 4700, + 4701, 3, 1410, 705, 0, 4701, 4702, 5, 2, 0, 0, 4702, 4703, 3, 1338, 669, + 0, 4703, 4704, 5, 3, 0, 0, 4704, 4706, 1, 0, 0, 0, 4705, 4693, 1, 0, 0, + 0, 4705, 4699, 1, 0, 0, 0, 4706, 505, 1, 0, 0, 0, 4707, 4708, 5, 210, 0, + 0, 4708, 4709, 5, 290, 0, 0, 4709, 4710, 5, 175, 0, 0, 4710, 4711, 3, 526, + 263, 0, 4711, 4712, 5, 100, 0, 0, 4712, 4714, 3, 1394, 697, 0, 4713, 4715, + 3, 108, 54, 0, 4714, 4713, 1, 0, 0, 0, 4714, 4715, 1, 0, 0, 0, 4715, 4728, + 1, 0, 0, 0, 4716, 4717, 5, 210, 0, 0, 4717, 4718, 5, 290, 0, 0, 4718, 4719, + 5, 175, 0, 0, 4719, 4720, 5, 239, 0, 0, 4720, 4721, 5, 409, 0, 0, 4721, + 4722, 3, 526, 263, 0, 4722, 4723, 5, 100, 0, 0, 4723, 4725, 3, 1394, 697, + 0, 4724, 4726, 3, 108, 54, 0, 4725, 4724, 1, 0, 0, 0, 4725, 4726, 1, 0, + 0, 0, 4726, 4728, 1, 0, 0, 0, 4727, 4707, 1, 0, 0, 0, 4727, 4716, 1, 0, + 0, 0, 4728, 507, 1, 0, 0, 0, 4729, 4730, 5, 210, 0, 0, 4730, 4731, 5, 290, + 0, 0, 4731, 4732, 5, 225, 0, 0, 4732, 4733, 3, 526, 263, 0, 4733, 4734, + 5, 100, 0, 0, 4734, 4736, 3, 1394, 697, 0, 4735, 4737, 3, 108, 54, 0, 4736, + 4735, 1, 0, 0, 0, 4736, 4737, 1, 0, 0, 0, 4737, 4750, 1, 0, 0, 0, 4738, + 4739, 5, 210, 0, 0, 4739, 4740, 5, 290, 0, 0, 4740, 4741, 5, 225, 0, 0, + 4741, 4742, 5, 239, 0, 0, 4742, 4743, 5, 409, 0, 0, 4743, 4744, 3, 526, + 263, 0, 4744, 4745, 5, 100, 0, 0, 4745, 4747, 3, 1394, 697, 0, 4746, 4748, + 3, 108, 54, 0, 4747, 4746, 1, 0, 0, 0, 4747, 4748, 1, 0, 0, 0, 4748, 4750, + 1, 0, 0, 0, 4749, 4729, 1, 0, 0, 0, 4749, 4738, 1, 0, 0, 0, 4750, 509, + 1, 0, 0, 0, 4751, 4752, 5, 210, 0, 0, 4752, 4753, 5, 293, 0, 0, 4753, 4754, + 5, 166, 0, 0, 4754, 4756, 3, 1424, 712, 0, 4755, 4757, 3, 108, 54, 0, 4756, + 4755, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 511, 1, 0, 0, 0, 4758, + 4759, 5, 313, 0, 0, 4759, 4760, 5, 293, 0, 0, 4760, 4761, 5, 166, 0, 0, + 4761, 4762, 3, 1424, 712, 0, 4762, 4763, 5, 94, 0, 0, 4763, 4764, 3, 1422, + 711, 0, 4764, 513, 1, 0, 0, 0, 4765, 4766, 5, 210, 0, 0, 4766, 4767, 3, + 516, 258, 0, 4767, 4768, 5, 239, 0, 0, 4768, 4769, 5, 409, 0, 0, 4769, + 4771, 3, 524, 262, 0, 4770, 4772, 3, 108, 54, 0, 4771, 4770, 1, 0, 0, 0, + 4771, 4772, 1, 0, 0, 0, 4772, 4856, 1, 0, 0, 0, 4773, 4774, 5, 210, 0, + 0, 4774, 4775, 3, 516, 258, 0, 4775, 4777, 3, 524, 262, 0, 4776, 4778, + 3, 108, 54, 0, 4777, 4776, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 4856, + 1, 0, 0, 0, 4779, 4780, 5, 210, 0, 0, 4780, 4781, 3, 520, 260, 0, 4781, + 4782, 5, 239, 0, 0, 4782, 4783, 5, 409, 0, 0, 4783, 4785, 3, 1392, 696, + 0, 4784, 4786, 3, 108, 54, 0, 4785, 4784, 1, 0, 0, 0, 4785, 4786, 1, 0, + 0, 0, 4786, 4856, 1, 0, 0, 0, 4787, 4788, 5, 210, 0, 0, 4788, 4789, 3, + 520, 260, 0, 4789, 4791, 3, 1392, 696, 0, 4790, 4792, 3, 108, 54, 0, 4791, + 4790, 1, 0, 0, 0, 4791, 4792, 1, 0, 0, 0, 4792, 4856, 1, 0, 0, 0, 4793, + 4794, 5, 210, 0, 0, 4794, 4795, 3, 522, 261, 0, 4795, 4796, 3, 1394, 697, + 0, 4796, 4797, 5, 80, 0, 0, 4797, 4799, 3, 526, 263, 0, 4798, 4800, 3, + 108, 54, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4856, + 1, 0, 0, 0, 4801, 4802, 5, 210, 0, 0, 4802, 4803, 3, 522, 261, 0, 4803, + 4804, 5, 239, 0, 0, 4804, 4805, 5, 409, 0, 0, 4805, 4806, 3, 1394, 697, + 0, 4806, 4807, 5, 80, 0, 0, 4807, 4809, 3, 526, 263, 0, 4808, 4810, 3, + 108, 54, 0, 4809, 4808, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4856, + 1, 0, 0, 0, 4811, 4812, 5, 210, 0, 0, 4812, 4813, 5, 372, 0, 0, 4813, 4815, + 3, 530, 265, 0, 4814, 4816, 3, 108, 54, 0, 4815, 4814, 1, 0, 0, 0, 4815, + 4816, 1, 0, 0, 0, 4816, 4856, 1, 0, 0, 0, 4817, 4818, 5, 210, 0, 0, 4818, + 4819, 5, 372, 0, 0, 4819, 4820, 5, 239, 0, 0, 4820, 4821, 5, 409, 0, 0, + 4821, 4823, 3, 530, 265, 0, 4822, 4824, 3, 108, 54, 0, 4823, 4822, 1, 0, + 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4856, 1, 0, 0, 0, 4825, 4826, 5, 210, + 0, 0, 4826, 4827, 5, 208, 0, 0, 4827, 4829, 3, 530, 265, 0, 4828, 4830, + 3, 108, 54, 0, 4829, 4828, 1, 0, 0, 0, 4829, 4830, 1, 0, 0, 0, 4830, 4856, + 1, 0, 0, 0, 4831, 4832, 5, 210, 0, 0, 4832, 4833, 5, 208, 0, 0, 4833, 4834, + 5, 239, 0, 0, 4834, 4835, 5, 409, 0, 0, 4835, 4837, 3, 530, 265, 0, 4836, + 4838, 3, 108, 54, 0, 4837, 4836, 1, 0, 0, 0, 4837, 4838, 1, 0, 0, 0, 4838, + 4856, 1, 0, 0, 0, 4839, 4840, 5, 210, 0, 0, 4840, 4841, 5, 245, 0, 0, 4841, + 4842, 5, 128, 0, 0, 4842, 4844, 3, 524, 262, 0, 4843, 4845, 3, 108, 54, + 0, 4844, 4843, 1, 0, 0, 0, 4844, 4845, 1, 0, 0, 0, 4845, 4856, 1, 0, 0, + 0, 4846, 4847, 5, 210, 0, 0, 4847, 4848, 5, 245, 0, 0, 4848, 4849, 5, 128, + 0, 0, 4849, 4850, 5, 239, 0, 0, 4850, 4851, 5, 409, 0, 0, 4851, 4853, 3, + 524, 262, 0, 4852, 4854, 3, 108, 54, 0, 4853, 4852, 1, 0, 0, 0, 4853, 4854, + 1, 0, 0, 0, 4854, 4856, 1, 0, 0, 0, 4855, 4765, 1, 0, 0, 0, 4855, 4773, + 1, 0, 0, 0, 4855, 4779, 1, 0, 0, 0, 4855, 4787, 1, 0, 0, 0, 4855, 4793, + 1, 0, 0, 0, 4855, 4801, 1, 0, 0, 0, 4855, 4811, 1, 0, 0, 0, 4855, 4817, + 1, 0, 0, 0, 4855, 4825, 1, 0, 0, 0, 4855, 4831, 1, 0, 0, 0, 4855, 4839, + 1, 0, 0, 0, 4855, 4846, 1, 0, 0, 0, 4856, 515, 1, 0, 0, 0, 4857, 4881, + 5, 92, 0, 0, 4858, 4881, 5, 340, 0, 0, 4859, 4881, 5, 388, 0, 0, 4860, + 4861, 5, 270, 0, 0, 4861, 4881, 5, 388, 0, 0, 4862, 4881, 5, 245, 0, 0, + 4863, 4864, 5, 63, 0, 0, 4864, 4881, 5, 92, 0, 0, 4865, 4881, 5, 127, 0, + 0, 4866, 4881, 5, 187, 0, 0, 4867, 4881, 5, 354, 0, 0, 4868, 4869, 5, 367, + 0, 0, 4869, 4870, 5, 337, 0, 0, 4870, 4881, 5, 295, 0, 0, 4871, 4872, 5, + 367, 0, 0, 4872, 4873, 5, 337, 0, 0, 4873, 4881, 5, 204, 0, 0, 4874, 4875, + 5, 367, 0, 0, 4875, 4876, 5, 337, 0, 0, 4876, 4881, 5, 365, 0, 0, 4877, + 4878, 5, 367, 0, 0, 4878, 4879, 5, 337, 0, 0, 4879, 4881, 5, 182, 0, 0, + 4880, 4857, 1, 0, 0, 0, 4880, 4858, 1, 0, 0, 0, 4880, 4859, 1, 0, 0, 0, + 4880, 4860, 1, 0, 0, 0, 4880, 4862, 1, 0, 0, 0, 4880, 4863, 1, 0, 0, 0, + 4880, 4865, 1, 0, 0, 0, 4880, 4866, 1, 0, 0, 0, 4880, 4867, 1, 0, 0, 0, + 4880, 4868, 1, 0, 0, 0, 4880, 4871, 1, 0, 0, 0, 4880, 4874, 1, 0, 0, 0, + 4880, 4877, 1, 0, 0, 0, 4881, 517, 1, 0, 0, 0, 4882, 4888, 3, 520, 260, + 0, 4883, 4888, 5, 194, 0, 0, 4884, 4888, 5, 330, 0, 0, 4885, 4888, 5, 472, + 0, 0, 4886, 4888, 5, 363, 0, 0, 4887, 4882, 1, 0, 0, 0, 4887, 4883, 1, + 0, 0, 0, 4887, 4884, 1, 0, 0, 0, 4887, 4885, 1, 0, 0, 0, 4887, 4886, 1, + 0, 0, 0, 4888, 519, 1, 0, 0, 0, 4889, 4890, 5, 150, 0, 0, 4890, 4905, 5, + 467, 0, 0, 4891, 4892, 5, 217, 0, 0, 4892, 4905, 5, 369, 0, 0, 4893, 4905, + 5, 223, 0, 0, 4894, 4895, 5, 63, 0, 0, 4895, 4896, 5, 193, 0, 0, 4896, + 4905, 5, 393, 0, 0, 4897, 4899, 3, 310, 155, 0, 4898, 4897, 1, 0, 0, 0, + 4898, 4899, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4905, 5, 257, 0, + 0, 4901, 4905, 5, 473, 0, 0, 4902, 4905, 5, 335, 0, 0, 4903, 4905, 5, 343, + 0, 0, 4904, 4889, 1, 0, 0, 0, 4904, 4891, 1, 0, 0, 0, 4904, 4893, 1, 0, + 0, 0, 4904, 4894, 1, 0, 0, 0, 4904, 4898, 1, 0, 0, 0, 4904, 4901, 1, 0, + 0, 0, 4904, 4902, 1, 0, 0, 0, 4904, 4903, 1, 0, 0, 0, 4905, 521, 1, 0, + 0, 0, 4906, 4907, 7, 24, 0, 0, 4907, 523, 1, 0, 0, 0, 4908, 4913, 3, 526, + 263, 0, 4909, 4910, 5, 6, 0, 0, 4910, 4912, 3, 526, 263, 0, 4911, 4909, + 1, 0, 0, 0, 4912, 4915, 1, 0, 0, 0, 4913, 4911, 1, 0, 0, 0, 4913, 4914, + 1, 0, 0, 0, 4914, 525, 1, 0, 0, 0, 4915, 4913, 1, 0, 0, 0, 4916, 4918, + 3, 1426, 713, 0, 4917, 4919, 3, 528, 264, 0, 4918, 4917, 1, 0, 0, 0, 4918, + 4919, 1, 0, 0, 0, 4919, 527, 1, 0, 0, 0, 4920, 4921, 5, 11, 0, 0, 4921, + 4923, 3, 1396, 698, 0, 4922, 4920, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, + 4924, 4922, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 529, 1, 0, 0, 0, + 4926, 4931, 3, 1126, 563, 0, 4927, 4928, 5, 6, 0, 0, 4928, 4930, 3, 1126, + 563, 0, 4929, 4927, 1, 0, 0, 0, 4930, 4933, 1, 0, 0, 0, 4931, 4929, 1, + 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 531, 1, 0, 0, 0, 4933, 4931, 1, + 0, 0, 0, 4934, 4936, 5, 370, 0, 0, 4935, 4937, 3, 996, 498, 0, 4936, 4935, + 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4938, 1, 0, 0, 0, 4938, 4940, + 3, 1084, 542, 0, 4939, 4941, 3, 534, 267, 0, 4940, 4939, 1, 0, 0, 0, 4940, + 4941, 1, 0, 0, 0, 4941, 4943, 1, 0, 0, 0, 4942, 4944, 3, 108, 54, 0, 4943, + 4942, 1, 0, 0, 0, 4943, 4944, 1, 0, 0, 0, 4944, 533, 1, 0, 0, 0, 4945, + 4946, 5, 186, 0, 0, 4946, 4950, 5, 238, 0, 0, 4947, 4948, 5, 326, 0, 0, + 4948, 4950, 5, 238, 0, 0, 4949, 4945, 1, 0, 0, 0, 4949, 4947, 1, 0, 0, + 0, 4950, 535, 1, 0, 0, 0, 4951, 4952, 5, 178, 0, 0, 4952, 4953, 5, 80, + 0, 0, 4953, 4954, 3, 516, 258, 0, 4954, 4955, 3, 526, 263, 0, 4955, 4956, + 5, 135, 0, 0, 4956, 4957, 3, 538, 269, 0, 4957, 5099, 1, 0, 0, 0, 4958, + 4959, 5, 178, 0, 0, 4959, 4960, 5, 80, 0, 0, 4960, 4961, 5, 44, 0, 0, 4961, + 4962, 3, 526, 263, 0, 4962, 4963, 5, 135, 0, 0, 4963, 4964, 3, 538, 269, + 0, 4964, 5099, 1, 0, 0, 0, 4965, 4966, 5, 178, 0, 0, 4966, 4967, 5, 80, + 0, 0, 4967, 4968, 3, 518, 259, 0, 4968, 4969, 3, 1394, 697, 0, 4969, 4970, + 5, 135, 0, 0, 4970, 4971, 3, 538, 269, 0, 4971, 5099, 1, 0, 0, 0, 4972, + 4973, 5, 178, 0, 0, 4973, 4974, 5, 80, 0, 0, 4974, 4975, 5, 372, 0, 0, + 4975, 4976, 3, 1126, 563, 0, 4976, 4977, 5, 135, 0, 0, 4977, 4978, 3, 538, + 269, 0, 4978, 5099, 1, 0, 0, 0, 4979, 4980, 5, 178, 0, 0, 4980, 4981, 5, + 80, 0, 0, 4981, 4982, 5, 208, 0, 0, 4982, 4983, 3, 1126, 563, 0, 4983, + 4984, 5, 135, 0, 0, 4984, 4985, 3, 538, 269, 0, 4985, 5099, 1, 0, 0, 0, + 4986, 4987, 5, 178, 0, 0, 4987, 4988, 5, 80, 0, 0, 4988, 4989, 5, 155, + 0, 0, 4989, 4990, 3, 656, 328, 0, 4990, 4991, 5, 135, 0, 0, 4991, 4992, + 3, 538, 269, 0, 4992, 5099, 1, 0, 0, 0, 4993, 4994, 5, 178, 0, 0, 4994, + 4995, 5, 80, 0, 0, 4995, 4996, 5, 230, 0, 0, 4996, 4997, 3, 632, 316, 0, + 4997, 4998, 5, 135, 0, 0, 4998, 4999, 3, 538, 269, 0, 4999, 5099, 1, 0, + 0, 0, 5000, 5001, 5, 178, 0, 0, 5001, 5002, 5, 80, 0, 0, 5002, 5003, 5, + 290, 0, 0, 5003, 5004, 3, 694, 347, 0, 5004, 5005, 5, 135, 0, 0, 5005, + 5006, 3, 538, 269, 0, 5006, 5099, 1, 0, 0, 0, 5007, 5008, 5, 178, 0, 0, + 5008, 5009, 5, 80, 0, 0, 5009, 5010, 5, 45, 0, 0, 5010, 5011, 3, 1394, + 697, 0, 5011, 5012, 5, 80, 0, 0, 5012, 5013, 3, 526, 263, 0, 5013, 5014, + 5, 135, 0, 0, 5014, 5015, 3, 538, 269, 0, 5015, 5099, 1, 0, 0, 0, 5016, + 5017, 5, 178, 0, 0, 5017, 5018, 5, 80, 0, 0, 5018, 5019, 5, 45, 0, 0, 5019, + 5020, 3, 1394, 697, 0, 5020, 5021, 5, 80, 0, 0, 5021, 5022, 5, 208, 0, + 0, 5022, 5023, 3, 526, 263, 0, 5023, 5024, 5, 135, 0, 0, 5024, 5025, 3, + 538, 269, 0, 5025, 5099, 1, 0, 0, 0, 5026, 5027, 5, 178, 0, 0, 5027, 5028, + 5, 80, 0, 0, 5028, 5029, 3, 522, 261, 0, 5029, 5030, 3, 1394, 697, 0, 5030, + 5031, 5, 80, 0, 0, 5031, 5032, 3, 526, 263, 0, 5032, 5033, 5, 135, 0, 0, + 5033, 5034, 3, 538, 269, 0, 5034, 5099, 1, 0, 0, 0, 5035, 5036, 5, 178, + 0, 0, 5036, 5037, 5, 80, 0, 0, 5037, 5038, 5, 308, 0, 0, 5038, 5039, 3, + 632, 316, 0, 5039, 5040, 5, 135, 0, 0, 5040, 5041, 3, 538, 269, 0, 5041, + 5099, 1, 0, 0, 0, 5042, 5043, 5, 178, 0, 0, 5043, 5044, 5, 80, 0, 0, 5044, + 5045, 5, 463, 0, 0, 5045, 5046, 3, 632, 316, 0, 5046, 5047, 5, 135, 0, + 0, 5047, 5048, 3, 538, 269, 0, 5048, 5099, 1, 0, 0, 0, 5049, 5050, 5, 178, + 0, 0, 5050, 5051, 5, 80, 0, 0, 5051, 5052, 5, 464, 0, 0, 5052, 5053, 5, + 62, 0, 0, 5053, 5054, 3, 1126, 563, 0, 5054, 5055, 5, 257, 0, 0, 5055, + 5056, 3, 1394, 697, 0, 5056, 5057, 5, 135, 0, 0, 5057, 5058, 3, 538, 269, + 0, 5058, 5099, 1, 0, 0, 0, 5059, 5060, 5, 178, 0, 0, 5060, 5061, 5, 80, + 0, 0, 5061, 5062, 5, 290, 0, 0, 5062, 5063, 5, 175, 0, 0, 5063, 5064, 3, + 526, 263, 0, 5064, 5065, 5, 100, 0, 0, 5065, 5066, 3, 1394, 697, 0, 5066, + 5067, 5, 135, 0, 0, 5067, 5068, 3, 538, 269, 0, 5068, 5099, 1, 0, 0, 0, + 5069, 5070, 5, 178, 0, 0, 5070, 5071, 5, 80, 0, 0, 5071, 5072, 5, 290, + 0, 0, 5072, 5073, 5, 225, 0, 0, 5073, 5074, 3, 526, 263, 0, 5074, 5075, + 5, 100, 0, 0, 5075, 5076, 3, 1394, 697, 0, 5076, 5077, 5, 135, 0, 0, 5077, + 5078, 3, 538, 269, 0, 5078, 5099, 1, 0, 0, 0, 5079, 5080, 5, 178, 0, 0, + 5080, 5081, 5, 80, 0, 0, 5081, 5082, 5, 258, 0, 0, 5082, 5083, 5, 286, + 0, 0, 5083, 5084, 3, 294, 147, 0, 5084, 5085, 5, 135, 0, 0, 5085, 5086, + 3, 538, 269, 0, 5086, 5099, 1, 0, 0, 0, 5087, 5088, 5, 178, 0, 0, 5088, + 5089, 5, 80, 0, 0, 5089, 5090, 5, 41, 0, 0, 5090, 5091, 5, 2, 0, 0, 5091, + 5092, 3, 1126, 563, 0, 5092, 5093, 5, 36, 0, 0, 5093, 5094, 3, 1126, 563, + 0, 5094, 5095, 5, 3, 0, 0, 5095, 5096, 5, 135, 0, 0, 5096, 5097, 3, 538, + 269, 0, 5097, 5099, 1, 0, 0, 0, 5098, 4951, 1, 0, 0, 0, 5098, 4958, 1, + 0, 0, 0, 5098, 4965, 1, 0, 0, 0, 5098, 4972, 1, 0, 0, 0, 5098, 4979, 1, + 0, 0, 0, 5098, 4986, 1, 0, 0, 0, 5098, 4993, 1, 0, 0, 0, 5098, 5000, 1, + 0, 0, 0, 5098, 5007, 1, 0, 0, 0, 5098, 5016, 1, 0, 0, 0, 5098, 5026, 1, + 0, 0, 0, 5098, 5035, 1, 0, 0, 0, 5098, 5042, 1, 0, 0, 0, 5098, 5049, 1, + 0, 0, 0, 5098, 5059, 1, 0, 0, 0, 5098, 5069, 1, 0, 0, 0, 5098, 5079, 1, + 0, 0, 0, 5098, 5087, 1, 0, 0, 0, 5099, 537, 1, 0, 0, 0, 5100, 5103, 3, + 1412, 706, 0, 5101, 5103, 5, 78, 0, 0, 5102, 5100, 1, 0, 0, 0, 5102, 5101, + 1, 0, 0, 0, 5103, 539, 1, 0, 0, 0, 5104, 5105, 5, 339, 0, 0, 5105, 5107, + 5, 256, 0, 0, 5106, 5108, 3, 542, 271, 0, 5107, 5106, 1, 0, 0, 0, 5107, + 5108, 1, 0, 0, 0, 5108, 5109, 1, 0, 0, 0, 5109, 5110, 5, 80, 0, 0, 5110, + 5111, 3, 516, 258, 0, 5111, 5112, 3, 526, 263, 0, 5112, 5113, 5, 135, 0, + 0, 5113, 5114, 3, 544, 272, 0, 5114, 5216, 1, 0, 0, 0, 5115, 5116, 5, 339, + 0, 0, 5116, 5118, 5, 256, 0, 0, 5117, 5119, 3, 542, 271, 0, 5118, 5117, + 1, 0, 0, 0, 5118, 5119, 1, 0, 0, 0, 5119, 5120, 1, 0, 0, 0, 5120, 5121, + 5, 80, 0, 0, 5121, 5122, 5, 44, 0, 0, 5122, 5123, 3, 526, 263, 0, 5123, + 5124, 5, 135, 0, 0, 5124, 5125, 3, 544, 272, 0, 5125, 5216, 1, 0, 0, 0, + 5126, 5127, 5, 339, 0, 0, 5127, 5129, 5, 256, 0, 0, 5128, 5130, 3, 542, + 271, 0, 5129, 5128, 1, 0, 0, 0, 5129, 5130, 1, 0, 0, 0, 5130, 5131, 1, + 0, 0, 0, 5131, 5132, 5, 80, 0, 0, 5132, 5133, 3, 518, 259, 0, 5133, 5134, + 3, 1394, 697, 0, 5134, 5135, 5, 135, 0, 0, 5135, 5136, 3, 544, 272, 0, + 5136, 5216, 1, 0, 0, 0, 5137, 5138, 5, 339, 0, 0, 5138, 5140, 5, 256, 0, + 0, 5139, 5141, 3, 542, 271, 0, 5140, 5139, 1, 0, 0, 0, 5140, 5141, 1, 0, + 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 5143, 5, 80, 0, 0, 5143, 5144, 5, 372, + 0, 0, 5144, 5145, 3, 1126, 563, 0, 5145, 5146, 5, 135, 0, 0, 5146, 5147, + 3, 544, 272, 0, 5147, 5216, 1, 0, 0, 0, 5148, 5149, 5, 339, 0, 0, 5149, + 5151, 5, 256, 0, 0, 5150, 5152, 3, 542, 271, 0, 5151, 5150, 1, 0, 0, 0, + 5151, 5152, 1, 0, 0, 0, 5152, 5153, 1, 0, 0, 0, 5153, 5154, 5, 80, 0, 0, + 5154, 5155, 5, 208, 0, 0, 5155, 5156, 3, 1126, 563, 0, 5156, 5157, 5, 135, + 0, 0, 5157, 5158, 3, 544, 272, 0, 5158, 5216, 1, 0, 0, 0, 5159, 5160, 5, + 339, 0, 0, 5160, 5162, 5, 256, 0, 0, 5161, 5163, 3, 542, 271, 0, 5162, + 5161, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 5164, 1, 0, 0, 0, 5164, + 5165, 5, 80, 0, 0, 5165, 5166, 5, 155, 0, 0, 5166, 5167, 3, 656, 328, 0, + 5167, 5168, 5, 135, 0, 0, 5168, 5169, 3, 544, 272, 0, 5169, 5216, 1, 0, + 0, 0, 5170, 5171, 5, 339, 0, 0, 5171, 5173, 5, 256, 0, 0, 5172, 5174, 3, + 542, 271, 0, 5173, 5172, 1, 0, 0, 0, 5173, 5174, 1, 0, 0, 0, 5174, 5175, + 1, 0, 0, 0, 5175, 5176, 5, 80, 0, 0, 5176, 5177, 5, 230, 0, 0, 5177, 5178, + 3, 632, 316, 0, 5178, 5179, 5, 135, 0, 0, 5179, 5180, 3, 544, 272, 0, 5180, + 5216, 1, 0, 0, 0, 5181, 5182, 5, 339, 0, 0, 5182, 5184, 5, 256, 0, 0, 5183, + 5185, 3, 542, 271, 0, 5184, 5183, 1, 0, 0, 0, 5184, 5185, 1, 0, 0, 0, 5185, + 5186, 1, 0, 0, 0, 5186, 5187, 5, 80, 0, 0, 5187, 5188, 5, 258, 0, 0, 5188, + 5189, 5, 286, 0, 0, 5189, 5190, 3, 294, 147, 0, 5190, 5191, 5, 135, 0, + 0, 5191, 5192, 3, 544, 272, 0, 5192, 5216, 1, 0, 0, 0, 5193, 5194, 5, 339, + 0, 0, 5194, 5196, 5, 256, 0, 0, 5195, 5197, 3, 542, 271, 0, 5196, 5195, + 1, 0, 0, 0, 5196, 5197, 1, 0, 0, 0, 5197, 5198, 1, 0, 0, 0, 5198, 5199, + 5, 80, 0, 0, 5199, 5200, 5, 308, 0, 0, 5200, 5201, 3, 632, 316, 0, 5201, + 5202, 5, 135, 0, 0, 5202, 5203, 3, 544, 272, 0, 5203, 5216, 1, 0, 0, 0, + 5204, 5205, 5, 339, 0, 0, 5205, 5207, 5, 256, 0, 0, 5206, 5208, 3, 542, + 271, 0, 5207, 5206, 1, 0, 0, 0, 5207, 5208, 1, 0, 0, 0, 5208, 5209, 1, + 0, 0, 0, 5209, 5210, 5, 80, 0, 0, 5210, 5211, 5, 463, 0, 0, 5211, 5212, + 3, 632, 316, 0, 5212, 5213, 5, 135, 0, 0, 5213, 5214, 3, 544, 272, 0, 5214, + 5216, 1, 0, 0, 0, 5215, 5104, 1, 0, 0, 0, 5215, 5115, 1, 0, 0, 0, 5215, + 5126, 1, 0, 0, 0, 5215, 5137, 1, 0, 0, 0, 5215, 5148, 1, 0, 0, 0, 5215, + 5159, 1, 0, 0, 0, 5215, 5170, 1, 0, 0, 0, 5215, 5181, 1, 0, 0, 0, 5215, + 5193, 1, 0, 0, 0, 5215, 5204, 1, 0, 0, 0, 5216, 541, 1, 0, 0, 0, 5217, + 5218, 5, 62, 0, 0, 5218, 5219, 3, 72, 36, 0, 5219, 543, 1, 0, 0, 0, 5220, + 5223, 3, 1412, 706, 0, 5221, 5223, 5, 78, 0, 0, 5222, 5220, 1, 0, 0, 0, + 5222, 5221, 1, 0, 0, 0, 5223, 545, 1, 0, 0, 0, 5224, 5225, 5, 61, 0, 0, + 5225, 5229, 3, 548, 274, 0, 5226, 5227, 5, 277, 0, 0, 5227, 5229, 3, 548, + 274, 0, 5228, 5224, 1, 0, 0, 0, 5228, 5226, 1, 0, 0, 0, 5229, 547, 1, 0, + 0, 0, 5230, 5316, 3, 962, 481, 0, 5231, 5232, 3, 550, 275, 0, 5232, 5233, + 3, 962, 481, 0, 5233, 5316, 1, 0, 0, 0, 5234, 5236, 5, 280, 0, 0, 5235, + 5237, 3, 552, 276, 0, 5236, 5235, 1, 0, 0, 0, 5236, 5237, 1, 0, 0, 0, 5237, + 5238, 1, 0, 0, 0, 5238, 5316, 3, 962, 481, 0, 5239, 5241, 5, 305, 0, 0, + 5240, 5242, 3, 552, 276, 0, 5241, 5240, 1, 0, 0, 0, 5241, 5242, 1, 0, 0, + 0, 5242, 5243, 1, 0, 0, 0, 5243, 5316, 3, 962, 481, 0, 5244, 5246, 5, 226, + 0, 0, 5245, 5247, 3, 552, 276, 0, 5246, 5245, 1, 0, 0, 0, 5246, 5247, 1, + 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5316, 3, 962, 481, 0, 5249, 5251, + 5, 259, 0, 0, 5250, 5252, 3, 552, 276, 0, 5251, 5250, 1, 0, 0, 0, 5251, + 5252, 1, 0, 0, 0, 5252, 5253, 1, 0, 0, 0, 5253, 5316, 3, 962, 481, 0, 5254, + 5255, 5, 149, 0, 0, 5255, 5257, 3, 1418, 709, 0, 5256, 5258, 3, 552, 276, + 0, 5257, 5256, 1, 0, 0, 0, 5257, 5258, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, + 0, 5259, 5260, 3, 962, 481, 0, 5260, 5316, 1, 0, 0, 0, 5261, 5262, 5, 319, + 0, 0, 5262, 5264, 3, 1418, 709, 0, 5263, 5265, 3, 552, 276, 0, 5264, 5263, + 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5266, 1, 0, 0, 0, 5266, 5267, + 3, 962, 481, 0, 5267, 5316, 1, 0, 0, 0, 5268, 5270, 3, 1418, 709, 0, 5269, + 5271, 3, 552, 276, 0, 5270, 5269, 1, 0, 0, 0, 5270, 5271, 1, 0, 0, 0, 5271, + 5272, 1, 0, 0, 0, 5272, 5273, 3, 962, 481, 0, 5273, 5316, 1, 0, 0, 0, 5274, + 5276, 5, 30, 0, 0, 5275, 5277, 3, 552, 276, 0, 5276, 5275, 1, 0, 0, 0, + 5276, 5277, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5316, 3, 962, 481, + 0, 5279, 5281, 5, 229, 0, 0, 5280, 5282, 3, 552, 276, 0, 5281, 5280, 1, + 0, 0, 0, 5281, 5282, 1, 0, 0, 0, 5282, 5283, 1, 0, 0, 0, 5283, 5316, 3, + 962, 481, 0, 5284, 5285, 5, 229, 0, 0, 5285, 5287, 3, 1418, 709, 0, 5286, + 5288, 3, 552, 276, 0, 5287, 5286, 1, 0, 0, 0, 5287, 5288, 1, 0, 0, 0, 5288, + 5289, 1, 0, 0, 0, 5289, 5290, 3, 962, 481, 0, 5290, 5316, 1, 0, 0, 0, 5291, + 5292, 5, 229, 0, 0, 5292, 5294, 5, 30, 0, 0, 5293, 5295, 3, 552, 276, 0, + 5294, 5293, 1, 0, 0, 0, 5294, 5295, 1, 0, 0, 0, 5295, 5296, 1, 0, 0, 0, + 5296, 5316, 3, 962, 481, 0, 5297, 5299, 5, 163, 0, 0, 5298, 5300, 3, 552, + 276, 0, 5299, 5298, 1, 0, 0, 0, 5299, 5300, 1, 0, 0, 0, 5300, 5301, 1, + 0, 0, 0, 5301, 5316, 3, 962, 481, 0, 5302, 5303, 5, 163, 0, 0, 5303, 5305, + 3, 1418, 709, 0, 5304, 5306, 3, 552, 276, 0, 5305, 5304, 1, 0, 0, 0, 5305, + 5306, 1, 0, 0, 0, 5306, 5307, 1, 0, 0, 0, 5307, 5308, 3, 962, 481, 0, 5308, + 5316, 1, 0, 0, 0, 5309, 5310, 5, 163, 0, 0, 5310, 5312, 5, 30, 0, 0, 5311, + 5313, 3, 552, 276, 0, 5312, 5311, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, + 5314, 1, 0, 0, 0, 5314, 5316, 3, 962, 481, 0, 5315, 5230, 1, 0, 0, 0, 5315, + 5231, 1, 0, 0, 0, 5315, 5234, 1, 0, 0, 0, 5315, 5239, 1, 0, 0, 0, 5315, + 5244, 1, 0, 0, 0, 5315, 5249, 1, 0, 0, 0, 5315, 5254, 1, 0, 0, 0, 5315, + 5261, 1, 0, 0, 0, 5315, 5268, 1, 0, 0, 0, 5315, 5274, 1, 0, 0, 0, 5315, + 5279, 1, 0, 0, 0, 5315, 5284, 1, 0, 0, 0, 5315, 5291, 1, 0, 0, 0, 5315, + 5297, 1, 0, 0, 0, 5315, 5302, 1, 0, 0, 0, 5315, 5309, 1, 0, 0, 0, 5316, + 549, 1, 0, 0, 0, 5317, 5318, 7, 25, 0, 0, 5318, 551, 1, 0, 0, 0, 5319, + 5320, 3, 550, 275, 0, 5320, 553, 1, 0, 0, 0, 5321, 5322, 5, 65, 0, 0, 5322, + 5323, 3, 558, 279, 0, 5323, 5324, 5, 80, 0, 0, 5324, 5325, 3, 564, 282, + 0, 5325, 5326, 5, 94, 0, 0, 5326, 5328, 3, 570, 285, 0, 5327, 5329, 3, + 574, 287, 0, 5328, 5327, 1, 0, 0, 0, 5328, 5329, 1, 0, 0, 0, 5329, 555, + 1, 0, 0, 0, 5330, 5331, 5, 329, 0, 0, 5331, 5332, 3, 558, 279, 0, 5332, + 5333, 5, 80, 0, 0, 5333, 5334, 3, 564, 282, 0, 5334, 5335, 5, 64, 0, 0, + 5335, 5337, 3, 570, 285, 0, 5336, 5338, 3, 108, 54, 0, 5337, 5336, 1, 0, + 0, 0, 5337, 5338, 1, 0, 0, 0, 5338, 5352, 1, 0, 0, 0, 5339, 5340, 5, 329, + 0, 0, 5340, 5341, 5, 65, 0, 0, 5341, 5342, 5, 291, 0, 0, 5342, 5343, 5, + 62, 0, 0, 5343, 5344, 3, 558, 279, 0, 5344, 5345, 5, 80, 0, 0, 5345, 5346, + 3, 564, 282, 0, 5346, 5347, 5, 64, 0, 0, 5347, 5349, 3, 570, 285, 0, 5348, + 5350, 3, 108, 54, 0, 5349, 5348, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, + 5352, 1, 0, 0, 0, 5351, 5330, 1, 0, 0, 0, 5351, 5339, 1, 0, 0, 0, 5352, + 557, 1, 0, 0, 0, 5353, 5369, 3, 560, 280, 0, 5354, 5369, 5, 30, 0, 0, 5355, + 5356, 5, 30, 0, 0, 5356, 5369, 5, 306, 0, 0, 5357, 5358, 5, 30, 0, 0, 5358, + 5359, 5, 2, 0, 0, 5359, 5360, 3, 218, 109, 0, 5360, 5361, 5, 3, 0, 0, 5361, + 5369, 1, 0, 0, 0, 5362, 5363, 5, 30, 0, 0, 5363, 5364, 5, 306, 0, 0, 5364, + 5365, 5, 2, 0, 0, 5365, 5366, 3, 218, 109, 0, 5366, 5367, 5, 3, 0, 0, 5367, + 5369, 1, 0, 0, 0, 5368, 5353, 1, 0, 0, 0, 5368, 5354, 1, 0, 0, 0, 5368, + 5355, 1, 0, 0, 0, 5368, 5357, 1, 0, 0, 0, 5368, 5362, 1, 0, 0, 0, 5369, + 559, 1, 0, 0, 0, 5370, 5375, 3, 562, 281, 0, 5371, 5372, 5, 6, 0, 0, 5372, + 5374, 3, 562, 281, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, + 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 561, 1, 0, 0, 0, 5377, + 5375, 1, 0, 0, 0, 5378, 5380, 5, 88, 0, 0, 5379, 5381, 3, 216, 108, 0, + 5380, 5379, 1, 0, 0, 0, 5380, 5381, 1, 0, 0, 0, 5381, 5397, 1, 0, 0, 0, + 5382, 5384, 5, 86, 0, 0, 5383, 5385, 3, 216, 108, 0, 5384, 5383, 1, 0, + 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 5397, 1, 0, 0, 0, 5386, 5388, 5, 46, + 0, 0, 5387, 5389, 3, 216, 108, 0, 5388, 5387, 1, 0, 0, 0, 5388, 5389, 1, + 0, 0, 0, 5389, 5397, 1, 0, 0, 0, 5390, 5391, 5, 157, 0, 0, 5391, 5397, + 5, 361, 0, 0, 5392, 5394, 3, 1426, 713, 0, 5393, 5395, 3, 216, 108, 0, + 5394, 5393, 1, 0, 0, 0, 5394, 5395, 1, 0, 0, 0, 5395, 5397, 1, 0, 0, 0, + 5396, 5378, 1, 0, 0, 0, 5396, 5382, 1, 0, 0, 0, 5396, 5386, 1, 0, 0, 0, + 5396, 5390, 1, 0, 0, 0, 5396, 5392, 1, 0, 0, 0, 5397, 563, 1, 0, 0, 0, + 5398, 5459, 3, 1388, 694, 0, 5399, 5400, 5, 92, 0, 0, 5400, 5459, 3, 1388, + 694, 0, 5401, 5402, 5, 340, 0, 0, 5402, 5459, 3, 1388, 694, 0, 5403, 5404, + 5, 63, 0, 0, 5404, 5405, 5, 193, 0, 0, 5405, 5406, 5, 393, 0, 0, 5406, + 5459, 3, 1392, 696, 0, 5407, 5408, 5, 63, 0, 0, 5408, 5409, 5, 343, 0, + 0, 5409, 5459, 3, 1392, 696, 0, 5410, 5411, 5, 230, 0, 0, 5411, 5459, 3, + 630, 315, 0, 5412, 5413, 5, 308, 0, 0, 5413, 5459, 3, 630, 315, 0, 5414, + 5415, 5, 463, 0, 0, 5415, 5459, 3, 630, 315, 0, 5416, 5417, 5, 194, 0, + 0, 5417, 5459, 3, 1392, 696, 0, 5418, 5419, 5, 208, 0, 0, 5419, 5459, 3, + 524, 262, 0, 5420, 5421, 5, 257, 0, 0, 5421, 5459, 3, 1392, 696, 0, 5422, + 5423, 5, 258, 0, 0, 5423, 5424, 5, 286, 0, 0, 5424, 5459, 3, 296, 148, + 0, 5425, 5426, 5, 424, 0, 0, 5426, 5459, 3, 566, 283, 0, 5427, 5428, 5, + 335, 0, 0, 5428, 5459, 3, 1392, 696, 0, 5429, 5430, 5, 363, 0, 0, 5430, + 5459, 3, 1392, 696, 0, 5431, 5432, 5, 372, 0, 0, 5432, 5459, 3, 524, 262, + 0, 5433, 5434, 5, 30, 0, 0, 5434, 5435, 5, 362, 0, 0, 5435, 5436, 5, 68, + 0, 0, 5436, 5437, 5, 335, 0, 0, 5437, 5459, 3, 1392, 696, 0, 5438, 5439, + 5, 30, 0, 0, 5439, 5440, 5, 341, 0, 0, 5440, 5441, 5, 68, 0, 0, 5441, 5442, + 5, 335, 0, 0, 5442, 5459, 3, 1392, 696, 0, 5443, 5444, 5, 30, 0, 0, 5444, + 5445, 5, 231, 0, 0, 5445, 5446, 5, 68, 0, 0, 5446, 5447, 5, 335, 0, 0, + 5447, 5459, 3, 1392, 696, 0, 5448, 5449, 5, 30, 0, 0, 5449, 5450, 5, 478, + 0, 0, 5450, 5451, 5, 68, 0, 0, 5451, 5452, 5, 335, 0, 0, 5452, 5459, 3, + 1392, 696, 0, 5453, 5454, 5, 30, 0, 0, 5454, 5455, 5, 476, 0, 0, 5455, + 5456, 5, 68, 0, 0, 5456, 5457, 5, 335, 0, 0, 5457, 5459, 3, 1392, 696, + 0, 5458, 5398, 1, 0, 0, 0, 5458, 5399, 1, 0, 0, 0, 5458, 5401, 1, 0, 0, + 0, 5458, 5403, 1, 0, 0, 0, 5458, 5407, 1, 0, 0, 0, 5458, 5410, 1, 0, 0, + 0, 5458, 5412, 1, 0, 0, 0, 5458, 5414, 1, 0, 0, 0, 5458, 5416, 1, 0, 0, + 0, 5458, 5418, 1, 0, 0, 0, 5458, 5420, 1, 0, 0, 0, 5458, 5422, 1, 0, 0, + 0, 5458, 5425, 1, 0, 0, 0, 5458, 5427, 1, 0, 0, 0, 5458, 5429, 1, 0, 0, + 0, 5458, 5431, 1, 0, 0, 0, 5458, 5433, 1, 0, 0, 0, 5458, 5438, 1, 0, 0, + 0, 5458, 5443, 1, 0, 0, 0, 5458, 5448, 1, 0, 0, 0, 5458, 5453, 1, 0, 0, + 0, 5459, 565, 1, 0, 0, 0, 5460, 5465, 3, 568, 284, 0, 5461, 5462, 5, 6, + 0, 0, 5462, 5464, 3, 568, 284, 0, 5463, 5461, 1, 0, 0, 0, 5464, 5467, 1, + 0, 0, 0, 5465, 5463, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 567, 1, + 0, 0, 0, 5467, 5465, 1, 0, 0, 0, 5468, 5471, 3, 1426, 713, 0, 5469, 5470, + 5, 11, 0, 0, 5470, 5472, 3, 1426, 713, 0, 5471, 5469, 1, 0, 0, 0, 5471, + 5472, 1, 0, 0, 0, 5472, 569, 1, 0, 0, 0, 5473, 5478, 3, 572, 286, 0, 5474, + 5475, 5, 6, 0, 0, 5475, 5477, 3, 572, 286, 0, 5476, 5474, 1, 0, 0, 0, 5477, + 5480, 1, 0, 0, 0, 5478, 5476, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, + 571, 1, 0, 0, 0, 5480, 5478, 1, 0, 0, 0, 5481, 5485, 3, 1422, 711, 0, 5482, + 5483, 5, 66, 0, 0, 5483, 5485, 3, 1422, 711, 0, 5484, 5481, 1, 0, 0, 0, + 5484, 5482, 1, 0, 0, 0, 5485, 573, 1, 0, 0, 0, 5486, 5487, 5, 105, 0, 0, + 5487, 5488, 5, 65, 0, 0, 5488, 5489, 5, 291, 0, 0, 5489, 575, 1, 0, 0, + 0, 5490, 5491, 5, 65, 0, 0, 5491, 5492, 3, 560, 280, 0, 5492, 5493, 5, + 94, 0, 0, 5493, 5495, 3, 1424, 712, 0, 5494, 5496, 3, 580, 290, 0, 5495, + 5494, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5498, 1, 0, 0, 0, 5497, + 5499, 3, 582, 291, 0, 5498, 5497, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, + 577, 1, 0, 0, 0, 5500, 5501, 5, 329, 0, 0, 5501, 5502, 3, 560, 280, 0, + 5502, 5503, 5, 64, 0, 0, 5503, 5505, 3, 1424, 712, 0, 5504, 5506, 3, 582, + 291, 0, 5505, 5504, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 5508, 1, + 0, 0, 0, 5507, 5509, 3, 108, 54, 0, 5508, 5507, 1, 0, 0, 0, 5508, 5509, + 1, 0, 0, 0, 5509, 5524, 1, 0, 0, 0, 5510, 5511, 5, 329, 0, 0, 5511, 5512, + 5, 153, 0, 0, 5512, 5513, 5, 291, 0, 0, 5513, 5514, 5, 62, 0, 0, 5514, + 5515, 3, 560, 280, 0, 5515, 5516, 5, 64, 0, 0, 5516, 5518, 3, 1424, 712, + 0, 5517, 5519, 3, 582, 291, 0, 5518, 5517, 1, 0, 0, 0, 5518, 5519, 1, 0, + 0, 0, 5519, 5521, 1, 0, 0, 0, 5520, 5522, 3, 108, 54, 0, 5521, 5520, 1, + 0, 0, 0, 5521, 5522, 1, 0, 0, 0, 5522, 5524, 1, 0, 0, 0, 5523, 5500, 1, + 0, 0, 0, 5523, 5510, 1, 0, 0, 0, 5524, 579, 1, 0, 0, 0, 5525, 5526, 5, + 105, 0, 0, 5526, 5527, 5, 153, 0, 0, 5527, 5528, 5, 291, 0, 0, 5528, 581, + 1, 0, 0, 0, 5529, 5530, 5, 233, 0, 0, 5530, 5531, 5, 166, 0, 0, 5531, 5532, + 3, 1422, 711, 0, 5532, 583, 1, 0, 0, 0, 5533, 5534, 5, 157, 0, 0, 5534, + 5535, 5, 53, 0, 0, 5535, 5536, 5, 306, 0, 0, 5536, 5537, 3, 586, 293, 0, + 5537, 5538, 3, 590, 295, 0, 5538, 585, 1, 0, 0, 0, 5539, 5541, 3, 588, + 294, 0, 5540, 5539, 1, 0, 0, 0, 5541, 5544, 1, 0, 0, 0, 5542, 5540, 1, + 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 587, 1, 0, 0, 0, 5544, 5542, 1, + 0, 0, 0, 5545, 5546, 5, 68, 0, 0, 5546, 5547, 5, 335, 0, 0, 5547, 5555, + 3, 1392, 696, 0, 5548, 5549, 5, 62, 0, 0, 5549, 5550, 5, 330, 0, 0, 5550, + 5555, 3, 1424, 712, 0, 5551, 5552, 5, 62, 0, 0, 5552, 5553, 5, 99, 0, 0, + 5553, 5555, 3, 1424, 712, 0, 5554, 5545, 1, 0, 0, 0, 5554, 5548, 1, 0, + 0, 0, 5554, 5551, 1, 0, 0, 0, 5555, 589, 1, 0, 0, 0, 5556, 5557, 5, 65, + 0, 0, 5557, 5558, 3, 558, 279, 0, 5558, 5559, 5, 80, 0, 0, 5559, 5560, + 3, 592, 296, 0, 5560, 5561, 5, 94, 0, 0, 5561, 5563, 3, 570, 285, 0, 5562, + 5564, 3, 574, 287, 0, 5563, 5562, 1, 0, 0, 0, 5563, 5564, 1, 0, 0, 0, 5564, + 5587, 1, 0, 0, 0, 5565, 5566, 5, 329, 0, 0, 5566, 5567, 3, 558, 279, 0, + 5567, 5568, 5, 80, 0, 0, 5568, 5569, 3, 592, 296, 0, 5569, 5570, 5, 64, + 0, 0, 5570, 5572, 3, 570, 285, 0, 5571, 5573, 3, 108, 54, 0, 5572, 5571, + 1, 0, 0, 0, 5572, 5573, 1, 0, 0, 0, 5573, 5587, 1, 0, 0, 0, 5574, 5575, + 5, 329, 0, 0, 5575, 5576, 5, 65, 0, 0, 5576, 5577, 5, 291, 0, 0, 5577, + 5578, 5, 62, 0, 0, 5578, 5579, 3, 558, 279, 0, 5579, 5580, 5, 80, 0, 0, + 5580, 5581, 3, 592, 296, 0, 5581, 5582, 5, 64, 0, 0, 5582, 5584, 3, 570, + 285, 0, 5583, 5585, 3, 108, 54, 0, 5584, 5583, 1, 0, 0, 0, 5584, 5585, + 1, 0, 0, 0, 5585, 5587, 1, 0, 0, 0, 5586, 5556, 1, 0, 0, 0, 5586, 5565, + 1, 0, 0, 0, 5586, 5574, 1, 0, 0, 0, 5587, 591, 1, 0, 0, 0, 5588, 5589, + 7, 26, 0, 0, 5589, 593, 1, 0, 0, 0, 5590, 5592, 5, 46, 0, 0, 5591, 5593, + 3, 596, 298, 0, 5592, 5591, 1, 0, 0, 0, 5592, 5593, 1, 0, 0, 0, 5593, 5594, + 1, 0, 0, 0, 5594, 5596, 5, 245, 0, 0, 5595, 5597, 3, 598, 299, 0, 5596, + 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5604, 1, 0, 0, 0, 5598, + 5599, 5, 239, 0, 0, 5599, 5600, 5, 77, 0, 0, 5600, 5602, 5, 409, 0, 0, + 5601, 5598, 1, 0, 0, 0, 5601, 5602, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, + 5603, 5605, 3, 1394, 697, 0, 5604, 5601, 1, 0, 0, 0, 5604, 5605, 1, 0, + 0, 0, 5605, 5606, 1, 0, 0, 0, 5606, 5607, 5, 80, 0, 0, 5607, 5609, 3, 1082, + 541, 0, 5608, 5610, 3, 602, 301, 0, 5609, 5608, 1, 0, 0, 0, 5609, 5610, + 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5612, 5, 2, 0, 0, 5612, 5613, + 3, 604, 302, 0, 5613, 5615, 5, 3, 0, 0, 5614, 5616, 3, 610, 305, 0, 5615, + 5614, 1, 0, 0, 0, 5615, 5616, 1, 0, 0, 0, 5616, 5618, 1, 0, 0, 0, 5617, + 5619, 3, 198, 99, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, + 5621, 1, 0, 0, 0, 5620, 5622, 3, 118, 59, 0, 5621, 5620, 1, 0, 0, 0, 5621, + 5622, 1, 0, 0, 0, 5622, 5624, 1, 0, 0, 0, 5623, 5625, 3, 256, 128, 0, 5624, + 5623, 1, 0, 0, 0, 5624, 5625, 1, 0, 0, 0, 5625, 5627, 1, 0, 0, 0, 5626, + 5628, 3, 1102, 551, 0, 5627, 5626, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, + 5628, 595, 1, 0, 0, 0, 5629, 5630, 5, 98, 0, 0, 5630, 597, 1, 0, 0, 0, + 5631, 5632, 5, 128, 0, 0, 5632, 599, 1, 0, 0, 0, 5633, 5634, 3, 1394, 697, + 0, 5634, 601, 1, 0, 0, 0, 5635, 5636, 5, 100, 0, 0, 5636, 5637, 3, 1394, + 697, 0, 5637, 603, 1, 0, 0, 0, 5638, 5643, 3, 608, 304, 0, 5639, 5640, + 5, 6, 0, 0, 5640, 5642, 3, 608, 304, 0, 5641, 5639, 1, 0, 0, 0, 5642, 5645, + 1, 0, 0, 0, 5643, 5641, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 605, + 1, 0, 0, 0, 5645, 5643, 1, 0, 0, 0, 5646, 5648, 3, 614, 307, 0, 5647, 5646, + 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5650, 1, 0, 0, 0, 5649, 5651, + 3, 616, 308, 0, 5650, 5649, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5653, + 1, 0, 0, 0, 5652, 5654, 3, 618, 309, 0, 5653, 5652, 1, 0, 0, 0, 5653, 5654, + 1, 0, 0, 0, 5654, 5656, 1, 0, 0, 0, 5655, 5657, 3, 620, 310, 0, 5656, 5655, + 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5670, 1, 0, 0, 0, 5658, 5660, + 3, 614, 307, 0, 5659, 5658, 1, 0, 0, 0, 5659, 5660, 1, 0, 0, 0, 5660, 5661, + 1, 0, 0, 0, 5661, 5662, 3, 526, 263, 0, 5662, 5664, 3, 116, 58, 0, 5663, + 5665, 3, 618, 309, 0, 5664, 5663, 1, 0, 0, 0, 5664, 5665, 1, 0, 0, 0, 5665, + 5667, 1, 0, 0, 0, 5666, 5668, 3, 620, 310, 0, 5667, 5666, 1, 0, 0, 0, 5667, + 5668, 1, 0, 0, 0, 5668, 5670, 1, 0, 0, 0, 5669, 5647, 1, 0, 0, 0, 5669, + 5659, 1, 0, 0, 0, 5670, 607, 1, 0, 0, 0, 5671, 5672, 3, 1426, 713, 0, 5672, + 5673, 3, 606, 303, 0, 5673, 5683, 1, 0, 0, 0, 5674, 5675, 3, 1222, 611, + 0, 5675, 5676, 3, 606, 303, 0, 5676, 5683, 1, 0, 0, 0, 5677, 5678, 5, 2, + 0, 0, 5678, 5679, 3, 1170, 585, 0, 5679, 5680, 5, 3, 0, 0, 5680, 5681, + 3, 606, 303, 0, 5681, 5683, 1, 0, 0, 0, 5682, 5671, 1, 0, 0, 0, 5682, 5674, + 1, 0, 0, 0, 5682, 5677, 1, 0, 0, 0, 5683, 609, 1, 0, 0, 0, 5684, 5685, + 5, 462, 0, 0, 5685, 5686, 5, 2, 0, 0, 5686, 5687, 3, 612, 306, 0, 5687, + 5688, 5, 3, 0, 0, 5688, 611, 1, 0, 0, 0, 5689, 5694, 3, 608, 304, 0, 5690, + 5691, 5, 6, 0, 0, 5691, 5693, 3, 608, 304, 0, 5692, 5690, 1, 0, 0, 0, 5693, + 5696, 1, 0, 0, 0, 5694, 5692, 1, 0, 0, 0, 5694, 5695, 1, 0, 0, 0, 5695, + 613, 1, 0, 0, 0, 5696, 5694, 1, 0, 0, 0, 5697, 5698, 5, 43, 0, 0, 5698, + 5699, 3, 526, 263, 0, 5699, 615, 1, 0, 0, 0, 5700, 5701, 3, 526, 263, 0, + 5701, 617, 1, 0, 0, 0, 5702, 5703, 7, 27, 0, 0, 5703, 619, 1, 0, 0, 0, + 5704, 5705, 5, 285, 0, 0, 5705, 5709, 5, 226, 0, 0, 5706, 5707, 5, 285, + 0, 0, 5707, 5709, 5, 259, 0, 0, 5708, 5704, 1, 0, 0, 0, 5708, 5706, 1, + 0, 0, 0, 5709, 621, 1, 0, 0, 0, 5710, 5712, 5, 46, 0, 0, 5711, 5713, 3, + 624, 312, 0, 5712, 5711, 1, 0, 0, 0, 5712, 5713, 1, 0, 0, 0, 5713, 5714, + 1, 0, 0, 0, 5714, 5715, 7, 23, 0, 0, 5715, 5716, 3, 1400, 700, 0, 5716, + 5726, 3, 634, 317, 0, 5717, 5724, 5, 328, 0, 0, 5718, 5725, 3, 644, 322, + 0, 5719, 5720, 5, 92, 0, 0, 5720, 5721, 5, 2, 0, 0, 5721, 5722, 3, 674, + 337, 0, 5722, 5723, 5, 3, 0, 0, 5723, 5725, 1, 0, 0, 0, 5724, 5718, 1, + 0, 0, 0, 5724, 5719, 1, 0, 0, 0, 5725, 5727, 1, 0, 0, 0, 5726, 5717, 1, + 0, 0, 0, 5726, 5727, 1, 0, 0, 0, 5727, 5728, 1, 0, 0, 0, 5728, 5729, 3, + 660, 330, 0, 5729, 623, 1, 0, 0, 0, 5730, 5731, 5, 82, 0, 0, 5731, 5732, + 5, 323, 0, 0, 5732, 625, 1, 0, 0, 0, 5733, 5735, 5, 2, 0, 0, 5734, 5736, + 3, 628, 314, 0, 5735, 5734, 1, 0, 0, 0, 5735, 5736, 1, 0, 0, 0, 5736, 5737, + 1, 0, 0, 0, 5737, 5738, 5, 3, 0, 0, 5738, 627, 1, 0, 0, 0, 5739, 5744, + 3, 638, 319, 0, 5740, 5741, 5, 6, 0, 0, 5741, 5743, 3, 638, 319, 0, 5742, + 5740, 1, 0, 0, 0, 5743, 5746, 1, 0, 0, 0, 5744, 5742, 1, 0, 0, 0, 5744, + 5745, 1, 0, 0, 0, 5745, 629, 1, 0, 0, 0, 5746, 5744, 1, 0, 0, 0, 5747, + 5752, 3, 632, 316, 0, 5748, 5749, 5, 6, 0, 0, 5749, 5751, 3, 632, 316, + 0, 5750, 5748, 1, 0, 0, 0, 5751, 5754, 1, 0, 0, 0, 5752, 5750, 1, 0, 0, + 0, 5752, 5753, 1, 0, 0, 0, 5753, 631, 1, 0, 0, 0, 5754, 5752, 1, 0, 0, + 0, 5755, 5756, 3, 1400, 700, 0, 5756, 5757, 3, 626, 313, 0, 5757, 5764, + 1, 0, 0, 0, 5758, 5764, 3, 1444, 722, 0, 5759, 5761, 3, 1426, 713, 0, 5760, + 5762, 3, 1376, 688, 0, 5761, 5760, 1, 0, 0, 0, 5761, 5762, 1, 0, 0, 0, + 5762, 5764, 1, 0, 0, 0, 5763, 5755, 1, 0, 0, 0, 5763, 5758, 1, 0, 0, 0, + 5763, 5759, 1, 0, 0, 0, 5764, 633, 1, 0, 0, 0, 5765, 5767, 5, 2, 0, 0, + 5766, 5768, 3, 636, 318, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, + 0, 5768, 5769, 1, 0, 0, 0, 5769, 5770, 5, 3, 0, 0, 5770, 635, 1, 0, 0, + 0, 5771, 5776, 3, 648, 324, 0, 5772, 5773, 5, 6, 0, 0, 5773, 5775, 3, 648, + 324, 0, 5774, 5772, 1, 0, 0, 0, 5775, 5778, 1, 0, 0, 0, 5776, 5774, 1, + 0, 0, 0, 5776, 5777, 1, 0, 0, 0, 5777, 637, 1, 0, 0, 0, 5778, 5776, 1, + 0, 0, 0, 5779, 5781, 3, 640, 320, 0, 5780, 5782, 3, 642, 321, 0, 5781, + 5780, 1, 0, 0, 0, 5781, 5782, 1, 0, 0, 0, 5782, 5783, 1, 0, 0, 0, 5783, + 5784, 3, 646, 323, 0, 5784, 5793, 1, 0, 0, 0, 5785, 5787, 3, 642, 321, + 0, 5786, 5788, 3, 640, 320, 0, 5787, 5786, 1, 0, 0, 0, 5787, 5788, 1, 0, + 0, 0, 5788, 5789, 1, 0, 0, 0, 5789, 5790, 3, 646, 323, 0, 5790, 5793, 1, + 0, 0, 0, 5791, 5793, 3, 646, 323, 0, 5792, 5779, 1, 0, 0, 0, 5792, 5785, + 1, 0, 0, 0, 5792, 5791, 1, 0, 0, 0, 5793, 639, 1, 0, 0, 0, 5794, 5796, + 5, 68, 0, 0, 5795, 5797, 5, 474, 0, 0, 5796, 5795, 1, 0, 0, 0, 5796, 5797, + 1, 0, 0, 0, 5797, 5802, 1, 0, 0, 0, 5798, 5802, 5, 474, 0, 0, 5799, 5802, + 5, 413, 0, 0, 5800, 5802, 5, 101, 0, 0, 5801, 5794, 1, 0, 0, 0, 5801, 5798, + 1, 0, 0, 0, 5801, 5799, 1, 0, 0, 0, 5801, 5800, 1, 0, 0, 0, 5802, 641, + 1, 0, 0, 0, 5803, 5808, 3, 1430, 715, 0, 5804, 5808, 3, 1448, 724, 0, 5805, + 5808, 5, 138, 0, 0, 5806, 5808, 5, 145, 0, 0, 5807, 5803, 1, 0, 0, 0, 5807, + 5804, 1, 0, 0, 0, 5807, 5805, 1, 0, 0, 0, 5807, 5806, 1, 0, 0, 0, 5808, + 643, 1, 0, 0, 0, 5809, 5810, 3, 646, 323, 0, 5810, 645, 1, 0, 0, 0, 5811, + 5826, 3, 1126, 563, 0, 5812, 5814, 5, 429, 0, 0, 5813, 5812, 1, 0, 0, 0, + 5813, 5814, 1, 0, 0, 0, 5814, 5819, 1, 0, 0, 0, 5815, 5820, 3, 1448, 724, + 0, 5816, 5820, 3, 1430, 715, 0, 5817, 5820, 5, 138, 0, 0, 5818, 5820, 5, + 145, 0, 0, 5819, 5815, 1, 0, 0, 0, 5819, 5816, 1, 0, 0, 0, 5819, 5817, + 1, 0, 0, 0, 5819, 5818, 1, 0, 0, 0, 5820, 5821, 1, 0, 0, 0, 5821, 5822, + 3, 528, 264, 0, 5822, 5823, 5, 27, 0, 0, 5823, 5824, 5, 372, 0, 0, 5824, + 5826, 1, 0, 0, 0, 5825, 5811, 1, 0, 0, 0, 5825, 5813, 1, 0, 0, 0, 5826, + 647, 1, 0, 0, 0, 5827, 5830, 3, 638, 319, 0, 5828, 5829, 7, 28, 0, 0, 5829, + 5831, 3, 1170, 585, 0, 5830, 5828, 1, 0, 0, 0, 5830, 5831, 1, 0, 0, 0, + 5831, 649, 1, 0, 0, 0, 5832, 5833, 3, 638, 319, 0, 5833, 651, 1, 0, 0, + 0, 5834, 5845, 5, 2, 0, 0, 5835, 5846, 5, 9, 0, 0, 5836, 5846, 3, 654, + 327, 0, 5837, 5838, 5, 83, 0, 0, 5838, 5839, 5, 166, 0, 0, 5839, 5846, + 3, 654, 327, 0, 5840, 5841, 3, 654, 327, 0, 5841, 5842, 5, 83, 0, 0, 5842, + 5843, 5, 166, 0, 0, 5843, 5844, 3, 654, 327, 0, 5844, 5846, 1, 0, 0, 0, + 5845, 5835, 1, 0, 0, 0, 5845, 5836, 1, 0, 0, 0, 5845, 5837, 1, 0, 0, 0, + 5845, 5840, 1, 0, 0, 0, 5846, 5847, 1, 0, 0, 0, 5847, 5848, 5, 3, 0, 0, + 5848, 653, 1, 0, 0, 0, 5849, 5854, 3, 650, 325, 0, 5850, 5851, 5, 6, 0, + 0, 5851, 5853, 3, 650, 325, 0, 5852, 5850, 1, 0, 0, 0, 5853, 5856, 1, 0, + 0, 0, 5854, 5852, 1, 0, 0, 0, 5854, 5855, 1, 0, 0, 0, 5855, 655, 1, 0, + 0, 0, 5856, 5854, 1, 0, 0, 0, 5857, 5858, 3, 1400, 700, 0, 5858, 5859, + 3, 652, 326, 0, 5859, 657, 1, 0, 0, 0, 5860, 5865, 3, 656, 328, 0, 5861, + 5862, 5, 6, 0, 0, 5862, 5864, 3, 656, 328, 0, 5863, 5861, 1, 0, 0, 0, 5864, + 5867, 1, 0, 0, 0, 5865, 5863, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, + 659, 1, 0, 0, 0, 5867, 5865, 1, 0, 0, 0, 5868, 5870, 3, 664, 332, 0, 5869, + 5868, 1, 0, 0, 0, 5870, 5871, 1, 0, 0, 0, 5871, 5869, 1, 0, 0, 0, 5871, + 5872, 1, 0, 0, 0, 5872, 5873, 1, 0, 0, 0, 5873, 5874, 6, 330, -1, 0, 5874, + 661, 1, 0, 0, 0, 5875, 5876, 5, 168, 0, 0, 5876, 5877, 5, 80, 0, 0, 5877, + 5878, 5, 78, 0, 0, 5878, 5911, 5, 479, 0, 0, 5879, 5880, 5, 328, 0, 0, + 5880, 5881, 5, 78, 0, 0, 5881, 5882, 5, 80, 0, 0, 5882, 5883, 5, 78, 0, + 0, 5883, 5911, 5, 479, 0, 0, 5884, 5911, 5, 358, 0, 0, 5885, 5911, 5, 241, + 0, 0, 5886, 5911, 5, 350, 0, 0, 5887, 5911, 5, 389, 0, 0, 5888, 5889, 5, + 224, 0, 0, 5889, 5890, 5, 339, 0, 0, 5890, 5911, 5, 200, 0, 0, 5891, 5892, + 5, 224, 0, 0, 5892, 5893, 5, 339, 0, 0, 5893, 5911, 5, 253, 0, 0, 5894, + 5895, 5, 339, 0, 0, 5895, 5911, 5, 200, 0, 0, 5896, 5897, 5, 339, 0, 0, + 5897, 5911, 5, 253, 0, 0, 5898, 5911, 5, 260, 0, 0, 5899, 5900, 5, 77, + 0, 0, 5900, 5911, 5, 260, 0, 0, 5901, 5902, 5, 189, 0, 0, 5902, 5911, 3, + 294, 147, 0, 5903, 5904, 5, 332, 0, 0, 5904, 5911, 3, 294, 147, 0, 5905, + 5906, 5, 480, 0, 0, 5906, 5911, 3, 526, 263, 0, 5907, 5911, 3, 82, 41, + 0, 5908, 5909, 5, 481, 0, 0, 5909, 5911, 3, 1426, 713, 0, 5910, 5875, 1, + 0, 0, 0, 5910, 5879, 1, 0, 0, 0, 5910, 5884, 1, 0, 0, 0, 5910, 5885, 1, + 0, 0, 0, 5910, 5886, 1, 0, 0, 0, 5910, 5887, 1, 0, 0, 0, 5910, 5888, 1, + 0, 0, 0, 5910, 5891, 1, 0, 0, 0, 5910, 5894, 1, 0, 0, 0, 5910, 5896, 1, + 0, 0, 0, 5910, 5898, 1, 0, 0, 0, 5910, 5899, 1, 0, 0, 0, 5910, 5901, 1, + 0, 0, 0, 5910, 5903, 1, 0, 0, 0, 5910, 5905, 1, 0, 0, 0, 5910, 5907, 1, + 0, 0, 0, 5910, 5908, 1, 0, 0, 0, 5911, 663, 1, 0, 0, 0, 5912, 5913, 5, + 36, 0, 0, 5913, 5926, 3, 666, 333, 0, 5914, 5915, 5, 165, 0, 0, 5915, 5916, + 5, 399, 0, 0, 5916, 5917, 3, 6, 3, 0, 5917, 5918, 5, 475, 0, 0, 5918, 5926, + 1, 0, 0, 0, 5919, 5920, 5, 257, 0, 0, 5920, 5926, 3, 72, 36, 0, 5921, 5922, + 5, 464, 0, 0, 5922, 5926, 3, 668, 334, 0, 5923, 5926, 5, 104, 0, 0, 5924, + 5926, 3, 662, 331, 0, 5925, 5912, 1, 0, 0, 0, 5925, 5914, 1, 0, 0, 0, 5925, + 5919, 1, 0, 0, 0, 5925, 5921, 1, 0, 0, 0, 5925, 5923, 1, 0, 0, 0, 5925, + 5924, 1, 0, 0, 0, 5926, 665, 1, 0, 0, 0, 5927, 5933, 3, 1412, 706, 0, 5928, + 5929, 3, 1412, 706, 0, 5929, 5930, 5, 6, 0, 0, 5930, 5931, 3, 1412, 706, + 0, 5931, 5933, 1, 0, 0, 0, 5932, 5927, 1, 0, 0, 0, 5932, 5928, 1, 0, 0, + 0, 5933, 667, 1, 0, 0, 0, 5934, 5935, 5, 62, 0, 0, 5935, 5936, 5, 372, + 0, 0, 5936, 5943, 3, 1126, 563, 0, 5937, 5938, 5, 6, 0, 0, 5938, 5939, + 5, 62, 0, 0, 5939, 5940, 5, 372, 0, 0, 5940, 5942, 3, 1126, 563, 0, 5941, + 5937, 1, 0, 0, 0, 5942, 5945, 1, 0, 0, 0, 5943, 5941, 1, 0, 0, 0, 5943, + 5944, 1, 0, 0, 0, 5944, 669, 1, 0, 0, 0, 5945, 5943, 1, 0, 0, 0, 5946, + 5947, 5, 105, 0, 0, 5947, 5948, 3, 462, 231, 0, 5948, 671, 1, 0, 0, 0, + 5949, 5950, 3, 642, 321, 0, 5950, 5951, 3, 646, 323, 0, 5951, 673, 1, 0, + 0, 0, 5952, 5957, 3, 672, 336, 0, 5953, 5954, 5, 6, 0, 0, 5954, 5956, 3, + 672, 336, 0, 5955, 5953, 1, 0, 0, 0, 5956, 5959, 1, 0, 0, 0, 5957, 5955, + 1, 0, 0, 0, 5957, 5958, 1, 0, 0, 0, 5958, 675, 1, 0, 0, 0, 5959, 5957, + 1, 0, 0, 0, 5960, 5961, 5, 157, 0, 0, 5961, 5962, 7, 29, 0, 0, 5962, 5963, + 3, 632, 316, 0, 5963, 5965, 3, 678, 339, 0, 5964, 5966, 3, 680, 340, 0, + 5965, 5964, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 677, 1, 0, 0, 0, + 5967, 5969, 3, 662, 331, 0, 5968, 5967, 1, 0, 0, 0, 5969, 5970, 1, 0, 0, + 0, 5970, 5968, 1, 0, 0, 0, 5970, 5971, 1, 0, 0, 0, 5971, 679, 1, 0, 0, + 0, 5972, 5973, 5, 327, 0, 0, 5973, 681, 1, 0, 0, 0, 5974, 5975, 5, 210, + 0, 0, 5975, 5976, 5, 230, 0, 0, 5976, 5978, 3, 630, 315, 0, 5977, 5979, + 3, 108, 54, 0, 5978, 5977, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 6017, + 1, 0, 0, 0, 5980, 5981, 5, 210, 0, 0, 5981, 5982, 5, 230, 0, 0, 5982, 5983, + 5, 239, 0, 0, 5983, 5984, 5, 409, 0, 0, 5984, 5986, 3, 630, 315, 0, 5985, + 5987, 3, 108, 54, 0, 5986, 5985, 1, 0, 0, 0, 5986, 5987, 1, 0, 0, 0, 5987, + 6017, 1, 0, 0, 0, 5988, 5989, 5, 210, 0, 0, 5989, 5990, 5, 308, 0, 0, 5990, + 5992, 3, 630, 315, 0, 5991, 5993, 3, 108, 54, 0, 5992, 5991, 1, 0, 0, 0, + 5992, 5993, 1, 0, 0, 0, 5993, 6017, 1, 0, 0, 0, 5994, 5995, 5, 210, 0, + 0, 5995, 5996, 5, 308, 0, 0, 5996, 5997, 5, 239, 0, 0, 5997, 5998, 5, 409, + 0, 0, 5998, 6000, 3, 630, 315, 0, 5999, 6001, 3, 108, 54, 0, 6000, 5999, + 1, 0, 0, 0, 6000, 6001, 1, 0, 0, 0, 6001, 6017, 1, 0, 0, 0, 6002, 6003, + 5, 210, 0, 0, 6003, 6004, 5, 463, 0, 0, 6004, 6006, 3, 630, 315, 0, 6005, + 6007, 3, 108, 54, 0, 6006, 6005, 1, 0, 0, 0, 6006, 6007, 1, 0, 0, 0, 6007, + 6017, 1, 0, 0, 0, 6008, 6009, 5, 210, 0, 0, 6009, 6010, 5, 463, 0, 0, 6010, + 6011, 5, 239, 0, 0, 6011, 6012, 5, 409, 0, 0, 6012, 6014, 3, 630, 315, + 0, 6013, 6015, 3, 108, 54, 0, 6014, 6013, 1, 0, 0, 0, 6014, 6015, 1, 0, + 0, 0, 6015, 6017, 1, 0, 0, 0, 6016, 5974, 1, 0, 0, 0, 6016, 5980, 1, 0, + 0, 0, 6016, 5988, 1, 0, 0, 0, 6016, 5994, 1, 0, 0, 0, 6016, 6002, 1, 0, + 0, 0, 6016, 6008, 1, 0, 0, 0, 6017, 683, 1, 0, 0, 0, 6018, 6019, 5, 210, + 0, 0, 6019, 6020, 5, 155, 0, 0, 6020, 6022, 3, 658, 329, 0, 6021, 6023, + 3, 108, 54, 0, 6022, 6021, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6033, + 1, 0, 0, 0, 6024, 6025, 5, 210, 0, 0, 6025, 6026, 5, 155, 0, 0, 6026, 6027, + 5, 239, 0, 0, 6027, 6028, 5, 409, 0, 0, 6028, 6030, 3, 658, 329, 0, 6029, + 6031, 3, 108, 54, 0, 6030, 6029, 1, 0, 0, 0, 6030, 6031, 1, 0, 0, 0, 6031, + 6033, 1, 0, 0, 0, 6032, 6018, 1, 0, 0, 0, 6032, 6024, 1, 0, 0, 0, 6033, + 685, 1, 0, 0, 0, 6034, 6035, 5, 210, 0, 0, 6035, 6036, 5, 290, 0, 0, 6036, + 6038, 3, 692, 346, 0, 6037, 6039, 3, 108, 54, 0, 6038, 6037, 1, 0, 0, 0, + 6038, 6039, 1, 0, 0, 0, 6039, 6049, 1, 0, 0, 0, 6040, 6041, 5, 210, 0, + 0, 6041, 6042, 5, 290, 0, 0, 6042, 6043, 5, 239, 0, 0, 6043, 6044, 5, 409, + 0, 0, 6044, 6046, 3, 692, 346, 0, 6045, 6047, 3, 108, 54, 0, 6046, 6045, + 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6049, 1, 0, 0, 0, 6048, 6034, + 1, 0, 0, 0, 6048, 6040, 1, 0, 0, 0, 6049, 687, 1, 0, 0, 0, 6050, 6051, + 5, 2, 0, 0, 6051, 6052, 3, 1126, 563, 0, 6052, 6053, 5, 3, 0, 0, 6053, + 6073, 1, 0, 0, 0, 6054, 6055, 5, 2, 0, 0, 6055, 6056, 3, 1126, 563, 0, + 6056, 6057, 5, 6, 0, 0, 6057, 6058, 3, 1126, 563, 0, 6058, 6059, 5, 3, + 0, 0, 6059, 6073, 1, 0, 0, 0, 6060, 6061, 5, 2, 0, 0, 6061, 6062, 5, 420, + 0, 0, 6062, 6063, 5, 6, 0, 0, 6063, 6064, 3, 1126, 563, 0, 6064, 6065, + 5, 3, 0, 0, 6065, 6073, 1, 0, 0, 0, 6066, 6067, 5, 2, 0, 0, 6067, 6068, + 3, 1126, 563, 0, 6068, 6069, 5, 6, 0, 0, 6069, 6070, 5, 420, 0, 0, 6070, + 6071, 5, 3, 0, 0, 6071, 6073, 1, 0, 0, 0, 6072, 6050, 1, 0, 0, 0, 6072, + 6054, 1, 0, 0, 0, 6072, 6060, 1, 0, 0, 0, 6072, 6066, 1, 0, 0, 0, 6073, + 689, 1, 0, 0, 0, 6074, 6075, 3, 1426, 713, 0, 6075, 6076, 5, 11, 0, 0, + 6076, 6078, 1, 0, 0, 0, 6077, 6074, 1, 0, 0, 0, 6078, 6081, 1, 0, 0, 0, + 6079, 6077, 1, 0, 0, 0, 6079, 6080, 1, 0, 0, 0, 6080, 6082, 1, 0, 0, 0, + 6081, 6079, 1, 0, 0, 0, 6082, 6083, 3, 1322, 661, 0, 6083, 691, 1, 0, 0, + 0, 6084, 6089, 3, 694, 347, 0, 6085, 6086, 5, 6, 0, 0, 6086, 6088, 3, 694, + 347, 0, 6087, 6085, 1, 0, 0, 0, 6088, 6091, 1, 0, 0, 0, 6089, 6087, 1, + 0, 0, 0, 6089, 6090, 1, 0, 0, 0, 6090, 693, 1, 0, 0, 0, 6091, 6089, 1, + 0, 0, 0, 6092, 6093, 3, 690, 345, 0, 6093, 6094, 3, 688, 344, 0, 6094, + 695, 1, 0, 0, 0, 6095, 6096, 5, 57, 0, 0, 6096, 6097, 3, 698, 349, 0, 6097, + 697, 1, 0, 0, 0, 6098, 6100, 3, 700, 350, 0, 6099, 6098, 1, 0, 0, 0, 6100, + 6101, 1, 0, 0, 0, 6101, 6099, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, + 699, 1, 0, 0, 0, 6103, 6107, 3, 1412, 706, 0, 6104, 6105, 5, 257, 0, 0, + 6105, 6107, 3, 72, 36, 0, 6106, 6103, 1, 0, 0, 0, 6106, 6104, 1, 0, 0, + 0, 6107, 701, 1, 0, 0, 0, 6108, 6109, 5, 46, 0, 0, 6109, 6110, 5, 41, 0, + 0, 6110, 6111, 5, 2, 0, 0, 6111, 6112, 3, 1126, 563, 0, 6112, 6113, 5, + 36, 0, 0, 6113, 6114, 3, 1126, 563, 0, 6114, 6115, 5, 3, 0, 0, 6115, 6116, + 5, 105, 0, 0, 6116, 6117, 5, 230, 0, 0, 6117, 6119, 3, 632, 316, 0, 6118, + 6120, 3, 704, 352, 0, 6119, 6118, 1, 0, 0, 0, 6119, 6120, 1, 0, 0, 0, 6120, + 6146, 1, 0, 0, 0, 6121, 6122, 5, 46, 0, 0, 6122, 6123, 5, 41, 0, 0, 6123, + 6124, 5, 2, 0, 0, 6124, 6125, 3, 1126, 563, 0, 6125, 6126, 5, 36, 0, 0, + 6126, 6127, 3, 1126, 563, 0, 6127, 6128, 5, 3, 0, 0, 6128, 6129, 5, 391, + 0, 0, 6129, 6131, 5, 230, 0, 0, 6130, 6132, 3, 704, 352, 0, 6131, 6130, + 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 6146, 1, 0, 0, 0, 6133, 6134, + 5, 46, 0, 0, 6134, 6135, 5, 41, 0, 0, 6135, 6136, 5, 2, 0, 0, 6136, 6137, + 3, 1126, 563, 0, 6137, 6138, 5, 36, 0, 0, 6138, 6139, 3, 1126, 563, 0, + 6139, 6140, 5, 3, 0, 0, 6140, 6141, 5, 105, 0, 0, 6141, 6143, 5, 413, 0, + 0, 6142, 6144, 3, 704, 352, 0, 6143, 6142, 1, 0, 0, 0, 6143, 6144, 1, 0, + 0, 0, 6144, 6146, 1, 0, 0, 0, 6145, 6108, 1, 0, 0, 0, 6145, 6121, 1, 0, + 0, 0, 6145, 6133, 1, 0, 0, 0, 6146, 703, 1, 0, 0, 0, 6147, 6148, 5, 36, + 0, 0, 6148, 6152, 5, 242, 0, 0, 6149, 6150, 5, 36, 0, 0, 6150, 6152, 5, + 160, 0, 0, 6151, 6147, 1, 0, 0, 0, 6151, 6149, 1, 0, 0, 0, 6152, 705, 1, + 0, 0, 0, 6153, 6154, 5, 210, 0, 0, 6154, 6156, 5, 41, 0, 0, 6155, 6157, + 3, 708, 354, 0, 6156, 6155, 1, 0, 0, 0, 6156, 6157, 1, 0, 0, 0, 6157, 6158, + 1, 0, 0, 0, 6158, 6159, 5, 2, 0, 0, 6159, 6160, 3, 1126, 563, 0, 6160, + 6161, 5, 36, 0, 0, 6161, 6162, 3, 1126, 563, 0, 6162, 6164, 5, 3, 0, 0, + 6163, 6165, 3, 108, 54, 0, 6164, 6163, 1, 0, 0, 0, 6164, 6165, 1, 0, 0, + 0, 6165, 707, 1, 0, 0, 0, 6166, 6167, 5, 239, 0, 0, 6167, 6168, 5, 409, + 0, 0, 6168, 709, 1, 0, 0, 0, 6169, 6171, 5, 46, 0, 0, 6170, 6172, 3, 624, + 312, 0, 6171, 6170, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6173, 1, + 0, 0, 0, 6173, 6174, 5, 464, 0, 0, 6174, 6175, 5, 62, 0, 0, 6175, 6176, + 3, 1126, 563, 0, 6176, 6177, 5, 257, 0, 0, 6177, 6178, 3, 1394, 697, 0, + 6178, 6179, 5, 2, 0, 0, 6179, 6180, 3, 712, 356, 0, 6180, 6181, 5, 3, 0, + 0, 6181, 711, 1, 0, 0, 0, 6182, 6183, 5, 64, 0, 0, 6183, 6184, 5, 482, + 0, 0, 6184, 6185, 5, 105, 0, 0, 6185, 6186, 5, 230, 0, 0, 6186, 6187, 3, + 632, 316, 0, 6187, 6188, 5, 6, 0, 0, 6188, 6189, 5, 94, 0, 0, 6189, 6190, + 5, 482, 0, 0, 6190, 6191, 5, 105, 0, 0, 6191, 6192, 5, 230, 0, 0, 6192, + 6193, 3, 632, 316, 0, 6193, 6217, 1, 0, 0, 0, 6194, 6195, 5, 94, 0, 0, + 6195, 6196, 5, 482, 0, 0, 6196, 6197, 5, 105, 0, 0, 6197, 6198, 5, 230, + 0, 0, 6198, 6199, 3, 632, 316, 0, 6199, 6200, 5, 6, 0, 0, 6200, 6201, 5, + 64, 0, 0, 6201, 6202, 5, 482, 0, 0, 6202, 6203, 5, 105, 0, 0, 6203, 6204, + 5, 230, 0, 0, 6204, 6205, 3, 632, 316, 0, 6205, 6217, 1, 0, 0, 0, 6206, + 6207, 5, 64, 0, 0, 6207, 6208, 5, 482, 0, 0, 6208, 6209, 5, 105, 0, 0, + 6209, 6210, 5, 230, 0, 0, 6210, 6217, 3, 632, 316, 0, 6211, 6212, 5, 94, + 0, 0, 6212, 6213, 5, 482, 0, 0, 6213, 6214, 5, 105, 0, 0, 6214, 6215, 5, + 230, 0, 0, 6215, 6217, 3, 632, 316, 0, 6216, 6182, 1, 0, 0, 0, 6216, 6194, + 1, 0, 0, 0, 6216, 6206, 1, 0, 0, 0, 6216, 6211, 1, 0, 0, 0, 6217, 713, + 1, 0, 0, 0, 6218, 6219, 5, 210, 0, 0, 6219, 6221, 5, 464, 0, 0, 6220, 6222, + 3, 708, 354, 0, 6221, 6220, 1, 0, 0, 0, 6221, 6222, 1, 0, 0, 0, 6222, 6223, + 1, 0, 0, 0, 6223, 6224, 5, 62, 0, 0, 6224, 6225, 3, 1126, 563, 0, 6225, + 6226, 5, 257, 0, 0, 6226, 6228, 3, 1394, 697, 0, 6227, 6229, 3, 108, 54, + 0, 6228, 6227, 1, 0, 0, 0, 6228, 6229, 1, 0, 0, 0, 6229, 715, 1, 0, 0, + 0, 6230, 6231, 5, 318, 0, 0, 6231, 6233, 3, 718, 359, 0, 6232, 6234, 3, + 598, 299, 0, 6233, 6232, 1, 0, 0, 0, 6233, 6234, 1, 0, 0, 0, 6234, 6235, + 1, 0, 0, 0, 6235, 6236, 3, 1390, 695, 0, 6236, 6265, 1, 0, 0, 0, 6237, + 6238, 5, 318, 0, 0, 6238, 6240, 3, 720, 360, 0, 6239, 6241, 3, 598, 299, + 0, 6240, 6239, 1, 0, 0, 0, 6240, 6241, 1, 0, 0, 0, 6241, 6242, 1, 0, 0, + 0, 6242, 6243, 3, 1394, 697, 0, 6243, 6265, 1, 0, 0, 0, 6244, 6245, 5, + 318, 0, 0, 6245, 6246, 5, 2, 0, 0, 6246, 6247, 3, 722, 361, 0, 6247, 6248, + 5, 3, 0, 0, 6248, 6250, 3, 718, 359, 0, 6249, 6251, 3, 598, 299, 0, 6250, + 6249, 1, 0, 0, 0, 6250, 6251, 1, 0, 0, 0, 6251, 6252, 1, 0, 0, 0, 6252, + 6253, 3, 1390, 695, 0, 6253, 6265, 1, 0, 0, 0, 6254, 6255, 5, 318, 0, 0, + 6255, 6256, 5, 2, 0, 0, 6256, 6257, 3, 722, 361, 0, 6257, 6258, 5, 3, 0, + 0, 6258, 6260, 3, 720, 360, 0, 6259, 6261, 3, 598, 299, 0, 6260, 6259, + 1, 0, 0, 0, 6260, 6261, 1, 0, 0, 0, 6261, 6262, 1, 0, 0, 0, 6262, 6263, + 3, 1394, 697, 0, 6263, 6265, 1, 0, 0, 0, 6264, 6230, 1, 0, 0, 0, 6264, + 6237, 1, 0, 0, 0, 6264, 6244, 1, 0, 0, 0, 6264, 6254, 1, 0, 0, 0, 6265, + 717, 1, 0, 0, 0, 6266, 6267, 7, 30, 0, 0, 6267, 719, 1, 0, 0, 0, 6268, + 6269, 7, 31, 0, 0, 6269, 721, 1, 0, 0, 0, 6270, 6275, 3, 724, 362, 0, 6271, + 6272, 5, 6, 0, 0, 6272, 6274, 3, 724, 362, 0, 6273, 6271, 1, 0, 0, 0, 6274, + 6277, 1, 0, 0, 0, 6275, 6273, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, + 723, 1, 0, 0, 0, 6277, 6275, 1, 0, 0, 0, 6278, 6279, 7, 32, 0, 0, 6279, + 725, 1, 0, 0, 0, 6280, 6281, 5, 157, 0, 0, 6281, 6282, 5, 363, 0, 0, 6282, + 6283, 3, 1394, 697, 0, 6283, 6284, 5, 345, 0, 0, 6284, 6285, 3, 116, 58, + 0, 6285, 6293, 1, 0, 0, 0, 6286, 6287, 5, 157, 0, 0, 6287, 6288, 5, 363, + 0, 0, 6288, 6289, 3, 1394, 697, 0, 6289, 6290, 5, 325, 0, 0, 6290, 6291, + 3, 116, 58, 0, 6291, 6293, 1, 0, 0, 0, 6292, 6280, 1, 0, 0, 0, 6292, 6286, + 1, 0, 0, 0, 6293, 727, 1, 0, 0, 0, 6294, 6295, 5, 157, 0, 0, 6295, 6296, + 5, 155, 0, 0, 6296, 6297, 3, 656, 328, 0, 6297, 6298, 5, 321, 0, 0, 6298, + 6299, 5, 94, 0, 0, 6299, 6300, 3, 1394, 697, 0, 6300, 6782, 1, 0, 0, 0, + 6301, 6302, 5, 157, 0, 0, 6302, 6303, 5, 127, 0, 0, 6303, 6304, 3, 526, + 263, 0, 6304, 6305, 5, 321, 0, 0, 6305, 6306, 5, 94, 0, 0, 6306, 6307, + 3, 1394, 697, 0, 6307, 6782, 1, 0, 0, 0, 6308, 6309, 5, 157, 0, 0, 6309, + 6310, 5, 187, 0, 0, 6310, 6311, 3, 526, 263, 0, 6311, 6312, 5, 321, 0, + 0, 6312, 6313, 5, 94, 0, 0, 6313, 6314, 3, 1394, 697, 0, 6314, 6782, 1, + 0, 0, 0, 6315, 6316, 5, 157, 0, 0, 6316, 6317, 5, 194, 0, 0, 6317, 6318, + 3, 1394, 697, 0, 6318, 6319, 5, 321, 0, 0, 6319, 6320, 5, 94, 0, 0, 6320, + 6321, 3, 1394, 697, 0, 6321, 6782, 1, 0, 0, 0, 6322, 6323, 5, 157, 0, 0, + 6323, 6324, 5, 208, 0, 0, 6324, 6325, 3, 526, 263, 0, 6325, 6326, 5, 321, + 0, 0, 6326, 6327, 5, 94, 0, 0, 6327, 6328, 3, 1394, 697, 0, 6328, 6782, + 1, 0, 0, 0, 6329, 6330, 5, 157, 0, 0, 6330, 6331, 5, 208, 0, 0, 6331, 6332, + 3, 526, 263, 0, 6332, 6333, 5, 321, 0, 0, 6333, 6334, 5, 45, 0, 0, 6334, + 6335, 3, 1394, 697, 0, 6335, 6336, 5, 94, 0, 0, 6336, 6337, 3, 1394, 697, + 0, 6337, 6782, 1, 0, 0, 0, 6338, 6339, 5, 157, 0, 0, 6339, 6340, 5, 63, + 0, 0, 6340, 6341, 5, 193, 0, 0, 6341, 6342, 5, 393, 0, 0, 6342, 6343, 3, + 1394, 697, 0, 6343, 6344, 5, 321, 0, 0, 6344, 6345, 5, 94, 0, 0, 6345, + 6346, 3, 1394, 697, 0, 6346, 6782, 1, 0, 0, 0, 6347, 6348, 5, 157, 0, 0, + 6348, 6349, 5, 230, 0, 0, 6349, 6350, 3, 632, 316, 0, 6350, 6351, 5, 321, + 0, 0, 6351, 6352, 5, 94, 0, 0, 6352, 6353, 3, 1394, 697, 0, 6353, 6782, + 1, 0, 0, 0, 6354, 6355, 5, 157, 0, 0, 6355, 6356, 5, 66, 0, 0, 6356, 6357, + 3, 1420, 710, 0, 6357, 6358, 5, 321, 0, 0, 6358, 6359, 5, 94, 0, 0, 6359, + 6360, 3, 1420, 710, 0, 6360, 6782, 1, 0, 0, 0, 6361, 6363, 5, 157, 0, 0, + 6362, 6364, 3, 310, 155, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, + 0, 6364, 6365, 1, 0, 0, 0, 6365, 6366, 5, 257, 0, 0, 6366, 6367, 3, 1394, + 697, 0, 6367, 6368, 5, 321, 0, 0, 6368, 6369, 5, 94, 0, 0, 6369, 6370, + 3, 1394, 697, 0, 6370, 6782, 1, 0, 0, 0, 6371, 6372, 5, 157, 0, 0, 6372, + 6373, 5, 290, 0, 0, 6373, 6374, 5, 175, 0, 0, 6374, 6375, 3, 526, 263, + 0, 6375, 6376, 5, 100, 0, 0, 6376, 6377, 3, 1394, 697, 0, 6377, 6378, 5, + 321, 0, 0, 6378, 6379, 5, 94, 0, 0, 6379, 6380, 3, 1394, 697, 0, 6380, + 6782, 1, 0, 0, 0, 6381, 6382, 5, 157, 0, 0, 6382, 6383, 5, 290, 0, 0, 6383, + 6384, 5, 225, 0, 0, 6384, 6385, 3, 526, 263, 0, 6385, 6386, 5, 100, 0, + 0, 6386, 6387, 3, 1394, 697, 0, 6387, 6388, 5, 321, 0, 0, 6388, 6389, 5, + 94, 0, 0, 6389, 6390, 3, 1394, 697, 0, 6390, 6782, 1, 0, 0, 0, 6391, 6392, + 5, 157, 0, 0, 6392, 6393, 5, 466, 0, 0, 6393, 6394, 3, 1394, 697, 0, 6394, + 6395, 5, 80, 0, 0, 6395, 6396, 3, 1390, 695, 0, 6396, 6397, 5, 321, 0, + 0, 6397, 6398, 5, 94, 0, 0, 6398, 6399, 3, 1394, 697, 0, 6399, 6782, 1, + 0, 0, 0, 6400, 6401, 5, 157, 0, 0, 6401, 6402, 5, 466, 0, 0, 6402, 6403, + 5, 239, 0, 0, 6403, 6404, 5, 409, 0, 0, 6404, 6405, 3, 1394, 697, 0, 6405, + 6406, 5, 80, 0, 0, 6406, 6407, 3, 1390, 695, 0, 6407, 6408, 5, 321, 0, + 0, 6408, 6409, 5, 94, 0, 0, 6409, 6410, 3, 1394, 697, 0, 6410, 6782, 1, + 0, 0, 0, 6411, 6412, 5, 157, 0, 0, 6412, 6413, 5, 308, 0, 0, 6413, 6414, + 3, 632, 316, 0, 6414, 6415, 5, 321, 0, 0, 6415, 6416, 5, 94, 0, 0, 6416, + 6417, 3, 1394, 697, 0, 6417, 6782, 1, 0, 0, 0, 6418, 6419, 5, 157, 0, 0, + 6419, 6420, 5, 473, 0, 0, 6420, 6421, 3, 1394, 697, 0, 6421, 6422, 5, 321, + 0, 0, 6422, 6423, 5, 94, 0, 0, 6423, 6424, 3, 1394, 697, 0, 6424, 6782, + 1, 0, 0, 0, 6425, 6426, 5, 157, 0, 0, 6426, 6427, 5, 463, 0, 0, 6427, 6428, + 3, 632, 316, 0, 6428, 6429, 5, 321, 0, 0, 6429, 6430, 5, 94, 0, 0, 6430, + 6431, 3, 1394, 697, 0, 6431, 6782, 1, 0, 0, 0, 6432, 6433, 5, 157, 0, 0, + 6433, 6434, 5, 335, 0, 0, 6434, 6435, 3, 1394, 697, 0, 6435, 6436, 5, 321, + 0, 0, 6436, 6437, 5, 94, 0, 0, 6437, 6438, 3, 1394, 697, 0, 6438, 6782, + 1, 0, 0, 0, 6439, 6440, 5, 157, 0, 0, 6440, 6441, 5, 343, 0, 0, 6441, 6442, + 3, 1394, 697, 0, 6442, 6443, 5, 321, 0, 0, 6443, 6444, 5, 94, 0, 0, 6444, + 6445, 3, 1394, 697, 0, 6445, 6782, 1, 0, 0, 0, 6446, 6447, 5, 157, 0, 0, + 6447, 6448, 5, 472, 0, 0, 6448, 6449, 3, 1394, 697, 0, 6449, 6450, 5, 321, + 0, 0, 6450, 6451, 5, 94, 0, 0, 6451, 6452, 3, 1394, 697, 0, 6452, 6782, + 1, 0, 0, 0, 6453, 6454, 5, 157, 0, 0, 6454, 6455, 5, 92, 0, 0, 6455, 6456, + 3, 1082, 541, 0, 6456, 6457, 5, 321, 0, 0, 6457, 6458, 5, 94, 0, 0, 6458, + 6459, 3, 1394, 697, 0, 6459, 6782, 1, 0, 0, 0, 6460, 6461, 5, 157, 0, 0, + 6461, 6462, 5, 92, 0, 0, 6462, 6463, 5, 239, 0, 0, 6463, 6464, 5, 409, + 0, 0, 6464, 6465, 3, 1082, 541, 0, 6465, 6466, 5, 321, 0, 0, 6466, 6467, + 5, 94, 0, 0, 6467, 6468, 3, 1394, 697, 0, 6468, 6782, 1, 0, 0, 0, 6469, + 6470, 5, 157, 0, 0, 6470, 6471, 5, 340, 0, 0, 6471, 6472, 3, 1390, 695, + 0, 6472, 6473, 5, 321, 0, 0, 6473, 6474, 5, 94, 0, 0, 6474, 6475, 3, 1394, + 697, 0, 6475, 6782, 1, 0, 0, 0, 6476, 6477, 5, 157, 0, 0, 6477, 6478, 5, + 340, 0, 0, 6478, 6479, 5, 239, 0, 0, 6479, 6480, 5, 409, 0, 0, 6480, 6481, + 3, 1390, 695, 0, 6481, 6482, 5, 321, 0, 0, 6482, 6483, 5, 94, 0, 0, 6483, + 6484, 3, 1394, 697, 0, 6484, 6782, 1, 0, 0, 0, 6485, 6486, 5, 157, 0, 0, + 6486, 6487, 5, 388, 0, 0, 6487, 6488, 3, 1390, 695, 0, 6488, 6489, 5, 321, + 0, 0, 6489, 6490, 5, 94, 0, 0, 6490, 6491, 3, 1394, 697, 0, 6491, 6782, + 1, 0, 0, 0, 6492, 6493, 5, 157, 0, 0, 6493, 6494, 5, 388, 0, 0, 6494, 6495, + 5, 239, 0, 0, 6495, 6496, 5, 409, 0, 0, 6496, 6497, 3, 1390, 695, 0, 6497, + 6498, 5, 321, 0, 0, 6498, 6499, 5, 94, 0, 0, 6499, 6500, 3, 1394, 697, + 0, 6500, 6782, 1, 0, 0, 0, 6501, 6502, 5, 157, 0, 0, 6502, 6503, 5, 270, + 0, 0, 6503, 6504, 5, 388, 0, 0, 6504, 6505, 3, 1390, 695, 0, 6505, 6506, + 5, 321, 0, 0, 6506, 6507, 5, 94, 0, 0, 6507, 6508, 3, 1394, 697, 0, 6508, + 6782, 1, 0, 0, 0, 6509, 6510, 5, 157, 0, 0, 6510, 6511, 5, 270, 0, 0, 6511, + 6512, 5, 388, 0, 0, 6512, 6513, 5, 239, 0, 0, 6513, 6514, 5, 409, 0, 0, + 6514, 6515, 3, 1390, 695, 0, 6515, 6516, 5, 321, 0, 0, 6516, 6517, 5, 94, + 0, 0, 6517, 6518, 3, 1394, 697, 0, 6518, 6782, 1, 0, 0, 0, 6519, 6520, + 5, 157, 0, 0, 6520, 6521, 5, 245, 0, 0, 6521, 6522, 3, 1390, 695, 0, 6522, + 6523, 5, 321, 0, 0, 6523, 6524, 5, 94, 0, 0, 6524, 6525, 3, 1394, 697, + 0, 6525, 6782, 1, 0, 0, 0, 6526, 6527, 5, 157, 0, 0, 6527, 6528, 5, 245, + 0, 0, 6528, 6529, 5, 239, 0, 0, 6529, 6530, 5, 409, 0, 0, 6530, 6531, 3, + 1390, 695, 0, 6531, 6532, 5, 321, 0, 0, 6532, 6533, 5, 94, 0, 0, 6533, + 6534, 3, 1394, 697, 0, 6534, 6782, 1, 0, 0, 0, 6535, 6536, 5, 157, 0, 0, + 6536, 6537, 5, 63, 0, 0, 6537, 6538, 5, 92, 0, 0, 6538, 6539, 3, 1082, + 541, 0, 6539, 6540, 5, 321, 0, 0, 6540, 6541, 5, 94, 0, 0, 6541, 6542, + 3, 1394, 697, 0, 6542, 6782, 1, 0, 0, 0, 6543, 6544, 5, 157, 0, 0, 6544, + 6545, 5, 63, 0, 0, 6545, 6546, 5, 92, 0, 0, 6546, 6547, 5, 239, 0, 0, 6547, + 6548, 5, 409, 0, 0, 6548, 6549, 3, 1082, 541, 0, 6549, 6550, 5, 321, 0, + 0, 6550, 6551, 5, 94, 0, 0, 6551, 6552, 3, 1394, 697, 0, 6552, 6782, 1, + 0, 0, 0, 6553, 6554, 5, 157, 0, 0, 6554, 6555, 5, 92, 0, 0, 6555, 6556, + 3, 1082, 541, 0, 6556, 6558, 5, 321, 0, 0, 6557, 6559, 3, 730, 365, 0, + 6558, 6557, 1, 0, 0, 0, 6558, 6559, 1, 0, 0, 0, 6559, 6560, 1, 0, 0, 0, + 6560, 6561, 3, 1394, 697, 0, 6561, 6562, 5, 94, 0, 0, 6562, 6563, 3, 1394, + 697, 0, 6563, 6782, 1, 0, 0, 0, 6564, 6565, 5, 157, 0, 0, 6565, 6566, 5, + 92, 0, 0, 6566, 6567, 5, 239, 0, 0, 6567, 6568, 5, 409, 0, 0, 6568, 6569, + 3, 1082, 541, 0, 6569, 6571, 5, 321, 0, 0, 6570, 6572, 3, 730, 365, 0, + 6571, 6570, 1, 0, 0, 0, 6571, 6572, 1, 0, 0, 0, 6572, 6573, 1, 0, 0, 0, + 6573, 6574, 3, 1394, 697, 0, 6574, 6575, 5, 94, 0, 0, 6575, 6576, 3, 1394, + 697, 0, 6576, 6782, 1, 0, 0, 0, 6577, 6578, 5, 157, 0, 0, 6578, 6579, 5, + 388, 0, 0, 6579, 6580, 3, 1390, 695, 0, 6580, 6582, 5, 321, 0, 0, 6581, + 6583, 3, 730, 365, 0, 6582, 6581, 1, 0, 0, 0, 6582, 6583, 1, 0, 0, 0, 6583, + 6584, 1, 0, 0, 0, 6584, 6585, 3, 1394, 697, 0, 6585, 6586, 5, 94, 0, 0, + 6586, 6587, 3, 1394, 697, 0, 6587, 6782, 1, 0, 0, 0, 6588, 6589, 5, 157, + 0, 0, 6589, 6590, 5, 388, 0, 0, 6590, 6591, 5, 239, 0, 0, 6591, 6592, 5, + 409, 0, 0, 6592, 6593, 3, 1390, 695, 0, 6593, 6595, 5, 321, 0, 0, 6594, + 6596, 3, 730, 365, 0, 6595, 6594, 1, 0, 0, 0, 6595, 6596, 1, 0, 0, 0, 6596, + 6597, 1, 0, 0, 0, 6597, 6598, 3, 1394, 697, 0, 6598, 6599, 5, 94, 0, 0, + 6599, 6600, 3, 1394, 697, 0, 6600, 6782, 1, 0, 0, 0, 6601, 6602, 5, 157, + 0, 0, 6602, 6603, 5, 270, 0, 0, 6603, 6604, 5, 388, 0, 0, 6604, 6605, 3, + 1390, 695, 0, 6605, 6607, 5, 321, 0, 0, 6606, 6608, 3, 730, 365, 0, 6607, + 6606, 1, 0, 0, 0, 6607, 6608, 1, 0, 0, 0, 6608, 6609, 1, 0, 0, 0, 6609, + 6610, 3, 1394, 697, 0, 6610, 6611, 5, 94, 0, 0, 6611, 6612, 3, 1394, 697, + 0, 6612, 6782, 1, 0, 0, 0, 6613, 6614, 5, 157, 0, 0, 6614, 6615, 5, 270, + 0, 0, 6615, 6616, 5, 388, 0, 0, 6616, 6617, 5, 239, 0, 0, 6617, 6618, 5, + 409, 0, 0, 6618, 6619, 3, 1390, 695, 0, 6619, 6621, 5, 321, 0, 0, 6620, + 6622, 3, 730, 365, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, + 6623, 1, 0, 0, 0, 6623, 6624, 3, 1394, 697, 0, 6624, 6625, 5, 94, 0, 0, + 6625, 6626, 3, 1394, 697, 0, 6626, 6782, 1, 0, 0, 0, 6627, 6628, 5, 157, + 0, 0, 6628, 6629, 5, 92, 0, 0, 6629, 6630, 3, 1082, 541, 0, 6630, 6631, + 5, 321, 0, 0, 6631, 6632, 5, 45, 0, 0, 6632, 6633, 3, 1394, 697, 0, 6633, + 6634, 5, 94, 0, 0, 6634, 6635, 3, 1394, 697, 0, 6635, 6782, 1, 0, 0, 0, + 6636, 6637, 5, 157, 0, 0, 6637, 6638, 5, 92, 0, 0, 6638, 6639, 5, 239, + 0, 0, 6639, 6640, 5, 409, 0, 0, 6640, 6641, 3, 1082, 541, 0, 6641, 6642, + 5, 321, 0, 0, 6642, 6643, 5, 45, 0, 0, 6643, 6644, 3, 1394, 697, 0, 6644, + 6645, 5, 94, 0, 0, 6645, 6646, 3, 1394, 697, 0, 6646, 6782, 1, 0, 0, 0, + 6647, 6648, 5, 157, 0, 0, 6648, 6649, 5, 63, 0, 0, 6649, 6650, 5, 92, 0, + 0, 6650, 6651, 3, 1082, 541, 0, 6651, 6653, 5, 321, 0, 0, 6652, 6654, 3, + 730, 365, 0, 6653, 6652, 1, 0, 0, 0, 6653, 6654, 1, 0, 0, 0, 6654, 6655, + 1, 0, 0, 0, 6655, 6656, 3, 1394, 697, 0, 6656, 6657, 5, 94, 0, 0, 6657, + 6658, 3, 1394, 697, 0, 6658, 6782, 1, 0, 0, 0, 6659, 6660, 5, 157, 0, 0, + 6660, 6661, 5, 63, 0, 0, 6661, 6662, 5, 92, 0, 0, 6662, 6663, 5, 239, 0, + 0, 6663, 6664, 5, 409, 0, 0, 6664, 6665, 3, 1082, 541, 0, 6665, 6667, 5, + 321, 0, 0, 6666, 6668, 3, 730, 365, 0, 6667, 6666, 1, 0, 0, 0, 6667, 6668, + 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6670, 3, 1394, 697, 0, 6670, + 6671, 5, 94, 0, 0, 6671, 6672, 3, 1394, 697, 0, 6672, 6782, 1, 0, 0, 0, + 6673, 6674, 5, 157, 0, 0, 6674, 6675, 5, 333, 0, 0, 6675, 6676, 3, 1394, + 697, 0, 6676, 6677, 5, 80, 0, 0, 6677, 6678, 3, 1390, 695, 0, 6678, 6679, + 5, 321, 0, 0, 6679, 6680, 5, 94, 0, 0, 6680, 6681, 3, 1394, 697, 0, 6681, + 6782, 1, 0, 0, 0, 6682, 6683, 5, 157, 0, 0, 6683, 6684, 5, 369, 0, 0, 6684, + 6685, 3, 1394, 697, 0, 6685, 6686, 5, 80, 0, 0, 6686, 6687, 3, 1390, 695, + 0, 6687, 6688, 5, 321, 0, 0, 6688, 6689, 5, 94, 0, 0, 6689, 6690, 3, 1394, + 697, 0, 6690, 6782, 1, 0, 0, 0, 6691, 6692, 5, 157, 0, 0, 6692, 6693, 5, + 217, 0, 0, 6693, 6694, 5, 369, 0, 0, 6694, 6695, 3, 1394, 697, 0, 6695, + 6696, 5, 321, 0, 0, 6696, 6697, 5, 94, 0, 0, 6697, 6698, 3, 1394, 697, + 0, 6698, 6782, 1, 0, 0, 0, 6699, 6700, 5, 157, 0, 0, 6700, 6701, 5, 330, + 0, 0, 6701, 6702, 3, 1420, 710, 0, 6702, 6703, 5, 321, 0, 0, 6703, 6704, + 5, 94, 0, 0, 6704, 6705, 3, 1420, 710, 0, 6705, 6782, 1, 0, 0, 0, 6706, + 6707, 5, 157, 0, 0, 6707, 6708, 5, 99, 0, 0, 6708, 6709, 3, 1420, 710, + 0, 6709, 6710, 5, 321, 0, 0, 6710, 6711, 5, 94, 0, 0, 6711, 6712, 3, 1420, + 710, 0, 6712, 6782, 1, 0, 0, 0, 6713, 6714, 5, 157, 0, 0, 6714, 6715, 5, + 363, 0, 0, 6715, 6716, 3, 1394, 697, 0, 6716, 6717, 5, 321, 0, 0, 6717, + 6718, 5, 94, 0, 0, 6718, 6719, 3, 1394, 697, 0, 6719, 6782, 1, 0, 0, 0, + 6720, 6721, 5, 157, 0, 0, 6721, 6722, 5, 354, 0, 0, 6722, 6723, 3, 526, + 263, 0, 6723, 6724, 5, 321, 0, 0, 6724, 6725, 5, 94, 0, 0, 6725, 6726, + 3, 1394, 697, 0, 6726, 6782, 1, 0, 0, 0, 6727, 6728, 5, 157, 0, 0, 6728, + 6729, 5, 367, 0, 0, 6729, 6730, 5, 337, 0, 0, 6730, 6731, 5, 295, 0, 0, + 6731, 6732, 3, 526, 263, 0, 6732, 6733, 5, 321, 0, 0, 6733, 6734, 5, 94, + 0, 0, 6734, 6735, 3, 1394, 697, 0, 6735, 6782, 1, 0, 0, 0, 6736, 6737, + 5, 157, 0, 0, 6737, 6738, 5, 367, 0, 0, 6738, 6739, 5, 337, 0, 0, 6739, + 6740, 5, 204, 0, 0, 6740, 6741, 3, 526, 263, 0, 6741, 6742, 5, 321, 0, + 0, 6742, 6743, 5, 94, 0, 0, 6743, 6744, 3, 1394, 697, 0, 6744, 6782, 1, + 0, 0, 0, 6745, 6746, 5, 157, 0, 0, 6746, 6747, 5, 367, 0, 0, 6747, 6748, + 5, 337, 0, 0, 6748, 6749, 5, 365, 0, 0, 6749, 6750, 3, 526, 263, 0, 6750, + 6751, 5, 321, 0, 0, 6751, 6752, 5, 94, 0, 0, 6752, 6753, 3, 1394, 697, + 0, 6753, 6782, 1, 0, 0, 0, 6754, 6755, 5, 157, 0, 0, 6755, 6756, 5, 367, + 0, 0, 6756, 6757, 5, 337, 0, 0, 6757, 6758, 5, 182, 0, 0, 6758, 6759, 3, + 526, 263, 0, 6759, 6760, 5, 321, 0, 0, 6760, 6761, 5, 94, 0, 0, 6761, 6762, + 3, 1394, 697, 0, 6762, 6782, 1, 0, 0, 0, 6763, 6764, 5, 157, 0, 0, 6764, + 6765, 5, 372, 0, 0, 6765, 6766, 3, 526, 263, 0, 6766, 6767, 5, 321, 0, + 0, 6767, 6768, 5, 94, 0, 0, 6768, 6769, 3, 1394, 697, 0, 6769, 6782, 1, + 0, 0, 0, 6770, 6771, 5, 157, 0, 0, 6771, 6772, 5, 372, 0, 0, 6772, 6773, + 3, 526, 263, 0, 6773, 6774, 5, 321, 0, 0, 6774, 6775, 5, 162, 0, 0, 6775, + 6776, 3, 1394, 697, 0, 6776, 6777, 5, 94, 0, 0, 6777, 6779, 3, 1394, 697, + 0, 6778, 6780, 3, 108, 54, 0, 6779, 6778, 1, 0, 0, 0, 6779, 6780, 1, 0, + 0, 0, 6780, 6782, 1, 0, 0, 0, 6781, 6294, 1, 0, 0, 0, 6781, 6301, 1, 0, + 0, 0, 6781, 6308, 1, 0, 0, 0, 6781, 6315, 1, 0, 0, 0, 6781, 6322, 1, 0, + 0, 0, 6781, 6329, 1, 0, 0, 0, 6781, 6338, 1, 0, 0, 0, 6781, 6347, 1, 0, + 0, 0, 6781, 6354, 1, 0, 0, 0, 6781, 6361, 1, 0, 0, 0, 6781, 6371, 1, 0, + 0, 0, 6781, 6381, 1, 0, 0, 0, 6781, 6391, 1, 0, 0, 0, 6781, 6400, 1, 0, + 0, 0, 6781, 6411, 1, 0, 0, 0, 6781, 6418, 1, 0, 0, 0, 6781, 6425, 1, 0, + 0, 0, 6781, 6432, 1, 0, 0, 0, 6781, 6439, 1, 0, 0, 0, 6781, 6446, 1, 0, + 0, 0, 6781, 6453, 1, 0, 0, 0, 6781, 6460, 1, 0, 0, 0, 6781, 6469, 1, 0, + 0, 0, 6781, 6476, 1, 0, 0, 0, 6781, 6485, 1, 0, 0, 0, 6781, 6492, 1, 0, + 0, 0, 6781, 6501, 1, 0, 0, 0, 6781, 6509, 1, 0, 0, 0, 6781, 6519, 1, 0, + 0, 0, 6781, 6526, 1, 0, 0, 0, 6781, 6535, 1, 0, 0, 0, 6781, 6543, 1, 0, + 0, 0, 6781, 6553, 1, 0, 0, 0, 6781, 6564, 1, 0, 0, 0, 6781, 6577, 1, 0, + 0, 0, 6781, 6588, 1, 0, 0, 0, 6781, 6601, 1, 0, 0, 0, 6781, 6613, 1, 0, + 0, 0, 6781, 6627, 1, 0, 0, 0, 6781, 6636, 1, 0, 0, 0, 6781, 6647, 1, 0, + 0, 0, 6781, 6659, 1, 0, 0, 0, 6781, 6673, 1, 0, 0, 0, 6781, 6682, 1, 0, + 0, 0, 6781, 6691, 1, 0, 0, 0, 6781, 6699, 1, 0, 0, 0, 6781, 6706, 1, 0, + 0, 0, 6781, 6713, 1, 0, 0, 0, 6781, 6720, 1, 0, 0, 0, 6781, 6727, 1, 0, + 0, 0, 6781, 6736, 1, 0, 0, 0, 6781, 6745, 1, 0, 0, 0, 6781, 6754, 1, 0, + 0, 0, 6781, 6763, 1, 0, 0, 0, 6781, 6770, 1, 0, 0, 0, 6782, 729, 1, 0, + 0, 0, 6783, 6784, 5, 44, 0, 0, 6784, 731, 1, 0, 0, 0, 6785, 6786, 5, 345, + 0, 0, 6786, 6787, 5, 193, 0, 0, 6787, 733, 1, 0, 0, 0, 6788, 6789, 5, 157, + 0, 0, 6789, 6790, 5, 230, 0, 0, 6790, 6792, 3, 632, 316, 0, 6791, 6793, + 3, 736, 368, 0, 6792, 6791, 1, 0, 0, 0, 6792, 6793, 1, 0, 0, 0, 6793, 6794, + 1, 0, 0, 0, 6794, 6795, 5, 483, 0, 0, 6795, 6796, 5, 80, 0, 0, 6796, 6797, + 5, 223, 0, 0, 6797, 6798, 3, 1394, 697, 0, 6798, 6858, 1, 0, 0, 0, 6799, + 6800, 5, 157, 0, 0, 6800, 6801, 5, 308, 0, 0, 6801, 6803, 3, 632, 316, + 0, 6802, 6804, 3, 736, 368, 0, 6803, 6802, 1, 0, 0, 0, 6803, 6804, 1, 0, + 0, 0, 6804, 6805, 1, 0, 0, 0, 6805, 6806, 5, 483, 0, 0, 6806, 6807, 5, + 80, 0, 0, 6807, 6808, 5, 223, 0, 0, 6808, 6809, 3, 1394, 697, 0, 6809, + 6858, 1, 0, 0, 0, 6810, 6811, 5, 157, 0, 0, 6811, 6812, 5, 463, 0, 0, 6812, + 6814, 3, 632, 316, 0, 6813, 6815, 3, 736, 368, 0, 6814, 6813, 1, 0, 0, + 0, 6814, 6815, 1, 0, 0, 0, 6815, 6816, 1, 0, 0, 0, 6816, 6817, 5, 483, + 0, 0, 6817, 6818, 5, 80, 0, 0, 6818, 6819, 5, 223, 0, 0, 6819, 6820, 3, + 1394, 697, 0, 6820, 6858, 1, 0, 0, 0, 6821, 6822, 5, 157, 0, 0, 6822, 6823, + 5, 369, 0, 0, 6823, 6824, 3, 1394, 697, 0, 6824, 6825, 5, 80, 0, 0, 6825, + 6827, 3, 1390, 695, 0, 6826, 6828, 3, 736, 368, 0, 6827, 6826, 1, 0, 0, + 0, 6827, 6828, 1, 0, 0, 0, 6828, 6829, 1, 0, 0, 0, 6829, 6830, 5, 483, + 0, 0, 6830, 6831, 5, 80, 0, 0, 6831, 6832, 5, 223, 0, 0, 6832, 6833, 3, + 1394, 697, 0, 6833, 6858, 1, 0, 0, 0, 6834, 6835, 5, 157, 0, 0, 6835, 6836, + 5, 270, 0, 0, 6836, 6837, 5, 388, 0, 0, 6837, 6839, 3, 1390, 695, 0, 6838, + 6840, 3, 736, 368, 0, 6839, 6838, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, + 6841, 1, 0, 0, 0, 6841, 6842, 5, 483, 0, 0, 6842, 6843, 5, 80, 0, 0, 6843, + 6844, 5, 223, 0, 0, 6844, 6845, 3, 1394, 697, 0, 6845, 6858, 1, 0, 0, 0, + 6846, 6847, 5, 157, 0, 0, 6847, 6848, 5, 245, 0, 0, 6848, 6850, 3, 1390, + 695, 0, 6849, 6851, 3, 736, 368, 0, 6850, 6849, 1, 0, 0, 0, 6850, 6851, + 1, 0, 0, 0, 6851, 6852, 1, 0, 0, 0, 6852, 6853, 5, 483, 0, 0, 6853, 6854, + 5, 80, 0, 0, 6854, 6855, 5, 223, 0, 0, 6855, 6856, 3, 1394, 697, 0, 6856, + 6858, 1, 0, 0, 0, 6857, 6788, 1, 0, 0, 0, 6857, 6799, 1, 0, 0, 0, 6857, + 6810, 1, 0, 0, 0, 6857, 6821, 1, 0, 0, 0, 6857, 6834, 1, 0, 0, 0, 6857, + 6846, 1, 0, 0, 0, 6858, 735, 1, 0, 0, 0, 6859, 6860, 5, 281, 0, 0, 6860, + 737, 1, 0, 0, 0, 6861, 6862, 5, 157, 0, 0, 6862, 6863, 5, 155, 0, 0, 6863, + 6864, 3, 656, 328, 0, 6864, 6865, 5, 345, 0, 0, 6865, 6866, 5, 335, 0, + 0, 6866, 6867, 3, 1394, 697, 0, 6867, 7079, 1, 0, 0, 0, 6868, 6869, 5, + 157, 0, 0, 6869, 6870, 5, 127, 0, 0, 6870, 6871, 3, 526, 263, 0, 6871, + 6872, 5, 345, 0, 0, 6872, 6873, 5, 335, 0, 0, 6873, 6874, 3, 1394, 697, + 0, 6874, 7079, 1, 0, 0, 0, 6875, 6876, 5, 157, 0, 0, 6876, 6877, 5, 187, + 0, 0, 6877, 6878, 3, 526, 263, 0, 6878, 6879, 5, 345, 0, 0, 6879, 6880, + 5, 335, 0, 0, 6880, 6881, 3, 1394, 697, 0, 6881, 7079, 1, 0, 0, 0, 6882, + 6883, 5, 157, 0, 0, 6883, 6884, 5, 208, 0, 0, 6884, 6885, 3, 526, 263, + 0, 6885, 6886, 5, 345, 0, 0, 6886, 6887, 5, 335, 0, 0, 6887, 6888, 3, 1394, + 697, 0, 6888, 7079, 1, 0, 0, 0, 6889, 6890, 5, 157, 0, 0, 6890, 6891, 5, + 223, 0, 0, 6891, 6892, 3, 1394, 697, 0, 6892, 6893, 5, 345, 0, 0, 6893, + 6894, 5, 335, 0, 0, 6894, 6895, 3, 1394, 697, 0, 6895, 7079, 1, 0, 0, 0, + 6896, 6897, 5, 157, 0, 0, 6897, 6898, 5, 230, 0, 0, 6898, 6899, 3, 632, + 316, 0, 6899, 6900, 5, 345, 0, 0, 6900, 6901, 5, 335, 0, 0, 6901, 6902, + 3, 1394, 697, 0, 6902, 7079, 1, 0, 0, 0, 6903, 6904, 5, 157, 0, 0, 6904, + 6905, 5, 290, 0, 0, 6905, 6906, 3, 694, 347, 0, 6906, 6907, 5, 345, 0, + 0, 6907, 6908, 5, 335, 0, 0, 6908, 6909, 3, 1394, 697, 0, 6909, 7079, 1, + 0, 0, 0, 6910, 6911, 5, 157, 0, 0, 6911, 6912, 5, 290, 0, 0, 6912, 6913, + 5, 175, 0, 0, 6913, 6914, 3, 526, 263, 0, 6914, 6915, 5, 100, 0, 0, 6915, + 6916, 3, 1394, 697, 0, 6916, 6917, 5, 345, 0, 0, 6917, 6918, 5, 335, 0, + 0, 6918, 6919, 3, 1394, 697, 0, 6919, 7079, 1, 0, 0, 0, 6920, 6921, 5, + 157, 0, 0, 6921, 6922, 5, 290, 0, 0, 6922, 6923, 5, 225, 0, 0, 6923, 6924, + 3, 526, 263, 0, 6924, 6925, 5, 100, 0, 0, 6925, 6926, 3, 1394, 697, 0, + 6926, 6927, 5, 345, 0, 0, 6927, 6928, 5, 335, 0, 0, 6928, 6929, 3, 1394, + 697, 0, 6929, 7079, 1, 0, 0, 0, 6930, 6931, 5, 157, 0, 0, 6931, 6932, 5, + 308, 0, 0, 6932, 6933, 3, 632, 316, 0, 6933, 6934, 5, 345, 0, 0, 6934, + 6935, 5, 335, 0, 0, 6935, 6936, 3, 1394, 697, 0, 6936, 7079, 1, 0, 0, 0, + 6937, 6938, 5, 157, 0, 0, 6938, 6939, 5, 463, 0, 0, 6939, 6940, 3, 632, + 316, 0, 6940, 6941, 5, 345, 0, 0, 6941, 6942, 5, 335, 0, 0, 6942, 6943, + 3, 1394, 697, 0, 6943, 7079, 1, 0, 0, 0, 6944, 6945, 5, 157, 0, 0, 6945, + 6946, 5, 92, 0, 0, 6946, 6947, 3, 1082, 541, 0, 6947, 6948, 5, 345, 0, + 0, 6948, 6949, 5, 335, 0, 0, 6949, 6950, 3, 1394, 697, 0, 6950, 7079, 1, + 0, 0, 0, 6951, 6952, 5, 157, 0, 0, 6952, 6953, 5, 92, 0, 0, 6953, 6954, + 5, 239, 0, 0, 6954, 6955, 5, 409, 0, 0, 6955, 6956, 3, 1082, 541, 0, 6956, + 6957, 5, 345, 0, 0, 6957, 6958, 5, 335, 0, 0, 6958, 6959, 3, 1394, 697, + 0, 6959, 7079, 1, 0, 0, 0, 6960, 6961, 5, 157, 0, 0, 6961, 6962, 5, 354, + 0, 0, 6962, 6963, 3, 526, 263, 0, 6963, 6964, 5, 345, 0, 0, 6964, 6965, + 5, 335, 0, 0, 6965, 6966, 3, 1394, 697, 0, 6966, 7079, 1, 0, 0, 0, 6967, + 6968, 5, 157, 0, 0, 6968, 6969, 5, 367, 0, 0, 6969, 6970, 5, 337, 0, 0, + 6970, 6971, 5, 295, 0, 0, 6971, 6972, 3, 526, 263, 0, 6972, 6973, 5, 345, + 0, 0, 6973, 6974, 5, 335, 0, 0, 6974, 6975, 3, 1394, 697, 0, 6975, 7079, + 1, 0, 0, 0, 6976, 6977, 5, 157, 0, 0, 6977, 6978, 5, 367, 0, 0, 6978, 6979, + 5, 337, 0, 0, 6979, 6980, 5, 204, 0, 0, 6980, 6981, 3, 526, 263, 0, 6981, + 6982, 5, 345, 0, 0, 6982, 6983, 5, 335, 0, 0, 6983, 6984, 3, 1394, 697, + 0, 6984, 7079, 1, 0, 0, 0, 6985, 6986, 5, 157, 0, 0, 6986, 6987, 5, 367, + 0, 0, 6987, 6988, 5, 337, 0, 0, 6988, 6989, 5, 365, 0, 0, 6989, 6990, 3, + 526, 263, 0, 6990, 6991, 5, 345, 0, 0, 6991, 6992, 5, 335, 0, 0, 6992, + 6993, 3, 1394, 697, 0, 6993, 7079, 1, 0, 0, 0, 6994, 6995, 5, 157, 0, 0, + 6995, 6996, 5, 367, 0, 0, 6996, 6997, 5, 337, 0, 0, 6997, 6998, 5, 182, + 0, 0, 6998, 6999, 3, 526, 263, 0, 6999, 7000, 5, 345, 0, 0, 7000, 7001, + 5, 335, 0, 0, 7001, 7002, 3, 1394, 697, 0, 7002, 7079, 1, 0, 0, 0, 7003, + 7004, 5, 157, 0, 0, 7004, 7005, 5, 340, 0, 0, 7005, 7006, 3, 1390, 695, + 0, 7006, 7007, 5, 345, 0, 0, 7007, 7008, 5, 335, 0, 0, 7008, 7009, 3, 1394, + 697, 0, 7009, 7079, 1, 0, 0, 0, 7010, 7011, 5, 157, 0, 0, 7011, 7012, 5, + 340, 0, 0, 7012, 7013, 5, 239, 0, 0, 7013, 7014, 5, 409, 0, 0, 7014, 7015, + 3, 1390, 695, 0, 7015, 7016, 5, 345, 0, 0, 7016, 7017, 5, 335, 0, 0, 7017, + 7018, 3, 1394, 697, 0, 7018, 7079, 1, 0, 0, 0, 7019, 7020, 5, 157, 0, 0, + 7020, 7021, 5, 388, 0, 0, 7021, 7022, 3, 1390, 695, 0, 7022, 7023, 5, 345, + 0, 0, 7023, 7024, 5, 335, 0, 0, 7024, 7025, 3, 1394, 697, 0, 7025, 7079, + 1, 0, 0, 0, 7026, 7027, 5, 157, 0, 0, 7027, 7028, 5, 388, 0, 0, 7028, 7029, + 5, 239, 0, 0, 7029, 7030, 5, 409, 0, 0, 7030, 7031, 3, 1390, 695, 0, 7031, + 7032, 5, 345, 0, 0, 7032, 7033, 5, 335, 0, 0, 7033, 7034, 3, 1394, 697, + 0, 7034, 7079, 1, 0, 0, 0, 7035, 7036, 5, 157, 0, 0, 7036, 7037, 5, 270, + 0, 0, 7037, 7038, 5, 388, 0, 0, 7038, 7039, 3, 1390, 695, 0, 7039, 7040, + 5, 345, 0, 0, 7040, 7041, 5, 335, 0, 0, 7041, 7042, 3, 1394, 697, 0, 7042, + 7079, 1, 0, 0, 0, 7043, 7044, 5, 157, 0, 0, 7044, 7045, 5, 270, 0, 0, 7045, + 7046, 5, 388, 0, 0, 7046, 7047, 5, 239, 0, 0, 7047, 7048, 5, 409, 0, 0, + 7048, 7049, 3, 1390, 695, 0, 7049, 7050, 5, 345, 0, 0, 7050, 7051, 5, 335, + 0, 0, 7051, 7052, 3, 1394, 697, 0, 7052, 7079, 1, 0, 0, 0, 7053, 7054, + 5, 157, 0, 0, 7054, 7055, 5, 63, 0, 0, 7055, 7056, 5, 92, 0, 0, 7056, 7057, + 3, 1082, 541, 0, 7057, 7058, 5, 345, 0, 0, 7058, 7059, 5, 335, 0, 0, 7059, + 7060, 3, 1394, 697, 0, 7060, 7079, 1, 0, 0, 0, 7061, 7062, 5, 157, 0, 0, + 7062, 7063, 5, 63, 0, 0, 7063, 7064, 5, 92, 0, 0, 7064, 7065, 5, 239, 0, + 0, 7065, 7066, 5, 409, 0, 0, 7066, 7067, 3, 1082, 541, 0, 7067, 7068, 5, + 345, 0, 0, 7068, 7069, 5, 335, 0, 0, 7069, 7070, 3, 1394, 697, 0, 7070, + 7079, 1, 0, 0, 0, 7071, 7072, 5, 157, 0, 0, 7072, 7073, 5, 372, 0, 0, 7073, + 7074, 3, 526, 263, 0, 7074, 7075, 5, 345, 0, 0, 7075, 7076, 5, 335, 0, + 0, 7076, 7077, 3, 1394, 697, 0, 7077, 7079, 1, 0, 0, 0, 7078, 6861, 1, + 0, 0, 0, 7078, 6868, 1, 0, 0, 0, 7078, 6875, 1, 0, 0, 0, 7078, 6882, 1, + 0, 0, 0, 7078, 6889, 1, 0, 0, 0, 7078, 6896, 1, 0, 0, 0, 7078, 6903, 1, + 0, 0, 0, 7078, 6910, 1, 0, 0, 0, 7078, 6920, 1, 0, 0, 0, 7078, 6930, 1, + 0, 0, 0, 7078, 6937, 1, 0, 0, 0, 7078, 6944, 1, 0, 0, 0, 7078, 6951, 1, + 0, 0, 0, 7078, 6960, 1, 0, 0, 0, 7078, 6967, 1, 0, 0, 0, 7078, 6976, 1, + 0, 0, 0, 7078, 6985, 1, 0, 0, 0, 7078, 6994, 1, 0, 0, 0, 7078, 7003, 1, + 0, 0, 0, 7078, 7010, 1, 0, 0, 0, 7078, 7019, 1, 0, 0, 0, 7078, 7026, 1, + 0, 0, 0, 7078, 7035, 1, 0, 0, 0, 7078, 7043, 1, 0, 0, 0, 7078, 7053, 1, + 0, 0, 0, 7078, 7061, 1, 0, 0, 0, 7078, 7071, 1, 0, 0, 0, 7079, 739, 1, + 0, 0, 0, 7080, 7081, 5, 157, 0, 0, 7081, 7082, 5, 290, 0, 0, 7082, 7083, + 3, 694, 347, 0, 7083, 7084, 5, 345, 0, 0, 7084, 7085, 5, 2, 0, 0, 7085, + 7086, 3, 742, 371, 0, 7086, 7087, 5, 3, 0, 0, 7087, 741, 1, 0, 0, 0, 7088, + 7093, 3, 744, 372, 0, 7089, 7090, 5, 6, 0, 0, 7090, 7092, 3, 744, 372, + 0, 7091, 7089, 1, 0, 0, 0, 7092, 7095, 1, 0, 0, 0, 7093, 7091, 1, 0, 0, + 0, 7093, 7094, 1, 0, 0, 0, 7094, 743, 1, 0, 0, 0, 7095, 7093, 1, 0, 0, + 0, 7096, 7097, 3, 1434, 717, 0, 7097, 7098, 5, 10, 0, 0, 7098, 7099, 5, + 420, 0, 0, 7099, 7105, 1, 0, 0, 0, 7100, 7101, 3, 1434, 717, 0, 7101, 7102, + 5, 10, 0, 0, 7102, 7103, 3, 746, 373, 0, 7103, 7105, 1, 0, 0, 0, 7104, + 7096, 1, 0, 0, 0, 7104, 7100, 1, 0, 0, 0, 7105, 745, 1, 0, 0, 0, 7106, + 7112, 3, 646, 323, 0, 7107, 7112, 3, 1446, 723, 0, 7108, 7112, 3, 1328, + 664, 0, 7109, 7112, 3, 294, 147, 0, 7110, 7112, 3, 1412, 706, 0, 7111, + 7106, 1, 0, 0, 0, 7111, 7107, 1, 0, 0, 0, 7111, 7108, 1, 0, 0, 0, 7111, + 7109, 1, 0, 0, 0, 7111, 7110, 1, 0, 0, 0, 7112, 747, 1, 0, 0, 0, 7113, + 7114, 5, 157, 0, 0, 7114, 7115, 5, 372, 0, 0, 7115, 7116, 3, 526, 263, + 0, 7116, 7117, 5, 345, 0, 0, 7117, 7118, 5, 2, 0, 0, 7118, 7119, 3, 742, + 371, 0, 7119, 7120, 5, 3, 0, 0, 7120, 749, 1, 0, 0, 0, 7121, 7122, 5, 157, + 0, 0, 7122, 7123, 5, 155, 0, 0, 7123, 7124, 3, 656, 328, 0, 7124, 7125, + 5, 294, 0, 0, 7125, 7126, 5, 94, 0, 0, 7126, 7127, 3, 1422, 711, 0, 7127, + 7307, 1, 0, 0, 0, 7128, 7129, 5, 157, 0, 0, 7129, 7130, 5, 127, 0, 0, 7130, + 7131, 3, 526, 263, 0, 7131, 7132, 5, 294, 0, 0, 7132, 7133, 5, 94, 0, 0, + 7133, 7134, 3, 1422, 711, 0, 7134, 7307, 1, 0, 0, 0, 7135, 7136, 5, 157, + 0, 0, 7136, 7137, 5, 187, 0, 0, 7137, 7138, 3, 526, 263, 0, 7138, 7139, + 5, 294, 0, 0, 7139, 7140, 5, 94, 0, 0, 7140, 7141, 3, 1422, 711, 0, 7141, + 7307, 1, 0, 0, 0, 7142, 7143, 5, 157, 0, 0, 7143, 7144, 5, 194, 0, 0, 7144, + 7145, 3, 1394, 697, 0, 7145, 7146, 5, 294, 0, 0, 7146, 7147, 5, 94, 0, + 0, 7147, 7148, 3, 1422, 711, 0, 7148, 7307, 1, 0, 0, 0, 7149, 7150, 5, + 157, 0, 0, 7150, 7151, 5, 208, 0, 0, 7151, 7152, 3, 526, 263, 0, 7152, + 7153, 5, 294, 0, 0, 7153, 7154, 5, 94, 0, 0, 7154, 7155, 3, 1422, 711, + 0, 7155, 7307, 1, 0, 0, 0, 7156, 7157, 5, 157, 0, 0, 7157, 7158, 5, 230, + 0, 0, 7158, 7159, 3, 632, 316, 0, 7159, 7160, 5, 294, 0, 0, 7160, 7161, + 5, 94, 0, 0, 7161, 7162, 3, 1422, 711, 0, 7162, 7307, 1, 0, 0, 0, 7163, + 7165, 5, 157, 0, 0, 7164, 7166, 3, 310, 155, 0, 7165, 7164, 1, 0, 0, 0, + 7165, 7166, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7168, 5, 257, 0, + 0, 7168, 7169, 3, 1394, 697, 0, 7169, 7170, 5, 294, 0, 0, 7170, 7171, 5, + 94, 0, 0, 7171, 7172, 3, 1422, 711, 0, 7172, 7307, 1, 0, 0, 0, 7173, 7174, + 5, 157, 0, 0, 7174, 7175, 5, 258, 0, 0, 7175, 7176, 5, 286, 0, 0, 7176, + 7177, 3, 294, 147, 0, 7177, 7178, 5, 294, 0, 0, 7178, 7179, 5, 94, 0, 0, + 7179, 7180, 3, 1422, 711, 0, 7180, 7307, 1, 0, 0, 0, 7181, 7182, 5, 157, + 0, 0, 7182, 7183, 5, 290, 0, 0, 7183, 7184, 3, 694, 347, 0, 7184, 7185, + 5, 294, 0, 0, 7185, 7186, 5, 94, 0, 0, 7186, 7187, 3, 1422, 711, 0, 7187, + 7307, 1, 0, 0, 0, 7188, 7189, 5, 157, 0, 0, 7189, 7190, 5, 290, 0, 0, 7190, + 7191, 5, 175, 0, 0, 7191, 7192, 3, 526, 263, 0, 7192, 7193, 5, 100, 0, + 0, 7193, 7194, 3, 1394, 697, 0, 7194, 7195, 5, 294, 0, 0, 7195, 7196, 5, + 94, 0, 0, 7196, 7197, 3, 1422, 711, 0, 7197, 7307, 1, 0, 0, 0, 7198, 7199, + 5, 157, 0, 0, 7199, 7200, 5, 290, 0, 0, 7200, 7201, 5, 225, 0, 0, 7201, + 7202, 3, 526, 263, 0, 7202, 7203, 5, 100, 0, 0, 7203, 7204, 3, 1394, 697, + 0, 7204, 7205, 5, 294, 0, 0, 7205, 7206, 5, 94, 0, 0, 7206, 7207, 3, 1422, + 711, 0, 7207, 7307, 1, 0, 0, 0, 7208, 7209, 5, 157, 0, 0, 7209, 7210, 5, + 308, 0, 0, 7210, 7211, 3, 632, 316, 0, 7211, 7212, 5, 294, 0, 0, 7212, + 7213, 5, 94, 0, 0, 7213, 7214, 3, 1422, 711, 0, 7214, 7307, 1, 0, 0, 0, + 7215, 7216, 5, 157, 0, 0, 7216, 7217, 5, 463, 0, 0, 7217, 7218, 3, 632, + 316, 0, 7218, 7219, 5, 294, 0, 0, 7219, 7220, 5, 94, 0, 0, 7220, 7221, + 3, 1422, 711, 0, 7221, 7307, 1, 0, 0, 0, 7222, 7223, 5, 157, 0, 0, 7223, + 7224, 5, 335, 0, 0, 7224, 7225, 3, 1394, 697, 0, 7225, 7226, 5, 294, 0, + 0, 7226, 7227, 5, 94, 0, 0, 7227, 7228, 3, 1422, 711, 0, 7228, 7307, 1, + 0, 0, 0, 7229, 7230, 5, 157, 0, 0, 7230, 7231, 5, 372, 0, 0, 7231, 7232, + 3, 526, 263, 0, 7232, 7233, 5, 294, 0, 0, 7233, 7234, 5, 94, 0, 0, 7234, + 7235, 3, 1422, 711, 0, 7235, 7307, 1, 0, 0, 0, 7236, 7237, 5, 157, 0, 0, + 7237, 7238, 5, 363, 0, 0, 7238, 7239, 3, 1394, 697, 0, 7239, 7240, 5, 294, + 0, 0, 7240, 7241, 5, 94, 0, 0, 7241, 7242, 3, 1422, 711, 0, 7242, 7307, + 1, 0, 0, 0, 7243, 7244, 5, 157, 0, 0, 7244, 7245, 5, 354, 0, 0, 7245, 7246, + 3, 526, 263, 0, 7246, 7247, 5, 294, 0, 0, 7247, 7248, 5, 94, 0, 0, 7248, + 7249, 3, 1422, 711, 0, 7249, 7307, 1, 0, 0, 0, 7250, 7251, 5, 157, 0, 0, + 7251, 7252, 5, 367, 0, 0, 7252, 7253, 5, 337, 0, 0, 7253, 7254, 5, 204, + 0, 0, 7254, 7255, 3, 526, 263, 0, 7255, 7256, 5, 294, 0, 0, 7256, 7257, + 5, 94, 0, 0, 7257, 7258, 3, 1422, 711, 0, 7258, 7307, 1, 0, 0, 0, 7259, + 7260, 5, 157, 0, 0, 7260, 7261, 5, 367, 0, 0, 7261, 7262, 5, 337, 0, 0, + 7262, 7263, 5, 182, 0, 0, 7263, 7264, 3, 526, 263, 0, 7264, 7265, 5, 294, + 0, 0, 7265, 7266, 5, 94, 0, 0, 7266, 7267, 3, 1422, 711, 0, 7267, 7307, + 1, 0, 0, 0, 7268, 7269, 5, 157, 0, 0, 7269, 7270, 5, 63, 0, 0, 7270, 7271, + 5, 193, 0, 0, 7271, 7272, 5, 393, 0, 0, 7272, 7273, 3, 1394, 697, 0, 7273, + 7274, 5, 294, 0, 0, 7274, 7275, 5, 94, 0, 0, 7275, 7276, 3, 1422, 711, + 0, 7276, 7307, 1, 0, 0, 0, 7277, 7278, 5, 157, 0, 0, 7278, 7279, 5, 343, + 0, 0, 7279, 7280, 3, 1394, 697, 0, 7280, 7281, 5, 294, 0, 0, 7281, 7282, + 5, 94, 0, 0, 7282, 7283, 3, 1422, 711, 0, 7283, 7307, 1, 0, 0, 0, 7284, + 7285, 5, 157, 0, 0, 7285, 7286, 5, 217, 0, 0, 7286, 7287, 5, 369, 0, 0, + 7287, 7288, 3, 1394, 697, 0, 7288, 7289, 5, 294, 0, 0, 7289, 7290, 5, 94, + 0, 0, 7290, 7291, 3, 1422, 711, 0, 7291, 7307, 1, 0, 0, 0, 7292, 7293, + 5, 157, 0, 0, 7293, 7294, 5, 473, 0, 0, 7294, 7295, 3, 1394, 697, 0, 7295, + 7296, 5, 294, 0, 0, 7296, 7297, 5, 94, 0, 0, 7297, 7298, 3, 1422, 711, + 0, 7298, 7307, 1, 0, 0, 0, 7299, 7300, 5, 157, 0, 0, 7300, 7301, 5, 472, + 0, 0, 7301, 7302, 3, 1394, 697, 0, 7302, 7303, 5, 294, 0, 0, 7303, 7304, + 5, 94, 0, 0, 7304, 7305, 3, 1422, 711, 0, 7305, 7307, 1, 0, 0, 0, 7306, + 7121, 1, 0, 0, 0, 7306, 7128, 1, 0, 0, 0, 7306, 7135, 1, 0, 0, 0, 7306, + 7142, 1, 0, 0, 0, 7306, 7149, 1, 0, 0, 0, 7306, 7156, 1, 0, 0, 0, 7306, + 7163, 1, 0, 0, 0, 7306, 7173, 1, 0, 0, 0, 7306, 7181, 1, 0, 0, 0, 7306, + 7188, 1, 0, 0, 0, 7306, 7198, 1, 0, 0, 0, 7306, 7208, 1, 0, 0, 0, 7306, + 7215, 1, 0, 0, 0, 7306, 7222, 1, 0, 0, 0, 7306, 7229, 1, 0, 0, 0, 7306, + 7236, 1, 0, 0, 0, 7306, 7243, 1, 0, 0, 0, 7306, 7250, 1, 0, 0, 0, 7306, + 7259, 1, 0, 0, 0, 7306, 7268, 1, 0, 0, 0, 7306, 7277, 1, 0, 0, 0, 7306, + 7284, 1, 0, 0, 0, 7306, 7292, 1, 0, 0, 0, 7306, 7299, 1, 0, 0, 0, 7307, + 751, 1, 0, 0, 0, 7308, 7309, 5, 46, 0, 0, 7309, 7310, 5, 473, 0, 0, 7310, + 7312, 3, 1394, 697, 0, 7311, 7313, 3, 670, 335, 0, 7312, 7311, 1, 0, 0, + 0, 7312, 7313, 1, 0, 0, 0, 7313, 7332, 1, 0, 0, 0, 7314, 7315, 5, 46, 0, + 0, 7315, 7316, 5, 473, 0, 0, 7316, 7317, 3, 1394, 697, 0, 7317, 7318, 5, + 62, 0, 0, 7318, 7319, 5, 30, 0, 0, 7319, 7321, 5, 362, 0, 0, 7320, 7322, + 3, 670, 335, 0, 7321, 7320, 1, 0, 0, 0, 7321, 7322, 1, 0, 0, 0, 7322, 7332, + 1, 0, 0, 0, 7323, 7324, 5, 46, 0, 0, 7324, 7325, 5, 473, 0, 0, 7325, 7326, + 3, 1394, 697, 0, 7326, 7327, 5, 62, 0, 0, 7327, 7329, 3, 754, 377, 0, 7328, + 7330, 3, 670, 335, 0, 7329, 7328, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, + 7332, 1, 0, 0, 0, 7331, 7308, 1, 0, 0, 0, 7331, 7314, 1, 0, 0, 0, 7331, + 7323, 1, 0, 0, 0, 7332, 753, 1, 0, 0, 0, 7333, 7338, 3, 756, 378, 0, 7334, + 7335, 5, 6, 0, 0, 7335, 7337, 3, 756, 378, 0, 7336, 7334, 1, 0, 0, 0, 7337, + 7340, 1, 0, 0, 0, 7338, 7336, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, + 755, 1, 0, 0, 0, 7340, 7338, 1, 0, 0, 0, 7341, 7342, 5, 92, 0, 0, 7342, + 7344, 3, 1082, 541, 0, 7343, 7345, 3, 216, 108, 0, 7344, 7343, 1, 0, 0, + 0, 7344, 7345, 1, 0, 0, 0, 7345, 7347, 1, 0, 0, 0, 7346, 7348, 3, 758, + 379, 0, 7347, 7346, 1, 0, 0, 0, 7347, 7348, 1, 0, 0, 0, 7348, 7380, 1, + 0, 0, 0, 7349, 7350, 5, 92, 0, 0, 7350, 7351, 5, 68, 0, 0, 7351, 7354, + 5, 335, 0, 0, 7352, 7355, 3, 1426, 713, 0, 7353, 7355, 5, 130, 0, 0, 7354, + 7352, 1, 0, 0, 0, 7354, 7353, 1, 0, 0, 0, 7355, 7380, 1, 0, 0, 0, 7356, + 7358, 3, 1426, 713, 0, 7357, 7359, 3, 216, 108, 0, 7358, 7357, 1, 0, 0, + 0, 7358, 7359, 1, 0, 0, 0, 7359, 7361, 1, 0, 0, 0, 7360, 7362, 3, 758, + 379, 0, 7361, 7360, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 7380, 1, + 0, 0, 0, 7363, 7364, 3, 1426, 713, 0, 7364, 7366, 3, 1376, 688, 0, 7365, + 7367, 3, 216, 108, 0, 7366, 7365, 1, 0, 0, 0, 7366, 7367, 1, 0, 0, 0, 7367, + 7369, 1, 0, 0, 0, 7368, 7370, 3, 758, 379, 0, 7369, 7368, 1, 0, 0, 0, 7369, + 7370, 1, 0, 0, 0, 7370, 7380, 1, 0, 0, 0, 7371, 7373, 3, 1082, 541, 0, + 7372, 7374, 3, 216, 108, 0, 7373, 7372, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, + 0, 7374, 7376, 1, 0, 0, 0, 7375, 7377, 3, 758, 379, 0, 7376, 7375, 1, 0, + 0, 0, 7376, 7377, 1, 0, 0, 0, 7377, 7380, 1, 0, 0, 0, 7378, 7380, 5, 130, + 0, 0, 7379, 7341, 1, 0, 0, 0, 7379, 7349, 1, 0, 0, 0, 7379, 7356, 1, 0, + 0, 0, 7379, 7363, 1, 0, 0, 0, 7379, 7371, 1, 0, 0, 0, 7379, 7378, 1, 0, + 0, 0, 7380, 757, 1, 0, 0, 0, 7381, 7382, 5, 103, 0, 0, 7382, 7383, 5, 2, + 0, 0, 7383, 7384, 3, 1170, 585, 0, 7384, 7385, 5, 3, 0, 0, 7385, 759, 1, + 0, 0, 0, 7386, 7387, 5, 157, 0, 0, 7387, 7388, 5, 473, 0, 0, 7388, 7389, + 3, 1394, 697, 0, 7389, 7390, 5, 345, 0, 0, 7390, 7391, 3, 462, 231, 0, + 7391, 7411, 1, 0, 0, 0, 7392, 7393, 5, 157, 0, 0, 7393, 7394, 5, 473, 0, + 0, 7394, 7395, 3, 1394, 697, 0, 7395, 7396, 5, 152, 0, 0, 7396, 7397, 3, + 754, 377, 0, 7397, 7411, 1, 0, 0, 0, 7398, 7399, 5, 157, 0, 0, 7399, 7400, + 5, 473, 0, 0, 7400, 7401, 3, 1394, 697, 0, 7401, 7402, 5, 345, 0, 0, 7402, + 7403, 3, 754, 377, 0, 7403, 7411, 1, 0, 0, 0, 7404, 7405, 5, 157, 0, 0, + 7405, 7406, 5, 473, 0, 0, 7406, 7407, 3, 1394, 697, 0, 7407, 7408, 5, 210, + 0, 0, 7408, 7409, 3, 754, 377, 0, 7409, 7411, 1, 0, 0, 0, 7410, 7386, 1, + 0, 0, 0, 7410, 7392, 1, 0, 0, 0, 7410, 7398, 1, 0, 0, 0, 7410, 7404, 1, + 0, 0, 0, 7411, 761, 1, 0, 0, 0, 7412, 7413, 5, 46, 0, 0, 7413, 7414, 5, + 472, 0, 0, 7414, 7415, 3, 1394, 697, 0, 7415, 7416, 5, 183, 0, 0, 7416, + 7417, 3, 1412, 706, 0, 7417, 7418, 5, 473, 0, 0, 7418, 7420, 3, 764, 382, + 0, 7419, 7421, 3, 670, 335, 0, 7420, 7419, 1, 0, 0, 0, 7420, 7421, 1, 0, + 0, 0, 7421, 763, 1, 0, 0, 0, 7422, 7427, 3, 766, 383, 0, 7423, 7424, 5, + 6, 0, 0, 7424, 7426, 3, 766, 383, 0, 7425, 7423, 1, 0, 0, 0, 7426, 7429, + 1, 0, 0, 0, 7427, 7425, 1, 0, 0, 0, 7427, 7428, 1, 0, 0, 0, 7428, 765, + 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7431, 3, 1434, 717, 0, 7431, + 767, 1, 0, 0, 0, 7432, 7433, 5, 157, 0, 0, 7433, 7434, 5, 472, 0, 0, 7434, + 7435, 3, 1394, 697, 0, 7435, 7436, 5, 345, 0, 0, 7436, 7437, 3, 462, 231, + 0, 7437, 7478, 1, 0, 0, 0, 7438, 7439, 5, 157, 0, 0, 7439, 7440, 5, 472, + 0, 0, 7440, 7441, 3, 1394, 697, 0, 7441, 7442, 5, 183, 0, 0, 7442, 7443, + 3, 1412, 706, 0, 7443, 7478, 1, 0, 0, 0, 7444, 7445, 5, 157, 0, 0, 7445, + 7446, 5, 472, 0, 0, 7446, 7447, 3, 1394, 697, 0, 7447, 7448, 5, 317, 0, + 0, 7448, 7450, 5, 473, 0, 0, 7449, 7451, 3, 670, 335, 0, 7450, 7449, 1, + 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7478, 1, 0, 0, 0, 7452, 7453, 5, + 157, 0, 0, 7453, 7454, 5, 472, 0, 0, 7454, 7455, 3, 1394, 697, 0, 7455, + 7456, 5, 345, 0, 0, 7456, 7457, 5, 473, 0, 0, 7457, 7459, 3, 764, 382, + 0, 7458, 7460, 3, 670, 335, 0, 7459, 7458, 1, 0, 0, 0, 7459, 7460, 1, 0, + 0, 0, 7460, 7478, 1, 0, 0, 0, 7461, 7462, 5, 157, 0, 0, 7462, 7463, 5, + 472, 0, 0, 7463, 7464, 3, 1394, 697, 0, 7464, 7465, 5, 212, 0, 0, 7465, + 7478, 1, 0, 0, 0, 7466, 7467, 5, 157, 0, 0, 7467, 7468, 5, 472, 0, 0, 7468, + 7469, 3, 1394, 697, 0, 7469, 7470, 5, 205, 0, 0, 7470, 7478, 1, 0, 0, 0, + 7471, 7472, 5, 157, 0, 0, 7472, 7473, 5, 472, 0, 0, 7473, 7474, 3, 1394, + 697, 0, 7474, 7475, 5, 486, 0, 0, 7475, 7476, 3, 462, 231, 0, 7476, 7478, + 1, 0, 0, 0, 7477, 7432, 1, 0, 0, 0, 7477, 7438, 1, 0, 0, 0, 7477, 7444, + 1, 0, 0, 0, 7477, 7452, 1, 0, 0, 0, 7477, 7461, 1, 0, 0, 0, 7477, 7466, + 1, 0, 0, 0, 7477, 7471, 1, 0, 0, 0, 7478, 769, 1, 0, 0, 0, 7479, 7480, + 5, 210, 0, 0, 7480, 7481, 5, 472, 0, 0, 7481, 7483, 3, 1394, 697, 0, 7482, + 7484, 3, 108, 54, 0, 7483, 7482, 1, 0, 0, 0, 7483, 7484, 1, 0, 0, 0, 7484, + 7494, 1, 0, 0, 0, 7485, 7486, 5, 210, 0, 0, 7486, 7487, 5, 472, 0, 0, 7487, + 7488, 5, 239, 0, 0, 7488, 7489, 5, 409, 0, 0, 7489, 7491, 3, 1394, 697, + 0, 7490, 7492, 3, 108, 54, 0, 7491, 7490, 1, 0, 0, 0, 7491, 7492, 1, 0, + 0, 0, 7492, 7494, 1, 0, 0, 0, 7493, 7479, 1, 0, 0, 0, 7493, 7485, 1, 0, + 0, 0, 7494, 771, 1, 0, 0, 0, 7495, 7497, 5, 46, 0, 0, 7496, 7498, 3, 624, + 312, 0, 7497, 7496, 1, 0, 0, 0, 7497, 7498, 1, 0, 0, 0, 7498, 7499, 1, + 0, 0, 0, 7499, 7500, 5, 333, 0, 0, 7500, 7501, 3, 1394, 697, 0, 7501, 7502, + 5, 36, 0, 0, 7502, 7503, 5, 80, 0, 0, 7503, 7504, 3, 782, 391, 0, 7504, + 7505, 5, 94, 0, 0, 7505, 7507, 3, 1390, 695, 0, 7506, 7508, 3, 1102, 551, + 0, 7507, 7506, 1, 0, 0, 0, 7507, 7508, 1, 0, 0, 0, 7508, 7509, 1, 0, 0, + 0, 7509, 7511, 5, 57, 0, 0, 7510, 7512, 3, 784, 392, 0, 7511, 7510, 1, + 0, 0, 0, 7511, 7512, 1, 0, 0, 0, 7512, 7513, 1, 0, 0, 0, 7513, 7514, 3, + 774, 387, 0, 7514, 773, 1, 0, 0, 0, 7515, 7522, 5, 282, 0, 0, 7516, 7522, + 3, 778, 389, 0, 7517, 7518, 5, 2, 0, 0, 7518, 7519, 3, 776, 388, 0, 7519, + 7520, 5, 3, 0, 0, 7520, 7522, 1, 0, 0, 0, 7521, 7515, 1, 0, 0, 0, 7521, + 7516, 1, 0, 0, 0, 7521, 7517, 1, 0, 0, 0, 7522, 775, 1, 0, 0, 0, 7523, + 7525, 3, 780, 390, 0, 7524, 7523, 1, 0, 0, 0, 7524, 7525, 1, 0, 0, 0, 7525, + 7532, 1, 0, 0, 0, 7526, 7528, 5, 7, 0, 0, 7527, 7529, 3, 780, 390, 0, 7528, + 7527, 1, 0, 0, 0, 7528, 7529, 1, 0, 0, 0, 7529, 7531, 1, 0, 0, 0, 7530, + 7526, 1, 0, 0, 0, 7531, 7534, 1, 0, 0, 0, 7532, 7530, 1, 0, 0, 0, 7532, + 7533, 1, 0, 0, 0, 7533, 777, 1, 0, 0, 0, 7534, 7532, 1, 0, 0, 0, 7535, + 7541, 3, 968, 484, 0, 7536, 7541, 3, 910, 455, 0, 7537, 7541, 3, 950, 475, + 0, 7538, 7541, 3, 936, 468, 0, 7539, 7541, 3, 786, 393, 0, 7540, 7535, + 1, 0, 0, 0, 7540, 7536, 1, 0, 0, 0, 7540, 7537, 1, 0, 0, 0, 7540, 7538, + 1, 0, 0, 0, 7540, 7539, 1, 0, 0, 0, 7541, 779, 1, 0, 0, 0, 7542, 7543, + 3, 778, 389, 0, 7543, 781, 1, 0, 0, 0, 7544, 7545, 7, 33, 0, 0, 7545, 783, + 1, 0, 0, 0, 7546, 7547, 7, 34, 0, 0, 7547, 785, 1, 0, 0, 0, 7548, 7549, + 5, 283, 0, 0, 7549, 7551, 3, 1426, 713, 0, 7550, 7552, 3, 788, 394, 0, + 7551, 7550, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 787, 1, 0, 0, 0, + 7553, 7554, 5, 6, 0, 0, 7554, 7555, 3, 1412, 706, 0, 7555, 789, 1, 0, 0, + 0, 7556, 7557, 5, 262, 0, 0, 7557, 7558, 3, 1426, 713, 0, 7558, 791, 1, + 0, 0, 0, 7559, 7560, 5, 378, 0, 0, 7560, 7564, 3, 1426, 713, 0, 7561, 7562, + 5, 378, 0, 0, 7562, 7564, 5, 9, 0, 0, 7563, 7559, 1, 0, 0, 0, 7563, 7561, + 1, 0, 0, 0, 7564, 793, 1, 0, 0, 0, 7565, 7567, 5, 148, 0, 0, 7566, 7568, + 3, 796, 398, 0, 7567, 7566, 1, 0, 0, 0, 7567, 7568, 1, 0, 0, 0, 7568, 7570, + 1, 0, 0, 0, 7569, 7571, 3, 804, 402, 0, 7570, 7569, 1, 0, 0, 0, 7570, 7571, + 1, 0, 0, 0, 7571, 7635, 1, 0, 0, 0, 7572, 7574, 5, 165, 0, 0, 7573, 7575, + 3, 796, 398, 0, 7574, 7573, 1, 0, 0, 0, 7574, 7575, 1, 0, 0, 0, 7575, 7577, + 1, 0, 0, 0, 7576, 7578, 3, 802, 401, 0, 7577, 7576, 1, 0, 0, 0, 7577, 7578, + 1, 0, 0, 0, 7578, 7635, 1, 0, 0, 0, 7579, 7580, 5, 352, 0, 0, 7580, 7582, + 5, 368, 0, 0, 7581, 7583, 3, 802, 401, 0, 7582, 7581, 1, 0, 0, 0, 7582, + 7583, 1, 0, 0, 0, 7583, 7635, 1, 0, 0, 0, 7584, 7586, 5, 180, 0, 0, 7585, + 7587, 3, 796, 398, 0, 7586, 7585, 1, 0, 0, 0, 7586, 7587, 1, 0, 0, 0, 7587, + 7589, 1, 0, 0, 0, 7588, 7590, 3, 804, 402, 0, 7589, 7588, 1, 0, 0, 0, 7589, + 7590, 1, 0, 0, 0, 7590, 7635, 1, 0, 0, 0, 7591, 7593, 5, 475, 0, 0, 7592, + 7594, 3, 796, 398, 0, 7593, 7592, 1, 0, 0, 0, 7593, 7594, 1, 0, 0, 0, 7594, + 7596, 1, 0, 0, 0, 7595, 7597, 3, 804, 402, 0, 7596, 7595, 1, 0, 0, 0, 7596, + 7597, 1, 0, 0, 0, 7597, 7635, 1, 0, 0, 0, 7598, 7600, 5, 331, 0, 0, 7599, + 7601, 3, 796, 398, 0, 7600, 7599, 1, 0, 0, 0, 7600, 7601, 1, 0, 0, 0, 7601, + 7603, 1, 0, 0, 0, 7602, 7604, 3, 804, 402, 0, 7603, 7602, 1, 0, 0, 0, 7603, + 7604, 1, 0, 0, 0, 7604, 7635, 1, 0, 0, 0, 7605, 7606, 5, 334, 0, 0, 7606, + 7635, 3, 1426, 713, 0, 7607, 7608, 5, 320, 0, 0, 7608, 7609, 5, 334, 0, + 0, 7609, 7635, 3, 1426, 713, 0, 7610, 7611, 5, 320, 0, 0, 7611, 7635, 3, + 1426, 713, 0, 7612, 7614, 5, 331, 0, 0, 7613, 7615, 3, 796, 398, 0, 7614, + 7613, 1, 0, 0, 0, 7614, 7615, 1, 0, 0, 0, 7615, 7616, 1, 0, 0, 0, 7616, + 7617, 5, 94, 0, 0, 7617, 7618, 5, 334, 0, 0, 7618, 7635, 3, 1426, 713, + 0, 7619, 7621, 5, 331, 0, 0, 7620, 7622, 3, 796, 398, 0, 7621, 7620, 1, + 0, 0, 0, 7621, 7622, 1, 0, 0, 0, 7622, 7623, 1, 0, 0, 0, 7623, 7624, 5, + 94, 0, 0, 7624, 7635, 3, 1426, 713, 0, 7625, 7626, 5, 302, 0, 0, 7626, + 7627, 5, 368, 0, 0, 7627, 7635, 3, 1412, 706, 0, 7628, 7629, 5, 180, 0, + 0, 7629, 7630, 5, 303, 0, 0, 7630, 7635, 3, 1412, 706, 0, 7631, 7632, 5, + 331, 0, 0, 7632, 7633, 5, 303, 0, 0, 7633, 7635, 3, 1412, 706, 0, 7634, + 7565, 1, 0, 0, 0, 7634, 7572, 1, 0, 0, 0, 7634, 7579, 1, 0, 0, 0, 7634, + 7584, 1, 0, 0, 0, 7634, 7591, 1, 0, 0, 0, 7634, 7598, 1, 0, 0, 0, 7634, + 7605, 1, 0, 0, 0, 7634, 7607, 1, 0, 0, 0, 7634, 7610, 1, 0, 0, 0, 7634, + 7612, 1, 0, 0, 0, 7634, 7619, 1, 0, 0, 0, 7634, 7625, 1, 0, 0, 0, 7634, + 7628, 1, 0, 0, 0, 7634, 7631, 1, 0, 0, 0, 7635, 795, 1, 0, 0, 0, 7636, + 7637, 7, 35, 0, 0, 7637, 797, 1, 0, 0, 0, 7638, 7639, 5, 254, 0, 0, 7639, + 7640, 5, 261, 0, 0, 7640, 7649, 3, 64, 32, 0, 7641, 7642, 5, 312, 0, 0, + 7642, 7649, 5, 81, 0, 0, 7643, 7644, 5, 312, 0, 0, 7644, 7649, 5, 394, + 0, 0, 7645, 7649, 5, 54, 0, 0, 7646, 7647, 5, 77, 0, 0, 7647, 7649, 5, + 54, 0, 0, 7648, 7638, 1, 0, 0, 0, 7648, 7641, 1, 0, 0, 0, 7648, 7643, 1, + 0, 0, 0, 7648, 7645, 1, 0, 0, 0, 7648, 7646, 1, 0, 0, 0, 7649, 799, 1, + 0, 0, 0, 7650, 7657, 3, 798, 399, 0, 7651, 7653, 5, 6, 0, 0, 7652, 7651, + 1, 0, 0, 0, 7652, 7653, 1, 0, 0, 0, 7653, 7654, 1, 0, 0, 0, 7654, 7656, + 3, 798, 399, 0, 7655, 7652, 1, 0, 0, 0, 7656, 7659, 1, 0, 0, 0, 7657, 7655, + 1, 0, 0, 0, 7657, 7658, 1, 0, 0, 0, 7658, 801, 1, 0, 0, 0, 7659, 7657, + 1, 0, 0, 0, 7660, 7661, 3, 800, 400, 0, 7661, 803, 1, 0, 0, 0, 7662, 7664, + 5, 33, 0, 0, 7663, 7665, 5, 281, 0, 0, 7664, 7663, 1, 0, 0, 0, 7664, 7665, + 1, 0, 0, 0, 7665, 7666, 1, 0, 0, 0, 7666, 7667, 5, 172, 0, 0, 7667, 805, + 1, 0, 0, 0, 7668, 7671, 5, 46, 0, 0, 7669, 7670, 5, 82, 0, 0, 7670, 7672, + 5, 323, 0, 0, 7671, 7669, 1, 0, 0, 0, 7671, 7672, 1, 0, 0, 0, 7672, 7674, + 1, 0, 0, 0, 7673, 7675, 3, 174, 87, 0, 7674, 7673, 1, 0, 0, 0, 7674, 7675, + 1, 0, 0, 0, 7675, 7693, 1, 0, 0, 0, 7676, 7677, 5, 388, 0, 0, 7677, 7679, + 3, 1390, 695, 0, 7678, 7680, 3, 216, 108, 0, 7679, 7678, 1, 0, 0, 0, 7679, + 7680, 1, 0, 0, 0, 7680, 7682, 1, 0, 0, 0, 7681, 7683, 3, 118, 59, 0, 7682, + 7681, 1, 0, 0, 0, 7682, 7683, 1, 0, 0, 0, 7683, 7694, 1, 0, 0, 0, 7684, + 7685, 5, 315, 0, 0, 7685, 7686, 5, 388, 0, 0, 7686, 7687, 3, 1390, 695, + 0, 7687, 7688, 5, 2, 0, 0, 7688, 7689, 3, 218, 109, 0, 7689, 7691, 5, 3, + 0, 0, 7690, 7692, 3, 118, 59, 0, 7691, 7690, 1, 0, 0, 0, 7691, 7692, 1, + 0, 0, 0, 7692, 7694, 1, 0, 0, 0, 7693, 7676, 1, 0, 0, 0, 7693, 7684, 1, + 0, 0, 0, 7694, 7695, 1, 0, 0, 0, 7695, 7696, 5, 36, 0, 0, 7696, 7698, 3, + 968, 484, 0, 7697, 7699, 3, 808, 404, 0, 7698, 7697, 1, 0, 0, 0, 7698, + 7699, 1, 0, 0, 0, 7699, 807, 1, 0, 0, 0, 7700, 7702, 5, 105, 0, 0, 7701, + 7703, 7, 36, 0, 0, 7702, 7701, 1, 0, 0, 0, 7702, 7703, 1, 0, 0, 0, 7703, + 7704, 1, 0, 0, 0, 7704, 7705, 5, 42, 0, 0, 7705, 7706, 5, 291, 0, 0, 7706, + 809, 1, 0, 0, 0, 7707, 7708, 5, 263, 0, 0, 7708, 7709, 3, 1398, 699, 0, + 7709, 811, 1, 0, 0, 0, 7710, 7711, 5, 46, 0, 0, 7711, 7712, 5, 194, 0, + 0, 7712, 7714, 3, 1394, 697, 0, 7713, 7715, 3, 16, 8, 0, 7714, 7713, 1, + 0, 0, 0, 7714, 7715, 1, 0, 0, 0, 7715, 7717, 1, 0, 0, 0, 7716, 7718, 3, + 814, 407, 0, 7717, 7716, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 813, + 1, 0, 0, 0, 7719, 7720, 3, 816, 408, 0, 7720, 815, 1, 0, 0, 0, 7721, 7723, + 3, 818, 409, 0, 7722, 7721, 1, 0, 0, 0, 7723, 7724, 1, 0, 0, 0, 7724, 7722, + 1, 0, 0, 0, 7724, 7725, 1, 0, 0, 0, 7725, 817, 1, 0, 0, 0, 7726, 7728, + 3, 820, 410, 0, 7727, 7729, 3, 822, 411, 0, 7728, 7727, 1, 0, 0, 0, 7728, + 7729, 1, 0, 0, 0, 7729, 7733, 1, 0, 0, 0, 7730, 7734, 3, 1418, 709, 0, + 7731, 7734, 3, 66, 33, 0, 7732, 7734, 5, 53, 0, 0, 7733, 7730, 1, 0, 0, + 0, 7733, 7731, 1, 0, 0, 0, 7733, 7732, 1, 0, 0, 0, 7734, 819, 1, 0, 0, + 0, 7735, 7744, 3, 1436, 718, 0, 7736, 7737, 5, 183, 0, 0, 7737, 7744, 5, + 74, 0, 0, 7738, 7744, 5, 213, 0, 0, 7739, 7744, 5, 265, 0, 0, 7740, 7744, + 5, 294, 0, 0, 7741, 7744, 5, 363, 0, 0, 7742, 7744, 5, 365, 0, 0, 7743, + 7735, 1, 0, 0, 0, 7743, 7736, 1, 0, 0, 0, 7743, 7738, 1, 0, 0, 0, 7743, + 7739, 1, 0, 0, 0, 7743, 7740, 1, 0, 0, 0, 7743, 7741, 1, 0, 0, 0, 7743, + 7742, 1, 0, 0, 0, 7744, 821, 1, 0, 0, 0, 7745, 7746, 5, 10, 0, 0, 7746, + 823, 1, 0, 0, 0, 7747, 7748, 5, 157, 0, 0, 7748, 7749, 5, 194, 0, 0, 7749, + 7763, 3, 1394, 697, 0, 7750, 7752, 5, 105, 0, 0, 7751, 7753, 3, 814, 407, + 0, 7752, 7751, 1, 0, 0, 0, 7752, 7753, 1, 0, 0, 0, 7753, 7764, 1, 0, 0, + 0, 7754, 7756, 3, 814, 407, 0, 7755, 7754, 1, 0, 0, 0, 7755, 7756, 1, 0, + 0, 0, 7756, 7764, 1, 0, 0, 0, 7757, 7758, 5, 345, 0, 0, 7758, 7759, 5, + 363, 0, 0, 7759, 7764, 3, 1394, 697, 0, 7760, 7761, 5, 317, 0, 0, 7761, + 7762, 5, 127, 0, 0, 7762, 7764, 5, 387, 0, 0, 7763, 7750, 1, 0, 0, 0, 7763, + 7755, 1, 0, 0, 0, 7763, 7757, 1, 0, 0, 0, 7763, 7760, 1, 0, 0, 0, 7764, + 825, 1, 0, 0, 0, 7765, 7766, 5, 157, 0, 0, 7766, 7767, 5, 194, 0, 0, 7767, + 7768, 3, 1394, 697, 0, 7768, 7769, 3, 80, 40, 0, 7769, 827, 1, 0, 0, 0, + 7770, 7771, 5, 210, 0, 0, 7771, 7774, 5, 194, 0, 0, 7772, 7773, 5, 239, + 0, 0, 7773, 7775, 5, 409, 0, 0, 7774, 7772, 1, 0, 0, 0, 7774, 7775, 1, + 0, 0, 0, 7775, 7776, 1, 0, 0, 0, 7776, 7784, 3, 1394, 697, 0, 7777, 7779, + 3, 16, 8, 0, 7778, 7777, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 7780, + 1, 0, 0, 0, 7780, 7781, 5, 2, 0, 0, 7781, 7782, 3, 830, 415, 0, 7782, 7783, + 5, 3, 0, 0, 7783, 7785, 1, 0, 0, 0, 7784, 7778, 1, 0, 0, 0, 7784, 7785, + 1, 0, 0, 0, 7785, 829, 1, 0, 0, 0, 7786, 7791, 3, 832, 416, 0, 7787, 7788, + 5, 6, 0, 0, 7788, 7790, 3, 832, 416, 0, 7789, 7787, 1, 0, 0, 0, 7790, 7793, + 1, 0, 0, 0, 7791, 7789, 1, 0, 0, 0, 7791, 7792, 1, 0, 0, 0, 7792, 831, + 1, 0, 0, 0, 7793, 7791, 1, 0, 0, 0, 7794, 7795, 5, 228, 0, 0, 7795, 833, + 1, 0, 0, 0, 7796, 7797, 5, 157, 0, 0, 7797, 7798, 5, 127, 0, 0, 7798, 7799, + 3, 526, 263, 0, 7799, 7800, 5, 317, 0, 0, 7800, 7801, 5, 387, 0, 0, 7801, + 835, 1, 0, 0, 0, 7802, 7803, 5, 157, 0, 0, 7803, 7804, 5, 361, 0, 0, 7804, + 7805, 7, 37, 0, 0, 7805, 7806, 3, 54, 27, 0, 7806, 837, 1, 0, 0, 0, 7807, + 7808, 5, 46, 0, 0, 7808, 7809, 5, 208, 0, 0, 7809, 7811, 3, 526, 263, 0, + 7810, 7812, 3, 842, 421, 0, 7811, 7810, 1, 0, 0, 0, 7811, 7812, 1, 0, 0, + 0, 7812, 7813, 1, 0, 0, 0, 7813, 7814, 3, 1126, 563, 0, 7814, 7815, 3, + 192, 96, 0, 7815, 839, 1, 0, 0, 0, 7816, 7817, 5, 157, 0, 0, 7817, 7818, + 5, 208, 0, 0, 7818, 7841, 3, 526, 263, 0, 7819, 7842, 3, 106, 53, 0, 7820, + 7821, 5, 210, 0, 0, 7821, 7822, 5, 77, 0, 0, 7822, 7842, 5, 78, 0, 0, 7823, + 7824, 5, 345, 0, 0, 7824, 7825, 5, 77, 0, 0, 7825, 7842, 5, 78, 0, 0, 7826, + 7827, 5, 152, 0, 0, 7827, 7842, 3, 210, 105, 0, 7828, 7829, 5, 210, 0, + 0, 7829, 7832, 5, 45, 0, 0, 7830, 7831, 5, 239, 0, 0, 7831, 7833, 5, 409, + 0, 0, 7832, 7830, 1, 0, 0, 0, 7832, 7833, 1, 0, 0, 0, 7833, 7834, 1, 0, + 0, 0, 7834, 7836, 3, 1394, 697, 0, 7835, 7837, 3, 108, 54, 0, 7836, 7835, + 1, 0, 0, 0, 7836, 7837, 1, 0, 0, 0, 7837, 7842, 1, 0, 0, 0, 7838, 7839, + 5, 384, 0, 0, 7839, 7840, 5, 45, 0, 0, 7840, 7842, 3, 1394, 697, 0, 7841, + 7819, 1, 0, 0, 0, 7841, 7820, 1, 0, 0, 0, 7841, 7823, 1, 0, 0, 0, 7841, + 7826, 1, 0, 0, 0, 7841, 7828, 1, 0, 0, 0, 7841, 7838, 1, 0, 0, 0, 7842, + 841, 1, 0, 0, 0, 7843, 7844, 5, 36, 0, 0, 7844, 843, 1, 0, 0, 0, 7845, + 7846, 5, 157, 0, 0, 7846, 7847, 5, 367, 0, 0, 7847, 7848, 5, 337, 0, 0, + 7848, 7849, 5, 204, 0, 0, 7849, 7850, 3, 526, 263, 0, 7850, 7851, 3, 462, + 231, 0, 7851, 845, 1, 0, 0, 0, 7852, 7853, 5, 157, 0, 0, 7853, 7854, 5, + 367, 0, 0, 7854, 7855, 5, 337, 0, 0, 7855, 7856, 5, 182, 0, 0, 7856, 7857, + 3, 526, 263, 0, 7857, 7858, 5, 152, 0, 0, 7858, 7859, 5, 267, 0, 0, 7859, + 7860, 5, 62, 0, 0, 7860, 7861, 3, 1392, 696, 0, 7861, 7862, 3, 848, 424, + 0, 7862, 7863, 3, 524, 262, 0, 7863, 7925, 1, 0, 0, 0, 7864, 7865, 5, 157, + 0, 0, 7865, 7866, 5, 367, 0, 0, 7866, 7867, 5, 337, 0, 0, 7867, 7868, 5, + 182, 0, 0, 7868, 7869, 3, 526, 263, 0, 7869, 7870, 5, 157, 0, 0, 7870, + 7871, 5, 267, 0, 0, 7871, 7872, 5, 62, 0, 0, 7872, 7873, 3, 1392, 696, + 0, 7873, 7874, 3, 848, 424, 0, 7874, 7875, 3, 524, 262, 0, 7875, 7925, + 1, 0, 0, 0, 7876, 7877, 5, 157, 0, 0, 7877, 7878, 5, 367, 0, 0, 7878, 7879, + 5, 337, 0, 0, 7879, 7880, 5, 182, 0, 0, 7880, 7881, 3, 526, 263, 0, 7881, + 7882, 5, 157, 0, 0, 7882, 7883, 5, 267, 0, 0, 7883, 7884, 5, 323, 0, 0, + 7884, 7885, 3, 526, 263, 0, 7885, 7886, 3, 848, 424, 0, 7886, 7887, 3, + 526, 263, 0, 7887, 7925, 1, 0, 0, 0, 7888, 7889, 5, 157, 0, 0, 7889, 7890, + 5, 367, 0, 0, 7890, 7891, 5, 337, 0, 0, 7891, 7892, 5, 182, 0, 0, 7892, + 7893, 3, 526, 263, 0, 7893, 7894, 5, 157, 0, 0, 7894, 7895, 5, 267, 0, + 0, 7895, 7896, 5, 62, 0, 0, 7896, 7897, 3, 1392, 696, 0, 7897, 7898, 5, + 323, 0, 0, 7898, 7899, 3, 526, 263, 0, 7899, 7900, 3, 848, 424, 0, 7900, + 7901, 3, 526, 263, 0, 7901, 7925, 1, 0, 0, 0, 7902, 7903, 5, 157, 0, 0, + 7903, 7904, 5, 367, 0, 0, 7904, 7905, 5, 337, 0, 0, 7905, 7906, 5, 182, + 0, 0, 7906, 7907, 3, 526, 263, 0, 7907, 7908, 5, 210, 0, 0, 7908, 7909, + 5, 267, 0, 0, 7909, 7910, 5, 62, 0, 0, 7910, 7911, 3, 1392, 696, 0, 7911, + 7925, 1, 0, 0, 0, 7912, 7913, 5, 157, 0, 0, 7913, 7914, 5, 367, 0, 0, 7914, + 7915, 5, 337, 0, 0, 7915, 7916, 5, 182, 0, 0, 7916, 7917, 3, 526, 263, + 0, 7917, 7918, 5, 210, 0, 0, 7918, 7919, 5, 267, 0, 0, 7919, 7920, 5, 239, + 0, 0, 7920, 7921, 5, 409, 0, 0, 7921, 7922, 5, 62, 0, 0, 7922, 7923, 3, + 1392, 696, 0, 7923, 7925, 1, 0, 0, 0, 7924, 7852, 1, 0, 0, 0, 7924, 7864, + 1, 0, 0, 0, 7924, 7876, 1, 0, 0, 0, 7924, 7888, 1, 0, 0, 0, 7924, 7902, + 1, 0, 0, 0, 7924, 7912, 1, 0, 0, 0, 7925, 847, 1, 0, 0, 0, 7926, 7927, + 5, 105, 0, 0, 7927, 849, 1, 0, 0, 0, 7928, 7930, 5, 46, 0, 0, 7929, 7931, + 3, 490, 245, 0, 7930, 7929, 1, 0, 0, 0, 7930, 7931, 1, 0, 0, 0, 7931, 7932, + 1, 0, 0, 0, 7932, 7933, 5, 187, 0, 0, 7933, 7934, 3, 526, 263, 0, 7934, + 7935, 5, 62, 0, 0, 7935, 7936, 3, 1412, 706, 0, 7936, 7937, 5, 94, 0, 0, + 7937, 7938, 3, 1412, 706, 0, 7938, 7939, 5, 64, 0, 0, 7939, 7940, 3, 526, + 263, 0, 7940, 851, 1, 0, 0, 0, 7941, 7943, 5, 177, 0, 0, 7942, 7944, 3, + 872, 436, 0, 7943, 7942, 1, 0, 0, 0, 7943, 7944, 1, 0, 0, 0, 7944, 7945, + 1, 0, 0, 0, 7945, 7947, 3, 1390, 695, 0, 7946, 7948, 3, 854, 427, 0, 7947, + 7946, 1, 0, 0, 0, 7947, 7948, 1, 0, 0, 0, 7948, 7962, 1, 0, 0, 0, 7949, + 7951, 5, 177, 0, 0, 7950, 7952, 3, 872, 436, 0, 7951, 7950, 1, 0, 0, 0, + 7951, 7952, 1, 0, 0, 0, 7952, 7962, 1, 0, 0, 0, 7953, 7955, 5, 177, 0, + 0, 7954, 7956, 3, 872, 436, 0, 7955, 7954, 1, 0, 0, 0, 7955, 7956, 1, 0, + 0, 0, 7956, 7957, 1, 0, 0, 0, 7957, 7958, 3, 1394, 697, 0, 7958, 7959, + 5, 80, 0, 0, 7959, 7960, 3, 1390, 695, 0, 7960, 7962, 1, 0, 0, 0, 7961, + 7941, 1, 0, 0, 0, 7961, 7949, 1, 0, 0, 0, 7961, 7953, 1, 0, 0, 0, 7962, + 853, 1, 0, 0, 0, 7963, 7964, 5, 100, 0, 0, 7964, 7965, 3, 1394, 697, 0, + 7965, 855, 1, 0, 0, 0, 7966, 7968, 5, 382, 0, 0, 7967, 7969, 3, 874, 437, + 0, 7968, 7967, 1, 0, 0, 0, 7968, 7969, 1, 0, 0, 0, 7969, 7971, 1, 0, 0, + 0, 7970, 7972, 3, 876, 438, 0, 7971, 7970, 1, 0, 0, 0, 7971, 7972, 1, 0, + 0, 0, 7972, 7974, 1, 0, 0, 0, 7973, 7975, 3, 872, 436, 0, 7974, 7973, 1, + 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 7977, 1, 0, 0, 0, 7976, 7978, 3, + 870, 435, 0, 7977, 7976, 1, 0, 0, 0, 7977, 7978, 1, 0, 0, 0, 7978, 7980, + 1, 0, 0, 0, 7979, 7981, 3, 884, 442, 0, 7980, 7979, 1, 0, 0, 0, 7980, 7981, + 1, 0, 0, 0, 7981, 7990, 1, 0, 0, 0, 7982, 7983, 5, 382, 0, 0, 7983, 7984, + 5, 2, 0, 0, 7984, 7985, 3, 860, 430, 0, 7985, 7987, 5, 3, 0, 0, 7986, 7988, + 3, 884, 442, 0, 7987, 7986, 1, 0, 0, 0, 7987, 7988, 1, 0, 0, 0, 7988, 7990, + 1, 0, 0, 0, 7989, 7966, 1, 0, 0, 0, 7989, 7982, 1, 0, 0, 0, 7990, 857, + 1, 0, 0, 0, 7991, 7993, 3, 862, 431, 0, 7992, 7994, 3, 872, 436, 0, 7993, + 7992, 1, 0, 0, 0, 7993, 7994, 1, 0, 0, 0, 7994, 7996, 1, 0, 0, 0, 7995, + 7997, 3, 884, 442, 0, 7996, 7995, 1, 0, 0, 0, 7996, 7997, 1, 0, 0, 0, 7997, + 8006, 1, 0, 0, 0, 7998, 7999, 3, 862, 431, 0, 7999, 8000, 5, 2, 0, 0, 8000, + 8001, 3, 860, 430, 0, 8001, 8003, 5, 3, 0, 0, 8002, 8004, 3, 884, 442, + 0, 8003, 8002, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8006, 1, 0, 0, + 0, 8005, 7991, 1, 0, 0, 0, 8005, 7998, 1, 0, 0, 0, 8006, 859, 1, 0, 0, + 0, 8007, 8012, 3, 864, 432, 0, 8008, 8009, 5, 6, 0, 0, 8009, 8011, 3, 864, + 432, 0, 8010, 8008, 1, 0, 0, 0, 8011, 8014, 1, 0, 0, 0, 8012, 8010, 1, + 0, 0, 0, 8012, 8013, 1, 0, 0, 0, 8013, 861, 1, 0, 0, 0, 8014, 8012, 1, + 0, 0, 0, 8015, 8016, 7, 38, 0, 0, 8016, 863, 1, 0, 0, 0, 8017, 8019, 3, + 866, 433, 0, 8018, 8020, 3, 868, 434, 0, 8019, 8018, 1, 0, 0, 0, 8019, + 8020, 1, 0, 0, 0, 8020, 865, 1, 0, 0, 0, 8021, 8024, 3, 1432, 716, 0, 8022, + 8024, 3, 862, 431, 0, 8023, 8021, 1, 0, 0, 0, 8023, 8022, 1, 0, 0, 0, 8024, + 867, 1, 0, 0, 0, 8025, 8028, 3, 66, 33, 0, 8026, 8028, 3, 294, 147, 0, + 8027, 8025, 1, 0, 0, 0, 8027, 8026, 1, 0, 0, 0, 8028, 869, 1, 0, 0, 0, + 8029, 8030, 3, 862, 431, 0, 8030, 871, 1, 0, 0, 0, 8031, 8032, 5, 147, + 0, 0, 8032, 873, 1, 0, 0, 0, 8033, 8034, 5, 132, 0, 0, 8034, 875, 1, 0, + 0, 0, 8035, 8036, 5, 131, 0, 0, 8036, 877, 1, 0, 0, 0, 8037, 8038, 5, 2, + 0, 0, 8038, 8039, 3, 1392, 696, 0, 8039, 8040, 5, 3, 0, 0, 8040, 879, 1, + 0, 0, 0, 8041, 8043, 3, 1390, 695, 0, 8042, 8044, 3, 878, 439, 0, 8043, + 8042, 1, 0, 0, 0, 8043, 8044, 1, 0, 0, 0, 8044, 881, 1, 0, 0, 0, 8045, + 8050, 3, 880, 440, 0, 8046, 8047, 5, 6, 0, 0, 8047, 8049, 3, 880, 440, + 0, 8048, 8046, 1, 0, 0, 0, 8049, 8052, 1, 0, 0, 0, 8050, 8048, 1, 0, 0, + 0, 8050, 8051, 1, 0, 0, 0, 8051, 883, 1, 0, 0, 0, 8052, 8050, 1, 0, 0, + 0, 8053, 8054, 3, 882, 441, 0, 8054, 885, 1, 0, 0, 0, 8055, 8056, 5, 222, + 0, 0, 8056, 8074, 3, 888, 444, 0, 8057, 8058, 5, 222, 0, 0, 8058, 8060, + 3, 862, 431, 0, 8059, 8061, 3, 872, 436, 0, 8060, 8059, 1, 0, 0, 0, 8060, + 8061, 1, 0, 0, 0, 8061, 8062, 1, 0, 0, 0, 8062, 8063, 3, 888, 444, 0, 8063, + 8074, 1, 0, 0, 0, 8064, 8065, 5, 222, 0, 0, 8065, 8066, 5, 147, 0, 0, 8066, + 8074, 3, 888, 444, 0, 8067, 8068, 5, 222, 0, 0, 8068, 8069, 5, 2, 0, 0, + 8069, 8070, 3, 890, 445, 0, 8070, 8071, 5, 3, 0, 0, 8071, 8072, 3, 888, + 444, 0, 8072, 8074, 1, 0, 0, 0, 8073, 8055, 1, 0, 0, 0, 8073, 8057, 1, + 0, 0, 0, 8073, 8064, 1, 0, 0, 0, 8073, 8067, 1, 0, 0, 0, 8074, 887, 1, + 0, 0, 0, 8075, 8085, 3, 968, 484, 0, 8076, 8085, 3, 910, 455, 0, 8077, + 8085, 3, 950, 475, 0, 8078, 8085, 3, 936, 468, 0, 8079, 8085, 3, 960, 480, + 0, 8080, 8085, 3, 266, 133, 0, 8081, 8085, 3, 272, 136, 0, 8082, 8085, + 3, 278, 139, 0, 8083, 8085, 3, 904, 452, 0, 8084, 8075, 1, 0, 0, 0, 8084, + 8076, 1, 0, 0, 0, 8084, 8077, 1, 0, 0, 0, 8084, 8078, 1, 0, 0, 0, 8084, + 8079, 1, 0, 0, 0, 8084, 8080, 1, 0, 0, 0, 8084, 8081, 1, 0, 0, 0, 8084, + 8082, 1, 0, 0, 0, 8084, 8083, 1, 0, 0, 0, 8085, 889, 1, 0, 0, 0, 8086, + 8091, 3, 892, 446, 0, 8087, 8088, 5, 6, 0, 0, 8088, 8090, 3, 892, 446, + 0, 8089, 8087, 1, 0, 0, 0, 8090, 8093, 1, 0, 0, 0, 8091, 8089, 1, 0, 0, + 0, 8091, 8092, 1, 0, 0, 0, 8092, 891, 1, 0, 0, 0, 8093, 8091, 1, 0, 0, + 0, 8094, 8096, 3, 894, 447, 0, 8095, 8097, 3, 896, 448, 0, 8096, 8095, + 1, 0, 0, 0, 8096, 8097, 1, 0, 0, 0, 8097, 893, 1, 0, 0, 0, 8098, 8101, + 3, 1432, 716, 0, 8099, 8101, 3, 862, 431, 0, 8100, 8098, 1, 0, 0, 0, 8100, + 8099, 1, 0, 0, 0, 8101, 895, 1, 0, 0, 0, 8102, 8105, 3, 66, 33, 0, 8103, + 8105, 3, 294, 147, 0, 8104, 8102, 1, 0, 0, 0, 8104, 8103, 1, 0, 0, 0, 8105, + 897, 1, 0, 0, 0, 8106, 8107, 5, 302, 0, 0, 8107, 8109, 3, 1394, 697, 0, + 8108, 8110, 3, 900, 450, 0, 8109, 8108, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, + 0, 8110, 8111, 1, 0, 0, 0, 8111, 8112, 5, 36, 0, 0, 8112, 8113, 3, 902, + 451, 0, 8113, 899, 1, 0, 0, 0, 8114, 8115, 5, 2, 0, 0, 8115, 8116, 3, 1338, + 669, 0, 8116, 8117, 5, 3, 0, 0, 8117, 901, 1, 0, 0, 0, 8118, 8124, 3, 968, + 484, 0, 8119, 8124, 3, 910, 455, 0, 8120, 8124, 3, 950, 475, 0, 8121, 8124, + 3, 936, 468, 0, 8122, 8124, 3, 928, 464, 0, 8123, 8118, 1, 0, 0, 0, 8123, + 8119, 1, 0, 0, 0, 8123, 8120, 1, 0, 0, 0, 8123, 8121, 1, 0, 0, 0, 8123, + 8122, 1, 0, 0, 0, 8124, 903, 1, 0, 0, 0, 8125, 8126, 5, 221, 0, 0, 8126, + 8128, 3, 1394, 697, 0, 8127, 8129, 3, 906, 453, 0, 8128, 8127, 1, 0, 0, + 0, 8128, 8129, 1, 0, 0, 0, 8129, 8164, 1, 0, 0, 0, 8130, 8132, 5, 46, 0, + 0, 8131, 8133, 3, 174, 87, 0, 8132, 8131, 1, 0, 0, 0, 8132, 8133, 1, 0, + 0, 0, 8133, 8134, 1, 0, 0, 0, 8134, 8135, 5, 92, 0, 0, 8135, 8136, 3, 268, + 134, 0, 8136, 8137, 5, 36, 0, 0, 8137, 8138, 5, 221, 0, 0, 8138, 8140, + 3, 1394, 697, 0, 8139, 8141, 3, 906, 453, 0, 8140, 8139, 1, 0, 0, 0, 8140, + 8141, 1, 0, 0, 0, 8141, 8143, 1, 0, 0, 0, 8142, 8144, 3, 270, 135, 0, 8143, + 8142, 1, 0, 0, 0, 8143, 8144, 1, 0, 0, 0, 8144, 8164, 1, 0, 0, 0, 8145, + 8147, 5, 46, 0, 0, 8146, 8148, 3, 174, 87, 0, 8147, 8146, 1, 0, 0, 0, 8147, + 8148, 1, 0, 0, 0, 8148, 8149, 1, 0, 0, 0, 8149, 8150, 5, 92, 0, 0, 8150, + 8151, 5, 239, 0, 0, 8151, 8152, 5, 77, 0, 0, 8152, 8153, 5, 409, 0, 0, + 8153, 8154, 3, 268, 134, 0, 8154, 8155, 5, 36, 0, 0, 8155, 8156, 5, 221, + 0, 0, 8156, 8158, 3, 1394, 697, 0, 8157, 8159, 3, 906, 453, 0, 8158, 8157, + 1, 0, 0, 0, 8158, 8159, 1, 0, 0, 0, 8159, 8161, 1, 0, 0, 0, 8160, 8162, + 3, 270, 135, 0, 8161, 8160, 1, 0, 0, 0, 8161, 8162, 1, 0, 0, 0, 8162, 8164, + 1, 0, 0, 0, 8163, 8125, 1, 0, 0, 0, 8163, 8130, 1, 0, 0, 0, 8163, 8145, + 1, 0, 0, 0, 8164, 905, 1, 0, 0, 0, 8165, 8166, 5, 2, 0, 0, 8166, 8167, + 3, 1332, 666, 0, 8167, 8168, 5, 3, 0, 0, 8168, 907, 1, 0, 0, 0, 8169, 8170, + 5, 196, 0, 0, 8170, 8180, 3, 1394, 697, 0, 8171, 8172, 5, 196, 0, 0, 8172, + 8173, 5, 302, 0, 0, 8173, 8180, 3, 1394, 697, 0, 8174, 8175, 5, 196, 0, + 0, 8175, 8180, 5, 30, 0, 0, 8176, 8177, 5, 196, 0, 0, 8177, 8178, 5, 302, + 0, 0, 8178, 8180, 5, 30, 0, 0, 8179, 8169, 1, 0, 0, 0, 8179, 8171, 1, 0, + 0, 0, 8179, 8174, 1, 0, 0, 0, 8179, 8176, 1, 0, 0, 0, 8180, 909, 1, 0, + 0, 0, 8181, 8183, 3, 988, 494, 0, 8182, 8181, 1, 0, 0, 0, 8182, 8183, 1, + 0, 0, 0, 8183, 8184, 1, 0, 0, 0, 8184, 8185, 5, 251, 0, 0, 8185, 8186, + 5, 71, 0, 0, 8186, 8187, 3, 912, 456, 0, 8187, 8189, 3, 914, 457, 0, 8188, + 8190, 3, 922, 461, 0, 8189, 8188, 1, 0, 0, 0, 8189, 8190, 1, 0, 0, 0, 8190, + 8192, 1, 0, 0, 0, 8191, 8193, 3, 926, 463, 0, 8192, 8191, 1, 0, 0, 0, 8192, + 8193, 1, 0, 0, 0, 8193, 911, 1, 0, 0, 0, 8194, 8197, 3, 1390, 695, 0, 8195, + 8196, 5, 36, 0, 0, 8196, 8198, 3, 1426, 713, 0, 8197, 8195, 1, 0, 0, 0, + 8197, 8198, 1, 0, 0, 0, 8198, 913, 1, 0, 0, 0, 8199, 8219, 3, 968, 484, + 0, 8200, 8201, 5, 484, 0, 0, 8201, 8202, 3, 916, 458, 0, 8202, 8203, 5, + 471, 0, 0, 8203, 8204, 3, 968, 484, 0, 8204, 8219, 1, 0, 0, 0, 8205, 8206, + 5, 2, 0, 0, 8206, 8207, 3, 918, 459, 0, 8207, 8212, 5, 3, 0, 0, 8208, 8209, + 5, 484, 0, 0, 8209, 8210, 3, 916, 458, 0, 8210, 8211, 5, 471, 0, 0, 8211, + 8213, 1, 0, 0, 0, 8212, 8208, 1, 0, 0, 0, 8212, 8213, 1, 0, 0, 0, 8213, + 8214, 1, 0, 0, 0, 8214, 8215, 3, 968, 484, 0, 8215, 8219, 1, 0, 0, 0, 8216, + 8217, 5, 53, 0, 0, 8217, 8219, 5, 436, 0, 0, 8218, 8199, 1, 0, 0, 0, 8218, + 8200, 1, 0, 0, 0, 8218, 8205, 1, 0, 0, 0, 8218, 8216, 1, 0, 0, 0, 8219, + 915, 1, 0, 0, 0, 8220, 8221, 7, 39, 0, 0, 8221, 917, 1, 0, 0, 0, 8222, + 8227, 3, 920, 460, 0, 8223, 8224, 5, 6, 0, 0, 8224, 8226, 3, 920, 460, + 0, 8225, 8223, 1, 0, 0, 0, 8226, 8229, 1, 0, 0, 0, 8227, 8225, 1, 0, 0, + 0, 8227, 8228, 1, 0, 0, 0, 8228, 919, 1, 0, 0, 0, 8229, 8227, 1, 0, 0, + 0, 8230, 8231, 3, 1426, 713, 0, 8231, 8232, 3, 1378, 689, 0, 8232, 921, + 1, 0, 0, 0, 8233, 8234, 5, 80, 0, 0, 8234, 8236, 5, 485, 0, 0, 8235, 8237, + 3, 924, 462, 0, 8236, 8235, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8238, + 1, 0, 0, 0, 8238, 8246, 5, 57, 0, 0, 8239, 8240, 5, 381, 0, 0, 8240, 8241, + 5, 345, 0, 0, 8241, 8243, 3, 952, 476, 0, 8242, 8244, 3, 1102, 551, 0, + 8243, 8242, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8247, 1, 0, 0, 0, + 8245, 8247, 5, 282, 0, 0, 8246, 8239, 1, 0, 0, 0, 8246, 8245, 1, 0, 0, + 0, 8247, 923, 1, 0, 0, 0, 8248, 8249, 5, 2, 0, 0, 8249, 8250, 3, 604, 302, + 0, 8250, 8252, 5, 3, 0, 0, 8251, 8253, 3, 1102, 551, 0, 8252, 8251, 1, + 0, 0, 0, 8252, 8253, 1, 0, 0, 0, 8253, 8258, 1, 0, 0, 0, 8254, 8255, 5, + 80, 0, 0, 8255, 8256, 5, 45, 0, 0, 8256, 8258, 3, 1394, 697, 0, 8257, 8248, + 1, 0, 0, 0, 8257, 8254, 1, 0, 0, 0, 8258, 925, 1, 0, 0, 0, 8259, 8260, + 5, 87, 0, 0, 8260, 8261, 3, 1382, 691, 0, 8261, 927, 1, 0, 0, 0, 8262, + 8264, 3, 980, 490, 0, 8263, 8262, 1, 0, 0, 0, 8263, 8264, 1, 0, 0, 0, 8264, + 8265, 1, 0, 0, 0, 8265, 8266, 5, 272, 0, 0, 8266, 8268, 5, 71, 0, 0, 8267, + 8269, 5, 81, 0, 0, 8268, 8267, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, + 8270, 1, 0, 0, 0, 8270, 8272, 3, 1390, 695, 0, 8271, 8273, 3, 1070, 535, + 0, 8272, 8271, 1, 0, 0, 0, 8272, 8273, 1, 0, 0, 0, 8273, 8274, 1, 0, 0, + 0, 8274, 8277, 5, 100, 0, 0, 8275, 8278, 3, 970, 485, 0, 8276, 8278, 3, + 1390, 695, 0, 8277, 8275, 1, 0, 0, 0, 8277, 8276, 1, 0, 0, 0, 8278, 8280, + 1, 0, 0, 0, 8279, 8281, 3, 1070, 535, 0, 8280, 8279, 1, 0, 0, 0, 8280, + 8281, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8283, 5, 80, 0, 0, 8283, + 8292, 3, 1170, 585, 0, 8284, 8286, 3, 930, 465, 0, 8285, 8287, 3, 932, + 466, 0, 8286, 8285, 1, 0, 0, 0, 8286, 8287, 1, 0, 0, 0, 8287, 8293, 1, + 0, 0, 0, 8288, 8290, 3, 932, 466, 0, 8289, 8291, 3, 930, 465, 0, 8290, + 8289, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8293, 1, 0, 0, 0, 8292, + 8284, 1, 0, 0, 0, 8292, 8288, 1, 0, 0, 0, 8293, 8295, 1, 0, 0, 0, 8294, + 8296, 3, 934, 467, 0, 8295, 8294, 1, 0, 0, 0, 8295, 8296, 1, 0, 0, 0, 8296, + 929, 1, 0, 0, 0, 8297, 8298, 5, 102, 0, 0, 8298, 8299, 5, 77, 0, 0, 8299, + 8302, 5, 269, 0, 0, 8300, 8301, 5, 33, 0, 0, 8301, 8303, 3, 1170, 585, + 0, 8302, 8300, 1, 0, 0, 0, 8302, 8303, 1, 0, 0, 0, 8303, 8305, 1, 0, 0, + 0, 8304, 8306, 5, 93, 0, 0, 8305, 8304, 1, 0, 0, 0, 8305, 8306, 1, 0, 0, + 0, 8306, 8307, 1, 0, 0, 0, 8307, 8312, 5, 251, 0, 0, 8308, 8309, 5, 2, + 0, 0, 8309, 8310, 3, 918, 459, 0, 8310, 8311, 5, 3, 0, 0, 8311, 8313, 1, + 0, 0, 0, 8312, 8308, 1, 0, 0, 0, 8312, 8313, 1, 0, 0, 0, 8313, 8314, 1, + 0, 0, 0, 8314, 8315, 3, 1060, 530, 0, 8315, 931, 1, 0, 0, 0, 8316, 8317, + 5, 102, 0, 0, 8317, 8320, 5, 269, 0, 0, 8318, 8319, 5, 33, 0, 0, 8319, + 8321, 3, 1170, 585, 0, 8320, 8318, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, + 8321, 8323, 1, 0, 0, 0, 8322, 8324, 5, 93, 0, 0, 8323, 8322, 1, 0, 0, 0, + 8323, 8324, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8326, 5, 381, 0, + 0, 8326, 8327, 5, 345, 0, 0, 8327, 8328, 3, 952, 476, 0, 8328, 933, 1, + 0, 0, 0, 8329, 8330, 5, 102, 0, 0, 8330, 8332, 5, 269, 0, 0, 8331, 8333, + 5, 93, 0, 0, 8332, 8331, 1, 0, 0, 0, 8332, 8333, 1, 0, 0, 0, 8333, 8334, + 1, 0, 0, 0, 8334, 8335, 5, 201, 0, 0, 8335, 935, 1, 0, 0, 0, 8336, 8338, + 3, 988, 494, 0, 8337, 8336, 1, 0, 0, 0, 8337, 8338, 1, 0, 0, 0, 8338, 8339, + 1, 0, 0, 0, 8339, 8340, 5, 201, 0, 0, 8340, 8341, 5, 64, 0, 0, 8341, 8343, + 3, 1086, 543, 0, 8342, 8344, 3, 938, 469, 0, 8343, 8342, 1, 0, 0, 0, 8343, + 8344, 1, 0, 0, 0, 8344, 8346, 1, 0, 0, 0, 8345, 8347, 3, 1104, 552, 0, + 8346, 8345, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8349, 1, 0, 0, 0, + 8348, 8350, 3, 926, 463, 0, 8349, 8348, 1, 0, 0, 0, 8349, 8350, 1, 0, 0, + 0, 8350, 937, 1, 0, 0, 0, 8351, 8352, 5, 100, 0, 0, 8352, 8353, 3, 1064, + 532, 0, 8353, 939, 1, 0, 0, 0, 8354, 8356, 5, 266, 0, 0, 8355, 8357, 3, + 996, 498, 0, 8356, 8355, 1, 0, 0, 0, 8356, 8357, 1, 0, 0, 0, 8357, 8358, + 1, 0, 0, 0, 8358, 8360, 3, 1084, 542, 0, 8359, 8361, 3, 942, 471, 0, 8360, + 8359, 1, 0, 0, 0, 8360, 8361, 1, 0, 0, 0, 8361, 8363, 1, 0, 0, 0, 8362, + 8364, 3, 946, 473, 0, 8363, 8362, 1, 0, 0, 0, 8363, 8364, 1, 0, 0, 0, 8364, + 941, 1, 0, 0, 0, 8365, 8366, 5, 68, 0, 0, 8366, 8367, 3, 944, 472, 0, 8367, + 8368, 5, 275, 0, 0, 8368, 943, 1, 0, 0, 0, 8369, 8370, 5, 150, 0, 0, 8370, + 8382, 7, 40, 0, 0, 8371, 8372, 5, 428, 0, 0, 8372, 8382, 7, 40, 0, 0, 8373, + 8378, 5, 346, 0, 0, 8374, 8375, 5, 381, 0, 0, 8375, 8379, 5, 220, 0, 0, + 8376, 8377, 5, 428, 0, 0, 8377, 8379, 5, 220, 0, 0, 8378, 8374, 1, 0, 0, + 0, 8378, 8376, 1, 0, 0, 0, 8378, 8379, 1, 0, 0, 0, 8379, 8382, 1, 0, 0, + 0, 8380, 8382, 5, 220, 0, 0, 8381, 8369, 1, 0, 0, 0, 8381, 8371, 1, 0, + 0, 0, 8381, 8373, 1, 0, 0, 0, 8381, 8380, 1, 0, 0, 0, 8382, 945, 1, 0, + 0, 0, 8383, 8384, 5, 284, 0, 0, 8384, 947, 1, 0, 0, 0, 8385, 8389, 5, 284, + 0, 0, 8386, 8387, 5, 486, 0, 0, 8387, 8389, 5, 487, 0, 0, 8388, 8385, 1, + 0, 0, 0, 8388, 8386, 1, 0, 0, 0, 8389, 949, 1, 0, 0, 0, 8390, 8392, 3, + 988, 494, 0, 8391, 8390, 1, 0, 0, 0, 8391, 8392, 1, 0, 0, 0, 8392, 8393, + 1, 0, 0, 0, 8393, 8394, 5, 381, 0, 0, 8394, 8395, 3, 1086, 543, 0, 8395, + 8396, 5, 345, 0, 0, 8396, 8398, 3, 952, 476, 0, 8397, 8399, 3, 1062, 531, + 0, 8398, 8397, 1, 0, 0, 0, 8398, 8399, 1, 0, 0, 0, 8399, 8401, 1, 0, 0, + 0, 8400, 8402, 3, 1104, 552, 0, 8401, 8400, 1, 0, 0, 0, 8401, 8402, 1, + 0, 0, 0, 8402, 8404, 1, 0, 0, 0, 8403, 8405, 3, 926, 463, 0, 8404, 8403, + 1, 0, 0, 0, 8404, 8405, 1, 0, 0, 0, 8405, 951, 1, 0, 0, 0, 8406, 8411, + 3, 954, 477, 0, 8407, 8408, 5, 6, 0, 0, 8408, 8410, 3, 954, 477, 0, 8409, + 8407, 1, 0, 0, 0, 8410, 8413, 1, 0, 0, 0, 8411, 8409, 1, 0, 0, 0, 8411, + 8412, 1, 0, 0, 0, 8412, 953, 1, 0, 0, 0, 8413, 8411, 1, 0, 0, 0, 8414, + 8415, 3, 956, 478, 0, 8415, 8416, 5, 10, 0, 0, 8416, 8417, 3, 1170, 585, + 0, 8417, 8425, 1, 0, 0, 0, 8418, 8419, 5, 2, 0, 0, 8419, 8420, 3, 958, + 479, 0, 8420, 8421, 5, 3, 0, 0, 8421, 8422, 5, 10, 0, 0, 8422, 8423, 3, + 1170, 585, 0, 8423, 8425, 1, 0, 0, 0, 8424, 8414, 1, 0, 0, 0, 8424, 8418, + 1, 0, 0, 0, 8425, 955, 1, 0, 0, 0, 8426, 8427, 3, 1426, 713, 0, 8427, 8428, + 3, 1378, 689, 0, 8428, 957, 1, 0, 0, 0, 8429, 8434, 3, 956, 478, 0, 8430, + 8431, 5, 6, 0, 0, 8431, 8433, 3, 956, 478, 0, 8432, 8430, 1, 0, 0, 0, 8433, + 8436, 1, 0, 0, 0, 8434, 8432, 1, 0, 0, 0, 8434, 8435, 1, 0, 0, 0, 8435, + 959, 1, 0, 0, 0, 8436, 8434, 1, 0, 0, 0, 8437, 8438, 5, 197, 0, 0, 8438, + 8439, 3, 962, 481, 0, 8439, 8440, 3, 964, 482, 0, 8440, 8442, 5, 191, 0, + 0, 8441, 8443, 3, 966, 483, 0, 8442, 8441, 1, 0, 0, 0, 8442, 8443, 1, 0, + 0, 0, 8443, 8444, 1, 0, 0, 0, 8444, 8445, 5, 62, 0, 0, 8445, 8446, 3, 968, + 484, 0, 8446, 961, 1, 0, 0, 0, 8447, 8448, 3, 1394, 697, 0, 8448, 963, + 1, 0, 0, 0, 8449, 8450, 5, 281, 0, 0, 8450, 8455, 5, 336, 0, 0, 8451, 8455, + 5, 336, 0, 0, 8452, 8455, 5, 126, 0, 0, 8453, 8455, 5, 250, 0, 0, 8454, + 8449, 1, 0, 0, 0, 8454, 8451, 1, 0, 0, 0, 8454, 8452, 1, 0, 0, 0, 8454, + 8453, 1, 0, 0, 0, 8455, 8458, 1, 0, 0, 0, 8456, 8454, 1, 0, 0, 0, 8456, + 8457, 1, 0, 0, 0, 8457, 965, 1, 0, 0, 0, 8458, 8456, 1, 0, 0, 0, 8459, + 8460, 5, 105, 0, 0, 8460, 8464, 5, 236, 0, 0, 8461, 8462, 5, 391, 0, 0, + 8462, 8464, 5, 236, 0, 0, 8463, 8459, 1, 0, 0, 0, 8463, 8461, 1, 0, 0, + 0, 8464, 967, 1, 0, 0, 0, 8465, 8468, 3, 972, 486, 0, 8466, 8468, 3, 970, + 485, 0, 8467, 8465, 1, 0, 0, 0, 8467, 8466, 1, 0, 0, 0, 8468, 969, 1, 0, + 0, 0, 8469, 8470, 5, 2, 0, 0, 8470, 8471, 3, 972, 486, 0, 8471, 8472, 5, + 3, 0, 0, 8472, 8478, 1, 0, 0, 0, 8473, 8474, 5, 2, 0, 0, 8474, 8475, 3, + 970, 485, 0, 8475, 8476, 5, 3, 0, 0, 8476, 8478, 1, 0, 0, 0, 8477, 8469, + 1, 0, 0, 0, 8477, 8473, 1, 0, 0, 0, 8478, 971, 1, 0, 0, 0, 8479, 8481, + 3, 974, 487, 0, 8480, 8482, 3, 1004, 502, 0, 8481, 8480, 1, 0, 0, 0, 8481, + 8482, 1, 0, 0, 0, 8482, 8491, 1, 0, 0, 0, 8483, 8485, 3, 1048, 524, 0, + 8484, 8486, 3, 1014, 507, 0, 8485, 8484, 1, 0, 0, 0, 8485, 8486, 1, 0, + 0, 0, 8486, 8492, 1, 0, 0, 0, 8487, 8489, 3, 1012, 506, 0, 8488, 8490, + 3, 1050, 525, 0, 8489, 8488, 1, 0, 0, 0, 8489, 8490, 1, 0, 0, 0, 8490, + 8492, 1, 0, 0, 0, 8491, 8483, 1, 0, 0, 0, 8491, 8487, 1, 0, 0, 0, 8491, + 8492, 1, 0, 0, 0, 8492, 8509, 1, 0, 0, 0, 8493, 8494, 3, 980, 490, 0, 8494, + 8496, 3, 974, 487, 0, 8495, 8497, 3, 1004, 502, 0, 8496, 8495, 1, 0, 0, + 0, 8496, 8497, 1, 0, 0, 0, 8497, 8506, 1, 0, 0, 0, 8498, 8500, 3, 1048, + 524, 0, 8499, 8501, 3, 1014, 507, 0, 8500, 8499, 1, 0, 0, 0, 8500, 8501, + 1, 0, 0, 0, 8501, 8507, 1, 0, 0, 0, 8502, 8504, 3, 1012, 506, 0, 8503, + 8505, 3, 1050, 525, 0, 8504, 8503, 1, 0, 0, 0, 8504, 8505, 1, 0, 0, 0, + 8505, 8507, 1, 0, 0, 0, 8506, 8498, 1, 0, 0, 0, 8506, 8502, 1, 0, 0, 0, + 8506, 8507, 1, 0, 0, 0, 8507, 8509, 1, 0, 0, 0, 8508, 8479, 1, 0, 0, 0, + 8508, 8493, 1, 0, 0, 0, 8509, 973, 1, 0, 0, 0, 8510, 8518, 3, 976, 488, + 0, 8511, 8513, 7, 41, 0, 0, 8512, 8514, 3, 998, 499, 0, 8513, 8512, 1, + 0, 0, 0, 8513, 8514, 1, 0, 0, 0, 8514, 8515, 1, 0, 0, 0, 8515, 8517, 3, + 976, 488, 0, 8516, 8511, 1, 0, 0, 0, 8517, 8520, 1, 0, 0, 0, 8518, 8516, + 1, 0, 0, 0, 8518, 8519, 1, 0, 0, 0, 8519, 975, 1, 0, 0, 0, 8520, 8518, + 1, 0, 0, 0, 8521, 8529, 3, 978, 489, 0, 8522, 8524, 5, 70, 0, 0, 8523, + 8525, 3, 998, 499, 0, 8524, 8523, 1, 0, 0, 0, 8524, 8525, 1, 0, 0, 0, 8525, + 8526, 1, 0, 0, 0, 8526, 8528, 3, 978, 489, 0, 8527, 8522, 1, 0, 0, 0, 8528, + 8531, 1, 0, 0, 0, 8529, 8527, 1, 0, 0, 0, 8529, 8530, 1, 0, 0, 0, 8530, + 977, 1, 0, 0, 0, 8531, 8529, 1, 0, 0, 0, 8532, 8545, 5, 88, 0, 0, 8533, + 8535, 3, 1002, 501, 0, 8534, 8533, 1, 0, 0, 0, 8534, 8535, 1, 0, 0, 0, + 8535, 8537, 1, 0, 0, 0, 8536, 8538, 3, 990, 495, 0, 8537, 8536, 1, 0, 0, + 0, 8537, 8538, 1, 0, 0, 0, 8538, 8540, 1, 0, 0, 0, 8539, 8541, 3, 1380, + 690, 0, 8540, 8539, 1, 0, 0, 0, 8540, 8541, 1, 0, 0, 0, 8541, 8546, 1, + 0, 0, 0, 8542, 8543, 3, 1000, 500, 0, 8543, 8544, 3, 1382, 691, 0, 8544, + 8546, 1, 0, 0, 0, 8545, 8534, 1, 0, 0, 0, 8545, 8542, 1, 0, 0, 0, 8546, + 8548, 1, 0, 0, 0, 8547, 8549, 3, 990, 495, 0, 8548, 8547, 1, 0, 0, 0, 8548, + 8549, 1, 0, 0, 0, 8549, 8551, 1, 0, 0, 0, 8550, 8552, 3, 1062, 531, 0, + 8551, 8550, 1, 0, 0, 0, 8551, 8552, 1, 0, 0, 0, 8552, 8554, 1, 0, 0, 0, + 8553, 8555, 3, 1102, 551, 0, 8554, 8553, 1, 0, 0, 0, 8554, 8555, 1, 0, + 0, 0, 8555, 8557, 1, 0, 0, 0, 8556, 8558, 3, 1032, 516, 0, 8557, 8556, + 1, 0, 0, 0, 8557, 8558, 1, 0, 0, 0, 8558, 8560, 1, 0, 0, 0, 8559, 8561, + 3, 1046, 523, 0, 8560, 8559, 1, 0, 0, 0, 8560, 8561, 1, 0, 0, 0, 8561, + 8563, 1, 0, 0, 0, 8562, 8564, 3, 1292, 646, 0, 8563, 8562, 1, 0, 0, 0, + 8563, 8564, 1, 0, 0, 0, 8564, 8570, 1, 0, 0, 0, 8565, 8570, 3, 1060, 530, + 0, 8566, 8567, 5, 92, 0, 0, 8567, 8570, 3, 1082, 541, 0, 8568, 8570, 3, + 970, 485, 0, 8569, 8532, 1, 0, 0, 0, 8569, 8565, 1, 0, 0, 0, 8569, 8566, + 1, 0, 0, 0, 8569, 8568, 1, 0, 0, 0, 8570, 979, 1, 0, 0, 0, 8571, 8573, + 5, 105, 0, 0, 8572, 8574, 5, 315, 0, 0, 8573, 8572, 1, 0, 0, 0, 8573, 8574, + 1, 0, 0, 0, 8574, 8575, 1, 0, 0, 0, 8575, 8576, 3, 982, 491, 0, 8576, 981, + 1, 0, 0, 0, 8577, 8582, 3, 984, 492, 0, 8578, 8579, 5, 6, 0, 0, 8579, 8581, + 3, 984, 492, 0, 8580, 8578, 1, 0, 0, 0, 8581, 8584, 1, 0, 0, 0, 8582, 8580, + 1, 0, 0, 0, 8582, 8583, 1, 0, 0, 0, 8583, 983, 1, 0, 0, 0, 8584, 8582, + 1, 0, 0, 0, 8585, 8587, 3, 1394, 697, 0, 8586, 8588, 3, 878, 439, 0, 8587, + 8586, 1, 0, 0, 0, 8587, 8588, 1, 0, 0, 0, 8588, 8589, 1, 0, 0, 0, 8589, + 8591, 5, 36, 0, 0, 8590, 8592, 3, 986, 493, 0, 8591, 8590, 1, 0, 0, 0, + 8591, 8592, 1, 0, 0, 0, 8592, 8593, 1, 0, 0, 0, 8593, 8594, 5, 2, 0, 0, + 8594, 8595, 3, 902, 451, 0, 8595, 8596, 5, 3, 0, 0, 8596, 985, 1, 0, 0, + 0, 8597, 8601, 5, 270, 0, 0, 8598, 8599, 5, 77, 0, 0, 8599, 8601, 5, 270, + 0, 0, 8600, 8597, 1, 0, 0, 0, 8600, 8598, 1, 0, 0, 0, 8601, 987, 1, 0, + 0, 0, 8602, 8603, 3, 980, 490, 0, 8603, 989, 1, 0, 0, 0, 8604, 8610, 5, + 71, 0, 0, 8605, 8607, 3, 992, 496, 0, 8606, 8605, 1, 0, 0, 0, 8606, 8607, + 1, 0, 0, 0, 8607, 8608, 1, 0, 0, 0, 8608, 8611, 3, 994, 497, 0, 8609, 8611, + 3, 1620, 810, 0, 8610, 8606, 1, 0, 0, 0, 8610, 8609, 1, 0, 0, 0, 8611, + 991, 1, 0, 0, 0, 8612, 8613, 5, 358, 0, 0, 8613, 993, 1, 0, 0, 0, 8614, + 8616, 7, 42, 0, 0, 8615, 8614, 1, 0, 0, 0, 8615, 8616, 1, 0, 0, 0, 8616, + 8617, 1, 0, 0, 0, 8617, 8619, 7, 12, 0, 0, 8618, 8620, 3, 996, 498, 0, + 8619, 8618, 1, 0, 0, 0, 8619, 8620, 1, 0, 0, 0, 8620, 8621, 1, 0, 0, 0, + 8621, 8631, 3, 1390, 695, 0, 8622, 8624, 5, 379, 0, 0, 8623, 8625, 3, 996, + 498, 0, 8624, 8623, 1, 0, 0, 0, 8624, 8625, 1, 0, 0, 0, 8625, 8626, 1, + 0, 0, 0, 8626, 8631, 3, 1390, 695, 0, 8627, 8628, 5, 92, 0, 0, 8628, 8631, + 3, 1390, 695, 0, 8629, 8631, 3, 1390, 695, 0, 8630, 8615, 1, 0, 0, 0, 8630, + 8622, 1, 0, 0, 0, 8630, 8627, 1, 0, 0, 0, 8630, 8629, 1, 0, 0, 0, 8631, + 995, 1, 0, 0, 0, 8632, 8633, 5, 92, 0, 0, 8633, 997, 1, 0, 0, 0, 8634, + 8635, 7, 43, 0, 0, 8635, 999, 1, 0, 0, 0, 8636, 8642, 5, 56, 0, 0, 8637, + 8638, 5, 80, 0, 0, 8638, 8639, 5, 2, 0, 0, 8639, 8640, 3, 1332, 666, 0, + 8640, 8641, 5, 3, 0, 0, 8641, 8643, 1, 0, 0, 0, 8642, 8637, 1, 0, 0, 0, + 8642, 8643, 1, 0, 0, 0, 8643, 1001, 1, 0, 0, 0, 8644, 8645, 5, 30, 0, 0, + 8645, 1003, 1, 0, 0, 0, 8646, 8647, 3, 1006, 503, 0, 8647, 1005, 1, 0, + 0, 0, 8648, 8649, 5, 83, 0, 0, 8649, 8650, 5, 166, 0, 0, 8650, 8651, 3, + 1008, 504, 0, 8651, 1007, 1, 0, 0, 0, 8652, 8657, 3, 1010, 505, 0, 8653, + 8654, 5, 6, 0, 0, 8654, 8656, 3, 1010, 505, 0, 8655, 8653, 1, 0, 0, 0, + 8656, 8659, 1, 0, 0, 0, 8657, 8655, 1, 0, 0, 0, 8657, 8658, 1, 0, 0, 0, + 8658, 1009, 1, 0, 0, 0, 8659, 8657, 1, 0, 0, 0, 8660, 8666, 3, 1170, 585, + 0, 8661, 8662, 5, 100, 0, 0, 8662, 8667, 3, 1328, 664, 0, 8663, 8665, 3, + 618, 309, 0, 8664, 8663, 1, 0, 0, 0, 8664, 8665, 1, 0, 0, 0, 8665, 8667, + 1, 0, 0, 0, 8666, 8661, 1, 0, 0, 0, 8666, 8664, 1, 0, 0, 0, 8667, 8669, + 1, 0, 0, 0, 8668, 8670, 3, 620, 310, 0, 8669, 8668, 1, 0, 0, 0, 8669, 8670, + 1, 0, 0, 0, 8670, 1011, 1, 0, 0, 0, 8671, 8673, 3, 1016, 508, 0, 8672, + 8674, 3, 1018, 509, 0, 8673, 8672, 1, 0, 0, 0, 8673, 8674, 1, 0, 0, 0, + 8674, 8680, 1, 0, 0, 0, 8675, 8677, 3, 1018, 509, 0, 8676, 8678, 3, 1016, + 508, 0, 8677, 8676, 1, 0, 0, 0, 8677, 8678, 1, 0, 0, 0, 8678, 8680, 1, + 0, 0, 0, 8679, 8671, 1, 0, 0, 0, 8679, 8675, 1, 0, 0, 0, 8680, 1013, 1, + 0, 0, 0, 8681, 8682, 3, 1012, 506, 0, 8682, 1015, 1, 0, 0, 0, 8683, 8684, + 5, 74, 0, 0, 8684, 8687, 3, 1020, 510, 0, 8685, 8686, 5, 6, 0, 0, 8686, + 8688, 3, 1022, 511, 0, 8687, 8685, 1, 0, 0, 0, 8687, 8688, 1, 0, 0, 0, + 8688, 8707, 1, 0, 0, 0, 8689, 8690, 5, 61, 0, 0, 8690, 8704, 3, 1030, 515, + 0, 8691, 8692, 3, 1024, 512, 0, 8692, 8696, 3, 1028, 514, 0, 8693, 8697, + 5, 81, 0, 0, 8694, 8695, 5, 105, 0, 0, 8695, 8697, 5, 488, 0, 0, 8696, + 8693, 1, 0, 0, 0, 8696, 8694, 1, 0, 0, 0, 8697, 8705, 1, 0, 0, 0, 8698, + 8702, 3, 1028, 514, 0, 8699, 8703, 5, 81, 0, 0, 8700, 8701, 5, 105, 0, + 0, 8701, 8703, 5, 488, 0, 0, 8702, 8699, 1, 0, 0, 0, 8702, 8700, 1, 0, + 0, 0, 8703, 8705, 1, 0, 0, 0, 8704, 8691, 1, 0, 0, 0, 8704, 8698, 1, 0, + 0, 0, 8705, 8707, 1, 0, 0, 0, 8706, 8683, 1, 0, 0, 0, 8706, 8689, 1, 0, + 0, 0, 8707, 1017, 1, 0, 0, 0, 8708, 8713, 5, 79, 0, 0, 8709, 8714, 3, 1022, + 511, 0, 8710, 8711, 3, 1024, 512, 0, 8711, 8712, 3, 1028, 514, 0, 8712, + 8714, 1, 0, 0, 0, 8713, 8709, 1, 0, 0, 0, 8713, 8710, 1, 0, 0, 0, 8714, + 1019, 1, 0, 0, 0, 8715, 8718, 3, 1170, 585, 0, 8716, 8718, 5, 30, 0, 0, + 8717, 8715, 1, 0, 0, 0, 8717, 8716, 1, 0, 0, 0, 8718, 1021, 1, 0, 0, 0, + 8719, 8720, 3, 1170, 585, 0, 8720, 1023, 1, 0, 0, 0, 8721, 8727, 3, 1214, + 607, 0, 8722, 8723, 5, 12, 0, 0, 8723, 8727, 3, 1026, 513, 0, 8724, 8725, + 5, 13, 0, 0, 8725, 8727, 3, 1026, 513, 0, 8726, 8721, 1, 0, 0, 0, 8726, + 8722, 1, 0, 0, 0, 8726, 8724, 1, 0, 0, 0, 8727, 1025, 1, 0, 0, 0, 8728, + 8731, 3, 1410, 705, 0, 8729, 8731, 3, 1408, 704, 0, 8730, 8728, 1, 0, 0, + 0, 8730, 8729, 1, 0, 0, 0, 8731, 1027, 1, 0, 0, 0, 8732, 8733, 7, 44, 0, + 0, 8733, 1029, 1, 0, 0, 0, 8734, 8735, 7, 45, 0, 0, 8735, 1031, 1, 0, 0, + 0, 8736, 8737, 5, 66, 0, 0, 8737, 8738, 5, 166, 0, 0, 8738, 8739, 3, 1034, + 517, 0, 8739, 1033, 1, 0, 0, 0, 8740, 8745, 3, 1036, 518, 0, 8741, 8742, + 5, 6, 0, 0, 8742, 8744, 3, 1036, 518, 0, 8743, 8741, 1, 0, 0, 0, 8744, + 8747, 1, 0, 0, 0, 8745, 8743, 1, 0, 0, 0, 8745, 8746, 1, 0, 0, 0, 8746, + 1035, 1, 0, 0, 0, 8747, 8745, 1, 0, 0, 0, 8748, 8754, 3, 1170, 585, 0, + 8749, 8754, 3, 1038, 519, 0, 8750, 8754, 3, 1042, 521, 0, 8751, 8754, 3, + 1040, 520, 0, 8752, 8754, 3, 1044, 522, 0, 8753, 8748, 1, 0, 0, 0, 8753, + 8749, 1, 0, 0, 0, 8753, 8750, 1, 0, 0, 0, 8753, 8751, 1, 0, 0, 0, 8753, + 8752, 1, 0, 0, 0, 8754, 1037, 1, 0, 0, 0, 8755, 8756, 5, 2, 0, 0, 8756, + 8757, 5, 3, 0, 0, 8757, 1039, 1, 0, 0, 0, 8758, 8759, 5, 489, 0, 0, 8759, + 8760, 5, 2, 0, 0, 8760, 8761, 3, 1332, 666, 0, 8761, 8762, 5, 3, 0, 0, + 8762, 1041, 1, 0, 0, 0, 8763, 8764, 5, 490, 0, 0, 8764, 8765, 5, 2, 0, + 0, 8765, 8766, 3, 1332, 666, 0, 8766, 8767, 5, 3, 0, 0, 8767, 1043, 1, + 0, 0, 0, 8768, 8769, 5, 491, 0, 0, 8769, 8770, 5, 492, 0, 0, 8770, 8771, + 5, 2, 0, 0, 8771, 8772, 3, 1034, 517, 0, 8772, 8773, 5, 3, 0, 0, 8773, + 1045, 1, 0, 0, 0, 8774, 8775, 5, 67, 0, 0, 8775, 8776, 3, 1170, 585, 0, + 8776, 1047, 1, 0, 0, 0, 8777, 8782, 3, 1052, 526, 0, 8778, 8779, 5, 62, + 0, 0, 8779, 8780, 5, 312, 0, 0, 8780, 8782, 5, 81, 0, 0, 8781, 8777, 1, + 0, 0, 0, 8781, 8778, 1, 0, 0, 0, 8782, 1049, 1, 0, 0, 0, 8783, 8784, 3, + 1048, 524, 0, 8784, 1051, 1, 0, 0, 0, 8785, 8787, 3, 1054, 527, 0, 8786, + 8785, 1, 0, 0, 0, 8787, 8788, 1, 0, 0, 0, 8788, 8786, 1, 0, 0, 0, 8788, + 8789, 1, 0, 0, 0, 8789, 1053, 1, 0, 0, 0, 8790, 8792, 3, 1056, 528, 0, + 8791, 8793, 3, 1058, 529, 0, 8792, 8791, 1, 0, 0, 0, 8792, 8793, 1, 0, + 0, 0, 8793, 8795, 1, 0, 0, 0, 8794, 8796, 3, 948, 474, 0, 8795, 8794, 1, + 0, 0, 0, 8795, 8796, 1, 0, 0, 0, 8796, 1055, 1, 0, 0, 0, 8797, 8807, 5, + 62, 0, 0, 8798, 8799, 5, 281, 0, 0, 8799, 8801, 5, 255, 0, 0, 8800, 8798, + 1, 0, 0, 0, 8800, 8801, 1, 0, 0, 0, 8801, 8802, 1, 0, 0, 0, 8802, 8808, + 5, 381, 0, 0, 8803, 8805, 5, 255, 0, 0, 8804, 8803, 1, 0, 0, 0, 8804, 8805, + 1, 0, 0, 0, 8805, 8806, 1, 0, 0, 0, 8806, 8808, 5, 346, 0, 0, 8807, 8800, + 1, 0, 0, 0, 8807, 8804, 1, 0, 0, 0, 8808, 1057, 1, 0, 0, 0, 8809, 8810, + 5, 287, 0, 0, 8810, 8811, 3, 1388, 694, 0, 8811, 1059, 1, 0, 0, 0, 8812, + 8813, 5, 436, 0, 0, 8813, 8814, 5, 2, 0, 0, 8814, 8815, 3, 1332, 666, 0, + 8815, 8823, 5, 3, 0, 0, 8816, 8817, 5, 6, 0, 0, 8817, 8818, 5, 2, 0, 0, + 8818, 8819, 3, 1332, 666, 0, 8819, 8820, 5, 3, 0, 0, 8820, 8822, 1, 0, + 0, 0, 8821, 8816, 1, 0, 0, 0, 8822, 8825, 1, 0, 0, 0, 8823, 8821, 1, 0, + 0, 0, 8823, 8824, 1, 0, 0, 0, 8824, 1061, 1, 0, 0, 0, 8825, 8823, 1, 0, + 0, 0, 8826, 8827, 5, 64, 0, 0, 8827, 8828, 3, 1064, 532, 0, 8828, 1063, + 1, 0, 0, 0, 8829, 8834, 3, 1066, 533, 0, 8830, 8831, 5, 6, 0, 0, 8831, + 8833, 3, 1066, 533, 0, 8832, 8830, 1, 0, 0, 0, 8833, 8836, 1, 0, 0, 0, + 8834, 8832, 1, 0, 0, 0, 8834, 8835, 1, 0, 0, 0, 8835, 1065, 1, 0, 0, 0, + 8836, 8834, 1, 0, 0, 0, 8837, 8839, 3, 1082, 541, 0, 8838, 8840, 3, 1072, + 536, 0, 8839, 8838, 1, 0, 0, 0, 8839, 8840, 1, 0, 0, 0, 8840, 8842, 1, + 0, 0, 0, 8841, 8843, 3, 1088, 544, 0, 8842, 8841, 1, 0, 0, 0, 8842, 8843, + 1, 0, 0, 0, 8843, 8881, 1, 0, 0, 0, 8844, 8846, 3, 1092, 546, 0, 8845, + 8847, 3, 1076, 538, 0, 8846, 8845, 1, 0, 0, 0, 8846, 8847, 1, 0, 0, 0, + 8847, 8881, 1, 0, 0, 0, 8848, 8850, 3, 1112, 556, 0, 8849, 8851, 3, 1072, + 536, 0, 8850, 8849, 1, 0, 0, 0, 8850, 8851, 1, 0, 0, 0, 8851, 8881, 1, + 0, 0, 0, 8852, 8854, 3, 970, 485, 0, 8853, 8855, 3, 1072, 536, 0, 8854, + 8853, 1, 0, 0, 0, 8854, 8855, 1, 0, 0, 0, 8855, 8881, 1, 0, 0, 0, 8856, + 8869, 5, 72, 0, 0, 8857, 8859, 3, 1112, 556, 0, 8858, 8860, 3, 1072, 536, + 0, 8859, 8858, 1, 0, 0, 0, 8859, 8860, 1, 0, 0, 0, 8860, 8870, 1, 0, 0, + 0, 8861, 8863, 3, 1092, 546, 0, 8862, 8864, 3, 1076, 538, 0, 8863, 8862, + 1, 0, 0, 0, 8863, 8864, 1, 0, 0, 0, 8864, 8870, 1, 0, 0, 0, 8865, 8867, + 3, 970, 485, 0, 8866, 8868, 3, 1072, 536, 0, 8867, 8866, 1, 0, 0, 0, 8867, + 8868, 1, 0, 0, 0, 8868, 8870, 1, 0, 0, 0, 8869, 8857, 1, 0, 0, 0, 8869, + 8861, 1, 0, 0, 0, 8869, 8865, 1, 0, 0, 0, 8870, 8881, 1, 0, 0, 0, 8871, + 8872, 5, 2, 0, 0, 8872, 8874, 3, 1066, 533, 0, 8873, 8875, 3, 1068, 534, + 0, 8874, 8873, 1, 0, 0, 0, 8874, 8875, 1, 0, 0, 0, 8875, 8876, 1, 0, 0, + 0, 8876, 8878, 5, 3, 0, 0, 8877, 8879, 3, 1072, 536, 0, 8878, 8877, 1, + 0, 0, 0, 8878, 8879, 1, 0, 0, 0, 8879, 8881, 1, 0, 0, 0, 8880, 8837, 1, + 0, 0, 0, 8880, 8844, 1, 0, 0, 0, 8880, 8848, 1, 0, 0, 0, 8880, 8852, 1, + 0, 0, 0, 8880, 8856, 1, 0, 0, 0, 8880, 8871, 1, 0, 0, 0, 8881, 8885, 1, + 0, 0, 0, 8882, 8884, 3, 1068, 534, 0, 8883, 8882, 1, 0, 0, 0, 8884, 8887, + 1, 0, 0, 0, 8885, 8883, 1, 0, 0, 0, 8885, 8886, 1, 0, 0, 0, 8886, 1067, + 1, 0, 0, 0, 8887, 8885, 1, 0, 0, 0, 8888, 8889, 5, 129, 0, 0, 8889, 8890, + 5, 137, 0, 0, 8890, 8905, 3, 1066, 533, 0, 8891, 8893, 5, 140, 0, 0, 8892, + 8894, 3, 1078, 539, 0, 8893, 8892, 1, 0, 0, 0, 8893, 8894, 1, 0, 0, 0, + 8894, 8895, 1, 0, 0, 0, 8895, 8896, 5, 137, 0, 0, 8896, 8905, 3, 1066, + 533, 0, 8897, 8899, 3, 1078, 539, 0, 8898, 8897, 1, 0, 0, 0, 8898, 8899, + 1, 0, 0, 0, 8899, 8900, 1, 0, 0, 0, 8900, 8901, 5, 137, 0, 0, 8901, 8902, + 3, 1066, 533, 0, 8902, 8903, 3, 1080, 540, 0, 8903, 8905, 1, 0, 0, 0, 8904, + 8888, 1, 0, 0, 0, 8904, 8891, 1, 0, 0, 0, 8904, 8898, 1, 0, 0, 0, 8905, + 1069, 1, 0, 0, 0, 8906, 8908, 5, 36, 0, 0, 8907, 8906, 1, 0, 0, 0, 8907, + 8908, 1, 0, 0, 0, 8908, 8909, 1, 0, 0, 0, 8909, 8914, 3, 1426, 713, 0, + 8910, 8911, 5, 2, 0, 0, 8911, 8912, 3, 1392, 696, 0, 8912, 8913, 5, 3, + 0, 0, 8913, 8915, 1, 0, 0, 0, 8914, 8910, 1, 0, 0, 0, 8914, 8915, 1, 0, + 0, 0, 8915, 1071, 1, 0, 0, 0, 8916, 8917, 3, 1074, 537, 0, 8917, 1073, + 1, 0, 0, 0, 8918, 8920, 5, 36, 0, 0, 8919, 8918, 1, 0, 0, 0, 8919, 8920, + 1, 0, 0, 0, 8920, 8921, 1, 0, 0, 0, 8921, 8926, 3, 1428, 714, 0, 8922, + 8923, 5, 2, 0, 0, 8923, 8924, 3, 1392, 696, 0, 8924, 8925, 5, 3, 0, 0, + 8925, 8927, 1, 0, 0, 0, 8926, 8922, 1, 0, 0, 0, 8926, 8927, 1, 0, 0, 0, + 8927, 1075, 1, 0, 0, 0, 8928, 8941, 3, 1070, 535, 0, 8929, 8931, 5, 36, + 0, 0, 8930, 8932, 3, 1426, 713, 0, 8931, 8930, 1, 0, 0, 0, 8931, 8932, + 1, 0, 0, 0, 8932, 8935, 1, 0, 0, 0, 8933, 8935, 3, 1426, 713, 0, 8934, + 8929, 1, 0, 0, 0, 8934, 8933, 1, 0, 0, 0, 8935, 8936, 1, 0, 0, 0, 8936, + 8937, 5, 2, 0, 0, 8937, 8938, 3, 1108, 554, 0, 8938, 8939, 5, 3, 0, 0, + 8939, 8941, 1, 0, 0, 0, 8940, 8928, 1, 0, 0, 0, 8940, 8934, 1, 0, 0, 0, + 8941, 1077, 1, 0, 0, 0, 8942, 8944, 7, 46, 0, 0, 8943, 8945, 5, 142, 0, + 0, 8944, 8943, 1, 0, 0, 0, 8944, 8945, 1, 0, 0, 0, 8945, 1079, 1, 0, 0, + 0, 8946, 8947, 5, 100, 0, 0, 8947, 8948, 5, 2, 0, 0, 8948, 8949, 3, 1392, + 696, 0, 8949, 8950, 5, 3, 0, 0, 8950, 8954, 1, 0, 0, 0, 8951, 8952, 5, + 80, 0, 0, 8952, 8954, 3, 1170, 585, 0, 8953, 8946, 1, 0, 0, 0, 8953, 8951, + 1, 0, 0, 0, 8954, 1081, 1, 0, 0, 0, 8955, 8957, 3, 1390, 695, 0, 8956, + 8958, 5, 9, 0, 0, 8957, 8956, 1, 0, 0, 0, 8957, 8958, 1, 0, 0, 0, 8958, + 8968, 1, 0, 0, 0, 8959, 8965, 5, 81, 0, 0, 8960, 8966, 3, 1390, 695, 0, + 8961, 8962, 5, 2, 0, 0, 8962, 8963, 3, 1390, 695, 0, 8963, 8964, 5, 3, + 0, 0, 8964, 8966, 1, 0, 0, 0, 8965, 8960, 1, 0, 0, 0, 8965, 8961, 1, 0, + 0, 0, 8966, 8968, 1, 0, 0, 0, 8967, 8955, 1, 0, 0, 0, 8967, 8959, 1, 0, + 0, 0, 8968, 1083, 1, 0, 0, 0, 8969, 8974, 3, 1082, 541, 0, 8970, 8971, + 5, 6, 0, 0, 8971, 8973, 3, 1082, 541, 0, 8972, 8970, 1, 0, 0, 0, 8973, + 8976, 1, 0, 0, 0, 8974, 8972, 1, 0, 0, 0, 8974, 8975, 1, 0, 0, 0, 8975, + 1085, 1, 0, 0, 0, 8976, 8974, 1, 0, 0, 0, 8977, 8982, 3, 1082, 541, 0, + 8978, 8980, 5, 36, 0, 0, 8979, 8978, 1, 0, 0, 0, 8979, 8980, 1, 0, 0, 0, + 8980, 8981, 1, 0, 0, 0, 8981, 8983, 3, 1426, 713, 0, 8982, 8979, 1, 0, + 0, 0, 8982, 8983, 1, 0, 0, 0, 8983, 1087, 1, 0, 0, 0, 8984, 8985, 5, 493, + 0, 0, 8985, 8986, 3, 1400, 700, 0, 8986, 8987, 5, 2, 0, 0, 8987, 8988, + 3, 1332, 666, 0, 8988, 8990, 5, 3, 0, 0, 8989, 8991, 3, 1090, 545, 0, 8990, + 8989, 1, 0, 0, 0, 8990, 8991, 1, 0, 0, 0, 8991, 1089, 1, 0, 0, 0, 8992, + 8993, 5, 322, 0, 0, 8993, 8994, 5, 2, 0, 0, 8994, 8995, 3, 1170, 585, 0, + 8995, 8996, 5, 3, 0, 0, 8996, 1091, 1, 0, 0, 0, 8997, 8999, 3, 1222, 611, + 0, 8998, 9000, 3, 1100, 550, 0, 8999, 8998, 1, 0, 0, 0, 8999, 9000, 1, + 0, 0, 0, 9000, 9010, 1, 0, 0, 0, 9001, 9002, 5, 332, 0, 0, 9002, 9003, + 5, 64, 0, 0, 9003, 9004, 5, 2, 0, 0, 9004, 9005, 3, 1096, 548, 0, 9005, + 9007, 5, 3, 0, 0, 9006, 9008, 3, 1100, 550, 0, 9007, 9006, 1, 0, 0, 0, + 9007, 9008, 1, 0, 0, 0, 9008, 9010, 1, 0, 0, 0, 9009, 8997, 1, 0, 0, 0, + 9009, 9001, 1, 0, 0, 0, 9010, 1093, 1, 0, 0, 0, 9011, 9013, 3, 1222, 611, + 0, 9012, 9014, 3, 1098, 549, 0, 9013, 9012, 1, 0, 0, 0, 9013, 9014, 1, + 0, 0, 0, 9014, 1095, 1, 0, 0, 0, 9015, 9020, 3, 1094, 547, 0, 9016, 9017, + 5, 6, 0, 0, 9017, 9019, 3, 1094, 547, 0, 9018, 9016, 1, 0, 0, 0, 9019, + 9022, 1, 0, 0, 0, 9020, 9018, 1, 0, 0, 0, 9020, 9021, 1, 0, 0, 0, 9021, + 1097, 1, 0, 0, 0, 9022, 9020, 1, 0, 0, 0, 9023, 9024, 5, 36, 0, 0, 9024, + 9025, 5, 2, 0, 0, 9025, 9026, 3, 1108, 554, 0, 9026, 9027, 5, 3, 0, 0, + 9027, 1099, 1, 0, 0, 0, 9028, 9029, 5, 105, 0, 0, 9029, 9030, 5, 494, 0, + 0, 9030, 1101, 1, 0, 0, 0, 9031, 9032, 5, 103, 0, 0, 9032, 9033, 3, 1170, + 585, 0, 9033, 1103, 1, 0, 0, 0, 9034, 9039, 5, 103, 0, 0, 9035, 9036, 5, + 455, 0, 0, 9036, 9037, 5, 287, 0, 0, 9037, 9040, 3, 962, 481, 0, 9038, + 9040, 3, 1170, 585, 0, 9039, 9035, 1, 0, 0, 0, 9039, 9038, 1, 0, 0, 0, + 9040, 1105, 1, 0, 0, 0, 9041, 9042, 3, 1108, 554, 0, 9042, 1107, 1, 0, + 0, 0, 9043, 9048, 3, 1110, 555, 0, 9044, 9045, 5, 6, 0, 0, 9045, 9047, + 3, 1110, 555, 0, 9046, 9044, 1, 0, 0, 0, 9047, 9050, 1, 0, 0, 0, 9048, + 9046, 1, 0, 0, 0, 9048, 9049, 1, 0, 0, 0, 9049, 1109, 1, 0, 0, 0, 9050, + 9048, 1, 0, 0, 0, 9051, 9052, 3, 1426, 713, 0, 9052, 9054, 3, 1126, 563, + 0, 9053, 9055, 3, 110, 55, 0, 9054, 9053, 1, 0, 0, 0, 9054, 9055, 1, 0, + 0, 0, 9055, 1111, 1, 0, 0, 0, 9056, 9057, 5, 495, 0, 0, 9057, 9073, 5, + 2, 0, 0, 9058, 9059, 3, 1214, 607, 0, 9059, 9060, 3, 1284, 642, 0, 9060, + 9061, 5, 496, 0, 0, 9061, 9062, 3, 1114, 557, 0, 9062, 9074, 1, 0, 0, 0, + 9063, 9064, 5, 497, 0, 0, 9064, 9065, 5, 2, 0, 0, 9065, 9066, 3, 1122, + 561, 0, 9066, 9067, 5, 3, 0, 0, 9067, 9068, 5, 6, 0, 0, 9068, 9069, 3, + 1214, 607, 0, 9069, 9070, 3, 1284, 642, 0, 9070, 9071, 5, 496, 0, 0, 9071, + 9072, 3, 1114, 557, 0, 9072, 9074, 1, 0, 0, 0, 9073, 9058, 1, 0, 0, 0, + 9073, 9063, 1, 0, 0, 0, 9074, 9075, 1, 0, 0, 0, 9075, 9076, 5, 3, 0, 0, + 9076, 1113, 1, 0, 0, 0, 9077, 9082, 3, 1116, 558, 0, 9078, 9079, 5, 6, + 0, 0, 9079, 9081, 3, 1116, 558, 0, 9080, 9078, 1, 0, 0, 0, 9081, 9084, + 1, 0, 0, 0, 9082, 9080, 1, 0, 0, 0, 9082, 9083, 1, 0, 0, 0, 9083, 1115, + 1, 0, 0, 0, 9084, 9082, 1, 0, 0, 0, 9085, 9092, 3, 1426, 713, 0, 9086, + 9088, 3, 1126, 563, 0, 9087, 9089, 3, 1118, 559, 0, 9088, 9087, 1, 0, 0, + 0, 9088, 9089, 1, 0, 0, 0, 9089, 9093, 1, 0, 0, 0, 9090, 9091, 5, 62, 0, + 0, 9091, 9093, 5, 494, 0, 0, 9092, 9086, 1, 0, 0, 0, 9092, 9090, 1, 0, + 0, 0, 9093, 1117, 1, 0, 0, 0, 9094, 9096, 3, 1120, 560, 0, 9095, 9094, + 1, 0, 0, 0, 9096, 9097, 1, 0, 0, 0, 9097, 9095, 1, 0, 0, 0, 9097, 9098, + 1, 0, 0, 0, 9098, 1119, 1, 0, 0, 0, 9099, 9100, 5, 53, 0, 0, 9100, 9108, + 3, 1170, 585, 0, 9101, 9102, 3, 1436, 718, 0, 9102, 9103, 3, 1170, 585, + 0, 9103, 9108, 1, 0, 0, 0, 9104, 9105, 5, 77, 0, 0, 9105, 9108, 5, 78, + 0, 0, 9106, 9108, 5, 78, 0, 0, 9107, 9099, 1, 0, 0, 0, 9107, 9101, 1, 0, + 0, 0, 9107, 9104, 1, 0, 0, 0, 9107, 9106, 1, 0, 0, 0, 9108, 1121, 1, 0, + 0, 0, 9109, 9114, 3, 1124, 562, 0, 9110, 9111, 5, 6, 0, 0, 9111, 9113, + 3, 1124, 562, 0, 9112, 9110, 1, 0, 0, 0, 9113, 9116, 1, 0, 0, 0, 9114, + 9112, 1, 0, 0, 0, 9114, 9115, 1, 0, 0, 0, 9115, 1123, 1, 0, 0, 0, 9116, + 9114, 1, 0, 0, 0, 9117, 9118, 3, 1212, 606, 0, 9118, 9119, 5, 36, 0, 0, + 9119, 9120, 3, 1434, 717, 0, 9120, 9124, 1, 0, 0, 0, 9121, 9122, 5, 53, + 0, 0, 9122, 9124, 3, 1212, 606, 0, 9123, 9117, 1, 0, 0, 0, 9123, 9121, + 1, 0, 0, 0, 9124, 1125, 1, 0, 0, 0, 9125, 9127, 5, 429, 0, 0, 9126, 9125, + 1, 0, 0, 0, 9126, 9127, 1, 0, 0, 0, 9127, 9128, 1, 0, 0, 0, 9128, 9137, + 3, 1130, 565, 0, 9129, 9138, 3, 1128, 564, 0, 9130, 9135, 5, 35, 0, 0, + 9131, 9132, 5, 4, 0, 0, 9132, 9133, 3, 1410, 705, 0, 9133, 9134, 5, 5, + 0, 0, 9134, 9136, 1, 0, 0, 0, 9135, 9131, 1, 0, 0, 0, 9135, 9136, 1, 0, + 0, 0, 9136, 9138, 1, 0, 0, 0, 9137, 9129, 1, 0, 0, 0, 9137, 9130, 1, 0, + 0, 0, 9138, 9144, 1, 0, 0, 0, 9139, 9140, 3, 1390, 695, 0, 9140, 9141, + 5, 27, 0, 0, 9141, 9142, 7, 47, 0, 0, 9142, 9144, 1, 0, 0, 0, 9143, 9126, + 1, 0, 0, 0, 9143, 9139, 1, 0, 0, 0, 9144, 1127, 1, 0, 0, 0, 9145, 9147, + 5, 4, 0, 0, 9146, 9148, 3, 1410, 705, 0, 9147, 9146, 1, 0, 0, 0, 9147, + 9148, 1, 0, 0, 0, 9148, 9149, 1, 0, 0, 0, 9149, 9151, 5, 5, 0, 0, 9150, + 9145, 1, 0, 0, 0, 9151, 9154, 1, 0, 0, 0, 9152, 9150, 1, 0, 0, 0, 9152, + 9153, 1, 0, 0, 0, 9153, 1129, 1, 0, 0, 0, 9154, 9152, 1, 0, 0, 0, 9155, + 9171, 3, 1134, 567, 0, 9156, 9171, 3, 1138, 569, 0, 9157, 9171, 3, 1142, + 571, 0, 9158, 9171, 3, 1150, 575, 0, 9159, 9171, 3, 1158, 579, 0, 9160, + 9168, 3, 1160, 580, 0, 9161, 9163, 3, 1164, 582, 0, 9162, 9161, 1, 0, 0, + 0, 9162, 9163, 1, 0, 0, 0, 9163, 9169, 1, 0, 0, 0, 9164, 9165, 5, 2, 0, + 0, 9165, 9166, 3, 1410, 705, 0, 9166, 9167, 5, 3, 0, 0, 9167, 9169, 1, + 0, 0, 0, 9168, 9162, 1, 0, 0, 0, 9168, 9164, 1, 0, 0, 0, 9169, 9171, 1, + 0, 0, 0, 9170, 9155, 1, 0, 0, 0, 9170, 9156, 1, 0, 0, 0, 9170, 9157, 1, + 0, 0, 0, 9170, 9158, 1, 0, 0, 0, 9170, 9159, 1, 0, 0, 0, 9170, 9160, 1, + 0, 0, 0, 9171, 1131, 1, 0, 0, 0, 9172, 9177, 3, 1138, 569, 0, 9173, 9177, + 3, 1144, 572, 0, 9174, 9177, 3, 1152, 576, 0, 9175, 9177, 3, 1158, 579, + 0, 9176, 9172, 1, 0, 0, 0, 9176, 9173, 1, 0, 0, 0, 9176, 9174, 1, 0, 0, + 0, 9176, 9175, 1, 0, 0, 0, 9177, 1133, 1, 0, 0, 0, 9178, 9183, 3, 1448, + 724, 0, 9179, 9183, 3, 1430, 715, 0, 9180, 9183, 5, 138, 0, 0, 9181, 9183, + 5, 145, 0, 0, 9182, 9178, 1, 0, 0, 0, 9182, 9179, 1, 0, 0, 0, 9182, 9180, + 1, 0, 0, 0, 9182, 9181, 1, 0, 0, 0, 9183, 9185, 1, 0, 0, 0, 9184, 9186, + 3, 528, 264, 0, 9185, 9184, 1, 0, 0, 0, 9185, 9186, 1, 0, 0, 0, 9186, 9188, + 1, 0, 0, 0, 9187, 9189, 3, 1136, 568, 0, 9188, 9187, 1, 0, 0, 0, 9188, + 9189, 1, 0, 0, 0, 9189, 1135, 1, 0, 0, 0, 9190, 9191, 5, 2, 0, 0, 9191, + 9192, 3, 1332, 666, 0, 9192, 9193, 5, 3, 0, 0, 9193, 1137, 1, 0, 0, 0, + 9194, 9219, 5, 414, 0, 0, 9195, 9219, 5, 415, 0, 0, 9196, 9219, 5, 430, + 0, 0, 9197, 9219, 5, 401, 0, 0, 9198, 9219, 5, 427, 0, 0, 9199, 9201, 5, + 411, 0, 0, 9200, 9202, 3, 1140, 570, 0, 9201, 9200, 1, 0, 0, 0, 9201, 9202, + 1, 0, 0, 0, 9202, 9219, 1, 0, 0, 0, 9203, 9204, 5, 209, 0, 0, 9204, 9219, + 5, 426, 0, 0, 9205, 9207, 5, 408, 0, 0, 9206, 9208, 3, 1136, 568, 0, 9207, + 9206, 1, 0, 0, 0, 9207, 9208, 1, 0, 0, 0, 9208, 9219, 1, 0, 0, 0, 9209, + 9211, 5, 407, 0, 0, 9210, 9212, 3, 1136, 568, 0, 9211, 9210, 1, 0, 0, 0, + 9211, 9212, 1, 0, 0, 0, 9212, 9219, 1, 0, 0, 0, 9213, 9215, 5, 422, 0, + 0, 9214, 9216, 3, 1136, 568, 0, 9215, 9214, 1, 0, 0, 0, 9215, 9216, 1, + 0, 0, 0, 9216, 9219, 1, 0, 0, 0, 9217, 9219, 5, 403, 0, 0, 9218, 9194, + 1, 0, 0, 0, 9218, 9195, 1, 0, 0, 0, 9218, 9196, 1, 0, 0, 0, 9218, 9197, + 1, 0, 0, 0, 9218, 9198, 1, 0, 0, 0, 9218, 9199, 1, 0, 0, 0, 9218, 9203, + 1, 0, 0, 0, 9218, 9205, 1, 0, 0, 0, 9218, 9209, 1, 0, 0, 0, 9218, 9213, + 1, 0, 0, 0, 9218, 9217, 1, 0, 0, 0, 9219, 1139, 1, 0, 0, 0, 9220, 9221, + 5, 2, 0, 0, 9221, 9222, 3, 1410, 705, 0, 9222, 9223, 5, 3, 0, 0, 9223, + 1141, 1, 0, 0, 0, 9224, 9227, 3, 1146, 573, 0, 9225, 9227, 3, 1148, 574, + 0, 9226, 9224, 1, 0, 0, 0, 9226, 9225, 1, 0, 0, 0, 9227, 1143, 1, 0, 0, + 0, 9228, 9231, 3, 1146, 573, 0, 9229, 9231, 3, 1148, 574, 0, 9230, 9228, + 1, 0, 0, 0, 9230, 9229, 1, 0, 0, 0, 9231, 1145, 1, 0, 0, 0, 9232, 9234, + 5, 402, 0, 0, 9233, 9235, 3, 1156, 578, 0, 9234, 9233, 1, 0, 0, 0, 9234, + 9235, 1, 0, 0, 0, 9235, 9236, 1, 0, 0, 0, 9236, 9237, 5, 2, 0, 0, 9237, + 9238, 3, 1332, 666, 0, 9238, 9239, 5, 3, 0, 0, 9239, 1147, 1, 0, 0, 0, + 9240, 9242, 5, 402, 0, 0, 9241, 9243, 3, 1156, 578, 0, 9242, 9241, 1, 0, + 0, 0, 9242, 9243, 1, 0, 0, 0, 9243, 1149, 1, 0, 0, 0, 9244, 9249, 3, 1154, + 577, 0, 9245, 9246, 5, 2, 0, 0, 9246, 9247, 3, 1410, 705, 0, 9247, 9248, + 5, 3, 0, 0, 9248, 9250, 1, 0, 0, 0, 9249, 9245, 1, 0, 0, 0, 9249, 9250, + 1, 0, 0, 0, 9250, 1151, 1, 0, 0, 0, 9251, 9256, 3, 1154, 577, 0, 9252, + 9253, 5, 2, 0, 0, 9253, 9254, 3, 1410, 705, 0, 9254, 9255, 5, 3, 0, 0, + 9255, 9257, 1, 0, 0, 0, 9256, 9252, 1, 0, 0, 0, 9256, 9257, 1, 0, 0, 0, + 9257, 1153, 1, 0, 0, 0, 9258, 9260, 7, 48, 0, 0, 9259, 9261, 3, 1156, 578, + 0, 9260, 9259, 1, 0, 0, 0, 9260, 9261, 1, 0, 0, 0, 9261, 9269, 1, 0, 0, + 0, 9262, 9269, 5, 437, 0, 0, 9263, 9264, 5, 418, 0, 0, 9264, 9266, 7, 49, + 0, 0, 9265, 9267, 3, 1156, 578, 0, 9266, 9265, 1, 0, 0, 0, 9266, 9267, + 1, 0, 0, 0, 9267, 9269, 1, 0, 0, 0, 9268, 9258, 1, 0, 0, 0, 9268, 9262, + 1, 0, 0, 0, 9268, 9263, 1, 0, 0, 0, 9269, 1155, 1, 0, 0, 0, 9270, 9271, + 5, 386, 0, 0, 9271, 1157, 1, 0, 0, 0, 9272, 9277, 7, 50, 0, 0, 9273, 9274, + 5, 2, 0, 0, 9274, 9275, 3, 1410, 705, 0, 9275, 9276, 5, 3, 0, 0, 9276, + 9278, 1, 0, 0, 0, 9277, 9273, 1, 0, 0, 0, 9277, 9278, 1, 0, 0, 0, 9278, + 9280, 1, 0, 0, 0, 9279, 9281, 3, 1162, 581, 0, 9280, 9279, 1, 0, 0, 0, + 9280, 9281, 1, 0, 0, 0, 9281, 1159, 1, 0, 0, 0, 9282, 9283, 5, 416, 0, + 0, 9283, 1161, 1, 0, 0, 0, 9284, 9285, 5, 105, 0, 0, 9285, 9286, 5, 432, + 0, 0, 9286, 9291, 5, 398, 0, 0, 9287, 9288, 5, 391, 0, 0, 9288, 9289, 5, + 432, 0, 0, 9289, 9291, 5, 398, 0, 0, 9290, 9284, 1, 0, 0, 0, 9290, 9287, + 1, 0, 0, 0, 9291, 1163, 1, 0, 0, 0, 9292, 9318, 5, 396, 0, 0, 9293, 9318, + 5, 276, 0, 0, 9294, 9318, 5, 195, 0, 0, 9295, 9318, 5, 237, 0, 0, 9296, + 9318, 5, 273, 0, 0, 9297, 9318, 3, 1166, 583, 0, 9298, 9299, 5, 396, 0, + 0, 9299, 9300, 5, 94, 0, 0, 9300, 9318, 5, 276, 0, 0, 9301, 9302, 5, 195, + 0, 0, 9302, 9306, 5, 94, 0, 0, 9303, 9307, 5, 237, 0, 0, 9304, 9307, 5, + 273, 0, 0, 9305, 9307, 3, 1166, 583, 0, 9306, 9303, 1, 0, 0, 0, 9306, 9304, + 1, 0, 0, 0, 9306, 9305, 1, 0, 0, 0, 9307, 9318, 1, 0, 0, 0, 9308, 9309, + 5, 237, 0, 0, 9309, 9312, 5, 94, 0, 0, 9310, 9313, 5, 273, 0, 0, 9311, + 9313, 3, 1166, 583, 0, 9312, 9310, 1, 0, 0, 0, 9312, 9311, 1, 0, 0, 0, + 9313, 9318, 1, 0, 0, 0, 9314, 9315, 5, 273, 0, 0, 9315, 9316, 5, 94, 0, + 0, 9316, 9318, 3, 1166, 583, 0, 9317, 9292, 1, 0, 0, 0, 9317, 9293, 1, + 0, 0, 0, 9317, 9294, 1, 0, 0, 0, 9317, 9295, 1, 0, 0, 0, 9317, 9296, 1, + 0, 0, 0, 9317, 9297, 1, 0, 0, 0, 9317, 9298, 1, 0, 0, 0, 9317, 9301, 1, + 0, 0, 0, 9317, 9308, 1, 0, 0, 0, 9317, 9314, 1, 0, 0, 0, 9318, 1165, 1, + 0, 0, 0, 9319, 9324, 5, 338, 0, 0, 9320, 9321, 5, 2, 0, 0, 9321, 9322, + 3, 1410, 705, 0, 9322, 9323, 5, 3, 0, 0, 9323, 9325, 1, 0, 0, 0, 9324, + 9320, 1, 0, 0, 0, 9324, 9325, 1, 0, 0, 0, 9325, 1167, 1, 0, 0, 0, 9326, + 9327, 5, 216, 0, 0, 9327, 9328, 3, 1170, 585, 0, 9328, 1169, 1, 0, 0, 0, + 9329, 9330, 3, 1172, 586, 0, 9330, 1171, 1, 0, 0, 0, 9331, 9333, 3, 1174, + 587, 0, 9332, 9334, 3, 1326, 663, 0, 9333, 9332, 1, 0, 0, 0, 9333, 9334, + 1, 0, 0, 0, 9334, 1173, 1, 0, 0, 0, 9335, 9340, 3, 1176, 588, 0, 9336, + 9337, 7, 51, 0, 0, 9337, 9339, 3, 1176, 588, 0, 9338, 9336, 1, 0, 0, 0, + 9339, 9342, 1, 0, 0, 0, 9340, 9338, 1, 0, 0, 0, 9340, 9341, 1, 0, 0, 0, + 9341, 1175, 1, 0, 0, 0, 9342, 9340, 1, 0, 0, 0, 9343, 9348, 3, 1178, 589, + 0, 9344, 9345, 5, 82, 0, 0, 9345, 9347, 3, 1178, 589, 0, 9346, 9344, 1, + 0, 0, 0, 9347, 9350, 1, 0, 0, 0, 9348, 9346, 1, 0, 0, 0, 9348, 9349, 1, + 0, 0, 0, 9349, 1177, 1, 0, 0, 0, 9350, 9348, 1, 0, 0, 0, 9351, 9356, 3, + 1180, 590, 0, 9352, 9353, 5, 33, 0, 0, 9353, 9355, 3, 1180, 590, 0, 9354, + 9352, 1, 0, 0, 0, 9355, 9358, 1, 0, 0, 0, 9356, 9354, 1, 0, 0, 0, 9356, + 9357, 1, 0, 0, 0, 9357, 1179, 1, 0, 0, 0, 9358, 9356, 1, 0, 0, 0, 9359, + 9371, 3, 1182, 591, 0, 9360, 9362, 5, 77, 0, 0, 9361, 9360, 1, 0, 0, 0, + 9361, 9362, 1, 0, 0, 0, 9362, 9363, 1, 0, 0, 0, 9363, 9365, 5, 400, 0, + 0, 9364, 9366, 5, 91, 0, 0, 9365, 9364, 1, 0, 0, 0, 9365, 9366, 1, 0, 0, + 0, 9366, 9367, 1, 0, 0, 0, 9367, 9368, 3, 1182, 591, 0, 9368, 9369, 5, + 33, 0, 0, 9369, 9370, 3, 1182, 591, 0, 9370, 9372, 1, 0, 0, 0, 9371, 9361, + 1, 0, 0, 0, 9371, 9372, 1, 0, 0, 0, 9372, 1181, 1, 0, 0, 0, 9373, 9379, + 3, 1184, 592, 0, 9374, 9376, 5, 77, 0, 0, 9375, 9374, 1, 0, 0, 0, 9375, + 9376, 1, 0, 0, 0, 9376, 9377, 1, 0, 0, 0, 9377, 9378, 5, 68, 0, 0, 9378, + 9380, 3, 1358, 679, 0, 9379, 9375, 1, 0, 0, 0, 9379, 9380, 1, 0, 0, 0, + 9380, 1183, 1, 0, 0, 0, 9381, 9383, 5, 77, 0, 0, 9382, 9381, 1, 0, 0, 0, + 9382, 9383, 1, 0, 0, 0, 9383, 9384, 1, 0, 0, 0, 9384, 9385, 3, 1186, 593, + 0, 9385, 1185, 1, 0, 0, 0, 9386, 9388, 3, 1188, 594, 0, 9387, 9389, 7, + 52, 0, 0, 9388, 9387, 1, 0, 0, 0, 9388, 9389, 1, 0, 0, 0, 9389, 1187, 1, + 0, 0, 0, 9390, 9414, 3, 1190, 595, 0, 9391, 9393, 5, 135, 0, 0, 9392, 9394, + 5, 77, 0, 0, 9393, 9392, 1, 0, 0, 0, 9393, 9394, 1, 0, 0, 0, 9394, 9412, + 1, 0, 0, 0, 9395, 9413, 5, 78, 0, 0, 9396, 9413, 5, 96, 0, 0, 9397, 9413, + 5, 60, 0, 0, 9398, 9413, 5, 377, 0, 0, 9399, 9400, 5, 56, 0, 0, 9400, 9401, + 5, 64, 0, 0, 9401, 9413, 3, 1170, 585, 0, 9402, 9403, 5, 287, 0, 0, 9403, + 9404, 5, 2, 0, 0, 9404, 9405, 3, 1338, 669, 0, 9405, 9406, 5, 3, 0, 0, + 9406, 9413, 1, 0, 0, 0, 9407, 9413, 5, 207, 0, 0, 9408, 9410, 3, 1348, + 674, 0, 9409, 9408, 1, 0, 0, 0, 9409, 9410, 1, 0, 0, 0, 9410, 9411, 1, + 0, 0, 0, 9411, 9413, 5, 499, 0, 0, 9412, 9395, 1, 0, 0, 0, 9412, 9396, + 1, 0, 0, 0, 9412, 9397, 1, 0, 0, 0, 9412, 9398, 1, 0, 0, 0, 9412, 9399, + 1, 0, 0, 0, 9412, 9402, 1, 0, 0, 0, 9412, 9407, 1, 0, 0, 0, 9412, 9409, + 1, 0, 0, 0, 9413, 9415, 1, 0, 0, 0, 9414, 9391, 1, 0, 0, 0, 9414, 9415, + 1, 0, 0, 0, 9415, 1189, 1, 0, 0, 0, 9416, 9428, 3, 1192, 596, 0, 9417, + 9418, 7, 53, 0, 0, 9418, 9429, 3, 1192, 596, 0, 9419, 9420, 3, 1330, 665, + 0, 9420, 9426, 3, 1320, 660, 0, 9421, 9427, 3, 970, 485, 0, 9422, 9423, + 5, 2, 0, 0, 9423, 9424, 3, 1170, 585, 0, 9424, 9425, 5, 3, 0, 0, 9425, + 9427, 1, 0, 0, 0, 9426, 9421, 1, 0, 0, 0, 9426, 9422, 1, 0, 0, 0, 9427, + 9429, 1, 0, 0, 0, 9428, 9417, 1, 0, 0, 0, 9428, 9419, 1, 0, 0, 0, 9428, + 9429, 1, 0, 0, 0, 9429, 1191, 1, 0, 0, 0, 9430, 9444, 3, 1194, 597, 0, + 9431, 9433, 5, 77, 0, 0, 9432, 9431, 1, 0, 0, 0, 9432, 9433, 1, 0, 0, 0, + 9433, 9438, 1, 0, 0, 0, 9434, 9439, 5, 139, 0, 0, 9435, 9439, 5, 133, 0, + 0, 9436, 9437, 5, 146, 0, 0, 9437, 9439, 5, 94, 0, 0, 9438, 9434, 1, 0, + 0, 0, 9438, 9435, 1, 0, 0, 0, 9438, 9436, 1, 0, 0, 0, 9439, 9440, 1, 0, + 0, 0, 9440, 9442, 3, 1194, 597, 0, 9441, 9443, 3, 1168, 584, 0, 9442, 9441, + 1, 0, 0, 0, 9442, 9443, 1, 0, 0, 0, 9443, 9445, 1, 0, 0, 0, 9444, 9432, + 1, 0, 0, 0, 9444, 9445, 1, 0, 0, 0, 9445, 1193, 1, 0, 0, 0, 9446, 9452, + 3, 1196, 598, 0, 9447, 9448, 3, 1326, 663, 0, 9448, 9449, 3, 1196, 598, + 0, 9449, 9451, 1, 0, 0, 0, 9450, 9447, 1, 0, 0, 0, 9451, 9454, 1, 0, 0, + 0, 9452, 9450, 1, 0, 0, 0, 9452, 9453, 1, 0, 0, 0, 9453, 1195, 1, 0, 0, + 0, 9454, 9452, 1, 0, 0, 0, 9455, 9457, 3, 1326, 663, 0, 9456, 9455, 1, + 0, 0, 0, 9456, 9457, 1, 0, 0, 0, 9457, 9458, 1, 0, 0, 0, 9458, 9459, 3, + 1198, 599, 0, 9459, 1197, 1, 0, 0, 0, 9460, 9465, 3, 1200, 600, 0, 9461, + 9462, 7, 54, 0, 0, 9462, 9464, 3, 1200, 600, 0, 9463, 9461, 1, 0, 0, 0, + 9464, 9467, 1, 0, 0, 0, 9465, 9463, 1, 0, 0, 0, 9465, 9466, 1, 0, 0, 0, + 9466, 1199, 1, 0, 0, 0, 9467, 9465, 1, 0, 0, 0, 9468, 9473, 3, 1202, 601, + 0, 9469, 9470, 7, 55, 0, 0, 9470, 9472, 3, 1202, 601, 0, 9471, 9469, 1, + 0, 0, 0, 9472, 9475, 1, 0, 0, 0, 9473, 9471, 1, 0, 0, 0, 9473, 9474, 1, + 0, 0, 0, 9474, 1201, 1, 0, 0, 0, 9475, 9473, 1, 0, 0, 0, 9476, 9479, 3, + 1204, 602, 0, 9477, 9478, 5, 15, 0, 0, 9478, 9480, 3, 1170, 585, 0, 9479, + 9477, 1, 0, 0, 0, 9479, 9480, 1, 0, 0, 0, 9480, 1203, 1, 0, 0, 0, 9481, + 9483, 7, 54, 0, 0, 9482, 9481, 1, 0, 0, 0, 9482, 9483, 1, 0, 0, 0, 9483, + 9484, 1, 0, 0, 0, 9484, 9485, 3, 1206, 603, 0, 9485, 1205, 1, 0, 0, 0, + 9486, 9491, 3, 1208, 604, 0, 9487, 9488, 5, 161, 0, 0, 9488, 9489, 5, 432, + 0, 0, 9489, 9490, 5, 398, 0, 0, 9490, 9492, 3, 1170, 585, 0, 9491, 9487, + 1, 0, 0, 0, 9491, 9492, 1, 0, 0, 0, 9492, 1207, 1, 0, 0, 0, 9493, 9496, + 3, 1210, 605, 0, 9494, 9495, 5, 43, 0, 0, 9495, 9497, 3, 526, 263, 0, 9496, + 9494, 1, 0, 0, 0, 9496, 9497, 1, 0, 0, 0, 9497, 1209, 1, 0, 0, 0, 9498, + 9503, 3, 1214, 607, 0, 9499, 9500, 5, 26, 0, 0, 9500, 9502, 3, 1126, 563, + 0, 9501, 9499, 1, 0, 0, 0, 9502, 9505, 1, 0, 0, 0, 9503, 9501, 1, 0, 0, + 0, 9503, 9504, 1, 0, 0, 0, 9504, 1211, 1, 0, 0, 0, 9505, 9503, 1, 0, 0, + 0, 9506, 9507, 6, 606, -1, 0, 9507, 9514, 3, 1214, 607, 0, 9508, 9509, + 7, 54, 0, 0, 9509, 9514, 3, 1212, 606, 9, 9510, 9511, 3, 1326, 663, 0, + 9511, 9512, 3, 1212, 606, 3, 9512, 9514, 1, 0, 0, 0, 9513, 9506, 1, 0, + 0, 0, 9513, 9508, 1, 0, 0, 0, 9513, 9510, 1, 0, 0, 0, 9514, 9554, 1, 0, + 0, 0, 9515, 9516, 10, 8, 0, 0, 9516, 9517, 5, 15, 0, 0, 9517, 9553, 3, + 1212, 606, 9, 9518, 9519, 10, 7, 0, 0, 9519, 9520, 7, 55, 0, 0, 9520, 9553, + 3, 1212, 606, 8, 9521, 9522, 10, 6, 0, 0, 9522, 9523, 7, 54, 0, 0, 9523, + 9553, 3, 1212, 606, 7, 9524, 9525, 10, 5, 0, 0, 9525, 9526, 3, 1326, 663, + 0, 9526, 9527, 3, 1212, 606, 6, 9527, 9553, 1, 0, 0, 0, 9528, 9529, 10, + 4, 0, 0, 9529, 9530, 7, 53, 0, 0, 9530, 9553, 3, 1212, 606, 5, 9531, 9532, + 10, 10, 0, 0, 9532, 9533, 5, 26, 0, 0, 9533, 9553, 3, 1126, 563, 0, 9534, + 9535, 10, 2, 0, 0, 9535, 9553, 3, 1326, 663, 0, 9536, 9537, 10, 1, 0, 0, + 9537, 9539, 5, 135, 0, 0, 9538, 9540, 5, 77, 0, 0, 9539, 9538, 1, 0, 0, + 0, 9539, 9540, 1, 0, 0, 0, 9540, 9550, 1, 0, 0, 0, 9541, 9542, 5, 56, 0, + 0, 9542, 9543, 5, 64, 0, 0, 9543, 9551, 3, 1212, 606, 0, 9544, 9545, 5, + 287, 0, 0, 9545, 9546, 5, 2, 0, 0, 9546, 9547, 3, 1338, 669, 0, 9547, 9548, + 5, 3, 0, 0, 9548, 9551, 1, 0, 0, 0, 9549, 9551, 5, 207, 0, 0, 9550, 9541, + 1, 0, 0, 0, 9550, 9544, 1, 0, 0, 0, 9550, 9549, 1, 0, 0, 0, 9551, 9553, + 1, 0, 0, 0, 9552, 9515, 1, 0, 0, 0, 9552, 9518, 1, 0, 0, 0, 9552, 9521, + 1, 0, 0, 0, 9552, 9524, 1, 0, 0, 0, 9552, 9528, 1, 0, 0, 0, 9552, 9531, + 1, 0, 0, 0, 9552, 9534, 1, 0, 0, 0, 9552, 9536, 1, 0, 0, 0, 9553, 9556, + 1, 0, 0, 0, 9554, 9552, 1, 0, 0, 0, 9554, 9555, 1, 0, 0, 0, 9555, 1213, + 1, 0, 0, 0, 9556, 9554, 1, 0, 0, 0, 9557, 9558, 5, 409, 0, 0, 9558, 9594, + 3, 970, 485, 0, 9559, 9562, 5, 35, 0, 0, 9560, 9563, 3, 970, 485, 0, 9561, + 9563, 3, 1340, 670, 0, 9562, 9560, 1, 0, 0, 0, 9562, 9561, 1, 0, 0, 0, + 9563, 9594, 1, 0, 0, 0, 9564, 9565, 5, 28, 0, 0, 9565, 9594, 3, 1378, 689, + 0, 9566, 9567, 5, 491, 0, 0, 9567, 9568, 5, 2, 0, 0, 9568, 9569, 3, 1332, + 666, 0, 9569, 9570, 5, 3, 0, 0, 9570, 9594, 1, 0, 0, 0, 9571, 9572, 5, + 98, 0, 0, 9572, 9594, 3, 970, 485, 0, 9573, 9594, 3, 1370, 685, 0, 9574, + 9594, 3, 1402, 701, 0, 9575, 9594, 3, 1216, 608, 0, 9576, 9577, 5, 2, 0, + 0, 9577, 9578, 3, 1170, 585, 0, 9578, 9579, 5, 3, 0, 0, 9579, 9580, 3, + 1378, 689, 0, 9580, 9594, 1, 0, 0, 0, 9581, 9594, 3, 1360, 680, 0, 9582, + 9594, 3, 1220, 610, 0, 9583, 9585, 3, 970, 485, 0, 9584, 9586, 3, 1376, + 688, 0, 9585, 9584, 1, 0, 0, 0, 9585, 9586, 1, 0, 0, 0, 9586, 9594, 1, + 0, 0, 0, 9587, 9594, 3, 1316, 658, 0, 9588, 9594, 3, 1318, 659, 0, 9589, + 9590, 3, 1314, 657, 0, 9590, 9591, 5, 144, 0, 0, 9591, 9592, 3, 1314, 657, + 0, 9592, 9594, 1, 0, 0, 0, 9593, 9557, 1, 0, 0, 0, 9593, 9559, 1, 0, 0, + 0, 9593, 9564, 1, 0, 0, 0, 9593, 9566, 1, 0, 0, 0, 9593, 9571, 1, 0, 0, + 0, 9593, 9573, 1, 0, 0, 0, 9593, 9574, 1, 0, 0, 0, 9593, 9575, 1, 0, 0, + 0, 9593, 9576, 1, 0, 0, 0, 9593, 9581, 1, 0, 0, 0, 9593, 9582, 1, 0, 0, + 0, 9593, 9583, 1, 0, 0, 0, 9593, 9587, 1, 0, 0, 0, 9593, 9588, 1, 0, 0, + 0, 9593, 9589, 1, 0, 0, 0, 9594, 1215, 1, 0, 0, 0, 9595, 9596, 5, 689, + 0, 0, 9596, 1217, 1, 0, 0, 0, 9597, 9598, 3, 1400, 700, 0, 9598, 9620, + 5, 2, 0, 0, 9599, 9603, 3, 1334, 667, 0, 9600, 9601, 5, 6, 0, 0, 9601, + 9602, 5, 101, 0, 0, 9602, 9604, 3, 1336, 668, 0, 9603, 9600, 1, 0, 0, 0, + 9603, 9604, 1, 0, 0, 0, 9604, 9606, 1, 0, 0, 0, 9605, 9607, 3, 1004, 502, + 0, 9606, 9605, 1, 0, 0, 0, 9606, 9607, 1, 0, 0, 0, 9607, 9621, 1, 0, 0, + 0, 9608, 9609, 5, 101, 0, 0, 9609, 9611, 3, 1336, 668, 0, 9610, 9612, 3, + 1004, 502, 0, 9611, 9610, 1, 0, 0, 0, 9611, 9612, 1, 0, 0, 0, 9612, 9621, + 1, 0, 0, 0, 9613, 9614, 7, 43, 0, 0, 9614, 9616, 3, 1334, 667, 0, 9615, + 9617, 3, 1004, 502, 0, 9616, 9615, 1, 0, 0, 0, 9616, 9617, 1, 0, 0, 0, + 9617, 9621, 1, 0, 0, 0, 9618, 9621, 5, 9, 0, 0, 9619, 9621, 1, 0, 0, 0, + 9620, 9599, 1, 0, 0, 0, 9620, 9608, 1, 0, 0, 0, 9620, 9613, 1, 0, 0, 0, + 9620, 9618, 1, 0, 0, 0, 9620, 9619, 1, 0, 0, 0, 9621, 9622, 1, 0, 0, 0, + 9622, 9623, 5, 3, 0, 0, 9623, 1219, 1, 0, 0, 0, 9624, 9626, 3, 1218, 609, + 0, 9625, 9627, 3, 1288, 644, 0, 9626, 9625, 1, 0, 0, 0, 9626, 9627, 1, + 0, 0, 0, 9627, 9629, 1, 0, 0, 0, 9628, 9630, 3, 1290, 645, 0, 9629, 9628, + 1, 0, 0, 0, 9629, 9630, 1, 0, 0, 0, 9630, 9632, 1, 0, 0, 0, 9631, 9633, + 3, 1298, 649, 0, 9632, 9631, 1, 0, 0, 0, 9632, 9633, 1, 0, 0, 0, 9633, + 9643, 1, 0, 0, 0, 9634, 9636, 3, 1224, 612, 0, 9635, 9637, 3, 1290, 645, + 0, 9636, 9635, 1, 0, 0, 0, 9636, 9637, 1, 0, 0, 0, 9637, 9639, 1, 0, 0, + 0, 9638, 9640, 3, 1298, 649, 0, 9639, 9638, 1, 0, 0, 0, 9639, 9640, 1, + 0, 0, 0, 9640, 9643, 1, 0, 0, 0, 9641, 9643, 3, 1230, 615, 0, 9642, 9624, + 1, 0, 0, 0, 9642, 9634, 1, 0, 0, 0, 9642, 9641, 1, 0, 0, 0, 9643, 1221, + 1, 0, 0, 0, 9644, 9648, 3, 1218, 609, 0, 9645, 9648, 3, 1230, 615, 0, 9646, + 9648, 3, 1224, 612, 0, 9647, 9644, 1, 0, 0, 0, 9647, 9645, 1, 0, 0, 0, + 9647, 9646, 1, 0, 0, 0, 9648, 1223, 1, 0, 0, 0, 9649, 9650, 5, 663, 0, + 0, 9650, 9651, 5, 2, 0, 0, 9651, 9653, 3, 1264, 632, 0, 9652, 9654, 3, + 1260, 630, 0, 9653, 9652, 1, 0, 0, 0, 9653, 9654, 1, 0, 0, 0, 9654, 9656, + 1, 0, 0, 0, 9655, 9657, 3, 1256, 628, 0, 9656, 9655, 1, 0, 0, 0, 9656, + 9657, 1, 0, 0, 0, 9657, 9659, 1, 0, 0, 0, 9658, 9660, 3, 1226, 613, 0, + 9659, 9658, 1, 0, 0, 0, 9659, 9660, 1, 0, 0, 0, 9660, 9661, 1, 0, 0, 0, + 9661, 9662, 5, 3, 0, 0, 9662, 9678, 1, 0, 0, 0, 9663, 9664, 5, 662, 0, + 0, 9664, 9665, 5, 2, 0, 0, 9665, 9667, 3, 1266, 633, 0, 9666, 9668, 3, + 1228, 614, 0, 9667, 9666, 1, 0, 0, 0, 9667, 9668, 1, 0, 0, 0, 9668, 9670, + 1, 0, 0, 0, 9669, 9671, 3, 1258, 629, 0, 9670, 9669, 1, 0, 0, 0, 9670, + 9671, 1, 0, 0, 0, 9671, 9673, 1, 0, 0, 0, 9672, 9674, 3, 1226, 613, 0, + 9673, 9672, 1, 0, 0, 0, 9673, 9674, 1, 0, 0, 0, 9674, 9675, 1, 0, 0, 0, + 9675, 9676, 5, 3, 0, 0, 9676, 9678, 1, 0, 0, 0, 9677, 9649, 1, 0, 0, 0, + 9677, 9663, 1, 0, 0, 0, 9678, 1225, 1, 0, 0, 0, 9679, 9680, 5, 87, 0, 0, + 9680, 9682, 3, 1126, 563, 0, 9681, 9683, 3, 1268, 634, 0, 9682, 9681, 1, + 0, 0, 0, 9682, 9683, 1, 0, 0, 0, 9683, 1227, 1, 0, 0, 0, 9684, 9685, 5, + 83, 0, 0, 9685, 9686, 5, 166, 0, 0, 9686, 9687, 3, 1008, 504, 0, 9687, + 1229, 1, 0, 0, 0, 9688, 9689, 5, 127, 0, 0, 9689, 9690, 5, 62, 0, 0, 9690, + 9691, 5, 2, 0, 0, 9691, 9692, 3, 1170, 585, 0, 9692, 9693, 5, 3, 0, 0, + 9693, 9998, 1, 0, 0, 0, 9694, 9998, 5, 48, 0, 0, 9695, 9700, 5, 50, 0, + 0, 9696, 9697, 5, 2, 0, 0, 9697, 9698, 3, 1410, 705, 0, 9698, 9699, 5, + 3, 0, 0, 9699, 9701, 1, 0, 0, 0, 9700, 9696, 1, 0, 0, 0, 9700, 9701, 1, + 0, 0, 0, 9701, 9998, 1, 0, 0, 0, 9702, 9707, 5, 51, 0, 0, 9703, 9704, 5, + 2, 0, 0, 9704, 9705, 3, 1410, 705, 0, 9705, 9706, 5, 3, 0, 0, 9706, 9708, + 1, 0, 0, 0, 9707, 9703, 1, 0, 0, 0, 9707, 9708, 1, 0, 0, 0, 9708, 9998, + 1, 0, 0, 0, 9709, 9714, 5, 75, 0, 0, 9710, 9711, 5, 2, 0, 0, 9711, 9712, + 3, 1410, 705, 0, 9712, 9713, 5, 3, 0, 0, 9713, 9715, 1, 0, 0, 0, 9714, + 9710, 1, 0, 0, 0, 9714, 9715, 1, 0, 0, 0, 9715, 9998, 1, 0, 0, 0, 9716, + 9721, 5, 76, 0, 0, 9717, 9718, 5, 2, 0, 0, 9718, 9719, 3, 1410, 705, 0, + 9719, 9720, 5, 3, 0, 0, 9720, 9722, 1, 0, 0, 0, 9721, 9717, 1, 0, 0, 0, + 9721, 9722, 1, 0, 0, 0, 9722, 9998, 1, 0, 0, 0, 9723, 9998, 5, 49, 0, 0, + 9724, 9998, 5, 52, 0, 0, 9725, 9998, 5, 89, 0, 0, 9726, 9998, 5, 99, 0, + 0, 9727, 9998, 5, 47, 0, 0, 9728, 9998, 5, 130, 0, 0, 9729, 9730, 5, 41, + 0, 0, 9730, 9731, 5, 2, 0, 0, 9731, 9732, 3, 1170, 585, 0, 9732, 9733, + 5, 36, 0, 0, 9733, 9734, 3, 1126, 563, 0, 9734, 9735, 5, 3, 0, 0, 9735, + 9998, 1, 0, 0, 0, 9736, 9737, 5, 410, 0, 0, 9737, 9739, 5, 2, 0, 0, 9738, + 9740, 3, 1344, 672, 0, 9739, 9738, 1, 0, 0, 0, 9739, 9740, 1, 0, 0, 0, + 9740, 9741, 1, 0, 0, 0, 9741, 9998, 5, 3, 0, 0, 9742, 9743, 5, 510, 0, + 0, 9743, 9744, 5, 2, 0, 0, 9744, 9747, 3, 1170, 585, 0, 9745, 9746, 5, + 6, 0, 0, 9746, 9748, 3, 1348, 674, 0, 9747, 9745, 1, 0, 0, 0, 9747, 9748, + 1, 0, 0, 0, 9748, 9749, 1, 0, 0, 0, 9749, 9750, 5, 3, 0, 0, 9750, 9998, + 1, 0, 0, 0, 9751, 9752, 5, 423, 0, 0, 9752, 9753, 5, 2, 0, 0, 9753, 9754, + 3, 1350, 675, 0, 9754, 9755, 5, 3, 0, 0, 9755, 9998, 1, 0, 0, 0, 9756, + 9757, 5, 425, 0, 0, 9757, 9759, 5, 2, 0, 0, 9758, 9760, 3, 1352, 676, 0, + 9759, 9758, 1, 0, 0, 0, 9759, 9760, 1, 0, 0, 0, 9760, 9761, 1, 0, 0, 0, + 9761, 9998, 5, 3, 0, 0, 9762, 9763, 5, 431, 0, 0, 9763, 9764, 5, 2, 0, + 0, 9764, 9765, 3, 1354, 677, 0, 9765, 9766, 5, 3, 0, 0, 9766, 9998, 1, + 0, 0, 0, 9767, 9768, 5, 434, 0, 0, 9768, 9769, 5, 2, 0, 0, 9769, 9770, + 3, 1170, 585, 0, 9770, 9771, 5, 36, 0, 0, 9771, 9772, 3, 1126, 563, 0, + 9772, 9773, 5, 3, 0, 0, 9773, 9998, 1, 0, 0, 0, 9774, 9775, 5, 435, 0, + 0, 9775, 9777, 5, 2, 0, 0, 9776, 9778, 7, 56, 0, 0, 9777, 9776, 1, 0, 0, + 0, 9777, 9778, 1, 0, 0, 0, 9778, 9779, 1, 0, 0, 0, 9779, 9780, 3, 1356, + 678, 0, 9780, 9781, 5, 3, 0, 0, 9781, 9998, 1, 0, 0, 0, 9782, 9783, 5, + 421, 0, 0, 9783, 9784, 5, 2, 0, 0, 9784, 9785, 3, 1170, 585, 0, 9785, 9786, + 5, 6, 0, 0, 9786, 9787, 3, 1170, 585, 0, 9787, 9788, 5, 3, 0, 0, 9788, + 9998, 1, 0, 0, 0, 9789, 9790, 5, 406, 0, 0, 9790, 9791, 5, 2, 0, 0, 9791, + 9792, 3, 1332, 666, 0, 9792, 9793, 5, 3, 0, 0, 9793, 9998, 1, 0, 0, 0, + 9794, 9795, 5, 412, 0, 0, 9795, 9796, 5, 2, 0, 0, 9796, 9797, 3, 1332, + 666, 0, 9797, 9798, 5, 3, 0, 0, 9798, 9998, 1, 0, 0, 0, 9799, 9800, 5, + 417, 0, 0, 9800, 9801, 5, 2, 0, 0, 9801, 9802, 3, 1332, 666, 0, 9802, 9803, + 5, 3, 0, 0, 9803, 9998, 1, 0, 0, 0, 9804, 9805, 5, 446, 0, 0, 9805, 9806, + 5, 2, 0, 0, 9806, 9807, 3, 1332, 666, 0, 9807, 9808, 5, 3, 0, 0, 9808, + 9998, 1, 0, 0, 0, 9809, 9810, 5, 447, 0, 0, 9810, 9811, 5, 2, 0, 0, 9811, + 9812, 5, 278, 0, 0, 9812, 9818, 3, 1434, 717, 0, 9813, 9816, 5, 6, 0, 0, + 9814, 9817, 3, 1274, 637, 0, 9815, 9817, 3, 1332, 666, 0, 9816, 9814, 1, + 0, 0, 0, 9816, 9815, 1, 0, 0, 0, 9817, 9819, 1, 0, 0, 0, 9818, 9813, 1, + 0, 0, 0, 9818, 9819, 1, 0, 0, 0, 9819, 9820, 1, 0, 0, 0, 9820, 9821, 5, + 3, 0, 0, 9821, 9998, 1, 0, 0, 0, 9822, 9823, 5, 448, 0, 0, 9823, 9824, + 5, 2, 0, 0, 9824, 9825, 3, 1214, 607, 0, 9825, 9826, 3, 1284, 642, 0, 9826, + 9827, 5, 3, 0, 0, 9827, 9998, 1, 0, 0, 0, 9828, 9829, 5, 449, 0, 0, 9829, + 9830, 5, 2, 0, 0, 9830, 9831, 3, 1276, 638, 0, 9831, 9832, 5, 3, 0, 0, + 9832, 9998, 1, 0, 0, 0, 9833, 9834, 5, 450, 0, 0, 9834, 9835, 5, 2, 0, + 0, 9835, 9836, 3, 1280, 640, 0, 9836, 9838, 3, 1170, 585, 0, 9837, 9839, + 3, 1282, 641, 0, 9838, 9837, 1, 0, 0, 0, 9838, 9839, 1, 0, 0, 0, 9839, + 9840, 1, 0, 0, 0, 9840, 9841, 5, 3, 0, 0, 9841, 9998, 1, 0, 0, 0, 9842, + 9843, 5, 451, 0, 0, 9843, 9844, 5, 2, 0, 0, 9844, 9845, 5, 278, 0, 0, 9845, + 9848, 3, 1434, 717, 0, 9846, 9847, 5, 6, 0, 0, 9847, 9849, 3, 1170, 585, + 0, 9848, 9846, 1, 0, 0, 0, 9848, 9849, 1, 0, 0, 0, 9849, 9850, 1, 0, 0, + 0, 9850, 9851, 5, 3, 0, 0, 9851, 9998, 1, 0, 0, 0, 9852, 9853, 5, 452, + 0, 0, 9853, 9854, 5, 2, 0, 0, 9854, 9855, 5, 395, 0, 0, 9855, 9856, 3, + 1170, 585, 0, 9856, 9857, 5, 6, 0, 0, 9857, 9859, 3, 1270, 635, 0, 9858, + 9860, 3, 1272, 636, 0, 9859, 9858, 1, 0, 0, 0, 9859, 9860, 1, 0, 0, 0, + 9860, 9861, 1, 0, 0, 0, 9861, 9862, 5, 3, 0, 0, 9862, 9998, 1, 0, 0, 0, + 9863, 9864, 5, 453, 0, 0, 9864, 9865, 5, 2, 0, 0, 9865, 9866, 3, 1280, + 640, 0, 9866, 9867, 3, 1170, 585, 0, 9867, 9868, 5, 36, 0, 0, 9868, 9869, + 3, 1130, 565, 0, 9869, 9870, 5, 3, 0, 0, 9870, 9998, 1, 0, 0, 0, 9871, + 9872, 5, 106, 0, 0, 9872, 9873, 5, 2, 0, 0, 9873, 9874, 3, 1334, 667, 0, + 9874, 9875, 5, 3, 0, 0, 9875, 9998, 1, 0, 0, 0, 9876, 9877, 5, 106, 0, + 0, 9877, 9878, 5, 2, 0, 0, 9878, 9880, 3, 1262, 631, 0, 9879, 9881, 3, + 1260, 630, 0, 9880, 9879, 1, 0, 0, 0, 9880, 9881, 1, 0, 0, 0, 9881, 9883, + 1, 0, 0, 0, 9882, 9884, 3, 1256, 628, 0, 9883, 9882, 1, 0, 0, 0, 9883, + 9884, 1, 0, 0, 0, 9884, 9886, 1, 0, 0, 0, 9885, 9887, 3, 1254, 627, 0, + 9886, 9885, 1, 0, 0, 0, 9886, 9887, 1, 0, 0, 0, 9887, 9888, 1, 0, 0, 0, + 9888, 9889, 5, 3, 0, 0, 9889, 9998, 1, 0, 0, 0, 9890, 9891, 5, 106, 0, + 0, 9891, 9893, 5, 2, 0, 0, 9892, 9894, 3, 1254, 627, 0, 9893, 9892, 1, + 0, 0, 0, 9893, 9894, 1, 0, 0, 0, 9894, 9895, 1, 0, 0, 0, 9895, 9998, 5, + 3, 0, 0, 9896, 9897, 5, 107, 0, 0, 9897, 9898, 5, 2, 0, 0, 9898, 9900, + 3, 1252, 626, 0, 9899, 9901, 3, 1258, 629, 0, 9900, 9899, 1, 0, 0, 0, 9900, + 9901, 1, 0, 0, 0, 9901, 9903, 1, 0, 0, 0, 9902, 9904, 3, 1254, 627, 0, + 9903, 9902, 1, 0, 0, 0, 9903, 9904, 1, 0, 0, 0, 9904, 9905, 1, 0, 0, 0, + 9905, 9906, 5, 3, 0, 0, 9906, 9998, 1, 0, 0, 0, 9907, 9908, 5, 107, 0, + 0, 9908, 9909, 5, 2, 0, 0, 9909, 9911, 3, 972, 486, 0, 9910, 9912, 3, 1250, + 625, 0, 9911, 9910, 1, 0, 0, 0, 9911, 9912, 1, 0, 0, 0, 9912, 9914, 1, + 0, 0, 0, 9913, 9915, 3, 1254, 627, 0, 9914, 9913, 1, 0, 0, 0, 9914, 9915, + 1, 0, 0, 0, 9915, 9916, 1, 0, 0, 0, 9916, 9917, 5, 3, 0, 0, 9917, 9998, + 1, 0, 0, 0, 9918, 9919, 5, 107, 0, 0, 9919, 9921, 5, 2, 0, 0, 9920, 9922, + 3, 1254, 627, 0, 9921, 9920, 1, 0, 0, 0, 9921, 9922, 1, 0, 0, 0, 9922, + 9923, 1, 0, 0, 0, 9923, 9998, 5, 3, 0, 0, 9924, 9925, 5, 108, 0, 0, 9925, + 9926, 5, 2, 0, 0, 9926, 9928, 3, 1266, 633, 0, 9927, 9929, 3, 1256, 628, + 0, 9928, 9927, 1, 0, 0, 0, 9928, 9929, 1, 0, 0, 0, 9929, 9930, 1, 0, 0, + 0, 9930, 9931, 5, 3, 0, 0, 9931, 9998, 1, 0, 0, 0, 9932, 9933, 5, 109, + 0, 0, 9933, 9934, 5, 2, 0, 0, 9934, 9935, 3, 1170, 585, 0, 9935, 9936, + 5, 3, 0, 0, 9936, 9998, 1, 0, 0, 0, 9937, 9938, 5, 110, 0, 0, 9938, 9939, + 5, 2, 0, 0, 9939, 9941, 3, 1266, 633, 0, 9940, 9942, 3, 1254, 627, 0, 9941, + 9940, 1, 0, 0, 0, 9941, 9942, 1, 0, 0, 0, 9942, 9943, 1, 0, 0, 0, 9943, + 9944, 5, 3, 0, 0, 9944, 9998, 1, 0, 0, 0, 9945, 9946, 5, 111, 0, 0, 9946, + 9947, 5, 2, 0, 0, 9947, 9998, 5, 3, 0, 0, 9948, 9949, 5, 112, 0, 0, 9949, + 9950, 5, 2, 0, 0, 9950, 9951, 3, 1266, 633, 0, 9951, 9952, 5, 6, 0, 0, + 9952, 9954, 3, 1170, 585, 0, 9953, 9955, 3, 1244, 622, 0, 9954, 9953, 1, + 0, 0, 0, 9954, 9955, 1, 0, 0, 0, 9955, 9957, 1, 0, 0, 0, 9956, 9958, 3, + 1254, 627, 0, 9957, 9956, 1, 0, 0, 0, 9957, 9958, 1, 0, 0, 0, 9958, 9959, + 1, 0, 0, 0, 9959, 9961, 3, 1242, 621, 0, 9960, 9962, 3, 1240, 620, 0, 9961, + 9960, 1, 0, 0, 0, 9961, 9962, 1, 0, 0, 0, 9962, 9964, 1, 0, 0, 0, 9963, + 9965, 3, 1234, 617, 0, 9964, 9963, 1, 0, 0, 0, 9964, 9965, 1, 0, 0, 0, + 9965, 9966, 1, 0, 0, 0, 9966, 9967, 5, 3, 0, 0, 9967, 9998, 1, 0, 0, 0, + 9968, 9969, 5, 113, 0, 0, 9969, 9970, 5, 2, 0, 0, 9970, 9971, 3, 1266, + 633, 0, 9971, 9972, 5, 6, 0, 0, 9972, 9974, 3, 1170, 585, 0, 9973, 9975, + 3, 1244, 622, 0, 9974, 9973, 1, 0, 0, 0, 9974, 9975, 1, 0, 0, 0, 9975, + 9977, 1, 0, 0, 0, 9976, 9978, 3, 1232, 616, 0, 9977, 9976, 1, 0, 0, 0, + 9977, 9978, 1, 0, 0, 0, 9978, 9979, 1, 0, 0, 0, 9979, 9980, 5, 3, 0, 0, + 9980, 9998, 1, 0, 0, 0, 9981, 9982, 5, 114, 0, 0, 9982, 9983, 5, 2, 0, + 0, 9983, 9984, 3, 1266, 633, 0, 9984, 9985, 5, 6, 0, 0, 9985, 9987, 3, + 1170, 585, 0, 9986, 9988, 3, 1244, 622, 0, 9987, 9986, 1, 0, 0, 0, 9987, + 9988, 1, 0, 0, 0, 9988, 9990, 1, 0, 0, 0, 9989, 9991, 3, 1254, 627, 0, + 9990, 9989, 1, 0, 0, 0, 9990, 9991, 1, 0, 0, 0, 9991, 9993, 1, 0, 0, 0, + 9992, 9994, 3, 1234, 617, 0, 9993, 9992, 1, 0, 0, 0, 9993, 9994, 1, 0, + 0, 0, 9994, 9995, 1, 0, 0, 0, 9995, 9996, 5, 3, 0, 0, 9996, 9998, 1, 0, + 0, 0, 9997, 9688, 1, 0, 0, 0, 9997, 9694, 1, 0, 0, 0, 9997, 9695, 1, 0, + 0, 0, 9997, 9702, 1, 0, 0, 0, 9997, 9709, 1, 0, 0, 0, 9997, 9716, 1, 0, + 0, 0, 9997, 9723, 1, 0, 0, 0, 9997, 9724, 1, 0, 0, 0, 9997, 9725, 1, 0, + 0, 0, 9997, 9726, 1, 0, 0, 0, 9997, 9727, 1, 0, 0, 0, 9997, 9728, 1, 0, + 0, 0, 9997, 9729, 1, 0, 0, 0, 9997, 9736, 1, 0, 0, 0, 9997, 9742, 1, 0, + 0, 0, 9997, 9751, 1, 0, 0, 0, 9997, 9756, 1, 0, 0, 0, 9997, 9762, 1, 0, + 0, 0, 9997, 9767, 1, 0, 0, 0, 9997, 9774, 1, 0, 0, 0, 9997, 9782, 1, 0, + 0, 0, 9997, 9789, 1, 0, 0, 0, 9997, 9794, 1, 0, 0, 0, 9997, 9799, 1, 0, + 0, 0, 9997, 9804, 1, 0, 0, 0, 9997, 9809, 1, 0, 0, 0, 9997, 9822, 1, 0, + 0, 0, 9997, 9828, 1, 0, 0, 0, 9997, 9833, 1, 0, 0, 0, 9997, 9842, 1, 0, + 0, 0, 9997, 9852, 1, 0, 0, 0, 9997, 9863, 1, 0, 0, 0, 9997, 9871, 1, 0, + 0, 0, 9997, 9876, 1, 0, 0, 0, 9997, 9890, 1, 0, 0, 0, 9997, 9896, 1, 0, + 0, 0, 9997, 9907, 1, 0, 0, 0, 9997, 9918, 1, 0, 0, 0, 9997, 9924, 1, 0, + 0, 0, 9997, 9932, 1, 0, 0, 0, 9997, 9937, 1, 0, 0, 0, 9997, 9945, 1, 0, + 0, 0, 9997, 9948, 1, 0, 0, 0, 9997, 9968, 1, 0, 0, 0, 9997, 9981, 1, 0, + 0, 0, 9998, 1231, 1, 0, 0, 0, 9999, 10000, 3, 1236, 618, 0, 10000, 10001, + 5, 80, 0, 0, 10001, 10002, 5, 514, 0, 0, 10002, 1233, 1, 0, 0, 0, 10003, + 10004, 3, 1236, 618, 0, 10004, 10005, 5, 80, 0, 0, 10005, 10006, 5, 115, + 0, 0, 10006, 10019, 1, 0, 0, 0, 10007, 10008, 3, 1236, 618, 0, 10008, 10009, + 5, 80, 0, 0, 10009, 10010, 5, 514, 0, 0, 10010, 10019, 1, 0, 0, 0, 10011, + 10012, 3, 1236, 618, 0, 10012, 10013, 5, 80, 0, 0, 10013, 10014, 5, 115, + 0, 0, 10014, 10015, 3, 1236, 618, 0, 10015, 10016, 5, 80, 0, 0, 10016, + 10017, 5, 514, 0, 0, 10017, 10019, 1, 0, 0, 0, 10018, 10003, 1, 0, 0, 0, + 10018, 10007, 1, 0, 0, 0, 10018, 10011, 1, 0, 0, 0, 10019, 1235, 1, 0, + 0, 0, 10020, 10021, 5, 53, 0, 0, 10021, 10024, 3, 1170, 585, 0, 10022, + 10024, 3, 1238, 619, 0, 10023, 10020, 1, 0, 0, 0, 10023, 10022, 1, 0, 0, + 0, 10024, 1237, 1, 0, 0, 0, 10025, 10036, 5, 514, 0, 0, 10026, 10036, 5, + 78, 0, 0, 10027, 10036, 5, 96, 0, 0, 10028, 10036, 5, 60, 0, 0, 10029, + 10036, 5, 377, 0, 0, 10030, 10031, 5, 115, 0, 0, 10031, 10036, 5, 35, 0, + 0, 10032, 10033, 5, 115, 0, 0, 10033, 10036, 5, 286, 0, 0, 10034, 10036, + 5, 115, 0, 0, 10035, 10025, 1, 0, 0, 0, 10035, 10026, 1, 0, 0, 0, 10035, + 10027, 1, 0, 0, 0, 10035, 10028, 1, 0, 0, 0, 10035, 10029, 1, 0, 0, 0, + 10035, 10030, 1, 0, 0, 0, 10035, 10032, 1, 0, 0, 0, 10035, 10034, 1, 0, + 0, 0, 10036, 1239, 1, 0, 0, 0, 10037, 10038, 7, 57, 0, 0, 10038, 10039, + 5, 124, 0, 0, 10039, 10040, 5, 80, 0, 0, 10040, 10041, 5, 118, 0, 0, 10041, + 10042, 5, 119, 0, 0, 10042, 1241, 1, 0, 0, 0, 10043, 10045, 5, 391, 0, + 0, 10044, 10046, 5, 35, 0, 0, 10045, 10044, 1, 0, 0, 0, 10045, 10046, 1, + 0, 0, 0, 10046, 10047, 1, 0, 0, 0, 10047, 10057, 5, 393, 0, 0, 10048, 10050, + 5, 105, 0, 0, 10049, 10051, 7, 58, 0, 0, 10050, 10049, 1, 0, 0, 0, 10050, + 10051, 1, 0, 0, 0, 10051, 10053, 1, 0, 0, 0, 10052, 10054, 5, 35, 0, 0, + 10053, 10052, 1, 0, 0, 0, 10053, 10054, 1, 0, 0, 0, 10054, 10055, 1, 0, + 0, 0, 10055, 10057, 5, 393, 0, 0, 10056, 10043, 1, 0, 0, 0, 10056, 10048, + 1, 0, 0, 0, 10057, 1243, 1, 0, 0, 0, 10058, 10059, 5, 298, 0, 0, 10059, + 10060, 3, 1246, 623, 0, 10060, 1245, 1, 0, 0, 0, 10061, 10066, 3, 1248, + 624, 0, 10062, 10063, 5, 6, 0, 0, 10063, 10065, 3, 1248, 624, 0, 10064, + 10062, 1, 0, 0, 0, 10065, 10068, 1, 0, 0, 0, 10066, 10064, 1, 0, 0, 0, + 10066, 10067, 1, 0, 0, 0, 10067, 1247, 1, 0, 0, 0, 10068, 10066, 1, 0, + 0, 0, 10069, 10070, 3, 1266, 633, 0, 10070, 10071, 5, 36, 0, 0, 10071, + 10072, 3, 1434, 717, 0, 10072, 1249, 1, 0, 0, 0, 10073, 10074, 5, 602, + 0, 0, 10074, 10075, 5, 108, 0, 0, 10075, 10076, 5, 213, 0, 0, 10076, 10080, + 3, 1394, 697, 0, 10077, 10078, 5, 602, 0, 0, 10078, 10080, 5, 108, 0, 0, + 10079, 10073, 1, 0, 0, 0, 10079, 10077, 1, 0, 0, 0, 10080, 1251, 1, 0, + 0, 0, 10081, 10086, 3, 1266, 633, 0, 10082, 10083, 5, 6, 0, 0, 10083, 10085, + 3, 1266, 633, 0, 10084, 10082, 1, 0, 0, 0, 10085, 10088, 1, 0, 0, 0, 10086, + 10084, 1, 0, 0, 0, 10086, 10087, 1, 0, 0, 0, 10087, 1253, 1, 0, 0, 0, 10088, + 10086, 1, 0, 0, 0, 10089, 10090, 5, 87, 0, 0, 10090, 10092, 3, 1126, 563, + 0, 10091, 10093, 3, 1268, 634, 0, 10092, 10091, 1, 0, 0, 0, 10092, 10093, + 1, 0, 0, 0, 10093, 1255, 1, 0, 0, 0, 10094, 10095, 5, 105, 0, 0, 10095, + 10097, 5, 98, 0, 0, 10096, 10098, 5, 122, 0, 0, 10097, 10096, 1, 0, 0, + 0, 10097, 10098, 1, 0, 0, 0, 10098, 10105, 1, 0, 0, 0, 10099, 10100, 5, + 391, 0, 0, 10100, 10102, 5, 98, 0, 0, 10101, 10103, 5, 122, 0, 0, 10102, + 10101, 1, 0, 0, 0, 10102, 10103, 1, 0, 0, 0, 10103, 10105, 1, 0, 0, 0, + 10104, 10094, 1, 0, 0, 0, 10104, 10099, 1, 0, 0, 0, 10105, 1257, 1, 0, + 0, 0, 10106, 10107, 5, 78, 0, 0, 10107, 10108, 5, 80, 0, 0, 10108, 10113, + 5, 78, 0, 0, 10109, 10110, 5, 123, 0, 0, 10110, 10111, 5, 80, 0, 0, 10111, + 10113, 5, 78, 0, 0, 10112, 10106, 1, 0, 0, 0, 10112, 10109, 1, 0, 0, 0, + 10113, 1259, 1, 0, 0, 0, 10114, 10115, 5, 78, 0, 0, 10115, 10116, 5, 80, + 0, 0, 10116, 10121, 5, 78, 0, 0, 10117, 10118, 5, 123, 0, 0, 10118, 10119, + 5, 80, 0, 0, 10119, 10121, 5, 78, 0, 0, 10120, 10114, 1, 0, 0, 0, 10120, + 10117, 1, 0, 0, 0, 10121, 1261, 1, 0, 0, 0, 10122, 10127, 3, 1264, 632, + 0, 10123, 10124, 5, 6, 0, 0, 10124, 10126, 3, 1264, 632, 0, 10125, 10123, + 1, 0, 0, 0, 10126, 10129, 1, 0, 0, 0, 10127, 10125, 1, 0, 0, 0, 10127, + 10128, 1, 0, 0, 0, 10128, 1263, 1, 0, 0, 0, 10129, 10127, 1, 0, 0, 0, 10130, + 10131, 3, 1214, 607, 0, 10131, 10132, 5, 471, 0, 0, 10132, 10133, 3, 1266, + 633, 0, 10133, 10139, 1, 0, 0, 0, 10134, 10135, 3, 1170, 585, 0, 10135, + 10136, 5, 8, 0, 0, 10136, 10137, 3, 1266, 633, 0, 10137, 10139, 1, 0, 0, + 0, 10138, 10130, 1, 0, 0, 0, 10138, 10134, 1, 0, 0, 0, 10139, 1265, 1, + 0, 0, 0, 10140, 10142, 3, 1170, 585, 0, 10141, 10143, 3, 1268, 634, 0, + 10142, 10141, 1, 0, 0, 0, 10142, 10143, 1, 0, 0, 0, 10143, 1267, 1, 0, + 0, 0, 10144, 10145, 5, 602, 0, 0, 10145, 10146, 5, 108, 0, 0, 10146, 10147, + 5, 213, 0, 0, 10147, 10151, 3, 1394, 697, 0, 10148, 10149, 5, 602, 0, 0, + 10149, 10151, 5, 108, 0, 0, 10150, 10144, 1, 0, 0, 0, 10150, 10148, 1, + 0, 0, 0, 10151, 1269, 1, 0, 0, 0, 10152, 10153, 5, 387, 0, 0, 10153, 10158, + 3, 1170, 585, 0, 10154, 10155, 5, 387, 0, 0, 10155, 10156, 5, 281, 0, 0, + 10156, 10158, 5, 471, 0, 0, 10157, 10152, 1, 0, 0, 0, 10157, 10154, 1, + 0, 0, 0, 10158, 1271, 1, 0, 0, 0, 10159, 10160, 5, 6, 0, 0, 10160, 10161, + 5, 351, 0, 0, 10161, 10170, 5, 397, 0, 0, 10162, 10163, 5, 6, 0, 0, 10163, + 10164, 5, 351, 0, 0, 10164, 10170, 5, 281, 0, 0, 10165, 10166, 5, 6, 0, + 0, 10166, 10167, 5, 351, 0, 0, 10167, 10168, 5, 281, 0, 0, 10168, 10170, + 5, 471, 0, 0, 10169, 10159, 1, 0, 0, 0, 10169, 10162, 1, 0, 0, 0, 10169, + 10165, 1, 0, 0, 0, 10170, 1273, 1, 0, 0, 0, 10171, 10172, 5, 438, 0, 0, + 10172, 10173, 5, 2, 0, 0, 10173, 10174, 3, 1276, 638, 0, 10174, 10175, + 5, 3, 0, 0, 10175, 1275, 1, 0, 0, 0, 10176, 10181, 3, 1278, 639, 0, 10177, + 10178, 5, 6, 0, 0, 10178, 10180, 3, 1278, 639, 0, 10179, 10177, 1, 0, 0, + 0, 10180, 10183, 1, 0, 0, 0, 10181, 10179, 1, 0, 0, 0, 10181, 10182, 1, + 0, 0, 0, 10182, 1277, 1, 0, 0, 0, 10183, 10181, 1, 0, 0, 0, 10184, 10187, + 3, 1170, 585, 0, 10185, 10186, 5, 36, 0, 0, 10186, 10188, 3, 1434, 717, + 0, 10187, 10185, 1, 0, 0, 0, 10187, 10188, 1, 0, 0, 0, 10188, 1279, 1, + 0, 0, 0, 10189, 10190, 7, 59, 0, 0, 10190, 1281, 1, 0, 0, 0, 10191, 10192, + 5, 304, 0, 0, 10192, 10196, 5, 390, 0, 0, 10193, 10194, 5, 359, 0, 0, 10194, + 10196, 5, 390, 0, 0, 10195, 10191, 1, 0, 0, 0, 10195, 10193, 1, 0, 0, 0, + 10196, 1283, 1, 0, 0, 0, 10197, 10198, 5, 298, 0, 0, 10198, 10213, 3, 1214, + 607, 0, 10199, 10200, 5, 298, 0, 0, 10200, 10201, 3, 1214, 607, 0, 10201, + 10202, 3, 1286, 643, 0, 10202, 10213, 1, 0, 0, 0, 10203, 10204, 5, 298, + 0, 0, 10204, 10205, 3, 1286, 643, 0, 10205, 10206, 3, 1214, 607, 0, 10206, + 10213, 1, 0, 0, 0, 10207, 10208, 5, 298, 0, 0, 10208, 10209, 3, 1286, 643, + 0, 10209, 10210, 3, 1214, 607, 0, 10210, 10211, 3, 1286, 643, 0, 10211, + 10213, 1, 0, 0, 0, 10212, 10197, 1, 0, 0, 0, 10212, 10199, 1, 0, 0, 0, + 10212, 10203, 1, 0, 0, 0, 10212, 10207, 1, 0, 0, 0, 10213, 1285, 1, 0, + 0, 0, 10214, 10215, 5, 166, 0, 0, 10215, 10216, 7, 60, 0, 0, 10216, 1287, + 1, 0, 0, 0, 10217, 10218, 5, 500, 0, 0, 10218, 10219, 5, 66, 0, 0, 10219, + 10220, 5, 2, 0, 0, 10220, 10221, 3, 1006, 503, 0, 10221, 10222, 5, 3, 0, + 0, 10222, 1289, 1, 0, 0, 0, 10223, 10224, 5, 501, 0, 0, 10224, 10225, 5, + 2, 0, 0, 10225, 10226, 5, 103, 0, 0, 10226, 10227, 3, 1170, 585, 0, 10227, + 10228, 5, 3, 0, 0, 10228, 1291, 1, 0, 0, 0, 10229, 10230, 5, 104, 0, 0, + 10230, 10231, 3, 1294, 647, 0, 10231, 1293, 1, 0, 0, 0, 10232, 10237, 3, + 1296, 648, 0, 10233, 10234, 5, 6, 0, 0, 10234, 10236, 3, 1296, 648, 0, + 10235, 10233, 1, 0, 0, 0, 10236, 10239, 1, 0, 0, 0, 10237, 10235, 1, 0, + 0, 0, 10237, 10238, 1, 0, 0, 0, 10238, 1295, 1, 0, 0, 0, 10239, 10237, + 1, 0, 0, 0, 10240, 10241, 3, 1426, 713, 0, 10241, 10242, 5, 36, 0, 0, 10242, + 10243, 3, 1300, 650, 0, 10243, 1297, 1, 0, 0, 0, 10244, 10247, 5, 143, + 0, 0, 10245, 10248, 3, 1300, 650, 0, 10246, 10248, 3, 1426, 713, 0, 10247, + 10245, 1, 0, 0, 0, 10247, 10246, 1, 0, 0, 0, 10248, 1299, 1, 0, 0, 0, 10249, + 10251, 5, 2, 0, 0, 10250, 10252, 3, 1302, 651, 0, 10251, 10250, 1, 0, 0, + 0, 10251, 10252, 1, 0, 0, 0, 10252, 10254, 1, 0, 0, 0, 10253, 10255, 3, + 1304, 652, 0, 10254, 10253, 1, 0, 0, 0, 10254, 10255, 1, 0, 0, 0, 10255, + 10257, 1, 0, 0, 0, 10256, 10258, 3, 1004, 502, 0, 10257, 10256, 1, 0, 0, + 0, 10257, 10258, 1, 0, 0, 0, 10258, 10260, 1, 0, 0, 0, 10259, 10261, 3, + 1306, 653, 0, 10260, 10259, 1, 0, 0, 0, 10260, 10261, 1, 0, 0, 0, 10261, + 10262, 1, 0, 0, 0, 10262, 10263, 5, 3, 0, 0, 10263, 1301, 1, 0, 0, 0, 10264, + 10265, 3, 1426, 713, 0, 10265, 1303, 1, 0, 0, 0, 10266, 10267, 5, 297, + 0, 0, 10267, 10268, 5, 166, 0, 0, 10268, 10269, 3, 1332, 666, 0, 10269, + 1305, 1, 0, 0, 0, 10270, 10271, 5, 311, 0, 0, 10271, 10273, 3, 1308, 654, + 0, 10272, 10274, 3, 1312, 656, 0, 10273, 10272, 1, 0, 0, 0, 10273, 10274, + 1, 0, 0, 0, 10274, 10286, 1, 0, 0, 0, 10275, 10276, 5, 332, 0, 0, 10276, + 10278, 3, 1308, 654, 0, 10277, 10279, 3, 1312, 656, 0, 10278, 10277, 1, + 0, 0, 0, 10278, 10279, 1, 0, 0, 0, 10279, 10286, 1, 0, 0, 0, 10280, 10281, + 5, 502, 0, 0, 10281, 10283, 3, 1308, 654, 0, 10282, 10284, 3, 1312, 656, + 0, 10283, 10282, 1, 0, 0, 0, 10283, 10284, 1, 0, 0, 0, 10284, 10286, 1, + 0, 0, 0, 10285, 10270, 1, 0, 0, 0, 10285, 10275, 1, 0, 0, 0, 10285, 10280, + 1, 0, 0, 0, 10286, 1307, 1, 0, 0, 0, 10287, 10294, 3, 1310, 655, 0, 10288, + 10289, 5, 400, 0, 0, 10289, 10290, 3, 1310, 655, 0, 10290, 10291, 5, 33, + 0, 0, 10291, 10292, 3, 1310, 655, 0, 10292, 10294, 1, 0, 0, 0, 10293, 10287, + 1, 0, 0, 0, 10293, 10288, 1, 0, 0, 0, 10294, 1309, 1, 0, 0, 0, 10295, 10296, + 5, 374, 0, 0, 10296, 10303, 7, 61, 0, 0, 10297, 10298, 5, 455, 0, 0, 10298, + 10303, 5, 428, 0, 0, 10299, 10300, 3, 1170, 585, 0, 10300, 10301, 7, 61, + 0, 0, 10301, 10303, 1, 0, 0, 0, 10302, 10295, 1, 0, 0, 0, 10302, 10297, + 1, 0, 0, 0, 10302, 10299, 1, 0, 0, 0, 10303, 1311, 1, 0, 0, 0, 10304, 10311, + 5, 218, 0, 0, 10305, 10306, 5, 455, 0, 0, 10306, 10312, 5, 428, 0, 0, 10307, + 10312, 5, 66, 0, 0, 10308, 10312, 5, 488, 0, 0, 10309, 10310, 5, 281, 0, + 0, 10310, 10312, 5, 503, 0, 0, 10311, 10305, 1, 0, 0, 0, 10311, 10307, + 1, 0, 0, 0, 10311, 10308, 1, 0, 0, 0, 10311, 10309, 1, 0, 0, 0, 10312, + 1313, 1, 0, 0, 0, 10313, 10314, 5, 428, 0, 0, 10314, 10316, 5, 2, 0, 0, + 10315, 10317, 3, 1332, 666, 0, 10316, 10315, 1, 0, 0, 0, 10316, 10317, + 1, 0, 0, 0, 10317, 10318, 1, 0, 0, 0, 10318, 10326, 5, 3, 0, 0, 10319, + 10320, 5, 2, 0, 0, 10320, 10321, 3, 1332, 666, 0, 10321, 10322, 5, 6, 0, + 0, 10322, 10323, 3, 1170, 585, 0, 10323, 10324, 5, 3, 0, 0, 10324, 10326, + 1, 0, 0, 0, 10325, 10313, 1, 0, 0, 0, 10325, 10319, 1, 0, 0, 0, 10326, + 1315, 1, 0, 0, 0, 10327, 10328, 5, 428, 0, 0, 10328, 10330, 5, 2, 0, 0, + 10329, 10331, 3, 1332, 666, 0, 10330, 10329, 1, 0, 0, 0, 10330, 10331, + 1, 0, 0, 0, 10331, 10332, 1, 0, 0, 0, 10332, 10333, 5, 3, 0, 0, 10333, + 1317, 1, 0, 0, 0, 10334, 10335, 5, 2, 0, 0, 10335, 10336, 3, 1332, 666, + 0, 10336, 10337, 5, 6, 0, 0, 10337, 10338, 3, 1170, 585, 0, 10338, 10339, + 5, 3, 0, 0, 10339, 1319, 1, 0, 0, 0, 10340, 10341, 7, 62, 0, 0, 10341, + 1321, 1, 0, 0, 0, 10342, 10345, 5, 29, 0, 0, 10343, 10345, 3, 1324, 662, + 0, 10344, 10342, 1, 0, 0, 0, 10344, 10343, 1, 0, 0, 0, 10345, 1323, 1, + 0, 0, 0, 10346, 10347, 7, 63, 0, 0, 10347, 1325, 1, 0, 0, 0, 10348, 10355, + 5, 29, 0, 0, 10349, 10350, 5, 290, 0, 0, 10350, 10351, 5, 2, 0, 0, 10351, + 10352, 3, 690, 345, 0, 10352, 10353, 5, 3, 0, 0, 10353, 10355, 1, 0, 0, + 0, 10354, 10348, 1, 0, 0, 0, 10354, 10349, 1, 0, 0, 0, 10355, 1327, 1, + 0, 0, 0, 10356, 10363, 3, 1322, 661, 0, 10357, 10358, 5, 290, 0, 0, 10358, + 10359, 5, 2, 0, 0, 10359, 10360, 3, 690, 345, 0, 10360, 10361, 5, 3, 0, + 0, 10361, 10363, 1, 0, 0, 0, 10362, 10356, 1, 0, 0, 0, 10362, 10357, 1, + 0, 0, 0, 10363, 1329, 1, 0, 0, 0, 10364, 10377, 3, 1322, 661, 0, 10365, + 10366, 5, 290, 0, 0, 10366, 10367, 5, 2, 0, 0, 10367, 10368, 3, 690, 345, + 0, 10368, 10369, 5, 3, 0, 0, 10369, 10377, 1, 0, 0, 0, 10370, 10377, 5, + 139, 0, 0, 10371, 10372, 5, 77, 0, 0, 10372, 10377, 5, 139, 0, 0, 10373, + 10377, 5, 133, 0, 0, 10374, 10375, 5, 77, 0, 0, 10375, 10377, 5, 133, 0, + 0, 10376, 10364, 1, 0, 0, 0, 10376, 10365, 1, 0, 0, 0, 10376, 10370, 1, + 0, 0, 0, 10376, 10371, 1, 0, 0, 0, 10376, 10373, 1, 0, 0, 0, 10376, 10374, + 1, 0, 0, 0, 10377, 1331, 1, 0, 0, 0, 10378, 10383, 3, 1170, 585, 0, 10379, + 10380, 5, 6, 0, 0, 10380, 10382, 3, 1170, 585, 0, 10381, 10379, 1, 0, 0, + 0, 10382, 10385, 1, 0, 0, 0, 10383, 10381, 1, 0, 0, 0, 10383, 10384, 1, + 0, 0, 0, 10384, 1333, 1, 0, 0, 0, 10385, 10383, 1, 0, 0, 0, 10386, 10391, + 3, 1336, 668, 0, 10387, 10388, 5, 6, 0, 0, 10388, 10390, 3, 1336, 668, + 0, 10389, 10387, 1, 0, 0, 0, 10390, 10393, 1, 0, 0, 0, 10391, 10389, 1, + 0, 0, 0, 10391, 10392, 1, 0, 0, 0, 10392, 1335, 1, 0, 0, 0, 10393, 10391, + 1, 0, 0, 0, 10394, 10400, 3, 1170, 585, 0, 10395, 10396, 3, 642, 321, 0, + 10396, 10397, 7, 64, 0, 0, 10397, 10398, 3, 1170, 585, 0, 10398, 10400, + 1, 0, 0, 0, 10399, 10394, 1, 0, 0, 0, 10399, 10395, 1, 0, 0, 0, 10400, + 1337, 1, 0, 0, 0, 10401, 10406, 3, 1126, 563, 0, 10402, 10403, 5, 6, 0, + 0, 10403, 10405, 3, 1126, 563, 0, 10404, 10402, 1, 0, 0, 0, 10405, 10408, + 1, 0, 0, 0, 10406, 10404, 1, 0, 0, 0, 10406, 10407, 1, 0, 0, 0, 10407, + 1339, 1, 0, 0, 0, 10408, 10406, 1, 0, 0, 0, 10409, 10412, 5, 4, 0, 0, 10410, + 10413, 3, 1332, 666, 0, 10411, 10413, 3, 1342, 671, 0, 10412, 10410, 1, + 0, 0, 0, 10412, 10411, 1, 0, 0, 0, 10412, 10413, 1, 0, 0, 0, 10413, 10414, + 1, 0, 0, 0, 10414, 10415, 5, 5, 0, 0, 10415, 1341, 1, 0, 0, 0, 10416, 10421, + 3, 1340, 670, 0, 10417, 10418, 5, 6, 0, 0, 10418, 10420, 3, 1340, 670, + 0, 10419, 10417, 1, 0, 0, 0, 10420, 10423, 1, 0, 0, 0, 10421, 10419, 1, + 0, 0, 0, 10421, 10422, 1, 0, 0, 0, 10422, 1343, 1, 0, 0, 0, 10423, 10421, + 1, 0, 0, 0, 10424, 10425, 3, 1346, 673, 0, 10425, 10426, 5, 64, 0, 0, 10426, + 10427, 3, 1170, 585, 0, 10427, 1345, 1, 0, 0, 0, 10428, 10437, 3, 1436, + 718, 0, 10429, 10437, 5, 396, 0, 0, 10430, 10437, 5, 276, 0, 0, 10431, + 10437, 5, 195, 0, 0, 10432, 10437, 5, 237, 0, 0, 10433, 10437, 5, 273, + 0, 0, 10434, 10437, 5, 338, 0, 0, 10435, 10437, 3, 1412, 706, 0, 10436, + 10428, 1, 0, 0, 0, 10436, 10429, 1, 0, 0, 0, 10436, 10430, 1, 0, 0, 0, + 10436, 10431, 1, 0, 0, 0, 10436, 10432, 1, 0, 0, 0, 10436, 10433, 1, 0, + 0, 0, 10436, 10434, 1, 0, 0, 0, 10436, 10435, 1, 0, 0, 0, 10437, 1347, + 1, 0, 0, 0, 10438, 10439, 7, 65, 0, 0, 10439, 1349, 1, 0, 0, 0, 10440, + 10441, 3, 1170, 585, 0, 10441, 10442, 5, 84, 0, 0, 10442, 10443, 3, 1170, + 585, 0, 10443, 10444, 5, 64, 0, 0, 10444, 10447, 3, 1170, 585, 0, 10445, + 10446, 5, 62, 0, 0, 10446, 10448, 3, 1170, 585, 0, 10447, 10445, 1, 0, + 0, 0, 10447, 10448, 1, 0, 0, 0, 10448, 1351, 1, 0, 0, 0, 10449, 10450, + 3, 1212, 606, 0, 10450, 10451, 5, 68, 0, 0, 10451, 10452, 3, 1212, 606, + 0, 10452, 1353, 1, 0, 0, 0, 10453, 10454, 3, 1170, 585, 0, 10454, 10455, + 5, 64, 0, 0, 10455, 10456, 3, 1170, 585, 0, 10456, 10457, 5, 62, 0, 0, + 10457, 10458, 3, 1170, 585, 0, 10458, 10481, 1, 0, 0, 0, 10459, 10460, + 3, 1170, 585, 0, 10460, 10461, 5, 62, 0, 0, 10461, 10462, 3, 1170, 585, + 0, 10462, 10463, 5, 64, 0, 0, 10463, 10464, 3, 1170, 585, 0, 10464, 10481, + 1, 0, 0, 0, 10465, 10466, 3, 1170, 585, 0, 10466, 10467, 5, 64, 0, 0, 10467, + 10468, 3, 1170, 585, 0, 10468, 10481, 1, 0, 0, 0, 10469, 10470, 3, 1170, + 585, 0, 10470, 10471, 5, 62, 0, 0, 10471, 10472, 3, 1170, 585, 0, 10472, + 10481, 1, 0, 0, 0, 10473, 10474, 3, 1170, 585, 0, 10474, 10475, 5, 146, + 0, 0, 10475, 10476, 3, 1170, 585, 0, 10476, 10477, 5, 216, 0, 0, 10477, + 10478, 3, 1170, 585, 0, 10478, 10481, 1, 0, 0, 0, 10479, 10481, 3, 1332, + 666, 0, 10480, 10453, 1, 0, 0, 0, 10480, 10459, 1, 0, 0, 0, 10480, 10465, + 1, 0, 0, 0, 10480, 10469, 1, 0, 0, 0, 10480, 10473, 1, 0, 0, 0, 10480, + 10479, 1, 0, 0, 0, 10481, 1355, 1, 0, 0, 0, 10482, 10483, 3, 1170, 585, + 0, 10483, 10484, 5, 64, 0, 0, 10484, 10485, 3, 1332, 666, 0, 10485, 10490, + 1, 0, 0, 0, 10486, 10487, 5, 64, 0, 0, 10487, 10490, 3, 1332, 666, 0, 10488, + 10490, 3, 1332, 666, 0, 10489, 10482, 1, 0, 0, 0, 10489, 10486, 1, 0, 0, + 0, 10489, 10488, 1, 0, 0, 0, 10490, 1357, 1, 0, 0, 0, 10491, 10497, 3, + 970, 485, 0, 10492, 10493, 5, 2, 0, 0, 10493, 10494, 3, 1332, 666, 0, 10494, + 10495, 5, 3, 0, 0, 10495, 10497, 1, 0, 0, 0, 10496, 10491, 1, 0, 0, 0, + 10496, 10492, 1, 0, 0, 0, 10497, 1359, 1, 0, 0, 0, 10498, 10500, 5, 40, + 0, 0, 10499, 10501, 3, 1368, 684, 0, 10500, 10499, 1, 0, 0, 0, 10500, 10501, + 1, 0, 0, 0, 10501, 10502, 1, 0, 0, 0, 10502, 10504, 3, 1362, 681, 0, 10503, + 10505, 3, 1366, 683, 0, 10504, 10503, 1, 0, 0, 0, 10504, 10505, 1, 0, 0, + 0, 10505, 10506, 1, 0, 0, 0, 10506, 10507, 5, 475, 0, 0, 10507, 1361, 1, + 0, 0, 0, 10508, 10510, 3, 1364, 682, 0, 10509, 10508, 1, 0, 0, 0, 10510, + 10511, 1, 0, 0, 0, 10511, 10509, 1, 0, 0, 0, 10511, 10512, 1, 0, 0, 0, + 10512, 1363, 1, 0, 0, 0, 10513, 10514, 5, 102, 0, 0, 10514, 10515, 3, 1170, + 585, 0, 10515, 10516, 5, 93, 0, 0, 10516, 10517, 3, 1170, 585, 0, 10517, + 1365, 1, 0, 0, 0, 10518, 10519, 5, 58, 0, 0, 10519, 10520, 3, 1170, 585, + 0, 10520, 1367, 1, 0, 0, 0, 10521, 10522, 3, 1170, 585, 0, 10522, 1369, + 1, 0, 0, 0, 10523, 10525, 3, 1426, 713, 0, 10524, 10526, 3, 1376, 688, + 0, 10525, 10524, 1, 0, 0, 0, 10525, 10526, 1, 0, 0, 0, 10526, 1371, 1, + 0, 0, 0, 10527, 10530, 5, 11, 0, 0, 10528, 10531, 3, 1396, 698, 0, 10529, + 10531, 5, 9, 0, 0, 10530, 10528, 1, 0, 0, 0, 10530, 10529, 1, 0, 0, 0, + 10531, 10545, 1, 0, 0, 0, 10532, 10541, 5, 4, 0, 0, 10533, 10542, 3, 1170, + 585, 0, 10534, 10536, 3, 1374, 687, 0, 10535, 10534, 1, 0, 0, 0, 10535, + 10536, 1, 0, 0, 0, 10536, 10537, 1, 0, 0, 0, 10537, 10539, 5, 8, 0, 0, + 10538, 10540, 3, 1374, 687, 0, 10539, 10538, 1, 0, 0, 0, 10539, 10540, + 1, 0, 0, 0, 10540, 10542, 1, 0, 0, 0, 10541, 10533, 1, 0, 0, 0, 10541, + 10535, 1, 0, 0, 0, 10542, 10543, 1, 0, 0, 0, 10543, 10545, 5, 5, 0, 0, + 10544, 10527, 1, 0, 0, 0, 10544, 10532, 1, 0, 0, 0, 10545, 1373, 1, 0, + 0, 0, 10546, 10547, 3, 1170, 585, 0, 10547, 1375, 1, 0, 0, 0, 10548, 10550, + 3, 1372, 686, 0, 10549, 10548, 1, 0, 0, 0, 10550, 10551, 1, 0, 0, 0, 10551, + 10549, 1, 0, 0, 0, 10551, 10552, 1, 0, 0, 0, 10552, 1377, 1, 0, 0, 0, 10553, + 10555, 3, 1372, 686, 0, 10554, 10553, 1, 0, 0, 0, 10555, 10558, 1, 0, 0, + 0, 10556, 10554, 1, 0, 0, 0, 10556, 10557, 1, 0, 0, 0, 10557, 1379, 1, + 0, 0, 0, 10558, 10556, 1, 0, 0, 0, 10559, 10560, 3, 1382, 691, 0, 10560, + 1381, 1, 0, 0, 0, 10561, 10566, 3, 1384, 692, 0, 10562, 10563, 5, 6, 0, + 0, 10563, 10565, 3, 1384, 692, 0, 10564, 10562, 1, 0, 0, 0, 10565, 10568, + 1, 0, 0, 0, 10566, 10564, 1, 0, 0, 0, 10566, 10567, 1, 0, 0, 0, 10567, + 1383, 1, 0, 0, 0, 10568, 10566, 1, 0, 0, 0, 10569, 10571, 3, 1170, 585, + 0, 10570, 10572, 3, 1386, 693, 0, 10571, 10570, 1, 0, 0, 0, 10571, 10572, + 1, 0, 0, 0, 10572, 10575, 1, 0, 0, 0, 10573, 10575, 5, 9, 0, 0, 10574, + 10569, 1, 0, 0, 0, 10574, 10573, 1, 0, 0, 0, 10575, 1385, 1, 0, 0, 0, 10576, + 10577, 5, 36, 0, 0, 10577, 10580, 3, 1434, 717, 0, 10578, 10580, 3, 1436, + 718, 0, 10579, 10576, 1, 0, 0, 0, 10579, 10578, 1, 0, 0, 0, 10580, 1387, + 1, 0, 0, 0, 10581, 10586, 3, 1390, 695, 0, 10582, 10583, 5, 6, 0, 0, 10583, + 10585, 3, 1390, 695, 0, 10584, 10582, 1, 0, 0, 0, 10585, 10588, 1, 0, 0, + 0, 10586, 10584, 1, 0, 0, 0, 10586, 10587, 1, 0, 0, 0, 10587, 1389, 1, + 0, 0, 0, 10588, 10586, 1, 0, 0, 0, 10589, 10591, 3, 1426, 713, 0, 10590, + 10592, 3, 1376, 688, 0, 10591, 10590, 1, 0, 0, 0, 10591, 10592, 1, 0, 0, + 0, 10592, 1391, 1, 0, 0, 0, 10593, 10598, 3, 1394, 697, 0, 10594, 10595, + 5, 6, 0, 0, 10595, 10597, 3, 1394, 697, 0, 10596, 10594, 1, 0, 0, 0, 10597, + 10600, 1, 0, 0, 0, 10598, 10596, 1, 0, 0, 0, 10598, 10599, 1, 0, 0, 0, + 10599, 1393, 1, 0, 0, 0, 10600, 10598, 1, 0, 0, 0, 10601, 10602, 3, 1426, + 713, 0, 10602, 1395, 1, 0, 0, 0, 10603, 10604, 3, 1434, 717, 0, 10604, + 1397, 1, 0, 0, 0, 10605, 10606, 3, 1412, 706, 0, 10606, 1399, 1, 0, 0, + 0, 10607, 10615, 3, 1448, 724, 0, 10608, 10615, 3, 1430, 715, 0, 10609, + 10610, 3, 1426, 713, 0, 10610, 10611, 3, 1376, 688, 0, 10611, 10615, 1, + 0, 0, 0, 10612, 10615, 5, 138, 0, 0, 10613, 10615, 5, 145, 0, 0, 10614, + 10607, 1, 0, 0, 0, 10614, 10608, 1, 0, 0, 0, 10614, 10609, 1, 0, 0, 0, + 10614, 10612, 1, 0, 0, 0, 10614, 10613, 1, 0, 0, 0, 10615, 1401, 1, 0, + 0, 0, 10616, 10652, 3, 1410, 705, 0, 10617, 10652, 3, 1408, 704, 0, 10618, + 10652, 3, 1412, 706, 0, 10619, 10652, 3, 1406, 703, 0, 10620, 10652, 3, + 1404, 702, 0, 10621, 10631, 3, 1400, 700, 0, 10622, 10632, 3, 1412, 706, + 0, 10623, 10624, 5, 2, 0, 0, 10624, 10626, 3, 1334, 667, 0, 10625, 10627, + 3, 1004, 502, 0, 10626, 10625, 1, 0, 0, 0, 10626, 10627, 1, 0, 0, 0, 10627, + 10628, 1, 0, 0, 0, 10628, 10629, 5, 3, 0, 0, 10629, 10630, 3, 1412, 706, + 0, 10630, 10632, 1, 0, 0, 0, 10631, 10622, 1, 0, 0, 0, 10631, 10623, 1, + 0, 0, 0, 10632, 10652, 1, 0, 0, 0, 10633, 10634, 3, 1132, 566, 0, 10634, + 10635, 3, 1412, 706, 0, 10635, 10652, 1, 0, 0, 0, 10636, 10646, 3, 1160, + 580, 0, 10637, 10639, 3, 1412, 706, 0, 10638, 10640, 3, 1164, 582, 0, 10639, + 10638, 1, 0, 0, 0, 10639, 10640, 1, 0, 0, 0, 10640, 10647, 1, 0, 0, 0, + 10641, 10642, 5, 2, 0, 0, 10642, 10643, 3, 1410, 705, 0, 10643, 10644, + 5, 3, 0, 0, 10644, 10645, 3, 1412, 706, 0, 10645, 10647, 1, 0, 0, 0, 10646, + 10637, 1, 0, 0, 0, 10646, 10641, 1, 0, 0, 0, 10647, 10652, 1, 0, 0, 0, + 10648, 10652, 5, 96, 0, 0, 10649, 10652, 5, 60, 0, 0, 10650, 10652, 5, + 78, 0, 0, 10651, 10616, 1, 0, 0, 0, 10651, 10617, 1, 0, 0, 0, 10651, 10618, + 1, 0, 0, 0, 10651, 10619, 1, 0, 0, 0, 10651, 10620, 1, 0, 0, 0, 10651, + 10621, 1, 0, 0, 0, 10651, 10633, 1, 0, 0, 0, 10651, 10636, 1, 0, 0, 0, + 10651, 10648, 1, 0, 0, 0, 10651, 10649, 1, 0, 0, 0, 10651, 10650, 1, 0, + 0, 0, 10652, 1403, 1, 0, 0, 0, 10653, 10654, 5, 682, 0, 0, 10654, 1405, + 1, 0, 0, 0, 10655, 10656, 5, 678, 0, 0, 10656, 1407, 1, 0, 0, 0, 10657, + 10658, 5, 688, 0, 0, 10658, 1409, 1, 0, 0, 0, 10659, 10660, 5, 686, 0, + 0, 10660, 1411, 1, 0, 0, 0, 10661, 10663, 3, 1414, 707, 0, 10662, 10664, + 3, 1416, 708, 0, 10663, 10662, 1, 0, 0, 0, 10663, 10664, 1, 0, 0, 0, 10664, + 1413, 1, 0, 0, 0, 10665, 10677, 5, 673, 0, 0, 10666, 10677, 5, 675, 0, + 0, 10667, 10671, 5, 677, 0, 0, 10668, 10670, 5, 705, 0, 0, 10669, 10668, + 1, 0, 0, 0, 10670, 10673, 1, 0, 0, 0, 10671, 10669, 1, 0, 0, 0, 10671, + 10672, 1, 0, 0, 0, 10672, 10674, 1, 0, 0, 0, 10673, 10671, 1, 0, 0, 0, + 10674, 10677, 5, 706, 0, 0, 10675, 10677, 5, 699, 0, 0, 10676, 10665, 1, + 0, 0, 0, 10676, 10666, 1, 0, 0, 0, 10676, 10667, 1, 0, 0, 0, 10676, 10675, + 1, 0, 0, 0, 10677, 1415, 1, 0, 0, 0, 10678, 10679, 5, 508, 0, 0, 10679, + 10680, 3, 1414, 707, 0, 10680, 1417, 1, 0, 0, 0, 10681, 10687, 3, 1410, + 705, 0, 10682, 10683, 5, 12, 0, 0, 10683, 10687, 3, 1410, 705, 0, 10684, + 10685, 5, 13, 0, 0, 10685, 10687, 3, 1410, 705, 0, 10686, 10681, 1, 0, + 0, 0, 10686, 10682, 1, 0, 0, 0, 10686, 10684, 1, 0, 0, 0, 10687, 1419, + 1, 0, 0, 0, 10688, 10689, 3, 1422, 711, 0, 10689, 1421, 1, 0, 0, 0, 10690, + 10694, 3, 1432, 716, 0, 10691, 10694, 5, 52, 0, 0, 10692, 10694, 5, 89, + 0, 0, 10693, 10690, 1, 0, 0, 0, 10693, 10691, 1, 0, 0, 0, 10693, 10692, + 1, 0, 0, 0, 10694, 1423, 1, 0, 0, 0, 10695, 10700, 3, 1422, 711, 0, 10696, + 10697, 5, 6, 0, 0, 10697, 10699, 3, 1422, 711, 0, 10698, 10696, 1, 0, 0, + 0, 10699, 10702, 1, 0, 0, 0, 10700, 10698, 1, 0, 0, 0, 10700, 10701, 1, + 0, 0, 0, 10701, 1425, 1, 0, 0, 0, 10702, 10700, 1, 0, 0, 0, 10703, 10710, + 3, 1436, 718, 0, 10704, 10710, 3, 1440, 720, 0, 10705, 10710, 3, 1442, + 721, 0, 10706, 10710, 3, 1662, 831, 0, 10707, 10710, 5, 138, 0, 0, 10708, + 10710, 5, 145, 0, 0, 10709, 10703, 1, 0, 0, 0, 10709, 10704, 1, 0, 0, 0, + 10709, 10705, 1, 0, 0, 0, 10709, 10706, 1, 0, 0, 0, 10709, 10707, 1, 0, + 0, 0, 10709, 10708, 1, 0, 0, 0, 10710, 1427, 1, 0, 0, 0, 10711, 10716, + 3, 1436, 718, 0, 10712, 10716, 3, 1440, 720, 0, 10713, 10716, 3, 1442, + 721, 0, 10714, 10716, 3, 1662, 831, 0, 10715, 10711, 1, 0, 0, 0, 10715, + 10712, 1, 0, 0, 0, 10715, 10713, 1, 0, 0, 0, 10715, 10714, 1, 0, 0, 0, + 10716, 1429, 1, 0, 0, 0, 10717, 10722, 3, 1436, 718, 0, 10718, 10722, 3, + 1440, 720, 0, 10719, 10722, 3, 1662, 831, 0, 10720, 10722, 3, 1444, 722, + 0, 10721, 10717, 1, 0, 0, 0, 10721, 10718, 1, 0, 0, 0, 10721, 10719, 1, + 0, 0, 0, 10721, 10720, 1, 0, 0, 0, 10722, 1431, 1, 0, 0, 0, 10723, 10728, + 3, 1436, 718, 0, 10724, 10728, 3, 1440, 720, 0, 10725, 10728, 3, 1442, + 721, 0, 10726, 10728, 3, 1444, 722, 0, 10727, 10723, 1, 0, 0, 0, 10727, + 10724, 1, 0, 0, 0, 10727, 10725, 1, 0, 0, 0, 10727, 10726, 1, 0, 0, 0, + 10728, 1433, 1, 0, 0, 0, 10729, 10736, 3, 1436, 718, 0, 10730, 10736, 3, + 1662, 831, 0, 10731, 10736, 3, 1440, 720, 0, 10732, 10736, 3, 1442, 721, + 0, 10733, 10736, 3, 1444, 722, 0, 10734, 10736, 3, 1446, 723, 0, 10735, + 10729, 1, 0, 0, 0, 10735, 10730, 1, 0, 0, 0, 10735, 10731, 1, 0, 0, 0, + 10735, 10732, 1, 0, 0, 0, 10735, 10733, 1, 0, 0, 0, 10735, 10734, 1, 0, + 0, 0, 10736, 1435, 1, 0, 0, 0, 10737, 10739, 5, 664, 0, 0, 10738, 10740, + 3, 1416, 708, 0, 10739, 10738, 1, 0, 0, 0, 10739, 10740, 1, 0, 0, 0, 10740, + 10747, 1, 0, 0, 0, 10741, 10747, 5, 665, 0, 0, 10742, 10747, 5, 669, 0, + 0, 10743, 10747, 3, 1216, 608, 0, 10744, 10747, 3, 1438, 719, 0, 10745, + 10747, 3, 1662, 831, 0, 10746, 10737, 1, 0, 0, 0, 10746, 10741, 1, 0, 0, + 0, 10746, 10742, 1, 0, 0, 0, 10746, 10743, 1, 0, 0, 0, 10746, 10744, 1, + 0, 0, 0, 10746, 10745, 1, 0, 0, 0, 10747, 1437, 1, 0, 0, 0, 10748, 10749, + 5, 690, 0, 0, 10749, 1439, 1, 0, 0, 0, 10750, 10751, 7, 66, 0, 0, 10751, + 1441, 1, 0, 0, 0, 10752, 10809, 5, 400, 0, 0, 10753, 10809, 5, 401, 0, + 0, 10754, 10809, 3, 1142, 571, 0, 10755, 10809, 5, 403, 0, 0, 10756, 10809, + 5, 404, 0, 0, 10757, 10809, 3, 1150, 575, 0, 10758, 10809, 5, 406, 0, 0, + 10759, 10809, 5, 407, 0, 0, 10760, 10809, 5, 408, 0, 0, 10761, 10809, 5, + 409, 0, 0, 10762, 10809, 5, 410, 0, 0, 10763, 10809, 5, 411, 0, 0, 10764, + 10809, 5, 412, 0, 0, 10765, 10809, 5, 491, 0, 0, 10766, 10809, 5, 413, + 0, 0, 10767, 10809, 5, 414, 0, 0, 10768, 10809, 5, 415, 0, 0, 10769, 10809, + 5, 416, 0, 0, 10770, 10809, 5, 107, 0, 0, 10771, 10809, 5, 662, 0, 0, 10772, + 10809, 5, 106, 0, 0, 10773, 10809, 5, 663, 0, 0, 10774, 10809, 5, 417, + 0, 0, 10775, 10809, 5, 418, 0, 0, 10776, 10809, 5, 419, 0, 0, 10777, 10809, + 5, 420, 0, 0, 10778, 10809, 5, 510, 0, 0, 10779, 10809, 5, 421, 0, 0, 10780, + 10809, 3, 1138, 569, 0, 10781, 10809, 5, 474, 0, 0, 10782, 10809, 5, 423, + 0, 0, 10783, 10809, 5, 425, 0, 0, 10784, 10809, 5, 426, 0, 0, 10785, 10809, + 5, 427, 0, 0, 10786, 10809, 5, 428, 0, 0, 10787, 10809, 5, 429, 0, 0, 10788, + 10809, 5, 430, 0, 0, 10789, 10809, 5, 431, 0, 0, 10790, 10809, 5, 432, + 0, 0, 10791, 10809, 5, 433, 0, 0, 10792, 10809, 5, 434, 0, 0, 10793, 10809, + 5, 435, 0, 0, 10794, 10809, 5, 436, 0, 0, 10795, 10809, 5, 437, 0, 0, 10796, + 10809, 5, 438, 0, 0, 10797, 10809, 5, 446, 0, 0, 10798, 10809, 5, 447, + 0, 0, 10799, 10809, 5, 448, 0, 0, 10800, 10809, 5, 449, 0, 0, 10801, 10809, + 5, 497, 0, 0, 10802, 10809, 5, 450, 0, 0, 10803, 10809, 5, 451, 0, 0, 10804, + 10809, 5, 452, 0, 0, 10805, 10809, 5, 453, 0, 0, 10806, 10809, 5, 495, + 0, 0, 10807, 10809, 3, 1448, 724, 0, 10808, 10752, 1, 0, 0, 0, 10808, 10753, + 1, 0, 0, 0, 10808, 10754, 1, 0, 0, 0, 10808, 10755, 1, 0, 0, 0, 10808, + 10756, 1, 0, 0, 0, 10808, 10757, 1, 0, 0, 0, 10808, 10758, 1, 0, 0, 0, + 10808, 10759, 1, 0, 0, 0, 10808, 10760, 1, 0, 0, 0, 10808, 10761, 1, 0, + 0, 0, 10808, 10762, 1, 0, 0, 0, 10808, 10763, 1, 0, 0, 0, 10808, 10764, + 1, 0, 0, 0, 10808, 10765, 1, 0, 0, 0, 10808, 10766, 1, 0, 0, 0, 10808, + 10767, 1, 0, 0, 0, 10808, 10768, 1, 0, 0, 0, 10808, 10769, 1, 0, 0, 0, + 10808, 10770, 1, 0, 0, 0, 10808, 10771, 1, 0, 0, 0, 10808, 10772, 1, 0, + 0, 0, 10808, 10773, 1, 0, 0, 0, 10808, 10774, 1, 0, 0, 0, 10808, 10775, + 1, 0, 0, 0, 10808, 10776, 1, 0, 0, 0, 10808, 10777, 1, 0, 0, 0, 10808, + 10778, 1, 0, 0, 0, 10808, 10779, 1, 0, 0, 0, 10808, 10780, 1, 0, 0, 0, + 10808, 10781, 1, 0, 0, 0, 10808, 10782, 1, 0, 0, 0, 10808, 10783, 1, 0, + 0, 0, 10808, 10784, 1, 0, 0, 0, 10808, 10785, 1, 0, 0, 0, 10808, 10786, + 1, 0, 0, 0, 10808, 10787, 1, 0, 0, 0, 10808, 10788, 1, 0, 0, 0, 10808, + 10789, 1, 0, 0, 0, 10808, 10790, 1, 0, 0, 0, 10808, 10791, 1, 0, 0, 0, + 10808, 10792, 1, 0, 0, 0, 10808, 10793, 1, 0, 0, 0, 10808, 10794, 1, 0, + 0, 0, 10808, 10795, 1, 0, 0, 0, 10808, 10796, 1, 0, 0, 0, 10808, 10797, + 1, 0, 0, 0, 10808, 10798, 1, 0, 0, 0, 10808, 10799, 1, 0, 0, 0, 10808, + 10800, 1, 0, 0, 0, 10808, 10801, 1, 0, 0, 0, 10808, 10802, 1, 0, 0, 0, + 10808, 10803, 1, 0, 0, 0, 10808, 10804, 1, 0, 0, 0, 10808, 10805, 1, 0, + 0, 0, 10808, 10806, 1, 0, 0, 0, 10808, 10807, 1, 0, 0, 0, 10809, 1443, + 1, 0, 0, 0, 10810, 10811, 7, 67, 0, 0, 10811, 1445, 1, 0, 0, 0, 10812, + 10813, 7, 68, 0, 0, 10813, 1447, 1, 0, 0, 0, 10814, 10815, 7, 69, 0, 0, + 10815, 1449, 1, 0, 0, 0, 10816, 10817, 3, 1452, 726, 0, 10817, 10819, 3, + 1462, 731, 0, 10818, 10820, 3, 1460, 730, 0, 10819, 10818, 1, 0, 0, 0, + 10819, 10820, 1, 0, 0, 0, 10820, 1451, 1, 0, 0, 0, 10821, 10823, 3, 1454, + 727, 0, 10822, 10821, 1, 0, 0, 0, 10823, 10826, 1, 0, 0, 0, 10824, 10822, + 1, 0, 0, 0, 10824, 10825, 1, 0, 0, 0, 10825, 1453, 1, 0, 0, 0, 10826, 10824, + 1, 0, 0, 0, 10827, 10828, 3, 1456, 728, 0, 10828, 10829, 5, 291, 0, 0, + 10829, 10830, 5, 511, 0, 0, 10830, 10848, 1, 0, 0, 0, 10831, 10832, 3, + 1456, 728, 0, 10832, 10833, 5, 512, 0, 0, 10833, 10834, 3, 1458, 729, 0, + 10834, 10848, 1, 0, 0, 0, 10835, 10836, 3, 1456, 728, 0, 10836, 10837, + 5, 513, 0, 0, 10837, 10838, 5, 514, 0, 0, 10838, 10848, 1, 0, 0, 0, 10839, + 10840, 3, 1456, 728, 0, 10840, 10841, 5, 513, 0, 0, 10841, 10842, 5, 515, + 0, 0, 10842, 10848, 1, 0, 0, 0, 10843, 10844, 3, 1456, 728, 0, 10844, 10845, + 5, 513, 0, 0, 10845, 10846, 5, 516, 0, 0, 10846, 10848, 1, 0, 0, 0, 10847, + 10827, 1, 0, 0, 0, 10847, 10831, 1, 0, 0, 0, 10847, 10835, 1, 0, 0, 0, + 10847, 10839, 1, 0, 0, 0, 10847, 10843, 1, 0, 0, 0, 10848, 1455, 1, 0, + 0, 0, 10849, 10850, 5, 29, 0, 0, 10850, 1457, 1, 0, 0, 0, 10851, 10856, + 3, 1412, 706, 0, 10852, 10856, 3, 1446, 723, 0, 10853, 10856, 3, 1662, + 831, 0, 10854, 10856, 3, 1440, 720, 0, 10855, 10851, 1, 0, 0, 0, 10855, + 10852, 1, 0, 0, 0, 10855, 10853, 1, 0, 0, 0, 10855, 10854, 1, 0, 0, 0, + 10856, 1459, 1, 0, 0, 0, 10857, 10858, 5, 7, 0, 0, 10858, 1461, 1, 0, 0, + 0, 10859, 10860, 3, 1464, 732, 0, 10860, 10861, 5, 165, 0, 0, 10861, 10863, + 3, 1506, 753, 0, 10862, 10864, 3, 1642, 821, 0, 10863, 10862, 1, 0, 0, + 0, 10863, 10864, 1, 0, 0, 0, 10864, 10865, 1, 0, 0, 0, 10865, 10867, 5, + 475, 0, 0, 10866, 10868, 3, 1656, 828, 0, 10867, 10866, 1, 0, 0, 0, 10867, + 10868, 1, 0, 0, 0, 10868, 1463, 1, 0, 0, 0, 10869, 10871, 3, 1652, 826, + 0, 10870, 10869, 1, 0, 0, 0, 10870, 10871, 1, 0, 0, 0, 10871, 10876, 1, + 0, 0, 0, 10872, 10874, 3, 1466, 733, 0, 10873, 10875, 3, 1468, 734, 0, + 10874, 10873, 1, 0, 0, 0, 10874, 10875, 1, 0, 0, 0, 10875, 10877, 1, 0, + 0, 0, 10876, 10872, 1, 0, 0, 0, 10876, 10877, 1, 0, 0, 0, 10877, 1465, + 1, 0, 0, 0, 10878, 10879, 5, 197, 0, 0, 10879, 1467, 1, 0, 0, 0, 10880, + 10882, 3, 1472, 736, 0, 10881, 10880, 1, 0, 0, 0, 10882, 10883, 1, 0, 0, + 0, 10883, 10881, 1, 0, 0, 0, 10883, 10884, 1, 0, 0, 0, 10884, 1469, 1, + 0, 0, 0, 10885, 10886, 5, 18, 0, 0, 10886, 10887, 3, 1660, 830, 0, 10887, + 10888, 5, 19, 0, 0, 10888, 1471, 1, 0, 0, 0, 10889, 10893, 3, 1474, 737, + 0, 10890, 10893, 5, 197, 0, 0, 10891, 10893, 3, 1470, 735, 0, 10892, 10889, + 1, 0, 0, 0, 10892, 10890, 1, 0, 0, 0, 10892, 10891, 1, 0, 0, 0, 10893, + 1473, 1, 0, 0, 0, 10894, 10921, 3, 1490, 745, 0, 10895, 10896, 5, 517, + 0, 0, 10896, 10897, 5, 62, 0, 0, 10897, 10922, 3, 1488, 744, 0, 10898, + 10900, 3, 1492, 746, 0, 10899, 10898, 1, 0, 0, 0, 10899, 10900, 1, 0, 0, + 0, 10900, 10901, 1, 0, 0, 0, 10901, 10903, 3, 1494, 747, 0, 10902, 10904, + 3, 1496, 748, 0, 10903, 10902, 1, 0, 0, 0, 10903, 10904, 1, 0, 0, 0, 10904, + 10906, 1, 0, 0, 0, 10905, 10907, 3, 1498, 749, 0, 10906, 10905, 1, 0, 0, + 0, 10906, 10907, 1, 0, 0, 0, 10907, 10909, 1, 0, 0, 0, 10908, 10910, 3, + 1500, 750, 0, 10909, 10908, 1, 0, 0, 0, 10909, 10910, 1, 0, 0, 0, 10910, + 10922, 1, 0, 0, 0, 10911, 10913, 3, 1476, 738, 0, 10912, 10911, 1, 0, 0, + 0, 10912, 10913, 1, 0, 0, 0, 10913, 10914, 1, 0, 0, 0, 10914, 10916, 5, + 191, 0, 0, 10915, 10917, 3, 1480, 740, 0, 10916, 10915, 1, 0, 0, 0, 10916, + 10917, 1, 0, 0, 0, 10917, 10918, 1, 0, 0, 0, 10918, 10919, 3, 1486, 743, + 0, 10919, 10920, 3, 1478, 739, 0, 10920, 10922, 1, 0, 0, 0, 10921, 10895, + 1, 0, 0, 0, 10921, 10899, 1, 0, 0, 0, 10921, 10912, 1, 0, 0, 0, 10922, + 10923, 1, 0, 0, 0, 10923, 10924, 5, 7, 0, 0, 10924, 1475, 1, 0, 0, 0, 10925, + 10926, 5, 281, 0, 0, 10926, 10929, 5, 336, 0, 0, 10927, 10929, 5, 336, + 0, 0, 10928, 10925, 1, 0, 0, 0, 10928, 10927, 1, 0, 0, 0, 10929, 1477, + 1, 0, 0, 0, 10930, 10931, 3, 968, 484, 0, 10931, 1479, 1, 0, 0, 0, 10932, + 10933, 5, 2, 0, 0, 10933, 10934, 3, 1482, 741, 0, 10934, 10935, 5, 3, 0, + 0, 10935, 1481, 1, 0, 0, 0, 10936, 10941, 3, 1484, 742, 0, 10937, 10938, + 5, 6, 0, 0, 10938, 10940, 3, 1484, 742, 0, 10939, 10937, 1, 0, 0, 0, 10940, + 10943, 1, 0, 0, 0, 10941, 10939, 1, 0, 0, 0, 10941, 10942, 1, 0, 0, 0, + 10942, 1483, 1, 0, 0, 0, 10943, 10941, 1, 0, 0, 0, 10944, 10945, 3, 1490, + 745, 0, 10945, 10946, 3, 1494, 747, 0, 10946, 1485, 1, 0, 0, 0, 10947, + 10948, 7, 70, 0, 0, 10948, 1487, 1, 0, 0, 0, 10949, 10952, 5, 28, 0, 0, + 10950, 10952, 3, 1426, 713, 0, 10951, 10949, 1, 0, 0, 0, 10951, 10950, + 1, 0, 0, 0, 10952, 1489, 1, 0, 0, 0, 10953, 10954, 3, 1660, 830, 0, 10954, + 1491, 1, 0, 0, 0, 10955, 10956, 5, 518, 0, 0, 10956, 1493, 1, 0, 0, 0, + 10957, 10958, 3, 1126, 563, 0, 10958, 1495, 1, 0, 0, 0, 10959, 10960, 5, + 43, 0, 0, 10960, 10961, 3, 526, 263, 0, 10961, 1497, 1, 0, 0, 0, 10962, + 10963, 5, 77, 0, 0, 10963, 10964, 5, 78, 0, 0, 10964, 1499, 1, 0, 0, 0, + 10965, 10966, 3, 1502, 751, 0, 10966, 10967, 3, 1664, 832, 0, 10967, 1501, + 1, 0, 0, 0, 10968, 10971, 3, 1504, 752, 0, 10969, 10971, 5, 53, 0, 0, 10970, + 10968, 1, 0, 0, 0, 10970, 10969, 1, 0, 0, 0, 10971, 1503, 1, 0, 0, 0, 10972, + 10973, 7, 71, 0, 0, 10973, 1505, 1, 0, 0, 0, 10974, 10976, 3, 1508, 754, + 0, 10975, 10974, 1, 0, 0, 0, 10976, 10979, 1, 0, 0, 0, 10977, 10975, 1, + 0, 0, 0, 10977, 10978, 1, 0, 0, 0, 10978, 1507, 1, 0, 0, 0, 10979, 10977, + 1, 0, 0, 0, 10980, 10981, 3, 1462, 731, 0, 10981, 10982, 5, 7, 0, 0, 10982, + 11008, 1, 0, 0, 0, 10983, 11008, 3, 1574, 787, 0, 10984, 11008, 3, 1578, + 789, 0, 10985, 11008, 3, 1516, 758, 0, 10986, 11008, 3, 1532, 766, 0, 10987, + 11008, 3, 1538, 769, 0, 10988, 11008, 3, 1548, 774, 0, 10989, 11008, 3, + 1550, 775, 0, 10990, 11008, 3, 1552, 776, 0, 10991, 11008, 3, 1566, 783, + 0, 10992, 11008, 3, 1570, 785, 0, 10993, 11008, 3, 1590, 795, 0, 10994, + 11008, 3, 1596, 798, 0, 10995, 11008, 3, 1598, 799, 0, 10996, 11008, 3, + 1510, 755, 0, 10997, 11008, 3, 1512, 756, 0, 10998, 11008, 3, 1518, 759, + 0, 10999, 11008, 3, 1606, 803, 0, 11000, 11008, 3, 1618, 809, 0, 11001, + 11008, 3, 1626, 813, 0, 11002, 11008, 3, 1628, 814, 0, 11003, 11008, 3, + 1630, 815, 0, 11004, 11008, 3, 1632, 816, 0, 11005, 11008, 3, 1634, 817, + 0, 11006, 11008, 3, 1638, 819, 0, 11007, 10980, 1, 0, 0, 0, 11007, 10983, + 1, 0, 0, 0, 11007, 10984, 1, 0, 0, 0, 11007, 10985, 1, 0, 0, 0, 11007, + 10986, 1, 0, 0, 0, 11007, 10987, 1, 0, 0, 0, 11007, 10988, 1, 0, 0, 0, + 11007, 10989, 1, 0, 0, 0, 11007, 10990, 1, 0, 0, 0, 11007, 10991, 1, 0, + 0, 0, 11007, 10992, 1, 0, 0, 0, 11007, 10993, 1, 0, 0, 0, 11007, 10994, + 1, 0, 0, 0, 11007, 10995, 1, 0, 0, 0, 11007, 10996, 1, 0, 0, 0, 11007, + 10997, 1, 0, 0, 0, 11007, 10998, 1, 0, 0, 0, 11007, 10999, 1, 0, 0, 0, + 11007, 11000, 1, 0, 0, 0, 11007, 11001, 1, 0, 0, 0, 11007, 11002, 1, 0, + 0, 0, 11007, 11003, 1, 0, 0, 0, 11007, 11004, 1, 0, 0, 0, 11007, 11005, + 1, 0, 0, 0, 11007, 11006, 1, 0, 0, 0, 11008, 1509, 1, 0, 0, 0, 11009, 11010, + 5, 519, 0, 0, 11010, 11011, 3, 1668, 834, 0, 11011, 11012, 5, 7, 0, 0, + 11012, 1511, 1, 0, 0, 0, 11013, 11014, 5, 454, 0, 0, 11014, 11015, 3, 1660, + 830, 0, 11015, 11017, 5, 2, 0, 0, 11016, 11018, 3, 1514, 757, 0, 11017, + 11016, 1, 0, 0, 0, 11017, 11018, 1, 0, 0, 0, 11018, 11019, 1, 0, 0, 0, + 11019, 11020, 5, 3, 0, 0, 11020, 11021, 5, 7, 0, 0, 11021, 11032, 1, 0, + 0, 0, 11022, 11023, 5, 57, 0, 0, 11023, 11024, 3, 1660, 830, 0, 11024, + 11026, 5, 2, 0, 0, 11025, 11027, 3, 1514, 757, 0, 11026, 11025, 1, 0, 0, + 0, 11026, 11027, 1, 0, 0, 0, 11027, 11028, 1, 0, 0, 0, 11028, 11029, 5, + 3, 0, 0, 11029, 11030, 5, 7, 0, 0, 11030, 11032, 1, 0, 0, 0, 11031, 11013, + 1, 0, 0, 0, 11031, 11022, 1, 0, 0, 0, 11032, 1513, 1, 0, 0, 0, 11033, 11034, + 3, 1332, 666, 0, 11034, 1515, 1, 0, 0, 0, 11035, 11036, 3, 1530, 765, 0, + 11036, 11037, 3, 1504, 752, 0, 11037, 11038, 3, 1664, 832, 0, 11038, 11039, + 5, 7, 0, 0, 11039, 1517, 1, 0, 0, 0, 11040, 11042, 5, 520, 0, 0, 11041, + 11043, 3, 1520, 760, 0, 11042, 11041, 1, 0, 0, 0, 11042, 11043, 1, 0, 0, + 0, 11043, 11044, 1, 0, 0, 0, 11044, 11045, 5, 521, 0, 0, 11045, 11046, + 3, 1522, 761, 0, 11046, 11047, 5, 7, 0, 0, 11047, 1519, 1, 0, 0, 0, 11048, + 11049, 7, 72, 0, 0, 11049, 1521, 1, 0, 0, 0, 11050, 11055, 3, 1524, 762, + 0, 11051, 11052, 5, 6, 0, 0, 11052, 11054, 3, 1524, 762, 0, 11053, 11051, + 1, 0, 0, 0, 11054, 11057, 1, 0, 0, 0, 11055, 11053, 1, 0, 0, 0, 11055, + 11056, 1, 0, 0, 0, 11056, 1523, 1, 0, 0, 0, 11057, 11055, 1, 0, 0, 0, 11058, + 11059, 3, 1528, 764, 0, 11059, 11060, 3, 1504, 752, 0, 11060, 11061, 3, + 1526, 763, 0, 11061, 1525, 1, 0, 0, 0, 11062, 11063, 3, 1426, 713, 0, 11063, + 1527, 1, 0, 0, 0, 11064, 11065, 3, 1530, 765, 0, 11065, 1529, 1, 0, 0, + 0, 11066, 11069, 3, 526, 263, 0, 11067, 11069, 5, 28, 0, 0, 11068, 11066, + 1, 0, 0, 0, 11068, 11067, 1, 0, 0, 0, 11069, 11076, 1, 0, 0, 0, 11070, + 11071, 5, 4, 0, 0, 11071, 11072, 3, 1670, 835, 0, 11072, 11073, 5, 5, 0, + 0, 11073, 11075, 1, 0, 0, 0, 11074, 11070, 1, 0, 0, 0, 11075, 11078, 1, + 0, 0, 0, 11076, 11074, 1, 0, 0, 0, 11076, 11077, 1, 0, 0, 0, 11077, 1531, + 1, 0, 0, 0, 11078, 11076, 1, 0, 0, 0, 11079, 11080, 5, 239, 0, 0, 11080, + 11081, 3, 1666, 833, 0, 11081, 11082, 5, 93, 0, 0, 11082, 11083, 3, 1506, + 753, 0, 11083, 11085, 3, 1534, 767, 0, 11084, 11086, 3, 1536, 768, 0, 11085, + 11084, 1, 0, 0, 0, 11085, 11086, 1, 0, 0, 0, 11086, 11087, 1, 0, 0, 0, + 11087, 11088, 5, 475, 0, 0, 11088, 11089, 5, 239, 0, 0, 11089, 11090, 5, + 7, 0, 0, 11090, 1533, 1, 0, 0, 0, 11091, 11092, 5, 523, 0, 0, 11092, 11093, + 3, 1170, 585, 0, 11093, 11094, 5, 93, 0, 0, 11094, 11095, 3, 1506, 753, + 0, 11095, 11097, 1, 0, 0, 0, 11096, 11091, 1, 0, 0, 0, 11097, 11100, 1, + 0, 0, 0, 11098, 11096, 1, 0, 0, 0, 11098, 11099, 1, 0, 0, 0, 11099, 1535, + 1, 0, 0, 0, 11100, 11098, 1, 0, 0, 0, 11101, 11102, 5, 58, 0, 0, 11102, + 11103, 3, 1506, 753, 0, 11103, 1537, 1, 0, 0, 0, 11104, 11106, 5, 40, 0, + 0, 11105, 11107, 3, 1540, 770, 0, 11106, 11105, 1, 0, 0, 0, 11106, 11107, + 1, 0, 0, 0, 11107, 11108, 1, 0, 0, 0, 11108, 11110, 3, 1542, 771, 0, 11109, + 11111, 3, 1546, 773, 0, 11110, 11109, 1, 0, 0, 0, 11110, 11111, 1, 0, 0, + 0, 11111, 11112, 1, 0, 0, 0, 11112, 11113, 5, 475, 0, 0, 11113, 11114, + 5, 40, 0, 0, 11114, 11115, 5, 7, 0, 0, 11115, 1539, 1, 0, 0, 0, 11116, + 11117, 3, 1664, 832, 0, 11117, 1541, 1, 0, 0, 0, 11118, 11120, 3, 1544, + 772, 0, 11119, 11118, 1, 0, 0, 0, 11120, 11121, 1, 0, 0, 0, 11121, 11119, + 1, 0, 0, 0, 11121, 11122, 1, 0, 0, 0, 11122, 1543, 1, 0, 0, 0, 11123, 11124, + 5, 102, 0, 0, 11124, 11125, 3, 1332, 666, 0, 11125, 11126, 5, 93, 0, 0, + 11126, 11127, 3, 1506, 753, 0, 11127, 1545, 1, 0, 0, 0, 11128, 11129, 5, + 58, 0, 0, 11129, 11130, 3, 1506, 753, 0, 11130, 1547, 1, 0, 0, 0, 11131, + 11133, 3, 1654, 827, 0, 11132, 11131, 1, 0, 0, 0, 11132, 11133, 1, 0, 0, + 0, 11133, 11134, 1, 0, 0, 0, 11134, 11135, 3, 1594, 797, 0, 11135, 1549, + 1, 0, 0, 0, 11136, 11138, 3, 1654, 827, 0, 11137, 11136, 1, 0, 0, 0, 11137, + 11138, 1, 0, 0, 0, 11138, 11139, 1, 0, 0, 0, 11139, 11140, 5, 524, 0, 0, + 11140, 11141, 3, 1672, 836, 0, 11141, 11142, 3, 1594, 797, 0, 11142, 1551, + 1, 0, 0, 0, 11143, 11145, 3, 1654, 827, 0, 11144, 11143, 1, 0, 0, 0, 11144, + 11145, 1, 0, 0, 0, 11145, 11146, 1, 0, 0, 0, 11146, 11147, 5, 62, 0, 0, + 11147, 11148, 3, 1554, 777, 0, 11148, 11149, 3, 1594, 797, 0, 11149, 1553, + 1, 0, 0, 0, 11150, 11151, 3, 1564, 782, 0, 11151, 11172, 5, 68, 0, 0, 11152, + 11154, 3, 962, 481, 0, 11153, 11155, 3, 1558, 779, 0, 11154, 11153, 1, + 0, 0, 0, 11154, 11155, 1, 0, 0, 0, 11155, 11173, 1, 0, 0, 0, 11156, 11173, + 3, 968, 484, 0, 11157, 11173, 3, 886, 443, 0, 11158, 11159, 5, 221, 0, + 0, 11159, 11161, 3, 1170, 585, 0, 11160, 11162, 3, 1556, 778, 0, 11161, + 11160, 1, 0, 0, 0, 11161, 11162, 1, 0, 0, 0, 11162, 11173, 1, 0, 0, 0, + 11163, 11165, 3, 1560, 780, 0, 11164, 11163, 1, 0, 0, 0, 11164, 11165, + 1, 0, 0, 0, 11165, 11166, 1, 0, 0, 0, 11166, 11167, 3, 1170, 585, 0, 11167, + 11168, 5, 24, 0, 0, 11168, 11170, 3, 1170, 585, 0, 11169, 11171, 3, 1562, + 781, 0, 11170, 11169, 1, 0, 0, 0, 11170, 11171, 1, 0, 0, 0, 11171, 11173, + 1, 0, 0, 0, 11172, 11152, 1, 0, 0, 0, 11172, 11156, 1, 0, 0, 0, 11172, + 11157, 1, 0, 0, 0, 11172, 11158, 1, 0, 0, 0, 11172, 11164, 1, 0, 0, 0, + 11173, 1555, 1, 0, 0, 0, 11174, 11175, 5, 100, 0, 0, 11175, 11176, 3, 1332, + 666, 0, 11176, 1557, 1, 0, 0, 0, 11177, 11178, 5, 2, 0, 0, 11178, 11183, + 3, 1170, 585, 0, 11179, 11180, 5, 6, 0, 0, 11180, 11182, 3, 1170, 585, + 0, 11181, 11179, 1, 0, 0, 0, 11182, 11185, 1, 0, 0, 0, 11183, 11181, 1, + 0, 0, 0, 11183, 11184, 1, 0, 0, 0, 11184, 11186, 1, 0, 0, 0, 11185, 11183, + 1, 0, 0, 0, 11186, 11187, 5, 3, 0, 0, 11187, 1559, 1, 0, 0, 0, 11188, 11189, + 5, 525, 0, 0, 11189, 1561, 1, 0, 0, 0, 11190, 11191, 5, 166, 0, 0, 11191, + 11192, 3, 1170, 585, 0, 11192, 1563, 1, 0, 0, 0, 11193, 11194, 3, 524, + 262, 0, 11194, 1565, 1, 0, 0, 0, 11195, 11197, 3, 1654, 827, 0, 11196, + 11195, 1, 0, 0, 0, 11196, 11197, 1, 0, 0, 0, 11197, 11198, 1, 0, 0, 0, + 11198, 11199, 5, 526, 0, 0, 11199, 11201, 3, 1564, 782, 0, 11200, 11202, + 3, 1568, 784, 0, 11201, 11200, 1, 0, 0, 0, 11201, 11202, 1, 0, 0, 0, 11202, + 11203, 1, 0, 0, 0, 11203, 11204, 5, 68, 0, 0, 11204, 11205, 5, 35, 0, 0, + 11205, 11206, 3, 1170, 585, 0, 11206, 11207, 3, 1594, 797, 0, 11207, 1567, + 1, 0, 0, 0, 11208, 11209, 5, 527, 0, 0, 11209, 11210, 3, 1410, 705, 0, + 11210, 1569, 1, 0, 0, 0, 11211, 11213, 3, 1572, 786, 0, 11212, 11214, 3, + 1656, 828, 0, 11213, 11212, 1, 0, 0, 0, 11213, 11214, 1, 0, 0, 0, 11214, + 11216, 1, 0, 0, 0, 11215, 11217, 3, 1658, 829, 0, 11216, 11215, 1, 0, 0, + 0, 11216, 11217, 1, 0, 0, 0, 11217, 11218, 1, 0, 0, 0, 11218, 11219, 5, + 7, 0, 0, 11219, 1571, 1, 0, 0, 0, 11220, 11221, 7, 73, 0, 0, 11221, 1573, + 1, 0, 0, 0, 11222, 11237, 5, 529, 0, 0, 11223, 11224, 5, 280, 0, 0, 11224, + 11238, 3, 1664, 832, 0, 11225, 11232, 5, 530, 0, 0, 11226, 11227, 5, 221, + 0, 0, 11227, 11229, 3, 1170, 585, 0, 11228, 11230, 3, 1556, 778, 0, 11229, + 11228, 1, 0, 0, 0, 11229, 11230, 1, 0, 0, 0, 11230, 11233, 1, 0, 0, 0, + 11231, 11233, 3, 968, 484, 0, 11232, 11226, 1, 0, 0, 0, 11232, 11231, 1, + 0, 0, 0, 11233, 11238, 1, 0, 0, 0, 11234, 11236, 3, 1576, 788, 0, 11235, + 11234, 1, 0, 0, 0, 11235, 11236, 1, 0, 0, 0, 11236, 11238, 1, 0, 0, 0, + 11237, 11223, 1, 0, 0, 0, 11237, 11225, 1, 0, 0, 0, 11237, 11235, 1, 0, + 0, 0, 11238, 11239, 1, 0, 0, 0, 11239, 11240, 5, 7, 0, 0, 11240, 1575, + 1, 0, 0, 0, 11241, 11242, 3, 1664, 832, 0, 11242, 1577, 1, 0, 0, 0, 11243, + 11245, 5, 531, 0, 0, 11244, 11246, 3, 1580, 790, 0, 11245, 11244, 1, 0, + 0, 0, 11245, 11246, 1, 0, 0, 0, 11246, 11247, 1, 0, 0, 0, 11247, 11249, + 3, 1412, 706, 0, 11248, 11250, 3, 1582, 791, 0, 11249, 11248, 1, 0, 0, + 0, 11249, 11250, 1, 0, 0, 0, 11250, 11252, 1, 0, 0, 0, 11251, 11253, 3, + 1584, 792, 0, 11252, 11251, 1, 0, 0, 0, 11252, 11253, 1, 0, 0, 0, 11253, + 11254, 1, 0, 0, 0, 11254, 11255, 5, 7, 0, 0, 11255, 11287, 1, 0, 0, 0, + 11256, 11258, 5, 531, 0, 0, 11257, 11259, 3, 1580, 790, 0, 11258, 11257, + 1, 0, 0, 0, 11258, 11259, 1, 0, 0, 0, 11259, 11260, 1, 0, 0, 0, 11260, + 11262, 3, 1436, 718, 0, 11261, 11263, 3, 1584, 792, 0, 11262, 11261, 1, + 0, 0, 0, 11262, 11263, 1, 0, 0, 0, 11263, 11264, 1, 0, 0, 0, 11264, 11265, + 5, 7, 0, 0, 11265, 11287, 1, 0, 0, 0, 11266, 11268, 5, 531, 0, 0, 11267, + 11269, 3, 1580, 790, 0, 11268, 11267, 1, 0, 0, 0, 11268, 11269, 1, 0, 0, + 0, 11269, 11270, 1, 0, 0, 0, 11270, 11271, 5, 532, 0, 0, 11271, 11273, + 3, 1412, 706, 0, 11272, 11274, 3, 1584, 792, 0, 11273, 11272, 1, 0, 0, + 0, 11273, 11274, 1, 0, 0, 0, 11274, 11275, 1, 0, 0, 0, 11275, 11276, 5, + 7, 0, 0, 11276, 11287, 1, 0, 0, 0, 11277, 11279, 5, 531, 0, 0, 11278, 11280, + 3, 1580, 790, 0, 11279, 11278, 1, 0, 0, 0, 11279, 11280, 1, 0, 0, 0, 11280, + 11282, 1, 0, 0, 0, 11281, 11283, 3, 1584, 792, 0, 11282, 11281, 1, 0, 0, + 0, 11282, 11283, 1, 0, 0, 0, 11283, 11284, 1, 0, 0, 0, 11284, 11287, 5, + 7, 0, 0, 11285, 11287, 5, 531, 0, 0, 11286, 11243, 1, 0, 0, 0, 11286, 11256, + 1, 0, 0, 0, 11286, 11266, 1, 0, 0, 0, 11286, 11277, 1, 0, 0, 0, 11286, + 11285, 1, 0, 0, 0, 11287, 1579, 1, 0, 0, 0, 11288, 11289, 7, 74, 0, 0, + 11289, 1581, 1, 0, 0, 0, 11290, 11291, 5, 6, 0, 0, 11291, 11293, 3, 1170, + 585, 0, 11292, 11290, 1, 0, 0, 0, 11293, 11294, 1, 0, 0, 0, 11294, 11292, + 1, 0, 0, 0, 11294, 11295, 1, 0, 0, 0, 11295, 1583, 1, 0, 0, 0, 11296, 11297, + 5, 100, 0, 0, 11297, 11298, 3, 1588, 794, 0, 11298, 1585, 1, 0, 0, 0, 11299, + 11300, 3, 1436, 718, 0, 11300, 11301, 5, 10, 0, 0, 11301, 11302, 3, 1170, + 585, 0, 11302, 1587, 1, 0, 0, 0, 11303, 11308, 3, 1586, 793, 0, 11304, + 11305, 5, 6, 0, 0, 11305, 11307, 3, 1586, 793, 0, 11306, 11304, 1, 0, 0, + 0, 11307, 11310, 1, 0, 0, 0, 11308, 11306, 1, 0, 0, 0, 11308, 11309, 1, + 0, 0, 0, 11309, 1589, 1, 0, 0, 0, 11310, 11308, 1, 0, 0, 0, 11311, 11312, + 5, 539, 0, 0, 11312, 11314, 3, 1664, 832, 0, 11313, 11315, 3, 1592, 796, + 0, 11314, 11313, 1, 0, 0, 0, 11314, 11315, 1, 0, 0, 0, 11315, 11316, 1, + 0, 0, 0, 11316, 11317, 5, 7, 0, 0, 11317, 1591, 1, 0, 0, 0, 11318, 11319, + 5, 6, 0, 0, 11319, 11320, 3, 1664, 832, 0, 11320, 1593, 1, 0, 0, 0, 11321, + 11322, 5, 540, 0, 0, 11322, 11323, 3, 1506, 753, 0, 11323, 11324, 5, 475, + 0, 0, 11324, 11326, 5, 540, 0, 0, 11325, 11327, 3, 1656, 828, 0, 11326, + 11325, 1, 0, 0, 0, 11326, 11327, 1, 0, 0, 0, 11327, 11328, 1, 0, 0, 0, + 11328, 11329, 5, 7, 0, 0, 11329, 1595, 1, 0, 0, 0, 11330, 11331, 3, 1674, + 837, 0, 11331, 11332, 5, 7, 0, 0, 11332, 1597, 1, 0, 0, 0, 11333, 11334, + 5, 221, 0, 0, 11334, 11348, 3, 1170, 585, 0, 11335, 11337, 3, 1604, 802, + 0, 11336, 11335, 1, 0, 0, 0, 11336, 11337, 1, 0, 0, 0, 11337, 11339, 1, + 0, 0, 0, 11338, 11340, 3, 1600, 800, 0, 11339, 11338, 1, 0, 0, 0, 11339, + 11340, 1, 0, 0, 0, 11340, 11349, 1, 0, 0, 0, 11341, 11343, 3, 1600, 800, + 0, 11342, 11341, 1, 0, 0, 0, 11342, 11343, 1, 0, 0, 0, 11343, 11345, 1, + 0, 0, 0, 11344, 11346, 3, 1604, 802, 0, 11345, 11344, 1, 0, 0, 0, 11345, + 11346, 1, 0, 0, 0, 11346, 11349, 1, 0, 0, 0, 11347, 11349, 1, 0, 0, 0, + 11348, 11336, 1, 0, 0, 0, 11348, 11342, 1, 0, 0, 0, 11348, 11347, 1, 0, + 0, 0, 11349, 11350, 1, 0, 0, 0, 11350, 11351, 5, 7, 0, 0, 11351, 1599, + 1, 0, 0, 0, 11352, 11353, 5, 100, 0, 0, 11353, 11354, 3, 1602, 801, 0, + 11354, 1601, 1, 0, 0, 0, 11355, 11360, 3, 1170, 585, 0, 11356, 11357, 5, + 6, 0, 0, 11357, 11359, 3, 1170, 585, 0, 11358, 11356, 1, 0, 0, 0, 11359, + 11362, 1, 0, 0, 0, 11360, 11358, 1, 0, 0, 0, 11360, 11361, 1, 0, 0, 0, + 11361, 1603, 1, 0, 0, 0, 11362, 11360, 1, 0, 0, 0, 11363, 11365, 5, 71, + 0, 0, 11364, 11366, 5, 358, 0, 0, 11365, 11364, 1, 0, 0, 0, 11365, 11366, + 1, 0, 0, 0, 11366, 11367, 1, 0, 0, 0, 11367, 11368, 3, 1620, 810, 0, 11368, + 1605, 1, 0, 0, 0, 11369, 11390, 5, 541, 0, 0, 11370, 11372, 3, 1640, 820, + 0, 11371, 11373, 3, 1614, 807, 0, 11372, 11371, 1, 0, 0, 0, 11372, 11373, + 1, 0, 0, 0, 11373, 11374, 1, 0, 0, 0, 11374, 11381, 5, 62, 0, 0, 11375, + 11382, 3, 968, 484, 0, 11376, 11377, 5, 221, 0, 0, 11377, 11379, 3, 1664, + 832, 0, 11378, 11380, 3, 1612, 806, 0, 11379, 11378, 1, 0, 0, 0, 11379, + 11380, 1, 0, 0, 0, 11380, 11382, 1, 0, 0, 0, 11381, 11375, 1, 0, 0, 0, + 11381, 11376, 1, 0, 0, 0, 11382, 11391, 1, 0, 0, 0, 11383, 11388, 3, 1426, + 713, 0, 11384, 11385, 5, 2, 0, 0, 11385, 11386, 3, 1610, 805, 0, 11386, + 11387, 5, 3, 0, 0, 11387, 11389, 1, 0, 0, 0, 11388, 11384, 1, 0, 0, 0, + 11388, 11389, 1, 0, 0, 0, 11389, 11391, 1, 0, 0, 0, 11390, 11370, 1, 0, + 0, 0, 11390, 11383, 1, 0, 0, 0, 11391, 11392, 1, 0, 0, 0, 11392, 11393, + 5, 7, 0, 0, 11393, 1607, 1, 0, 0, 0, 11394, 11395, 3, 1426, 713, 0, 11395, + 11396, 5, 20, 0, 0, 11396, 11397, 3, 1170, 585, 0, 11397, 11400, 1, 0, + 0, 0, 11398, 11400, 3, 1170, 585, 0, 11399, 11394, 1, 0, 0, 0, 11399, 11398, + 1, 0, 0, 0, 11400, 1609, 1, 0, 0, 0, 11401, 11406, 3, 1608, 804, 0, 11402, + 11403, 5, 6, 0, 0, 11403, 11405, 3, 1608, 804, 0, 11404, 11402, 1, 0, 0, + 0, 11405, 11408, 1, 0, 0, 0, 11406, 11404, 1, 0, 0, 0, 11406, 11407, 1, + 0, 0, 0, 11407, 1611, 1, 0, 0, 0, 11408, 11406, 1, 0, 0, 0, 11409, 11410, + 5, 100, 0, 0, 11410, 11411, 3, 1332, 666, 0, 11411, 1613, 1, 0, 0, 0, 11412, + 11414, 3, 1616, 808, 0, 11413, 11412, 1, 0, 0, 0, 11413, 11414, 1, 0, 0, + 0, 11414, 11415, 1, 0, 0, 0, 11415, 11416, 5, 336, 0, 0, 11416, 1615, 1, + 0, 0, 0, 11417, 11418, 5, 281, 0, 0, 11418, 1617, 1, 0, 0, 0, 11419, 11421, + 5, 61, 0, 0, 11420, 11422, 3, 1624, 812, 0, 11421, 11420, 1, 0, 0, 0, 11421, + 11422, 1, 0, 0, 0, 11422, 11424, 1, 0, 0, 0, 11423, 11425, 3, 1622, 811, + 0, 11424, 11423, 1, 0, 0, 0, 11424, 11425, 1, 0, 0, 0, 11425, 11426, 1, + 0, 0, 0, 11426, 11427, 3, 1640, 820, 0, 11427, 11428, 5, 71, 0, 0, 11428, + 11429, 3, 1620, 810, 0, 11429, 11430, 5, 7, 0, 0, 11430, 1619, 1, 0, 0, + 0, 11431, 11432, 3, 1332, 666, 0, 11432, 1621, 1, 0, 0, 0, 11433, 11434, + 7, 25, 0, 0, 11434, 1623, 1, 0, 0, 0, 11435, 11451, 5, 280, 0, 0, 11436, + 11451, 5, 305, 0, 0, 11437, 11451, 5, 226, 0, 0, 11438, 11451, 5, 259, + 0, 0, 11439, 11440, 5, 149, 0, 0, 11440, 11451, 3, 1170, 585, 0, 11441, + 11442, 5, 319, 0, 0, 11442, 11451, 3, 1170, 585, 0, 11443, 11451, 3, 1170, + 585, 0, 11444, 11451, 5, 30, 0, 0, 11445, 11448, 7, 75, 0, 0, 11446, 11449, + 3, 1170, 585, 0, 11447, 11449, 5, 30, 0, 0, 11448, 11446, 1, 0, 0, 0, 11448, + 11447, 1, 0, 0, 0, 11448, 11449, 1, 0, 0, 0, 11449, 11451, 1, 0, 0, 0, + 11450, 11435, 1, 0, 0, 0, 11450, 11436, 1, 0, 0, 0, 11450, 11437, 1, 0, + 0, 0, 11450, 11438, 1, 0, 0, 0, 11450, 11439, 1, 0, 0, 0, 11450, 11441, + 1, 0, 0, 0, 11450, 11443, 1, 0, 0, 0, 11450, 11444, 1, 0, 0, 0, 11450, + 11445, 1, 0, 0, 0, 11451, 1625, 1, 0, 0, 0, 11452, 11454, 5, 277, 0, 0, + 11453, 11455, 3, 1624, 812, 0, 11454, 11453, 1, 0, 0, 0, 11454, 11455, + 1, 0, 0, 0, 11455, 11456, 1, 0, 0, 0, 11456, 11457, 3, 1640, 820, 0, 11457, + 11458, 5, 7, 0, 0, 11458, 1627, 1, 0, 0, 0, 11459, 11460, 5, 176, 0, 0, + 11460, 11461, 3, 1640, 820, 0, 11461, 11462, 5, 7, 0, 0, 11462, 1629, 1, + 0, 0, 0, 11463, 11464, 5, 78, 0, 0, 11464, 11465, 5, 7, 0, 0, 11465, 1631, + 1, 0, 0, 0, 11466, 11468, 5, 180, 0, 0, 11467, 11469, 3, 1636, 818, 0, + 11468, 11467, 1, 0, 0, 0, 11468, 11469, 1, 0, 0, 0, 11469, 11470, 1, 0, + 0, 0, 11470, 11471, 5, 7, 0, 0, 11471, 1633, 1, 0, 0, 0, 11472, 11474, + 5, 331, 0, 0, 11473, 11475, 3, 1636, 818, 0, 11474, 11473, 1, 0, 0, 0, + 11474, 11475, 1, 0, 0, 0, 11475, 11476, 1, 0, 0, 0, 11476, 11477, 5, 7, + 0, 0, 11477, 1635, 1, 0, 0, 0, 11478, 11480, 5, 33, 0, 0, 11479, 11481, + 5, 281, 0, 0, 11480, 11479, 1, 0, 0, 0, 11480, 11481, 1, 0, 0, 0, 11481, + 11482, 1, 0, 0, 0, 11482, 11483, 5, 172, 0, 0, 11483, 1637, 1, 0, 0, 0, + 11484, 11485, 5, 345, 0, 0, 11485, 11486, 3, 526, 263, 0, 11486, 11487, + 5, 94, 0, 0, 11487, 11488, 5, 53, 0, 0, 11488, 11489, 5, 7, 0, 0, 11489, + 11497, 1, 0, 0, 0, 11490, 11493, 5, 325, 0, 0, 11491, 11494, 3, 526, 263, + 0, 11492, 11494, 5, 30, 0, 0, 11493, 11491, 1, 0, 0, 0, 11493, 11492, 1, + 0, 0, 0, 11494, 11495, 1, 0, 0, 0, 11495, 11497, 5, 7, 0, 0, 11496, 11484, + 1, 0, 0, 0, 11496, 11490, 1, 0, 0, 0, 11497, 1639, 1, 0, 0, 0, 11498, 11501, + 3, 1426, 713, 0, 11499, 11501, 5, 28, 0, 0, 11500, 11498, 1, 0, 0, 0, 11500, + 11499, 1, 0, 0, 0, 11501, 1641, 1, 0, 0, 0, 11502, 11503, 5, 538, 0, 0, + 11503, 11504, 3, 1644, 822, 0, 11504, 1643, 1, 0, 0, 0, 11505, 11507, 3, + 1646, 823, 0, 11506, 11505, 1, 0, 0, 0, 11507, 11508, 1, 0, 0, 0, 11508, + 11506, 1, 0, 0, 0, 11508, 11509, 1, 0, 0, 0, 11509, 1645, 1, 0, 0, 0, 11510, + 11511, 5, 102, 0, 0, 11511, 11512, 3, 1648, 824, 0, 11512, 11513, 5, 93, + 0, 0, 11513, 11514, 3, 1506, 753, 0, 11514, 1647, 1, 0, 0, 0, 11515, 11520, + 3, 1650, 825, 0, 11516, 11517, 5, 82, 0, 0, 11517, 11519, 3, 1650, 825, + 0, 11518, 11516, 1, 0, 0, 0, 11519, 11522, 1, 0, 0, 0, 11520, 11518, 1, + 0, 0, 0, 11520, 11521, 1, 0, 0, 0, 11521, 1649, 1, 0, 0, 0, 11522, 11520, + 1, 0, 0, 0, 11523, 11527, 3, 1660, 830, 0, 11524, 11525, 5, 532, 0, 0, + 11525, 11527, 3, 1412, 706, 0, 11526, 11523, 1, 0, 0, 0, 11526, 11524, + 1, 0, 0, 0, 11527, 1651, 1, 0, 0, 0, 11528, 11529, 3, 1470, 735, 0, 11529, + 1653, 1, 0, 0, 0, 11530, 11531, 3, 1470, 735, 0, 11531, 1655, 1, 0, 0, + 0, 11532, 11533, 3, 1660, 830, 0, 11533, 1657, 1, 0, 0, 0, 11534, 11535, + 5, 102, 0, 0, 11535, 11536, 3, 1668, 834, 0, 11536, 1659, 1, 0, 0, 0, 11537, + 11540, 3, 1426, 713, 0, 11538, 11540, 3, 1662, 831, 0, 11539, 11537, 1, + 0, 0, 0, 11539, 11538, 1, 0, 0, 0, 11540, 1661, 1, 0, 0, 0, 11541, 11542, + 7, 76, 0, 0, 11542, 1663, 1, 0, 0, 0, 11543, 11545, 3, 1000, 500, 0, 11544, + 11543, 1, 0, 0, 0, 11544, 11545, 1, 0, 0, 0, 11545, 11546, 1, 0, 0, 0, + 11546, 11548, 3, 1380, 690, 0, 11547, 11549, 3, 1062, 531, 0, 11548, 11547, + 1, 0, 0, 0, 11548, 11549, 1, 0, 0, 0, 11549, 11551, 1, 0, 0, 0, 11550, + 11552, 3, 1102, 551, 0, 11551, 11550, 1, 0, 0, 0, 11551, 11552, 1, 0, 0, + 0, 11552, 11554, 1, 0, 0, 0, 11553, 11555, 3, 1032, 516, 0, 11554, 11553, + 1, 0, 0, 0, 11554, 11555, 1, 0, 0, 0, 11555, 11557, 1, 0, 0, 0, 11556, + 11558, 3, 1046, 523, 0, 11557, 11556, 1, 0, 0, 0, 11557, 11558, 1, 0, 0, + 0, 11558, 11560, 1, 0, 0, 0, 11559, 11561, 3, 1292, 646, 0, 11560, 11559, + 1, 0, 0, 0, 11560, 11561, 1, 0, 0, 0, 11561, 11563, 1, 0, 0, 0, 11562, + 11564, 3, 1004, 502, 0, 11563, 11562, 1, 0, 0, 0, 11563, 11564, 1, 0, 0, + 0, 11564, 11566, 1, 0, 0, 0, 11565, 11567, 3, 1014, 507, 0, 11566, 11565, + 1, 0, 0, 0, 11566, 11567, 1, 0, 0, 0, 11567, 11569, 1, 0, 0, 0, 11568, + 11570, 3, 1050, 525, 0, 11569, 11568, 1, 0, 0, 0, 11569, 11570, 1, 0, 0, + 0, 11570, 1665, 1, 0, 0, 0, 11571, 11572, 3, 1664, 832, 0, 11572, 1667, + 1, 0, 0, 0, 11573, 11574, 3, 1664, 832, 0, 11574, 1669, 1, 0, 0, 0, 11575, + 11576, 3, 1170, 585, 0, 11576, 1671, 1, 0, 0, 0, 11577, 11578, 3, 1170, + 585, 0, 11578, 1673, 1, 0, 0, 0, 11579, 11581, 3, 8, 4, 0, 11580, 11582, + 3, 1676, 838, 0, 11581, 11580, 1, 0, 0, 0, 11581, 11582, 1, 0, 0, 0, 11582, + 1675, 1, 0, 0, 0, 11583, 11585, 5, 71, 0, 0, 11584, 11586, 3, 992, 496, + 0, 11585, 11584, 1, 0, 0, 0, 11585, 11586, 1, 0, 0, 0, 11586, 11587, 1, + 0, 0, 0, 11587, 11588, 3, 1620, 810, 0, 11588, 1677, 1, 0, 0, 0, 1165, + 1687, 1691, 1819, 1823, 1832, 1841, 1847, 1853, 1868, 1880, 1886, 1894, + 1905, 1909, 1917, 1925, 1943, 1946, 1951, 1960, 1969, 1973, 1985, 2005, + 2018, 2025, 2033, 2038, 2045, 2051, 2058, 2069, 2073, 2077, 2090, 2094, + 2099, 2104, 2116, 2125, 2138, 2143, 2154, 2160, 2166, 2171, 2182, 2188, + 2194, 2203, 2213, 2228, 2234, 2241, 2246, 2253, 2264, 2288, 2295, 2304, + 2313, 2321, 2331, 2340, 2349, 2357, 2365, 2374, 2383, 2387, 2394, 2402, + 2412, 2418, 2422, 2426, 2430, 2434, 2439, 2442, 2446, 2467, 2473, 2572, + 2579, 2595, 2609, 2619, 2621, 2626, 2630, 2633, 2639, 2641, 2669, 2679, + 2692, 2699, 2705, 2709, 2715, 2720, 2723, 2725, 2730, 2734, 2738, 2742, + 2746, 2749, 2753, 2761, 2765, 2769, 2778, 2785, 2790, 2797, 2802, 2809, + 2814, 2832, 2837, 2849, 2854, 2863, 2870, 2877, 2883, 2888, 2892, 2895, + 2898, 2901, 2904, 2907, 2912, 2915, 2918, 2921, 2924, 2927, 2933, 2937, + 2940, 2943, 2946, 2949, 2951, 2960, 2973, 2981, 2987, 2991, 2996, 3003, + 3010, 3021, 3028, 3031, 3034, 3039, 3042, 3049, 3058, 3065, 3070, 3073, + 3076, 3078, 3082, 3089, 3096, 3106, 3116, 3126, 3132, 3135, 3138, 3145, + 3153, 3156, 3159, 3166, 3170, 3176, 3179, 3182, 3185, 3197, 3200, 3203, + 3207, 3221, 3239, 3250, 3265, 3282, 3284, 3305, 3310, 3313, 3317, 3320, + 3326, 3329, 3331, 3340, 3349, 3368, 3372, 3383, 3392, 3398, 3404, 3408, + 3411, 3414, 3417, 3420, 3426, 3430, 3437, 3443, 3447, 3450, 3453, 3456, + 3464, 3468, 3472, 3478, 3482, 3488, 3502, 3511, 3529, 3534, 3537, 3540, + 3550, 3557, 3562, 3565, 3568, 3575, 3578, 3580, 3586, 3595, 3605, 3610, + 3619, 3628, 3632, 3639, 3649, 3660, 3770, 3778, 3781, 3791, 3796, 3806, + 3817, 3829, 3842, 3852, 3865, 3868, 3875, 3884, 3887, 3894, 3896, 3904, + 3914, 3916, 3924, 3928, 3933, 3944, 3948, 3953, 3963, 3969, 3982, 3988, + 3990, 3997, 4005, 4010, 4025, 4038, 4040, 4044, 4064, 4081, 4084, 4087, + 4090, 4093, 4101, 4104, 4107, 4153, 4156, 4159, 4177, 4184, 4193, 4199, + 4206, 4216, 4224, 4229, 4241, 4258, 4264, 4271, 4279, 4293, 4321, 4328, + 4342, 4357, 4370, 4379, 4404, 4415, 4482, 4493, 4499, 4507, 4518, 4532, + 4541, 4551, 4563, 4578, 4589, 4597, 4607, 4614, 4617, 4623, 4626, 4641, + 4654, 4683, 4690, 4705, 4714, 4725, 4727, 4736, 4747, 4749, 4756, 4771, + 4777, 4785, 4791, 4799, 4809, 4815, 4823, 4829, 4837, 4844, 4853, 4855, + 4880, 4887, 4898, 4904, 4913, 4918, 4924, 4931, 4936, 4940, 4943, 4949, + 5098, 5102, 5107, 5118, 5129, 5140, 5151, 5162, 5173, 5184, 5196, 5207, + 5215, 5222, 5228, 5236, 5241, 5246, 5251, 5257, 5264, 5270, 5276, 5281, + 5287, 5294, 5299, 5305, 5312, 5315, 5328, 5337, 5349, 5351, 5368, 5375, + 5380, 5384, 5388, 5394, 5396, 5458, 5465, 5471, 5478, 5484, 5495, 5498, + 5505, 5508, 5518, 5521, 5523, 5542, 5554, 5563, 5572, 5584, 5586, 5592, + 5596, 5601, 5604, 5609, 5615, 5618, 5621, 5624, 5627, 5643, 5647, 5650, + 5653, 5656, 5659, 5664, 5667, 5669, 5682, 5694, 5708, 5712, 5724, 5726, + 5735, 5744, 5752, 5761, 5763, 5767, 5776, 5781, 5787, 5792, 5796, 5801, + 5807, 5813, 5819, 5825, 5830, 5845, 5854, 5865, 5871, 5910, 5925, 5932, + 5943, 5957, 5965, 5970, 5978, 5986, 5992, 6000, 6006, 6014, 6016, 6022, + 6030, 6032, 6038, 6046, 6048, 6072, 6079, 6089, 6101, 6106, 6119, 6131, + 6143, 6145, 6151, 6156, 6164, 6171, 6216, 6221, 6228, 6233, 6240, 6250, + 6260, 6264, 6275, 6292, 6363, 6558, 6571, 6582, 6595, 6607, 6621, 6653, + 6667, 6779, 6781, 6792, 6803, 6814, 6827, 6839, 6850, 6857, 7078, 7093, + 7104, 7111, 7165, 7306, 7312, 7321, 7329, 7331, 7338, 7344, 7347, 7354, + 7358, 7361, 7366, 7369, 7373, 7376, 7379, 7410, 7420, 7427, 7450, 7459, + 7477, 7483, 7491, 7493, 7497, 7507, 7511, 7521, 7524, 7528, 7532, 7540, + 7551, 7563, 7567, 7570, 7574, 7577, 7582, 7586, 7589, 7593, 7596, 7600, + 7603, 7614, 7621, 7634, 7648, 7652, 7657, 7664, 7671, 7674, 7679, 7682, + 7691, 7693, 7698, 7702, 7714, 7717, 7724, 7728, 7733, 7743, 7752, 7755, + 7763, 7774, 7778, 7784, 7791, 7811, 7832, 7836, 7841, 7924, 7930, 7943, + 7947, 7951, 7955, 7961, 7968, 7971, 7974, 7977, 7980, 7987, 7989, 7993, + 7996, 8003, 8005, 8012, 8019, 8023, 8027, 8043, 8050, 8060, 8073, 8084, + 8091, 8096, 8100, 8104, 8109, 8123, 8128, 8132, 8140, 8143, 8147, 8158, + 8161, 8163, 8179, 8182, 8189, 8192, 8197, 8212, 8218, 8227, 8236, 8243, + 8246, 8252, 8257, 8263, 8268, 8272, 8277, 8280, 8286, 8290, 8292, 8295, + 8302, 8305, 8312, 8320, 8323, 8332, 8337, 8343, 8346, 8349, 8356, 8360, + 8363, 8378, 8381, 8388, 8391, 8398, 8401, 8404, 8411, 8424, 8434, 8442, + 8454, 8456, 8463, 8467, 8477, 8481, 8485, 8489, 8491, 8496, 8500, 8504, + 8506, 8508, 8513, 8518, 8524, 8529, 8534, 8537, 8540, 8545, 8548, 8551, + 8554, 8557, 8560, 8563, 8569, 8573, 8582, 8587, 8591, 8600, 8606, 8610, + 8615, 8619, 8624, 8630, 8642, 8657, 8664, 8666, 8669, 8673, 8677, 8679, + 8687, 8696, 8702, 8704, 8706, 8713, 8717, 8726, 8730, 8745, 8753, 8781, + 8788, 8792, 8795, 8800, 8804, 8807, 8823, 8834, 8839, 8842, 8846, 8850, + 8854, 8859, 8863, 8867, 8869, 8874, 8878, 8880, 8885, 8893, 8898, 8904, + 8907, 8914, 8919, 8926, 8931, 8934, 8940, 8944, 8953, 8957, 8965, 8967, + 8974, 8979, 8982, 8990, 8999, 9007, 9009, 9013, 9020, 9039, 9048, 9054, + 9073, 9082, 9088, 9092, 9097, 9107, 9114, 9123, 9126, 9135, 9137, 9143, + 9147, 9152, 9162, 9168, 9170, 9176, 9182, 9185, 9188, 9201, 9207, 9211, + 9215, 9218, 9226, 9230, 9234, 9242, 9249, 9256, 9260, 9266, 9268, 9277, + 9280, 9290, 9306, 9312, 9317, 9324, 9333, 9340, 9348, 9356, 9361, 9365, + 9371, 9375, 9379, 9382, 9388, 9393, 9409, 9412, 9414, 9426, 9428, 9432, + 9438, 9442, 9444, 9452, 9456, 9465, 9473, 9479, 9482, 9491, 9496, 9503, + 9513, 9539, 9550, 9552, 9554, 9562, 9585, 9593, 9603, 9606, 9611, 9616, + 9620, 9626, 9629, 9632, 9636, 9639, 9642, 9647, 9653, 9656, 9659, 9667, + 9670, 9673, 9677, 9682, 9700, 9707, 9714, 9721, 9739, 9747, 9759, 9777, + 9816, 9818, 9838, 9848, 9859, 9880, 9883, 9886, 9893, 9900, 9903, 9911, + 9914, 9921, 9928, 9941, 9954, 9957, 9961, 9964, 9974, 9977, 9987, 9990, + 9993, 9997, 10018, 10023, 10035, 10045, 10050, 10053, 10056, 10066, 10079, + 10086, 10092, 10097, 10102, 10104, 10112, 10120, 10127, 10138, 10142, 10150, + 10157, 10169, 10181, 10187, 10195, 10212, 10237, 10247, 10251, 10254, 10257, + 10260, 10273, 10278, 10283, 10285, 10293, 10302, 10311, 10316, 10325, 10330, + 10344, 10354, 10362, 10376, 10383, 10391, 10399, 10406, 10412, 10421, 10436, + 10447, 10480, 10489, 10496, 10500, 10504, 10511, 10525, 10530, 10535, 10539, + 10541, 10544, 10551, 10556, 10566, 10571, 10574, 10579, 10586, 10591, 10598, + 10614, 10626, 10631, 10639, 10646, 10651, 10663, 10671, 10676, 10686, 10693, + 10700, 10709, 10715, 10721, 10727, 10735, 10739, 10746, 10808, 10819, 10824, + 10847, 10855, 10863, 10867, 10870, 10874, 10876, 10883, 10892, 10899, 10903, + 10906, 10909, 10912, 10916, 10921, 10928, 10941, 10951, 10970, 10977, 11007, + 11017, 11026, 11031, 11042, 11055, 11068, 11076, 11085, 11098, 11106, 11110, + 11121, 11132, 11137, 11144, 11154, 11161, 11164, 11170, 11172, 11183, 11196, + 11201, 11213, 11216, 11229, 11232, 11235, 11237, 11245, 11249, 11252, 11258, + 11262, 11268, 11273, 11279, 11282, 11286, 11294, 11308, 11314, 11326, 11336, + 11339, 11342, 11345, 11348, 11360, 11365, 11372, 11379, 11381, 11388, 11390, + 11399, 11406, 11413, 11421, 11424, 11448, 11450, 11454, 11468, 11474, 11480, + 11493, 11496, 11500, 11508, 11520, 11526, 11539, 11544, 11548, 11551, 11554, + 11557, 11560, 11563, 11566, 11569, 11581, 11585, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -7847,310 +7841,311 @@ const ( PostgreSQLParserRULE_from_clause = 531 PostgreSQLParserRULE_from_list = 532 PostgreSQLParserRULE_table_ref = 533 - PostgreSQLParserRULE_alias_clause = 534 - PostgreSQLParserRULE_opt_alias_clause = 535 - PostgreSQLParserRULE_table_alias_clause = 536 - PostgreSQLParserRULE_func_alias_clause = 537 - PostgreSQLParserRULE_join_type = 538 - PostgreSQLParserRULE_join_qual = 539 - PostgreSQLParserRULE_relation_expr = 540 - PostgreSQLParserRULE_relation_expr_list = 541 - PostgreSQLParserRULE_relation_expr_opt_alias = 542 - PostgreSQLParserRULE_tablesample_clause = 543 - PostgreSQLParserRULE_opt_repeatable_clause = 544 - PostgreSQLParserRULE_func_table = 545 - PostgreSQLParserRULE_rowsfrom_item = 546 - PostgreSQLParserRULE_rowsfrom_list = 547 - PostgreSQLParserRULE_opt_col_def_list = 548 - PostgreSQLParserRULE_opt_ordinality = 549 - PostgreSQLParserRULE_where_clause = 550 - PostgreSQLParserRULE_where_or_current_clause = 551 - PostgreSQLParserRULE_opttablefuncelementlist = 552 - PostgreSQLParserRULE_tablefuncelementlist = 553 - PostgreSQLParserRULE_tablefuncelement = 554 - PostgreSQLParserRULE_xmltable = 555 - PostgreSQLParserRULE_xmltable_column_list = 556 - PostgreSQLParserRULE_xmltable_column_el = 557 - PostgreSQLParserRULE_xmltable_column_option_list = 558 - PostgreSQLParserRULE_xmltable_column_option_el = 559 - PostgreSQLParserRULE_xml_namespace_list = 560 - PostgreSQLParserRULE_xml_namespace_el = 561 - PostgreSQLParserRULE_typename = 562 - PostgreSQLParserRULE_opt_array_bounds = 563 - PostgreSQLParserRULE_simpletypename = 564 - PostgreSQLParserRULE_consttypename = 565 - PostgreSQLParserRULE_generictype = 566 - PostgreSQLParserRULE_opt_type_modifiers = 567 - PostgreSQLParserRULE_numeric = 568 - PostgreSQLParserRULE_opt_float = 569 - PostgreSQLParserRULE_bit = 570 - PostgreSQLParserRULE_constbit = 571 - PostgreSQLParserRULE_bitwithlength = 572 - PostgreSQLParserRULE_bitwithoutlength = 573 - PostgreSQLParserRULE_character = 574 - PostgreSQLParserRULE_constcharacter = 575 - PostgreSQLParserRULE_character_c = 576 - PostgreSQLParserRULE_opt_varying = 577 - PostgreSQLParserRULE_constdatetime = 578 - PostgreSQLParserRULE_constinterval = 579 - PostgreSQLParserRULE_opt_timezone = 580 - PostgreSQLParserRULE_opt_interval = 581 - PostgreSQLParserRULE_interval_second = 582 - PostgreSQLParserRULE_opt_escape = 583 - PostgreSQLParserRULE_a_expr = 584 - PostgreSQLParserRULE_a_expr_qual = 585 - PostgreSQLParserRULE_a_expr_lessless = 586 - PostgreSQLParserRULE_a_expr_or = 587 - PostgreSQLParserRULE_a_expr_and = 588 - PostgreSQLParserRULE_a_expr_between = 589 - PostgreSQLParserRULE_a_expr_in = 590 - PostgreSQLParserRULE_a_expr_unary_not = 591 - PostgreSQLParserRULE_a_expr_isnull = 592 - PostgreSQLParserRULE_a_expr_is_not = 593 - PostgreSQLParserRULE_a_expr_compare = 594 - PostgreSQLParserRULE_a_expr_like = 595 - PostgreSQLParserRULE_a_expr_qual_op = 596 - PostgreSQLParserRULE_a_expr_unary_qualop = 597 - PostgreSQLParserRULE_a_expr_add = 598 - PostgreSQLParserRULE_a_expr_mul = 599 - PostgreSQLParserRULE_a_expr_caret = 600 - PostgreSQLParserRULE_a_expr_unary_sign = 601 - PostgreSQLParserRULE_a_expr_at_time_zone = 602 - PostgreSQLParserRULE_a_expr_collate = 603 - PostgreSQLParserRULE_a_expr_typecast = 604 - PostgreSQLParserRULE_b_expr = 605 - PostgreSQLParserRULE_c_expr = 606 - PostgreSQLParserRULE_plsqlvariablename = 607 - PostgreSQLParserRULE_func_application = 608 - PostgreSQLParserRULE_func_expr = 609 - PostgreSQLParserRULE_func_expr_windowless = 610 - PostgreSQLParserRULE_json_aggregate_func = 611 - PostgreSQLParserRULE_json_output_clause = 612 - PostgreSQLParserRULE_json_array_aggregate_order_by_clause = 613 - PostgreSQLParserRULE_func_expr_common_subexpr = 614 - PostgreSQLParserRULE_json_on_error_clause = 615 - PostgreSQLParserRULE_json_behavior_clause = 616 - PostgreSQLParserRULE_json_behavior = 617 - PostgreSQLParserRULE_json_behavior_type = 618 - PostgreSQLParserRULE_json_quotes_clause = 619 - PostgreSQLParserRULE_json_wrapper_behavior = 620 - PostgreSQLParserRULE_json_passing_clause = 621 - PostgreSQLParserRULE_json_arguments = 622 - PostgreSQLParserRULE_json_argument = 623 - PostgreSQLParserRULE_json_format_clause_opt = 624 - PostgreSQLParserRULE_json_value_expr_list = 625 - PostgreSQLParserRULE_json_returning_clause = 626 - PostgreSQLParserRULE_json_key_uniqueness_constraint = 627 - PostgreSQLParserRULE_json_array_constructor_null_clause = 628 - PostgreSQLParserRULE_json_object_constructor_null_clause = 629 - PostgreSQLParserRULE_json_name_and_value_list = 630 - PostgreSQLParserRULE_json_name_and_value = 631 - PostgreSQLParserRULE_json_value_expr = 632 - PostgreSQLParserRULE_json_format_clause = 633 - PostgreSQLParserRULE_xml_root_version = 634 - PostgreSQLParserRULE_opt_xml_root_standalone = 635 - PostgreSQLParserRULE_xml_attributes = 636 - PostgreSQLParserRULE_xml_attribute_list = 637 - PostgreSQLParserRULE_xml_attribute_el = 638 - PostgreSQLParserRULE_document_or_content = 639 - PostgreSQLParserRULE_xml_whitespace_option = 640 - PostgreSQLParserRULE_xmlexists_argument = 641 - PostgreSQLParserRULE_xml_passing_mech = 642 - PostgreSQLParserRULE_within_group_clause = 643 - PostgreSQLParserRULE_filter_clause = 644 - PostgreSQLParserRULE_window_clause = 645 - PostgreSQLParserRULE_window_definition_list = 646 - PostgreSQLParserRULE_window_definition = 647 - PostgreSQLParserRULE_over_clause = 648 - PostgreSQLParserRULE_window_specification = 649 - PostgreSQLParserRULE_opt_existing_window_name = 650 - PostgreSQLParserRULE_opt_partition_clause = 651 - PostgreSQLParserRULE_opt_frame_clause = 652 - PostgreSQLParserRULE_frame_extent = 653 - PostgreSQLParserRULE_frame_bound = 654 - PostgreSQLParserRULE_opt_window_exclusion_clause = 655 - PostgreSQLParserRULE_row = 656 - PostgreSQLParserRULE_explicit_row = 657 - PostgreSQLParserRULE_implicit_row = 658 - PostgreSQLParserRULE_sub_type = 659 - PostgreSQLParserRULE_all_op = 660 - PostgreSQLParserRULE_mathop = 661 - PostgreSQLParserRULE_qual_op = 662 - PostgreSQLParserRULE_qual_all_op = 663 - PostgreSQLParserRULE_subquery_Op = 664 - PostgreSQLParserRULE_expr_list = 665 - PostgreSQLParserRULE_func_arg_list = 666 - PostgreSQLParserRULE_func_arg_expr = 667 - PostgreSQLParserRULE_type_list = 668 - PostgreSQLParserRULE_array_expr = 669 - PostgreSQLParserRULE_array_expr_list = 670 - PostgreSQLParserRULE_extract_list = 671 - PostgreSQLParserRULE_extract_arg = 672 - PostgreSQLParserRULE_unicode_normal_form = 673 - PostgreSQLParserRULE_overlay_list = 674 - PostgreSQLParserRULE_position_list = 675 - PostgreSQLParserRULE_substr_list = 676 - PostgreSQLParserRULE_trim_list = 677 - PostgreSQLParserRULE_in_expr = 678 - PostgreSQLParserRULE_case_expr = 679 - PostgreSQLParserRULE_when_clause_list = 680 - PostgreSQLParserRULE_when_clause = 681 - PostgreSQLParserRULE_case_default = 682 - PostgreSQLParserRULE_case_arg = 683 - PostgreSQLParserRULE_columnref = 684 - PostgreSQLParserRULE_indirection_el = 685 - PostgreSQLParserRULE_opt_slice_bound = 686 - PostgreSQLParserRULE_indirection = 687 - PostgreSQLParserRULE_opt_indirection = 688 - PostgreSQLParserRULE_opt_target_list = 689 - PostgreSQLParserRULE_target_list = 690 - PostgreSQLParserRULE_target_el = 691 - PostgreSQLParserRULE_target_alias = 692 - PostgreSQLParserRULE_qualified_name_list = 693 - PostgreSQLParserRULE_qualified_name = 694 - PostgreSQLParserRULE_name_list = 695 - PostgreSQLParserRULE_name = 696 - PostgreSQLParserRULE_attr_name = 697 - PostgreSQLParserRULE_file_name = 698 - PostgreSQLParserRULE_func_name = 699 - PostgreSQLParserRULE_aexprconst = 700 - PostgreSQLParserRULE_xconst = 701 - PostgreSQLParserRULE_bconst = 702 - PostgreSQLParserRULE_fconst = 703 - PostgreSQLParserRULE_iconst = 704 - PostgreSQLParserRULE_sconst = 705 - PostgreSQLParserRULE_anysconst = 706 - PostgreSQLParserRULE_opt_uescape = 707 - PostgreSQLParserRULE_signediconst = 708 - PostgreSQLParserRULE_roleid = 709 - PostgreSQLParserRULE_rolespec = 710 - PostgreSQLParserRULE_role_list = 711 - PostgreSQLParserRULE_colid = 712 - PostgreSQLParserRULE_table_alias = 713 - PostgreSQLParserRULE_type_function_name = 714 - PostgreSQLParserRULE_nonreservedword = 715 - PostgreSQLParserRULE_collabel = 716 - PostgreSQLParserRULE_identifier = 717 - PostgreSQLParserRULE_plsqlidentifier = 718 - PostgreSQLParserRULE_unreserved_keyword = 719 - PostgreSQLParserRULE_col_name_keyword = 720 - PostgreSQLParserRULE_type_func_name_keyword = 721 - PostgreSQLParserRULE_reserved_keyword = 722 - PostgreSQLParserRULE_builtin_function_name = 723 - PostgreSQLParserRULE_pl_function = 724 - PostgreSQLParserRULE_comp_options = 725 - PostgreSQLParserRULE_comp_option = 726 - PostgreSQLParserRULE_sharp = 727 - PostgreSQLParserRULE_option_value = 728 - PostgreSQLParserRULE_opt_semi = 729 - PostgreSQLParserRULE_pl_block = 730 - PostgreSQLParserRULE_decl_sect = 731 - PostgreSQLParserRULE_decl_start = 732 - PostgreSQLParserRULE_decl_stmts = 733 - PostgreSQLParserRULE_label_decl = 734 - PostgreSQLParserRULE_decl_stmt = 735 - PostgreSQLParserRULE_decl_statement = 736 - PostgreSQLParserRULE_opt_scrollable = 737 - PostgreSQLParserRULE_decl_cursor_query = 738 - PostgreSQLParserRULE_decl_cursor_args = 739 - PostgreSQLParserRULE_decl_cursor_arglist = 740 - PostgreSQLParserRULE_decl_cursor_arg = 741 - PostgreSQLParserRULE_decl_is_for = 742 - PostgreSQLParserRULE_decl_aliasitem = 743 - PostgreSQLParserRULE_decl_varname = 744 - PostgreSQLParserRULE_decl_const = 745 - PostgreSQLParserRULE_decl_datatype = 746 - PostgreSQLParserRULE_decl_collate = 747 - PostgreSQLParserRULE_decl_notnull = 748 - PostgreSQLParserRULE_decl_defval = 749 - PostgreSQLParserRULE_decl_defkey = 750 - PostgreSQLParserRULE_assign_operator = 751 - PostgreSQLParserRULE_proc_sect = 752 - PostgreSQLParserRULE_proc_stmt = 753 - PostgreSQLParserRULE_stmt_perform = 754 - PostgreSQLParserRULE_stmt_call = 755 - PostgreSQLParserRULE_opt_expr_list = 756 - PostgreSQLParserRULE_stmt_assign = 757 - PostgreSQLParserRULE_stmt_getdiag = 758 - PostgreSQLParserRULE_getdiag_area_opt = 759 - PostgreSQLParserRULE_getdiag_list = 760 - PostgreSQLParserRULE_getdiag_list_item = 761 - PostgreSQLParserRULE_getdiag_item = 762 - PostgreSQLParserRULE_getdiag_target = 763 - PostgreSQLParserRULE_assign_var = 764 - PostgreSQLParserRULE_stmt_if = 765 - PostgreSQLParserRULE_stmt_elsifs = 766 - PostgreSQLParserRULE_stmt_else = 767 - PostgreSQLParserRULE_stmt_case = 768 - PostgreSQLParserRULE_opt_expr_until_when = 769 - PostgreSQLParserRULE_case_when_list = 770 - PostgreSQLParserRULE_case_when = 771 - PostgreSQLParserRULE_opt_case_else = 772 - PostgreSQLParserRULE_stmt_loop = 773 - PostgreSQLParserRULE_stmt_while = 774 - PostgreSQLParserRULE_stmt_for = 775 - PostgreSQLParserRULE_for_control = 776 - PostgreSQLParserRULE_opt_for_using_expression = 777 - PostgreSQLParserRULE_opt_cursor_parameters = 778 - PostgreSQLParserRULE_opt_reverse = 779 - PostgreSQLParserRULE_opt_by_expression = 780 - PostgreSQLParserRULE_for_variable = 781 - PostgreSQLParserRULE_stmt_foreach_a = 782 - PostgreSQLParserRULE_foreach_slice = 783 - PostgreSQLParserRULE_stmt_exit = 784 - PostgreSQLParserRULE_exit_type = 785 - PostgreSQLParserRULE_stmt_return = 786 - PostgreSQLParserRULE_opt_return_result = 787 - PostgreSQLParserRULE_stmt_raise = 788 - PostgreSQLParserRULE_opt_stmt_raise_level = 789 - PostgreSQLParserRULE_opt_raise_list = 790 - PostgreSQLParserRULE_opt_raise_using = 791 - PostgreSQLParserRULE_opt_raise_using_elem = 792 - PostgreSQLParserRULE_opt_raise_using_elem_list = 793 - PostgreSQLParserRULE_stmt_assert = 794 - PostgreSQLParserRULE_opt_stmt_assert_message = 795 - PostgreSQLParserRULE_loop_body = 796 - PostgreSQLParserRULE_stmt_execsql = 797 - PostgreSQLParserRULE_stmt_dynexecute = 798 - PostgreSQLParserRULE_opt_execute_using = 799 - PostgreSQLParserRULE_opt_execute_using_list = 800 - PostgreSQLParserRULE_opt_execute_into = 801 - PostgreSQLParserRULE_stmt_open = 802 - PostgreSQLParserRULE_opt_open_bound_list_item = 803 - PostgreSQLParserRULE_opt_open_bound_list = 804 - PostgreSQLParserRULE_opt_open_using = 805 - PostgreSQLParserRULE_opt_scroll_option = 806 - PostgreSQLParserRULE_opt_scroll_option_no = 807 - PostgreSQLParserRULE_stmt_fetch = 808 - PostgreSQLParserRULE_into_target = 809 - PostgreSQLParserRULE_opt_cursor_from = 810 - PostgreSQLParserRULE_opt_fetch_direction = 811 - PostgreSQLParserRULE_stmt_move = 812 - PostgreSQLParserRULE_stmt_close = 813 - PostgreSQLParserRULE_stmt_null = 814 - PostgreSQLParserRULE_stmt_commit = 815 - PostgreSQLParserRULE_stmt_rollback = 816 - PostgreSQLParserRULE_plsql_opt_transaction_chain = 817 - PostgreSQLParserRULE_stmt_set = 818 - PostgreSQLParserRULE_cursor_variable = 819 - PostgreSQLParserRULE_exception_sect = 820 - PostgreSQLParserRULE_proc_exceptions = 821 - PostgreSQLParserRULE_proc_exception = 822 - PostgreSQLParserRULE_proc_conditions = 823 - PostgreSQLParserRULE_proc_condition = 824 - PostgreSQLParserRULE_opt_block_label = 825 - PostgreSQLParserRULE_opt_loop_label = 826 - PostgreSQLParserRULE_opt_label = 827 - PostgreSQLParserRULE_opt_exitcond = 828 - PostgreSQLParserRULE_any_identifier = 829 - PostgreSQLParserRULE_plsql_unreserved_keyword = 830 - PostgreSQLParserRULE_sql_expression = 831 - PostgreSQLParserRULE_expr_until_then = 832 - PostgreSQLParserRULE_expr_until_semi = 833 - PostgreSQLParserRULE_expr_until_rightbracket = 834 - PostgreSQLParserRULE_expr_until_loop = 835 - PostgreSQLParserRULE_make_execsql_stmt = 836 - PostgreSQLParserRULE_opt_returning_clause_into = 837 + PostgreSQLParserRULE_joined_table = 534 + PostgreSQLParserRULE_alias_clause = 535 + PostgreSQLParserRULE_opt_alias_clause = 536 + PostgreSQLParserRULE_table_alias_clause = 537 + PostgreSQLParserRULE_func_alias_clause = 538 + PostgreSQLParserRULE_join_type = 539 + PostgreSQLParserRULE_join_qual = 540 + PostgreSQLParserRULE_relation_expr = 541 + PostgreSQLParserRULE_relation_expr_list = 542 + PostgreSQLParserRULE_relation_expr_opt_alias = 543 + PostgreSQLParserRULE_tablesample_clause = 544 + PostgreSQLParserRULE_opt_repeatable_clause = 545 + PostgreSQLParserRULE_func_table = 546 + PostgreSQLParserRULE_rowsfrom_item = 547 + PostgreSQLParserRULE_rowsfrom_list = 548 + PostgreSQLParserRULE_opt_col_def_list = 549 + PostgreSQLParserRULE_opt_ordinality = 550 + PostgreSQLParserRULE_where_clause = 551 + PostgreSQLParserRULE_where_or_current_clause = 552 + PostgreSQLParserRULE_opttablefuncelementlist = 553 + PostgreSQLParserRULE_tablefuncelementlist = 554 + PostgreSQLParserRULE_tablefuncelement = 555 + PostgreSQLParserRULE_xmltable = 556 + PostgreSQLParserRULE_xmltable_column_list = 557 + PostgreSQLParserRULE_xmltable_column_el = 558 + PostgreSQLParserRULE_xmltable_column_option_list = 559 + PostgreSQLParserRULE_xmltable_column_option_el = 560 + PostgreSQLParserRULE_xml_namespace_list = 561 + PostgreSQLParserRULE_xml_namespace_el = 562 + PostgreSQLParserRULE_typename = 563 + PostgreSQLParserRULE_opt_array_bounds = 564 + PostgreSQLParserRULE_simpletypename = 565 + PostgreSQLParserRULE_consttypename = 566 + PostgreSQLParserRULE_generictype = 567 + PostgreSQLParserRULE_opt_type_modifiers = 568 + PostgreSQLParserRULE_numeric = 569 + PostgreSQLParserRULE_opt_float = 570 + PostgreSQLParserRULE_bit = 571 + PostgreSQLParserRULE_constbit = 572 + PostgreSQLParserRULE_bitwithlength = 573 + PostgreSQLParserRULE_bitwithoutlength = 574 + PostgreSQLParserRULE_character = 575 + PostgreSQLParserRULE_constcharacter = 576 + PostgreSQLParserRULE_character_c = 577 + PostgreSQLParserRULE_opt_varying = 578 + PostgreSQLParserRULE_constdatetime = 579 + PostgreSQLParserRULE_constinterval = 580 + PostgreSQLParserRULE_opt_timezone = 581 + PostgreSQLParserRULE_opt_interval = 582 + PostgreSQLParserRULE_interval_second = 583 + PostgreSQLParserRULE_opt_escape = 584 + PostgreSQLParserRULE_a_expr = 585 + PostgreSQLParserRULE_a_expr_qual = 586 + PostgreSQLParserRULE_a_expr_lessless = 587 + PostgreSQLParserRULE_a_expr_or = 588 + PostgreSQLParserRULE_a_expr_and = 589 + PostgreSQLParserRULE_a_expr_between = 590 + PostgreSQLParserRULE_a_expr_in = 591 + PostgreSQLParserRULE_a_expr_unary_not = 592 + PostgreSQLParserRULE_a_expr_isnull = 593 + PostgreSQLParserRULE_a_expr_is_not = 594 + PostgreSQLParserRULE_a_expr_compare = 595 + PostgreSQLParserRULE_a_expr_like = 596 + PostgreSQLParserRULE_a_expr_qual_op = 597 + PostgreSQLParserRULE_a_expr_unary_qualop = 598 + PostgreSQLParserRULE_a_expr_add = 599 + PostgreSQLParserRULE_a_expr_mul = 600 + PostgreSQLParserRULE_a_expr_caret = 601 + PostgreSQLParserRULE_a_expr_unary_sign = 602 + PostgreSQLParserRULE_a_expr_at_time_zone = 603 + PostgreSQLParserRULE_a_expr_collate = 604 + PostgreSQLParserRULE_a_expr_typecast = 605 + PostgreSQLParserRULE_b_expr = 606 + PostgreSQLParserRULE_c_expr = 607 + PostgreSQLParserRULE_plsqlvariablename = 608 + PostgreSQLParserRULE_func_application = 609 + PostgreSQLParserRULE_func_expr = 610 + PostgreSQLParserRULE_func_expr_windowless = 611 + PostgreSQLParserRULE_json_aggregate_func = 612 + PostgreSQLParserRULE_json_output_clause = 613 + PostgreSQLParserRULE_json_array_aggregate_order_by_clause = 614 + PostgreSQLParserRULE_func_expr_common_subexpr = 615 + PostgreSQLParserRULE_json_on_error_clause = 616 + PostgreSQLParserRULE_json_behavior_clause = 617 + PostgreSQLParserRULE_json_behavior = 618 + PostgreSQLParserRULE_json_behavior_type = 619 + PostgreSQLParserRULE_json_quotes_clause = 620 + PostgreSQLParserRULE_json_wrapper_behavior = 621 + PostgreSQLParserRULE_json_passing_clause = 622 + PostgreSQLParserRULE_json_arguments = 623 + PostgreSQLParserRULE_json_argument = 624 + PostgreSQLParserRULE_json_format_clause_opt = 625 + PostgreSQLParserRULE_json_value_expr_list = 626 + PostgreSQLParserRULE_json_returning_clause = 627 + PostgreSQLParserRULE_json_key_uniqueness_constraint = 628 + PostgreSQLParserRULE_json_array_constructor_null_clause = 629 + PostgreSQLParserRULE_json_object_constructor_null_clause = 630 + PostgreSQLParserRULE_json_name_and_value_list = 631 + PostgreSQLParserRULE_json_name_and_value = 632 + PostgreSQLParserRULE_json_value_expr = 633 + PostgreSQLParserRULE_json_format_clause = 634 + PostgreSQLParserRULE_xml_root_version = 635 + PostgreSQLParserRULE_opt_xml_root_standalone = 636 + PostgreSQLParserRULE_xml_attributes = 637 + PostgreSQLParserRULE_xml_attribute_list = 638 + PostgreSQLParserRULE_xml_attribute_el = 639 + PostgreSQLParserRULE_document_or_content = 640 + PostgreSQLParserRULE_xml_whitespace_option = 641 + PostgreSQLParserRULE_xmlexists_argument = 642 + PostgreSQLParserRULE_xml_passing_mech = 643 + PostgreSQLParserRULE_within_group_clause = 644 + PostgreSQLParserRULE_filter_clause = 645 + PostgreSQLParserRULE_window_clause = 646 + PostgreSQLParserRULE_window_definition_list = 647 + PostgreSQLParserRULE_window_definition = 648 + PostgreSQLParserRULE_over_clause = 649 + PostgreSQLParserRULE_window_specification = 650 + PostgreSQLParserRULE_opt_existing_window_name = 651 + PostgreSQLParserRULE_opt_partition_clause = 652 + PostgreSQLParserRULE_opt_frame_clause = 653 + PostgreSQLParserRULE_frame_extent = 654 + PostgreSQLParserRULE_frame_bound = 655 + PostgreSQLParserRULE_opt_window_exclusion_clause = 656 + PostgreSQLParserRULE_row = 657 + PostgreSQLParserRULE_explicit_row = 658 + PostgreSQLParserRULE_implicit_row = 659 + PostgreSQLParserRULE_sub_type = 660 + PostgreSQLParserRULE_all_op = 661 + PostgreSQLParserRULE_mathop = 662 + PostgreSQLParserRULE_qual_op = 663 + PostgreSQLParserRULE_qual_all_op = 664 + PostgreSQLParserRULE_subquery_Op = 665 + PostgreSQLParserRULE_expr_list = 666 + PostgreSQLParserRULE_func_arg_list = 667 + PostgreSQLParserRULE_func_arg_expr = 668 + PostgreSQLParserRULE_type_list = 669 + PostgreSQLParserRULE_array_expr = 670 + PostgreSQLParserRULE_array_expr_list = 671 + PostgreSQLParserRULE_extract_list = 672 + PostgreSQLParserRULE_extract_arg = 673 + PostgreSQLParserRULE_unicode_normal_form = 674 + PostgreSQLParserRULE_overlay_list = 675 + PostgreSQLParserRULE_position_list = 676 + PostgreSQLParserRULE_substr_list = 677 + PostgreSQLParserRULE_trim_list = 678 + PostgreSQLParserRULE_in_expr = 679 + PostgreSQLParserRULE_case_expr = 680 + PostgreSQLParserRULE_when_clause_list = 681 + PostgreSQLParserRULE_when_clause = 682 + PostgreSQLParserRULE_case_default = 683 + PostgreSQLParserRULE_case_arg = 684 + PostgreSQLParserRULE_columnref = 685 + PostgreSQLParserRULE_indirection_el = 686 + PostgreSQLParserRULE_opt_slice_bound = 687 + PostgreSQLParserRULE_indirection = 688 + PostgreSQLParserRULE_opt_indirection = 689 + PostgreSQLParserRULE_opt_target_list = 690 + PostgreSQLParserRULE_target_list = 691 + PostgreSQLParserRULE_target_el = 692 + PostgreSQLParserRULE_target_alias = 693 + PostgreSQLParserRULE_qualified_name_list = 694 + PostgreSQLParserRULE_qualified_name = 695 + PostgreSQLParserRULE_name_list = 696 + PostgreSQLParserRULE_name = 697 + PostgreSQLParserRULE_attr_name = 698 + PostgreSQLParserRULE_file_name = 699 + PostgreSQLParserRULE_func_name = 700 + PostgreSQLParserRULE_aexprconst = 701 + PostgreSQLParserRULE_xconst = 702 + PostgreSQLParserRULE_bconst = 703 + PostgreSQLParserRULE_fconst = 704 + PostgreSQLParserRULE_iconst = 705 + PostgreSQLParserRULE_sconst = 706 + PostgreSQLParserRULE_anysconst = 707 + PostgreSQLParserRULE_opt_uescape = 708 + PostgreSQLParserRULE_signediconst = 709 + PostgreSQLParserRULE_roleid = 710 + PostgreSQLParserRULE_rolespec = 711 + PostgreSQLParserRULE_role_list = 712 + PostgreSQLParserRULE_colid = 713 + PostgreSQLParserRULE_table_alias = 714 + PostgreSQLParserRULE_type_function_name = 715 + PostgreSQLParserRULE_nonreservedword = 716 + PostgreSQLParserRULE_collabel = 717 + PostgreSQLParserRULE_identifier = 718 + PostgreSQLParserRULE_plsqlidentifier = 719 + PostgreSQLParserRULE_unreserved_keyword = 720 + PostgreSQLParserRULE_col_name_keyword = 721 + PostgreSQLParserRULE_type_func_name_keyword = 722 + PostgreSQLParserRULE_reserved_keyword = 723 + PostgreSQLParserRULE_builtin_function_name = 724 + PostgreSQLParserRULE_pl_function = 725 + PostgreSQLParserRULE_comp_options = 726 + PostgreSQLParserRULE_comp_option = 727 + PostgreSQLParserRULE_sharp = 728 + PostgreSQLParserRULE_option_value = 729 + PostgreSQLParserRULE_opt_semi = 730 + PostgreSQLParserRULE_pl_block = 731 + PostgreSQLParserRULE_decl_sect = 732 + PostgreSQLParserRULE_decl_start = 733 + PostgreSQLParserRULE_decl_stmts = 734 + PostgreSQLParserRULE_label_decl = 735 + PostgreSQLParserRULE_decl_stmt = 736 + PostgreSQLParserRULE_decl_statement = 737 + PostgreSQLParserRULE_opt_scrollable = 738 + PostgreSQLParserRULE_decl_cursor_query = 739 + PostgreSQLParserRULE_decl_cursor_args = 740 + PostgreSQLParserRULE_decl_cursor_arglist = 741 + PostgreSQLParserRULE_decl_cursor_arg = 742 + PostgreSQLParserRULE_decl_is_for = 743 + PostgreSQLParserRULE_decl_aliasitem = 744 + PostgreSQLParserRULE_decl_varname = 745 + PostgreSQLParserRULE_decl_const = 746 + PostgreSQLParserRULE_decl_datatype = 747 + PostgreSQLParserRULE_decl_collate = 748 + PostgreSQLParserRULE_decl_notnull = 749 + PostgreSQLParserRULE_decl_defval = 750 + PostgreSQLParserRULE_decl_defkey = 751 + PostgreSQLParserRULE_assign_operator = 752 + PostgreSQLParserRULE_proc_sect = 753 + PostgreSQLParserRULE_proc_stmt = 754 + PostgreSQLParserRULE_stmt_perform = 755 + PostgreSQLParserRULE_stmt_call = 756 + PostgreSQLParserRULE_opt_expr_list = 757 + PostgreSQLParserRULE_stmt_assign = 758 + PostgreSQLParserRULE_stmt_getdiag = 759 + PostgreSQLParserRULE_getdiag_area_opt = 760 + PostgreSQLParserRULE_getdiag_list = 761 + PostgreSQLParserRULE_getdiag_list_item = 762 + PostgreSQLParserRULE_getdiag_item = 763 + PostgreSQLParserRULE_getdiag_target = 764 + PostgreSQLParserRULE_assign_var = 765 + PostgreSQLParserRULE_stmt_if = 766 + PostgreSQLParserRULE_stmt_elsifs = 767 + PostgreSQLParserRULE_stmt_else = 768 + PostgreSQLParserRULE_stmt_case = 769 + PostgreSQLParserRULE_opt_expr_until_when = 770 + PostgreSQLParserRULE_case_when_list = 771 + PostgreSQLParserRULE_case_when = 772 + PostgreSQLParserRULE_opt_case_else = 773 + PostgreSQLParserRULE_stmt_loop = 774 + PostgreSQLParserRULE_stmt_while = 775 + PostgreSQLParserRULE_stmt_for = 776 + PostgreSQLParserRULE_for_control = 777 + PostgreSQLParserRULE_opt_for_using_expression = 778 + PostgreSQLParserRULE_opt_cursor_parameters = 779 + PostgreSQLParserRULE_opt_reverse = 780 + PostgreSQLParserRULE_opt_by_expression = 781 + PostgreSQLParserRULE_for_variable = 782 + PostgreSQLParserRULE_stmt_foreach_a = 783 + PostgreSQLParserRULE_foreach_slice = 784 + PostgreSQLParserRULE_stmt_exit = 785 + PostgreSQLParserRULE_exit_type = 786 + PostgreSQLParserRULE_stmt_return = 787 + PostgreSQLParserRULE_opt_return_result = 788 + PostgreSQLParserRULE_stmt_raise = 789 + PostgreSQLParserRULE_opt_stmt_raise_level = 790 + PostgreSQLParserRULE_opt_raise_list = 791 + PostgreSQLParserRULE_opt_raise_using = 792 + PostgreSQLParserRULE_opt_raise_using_elem = 793 + PostgreSQLParserRULE_opt_raise_using_elem_list = 794 + PostgreSQLParserRULE_stmt_assert = 795 + PostgreSQLParserRULE_opt_stmt_assert_message = 796 + PostgreSQLParserRULE_loop_body = 797 + PostgreSQLParserRULE_stmt_execsql = 798 + PostgreSQLParserRULE_stmt_dynexecute = 799 + PostgreSQLParserRULE_opt_execute_using = 800 + PostgreSQLParserRULE_opt_execute_using_list = 801 + PostgreSQLParserRULE_opt_execute_into = 802 + PostgreSQLParserRULE_stmt_open = 803 + PostgreSQLParserRULE_opt_open_bound_list_item = 804 + PostgreSQLParserRULE_opt_open_bound_list = 805 + PostgreSQLParserRULE_opt_open_using = 806 + PostgreSQLParserRULE_opt_scroll_option = 807 + PostgreSQLParserRULE_opt_scroll_option_no = 808 + PostgreSQLParserRULE_stmt_fetch = 809 + PostgreSQLParserRULE_into_target = 810 + PostgreSQLParserRULE_opt_cursor_from = 811 + PostgreSQLParserRULE_opt_fetch_direction = 812 + PostgreSQLParserRULE_stmt_move = 813 + PostgreSQLParserRULE_stmt_close = 814 + PostgreSQLParserRULE_stmt_null = 815 + PostgreSQLParserRULE_stmt_commit = 816 + PostgreSQLParserRULE_stmt_rollback = 817 + PostgreSQLParserRULE_plsql_opt_transaction_chain = 818 + PostgreSQLParserRULE_stmt_set = 819 + PostgreSQLParserRULE_cursor_variable = 820 + PostgreSQLParserRULE_exception_sect = 821 + PostgreSQLParserRULE_proc_exceptions = 822 + PostgreSQLParserRULE_proc_exception = 823 + PostgreSQLParserRULE_proc_conditions = 824 + PostgreSQLParserRULE_proc_condition = 825 + PostgreSQLParserRULE_opt_block_label = 826 + PostgreSQLParserRULE_opt_loop_label = 827 + PostgreSQLParserRULE_opt_label = 828 + PostgreSQLParserRULE_opt_exitcond = 829 + PostgreSQLParserRULE_any_identifier = 830 + PostgreSQLParserRULE_plsql_unreserved_keyword = 831 + PostgreSQLParserRULE_sql_expression = 832 + PostgreSQLParserRULE_expr_until_then = 833 + PostgreSQLParserRULE_expr_until_semi = 834 + PostgreSQLParserRULE_expr_until_rightbracket = 835 + PostgreSQLParserRULE_expr_until_loop = 836 + PostgreSQLParserRULE_make_execsql_stmt = 837 + PostgreSQLParserRULE_opt_returning_clause_into = 838 ) // IRootContext is an interface to support dynamic dispatch. @@ -8255,11 +8250,11 @@ func (p *PostgreSQLParser) Root() (localctx IRootContext) { p.EnterRule(localctx, 0, PostgreSQLParserRULE_root) p.EnterOuterAlt(localctx, 1) { - p.SetState(1676) + p.SetState(1678) p.Stmtblock() } { - p.SetState(1677) + p.SetState(1679) p.Match(PostgreSQLParserEOF) if p.HasError() { // Recognition error - abort rule @@ -8377,7 +8372,7 @@ func (p *PostgreSQLParser) Plsqlroot() (localctx IPlsqlrootContext) { p.EnterRule(localctx, 2, PostgreSQLParserRULE_plsqlroot) p.EnterOuterAlt(localctx, 1) { - p.SetState(1679) + p.SetState(1681) p.Pl_function() } @@ -8491,7 +8486,7 @@ func (p *PostgreSQLParser) Stmtblock() (localctx IStmtblockContext) { p.EnterRule(localctx, 4, PostgreSQLParserRULE_stmtblock) p.EnterOuterAlt(localctx, 1) { - p.SetState(1681) + p.SetState(1683) p.Stmtmulti() } @@ -8644,7 +8639,7 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1689) + p.SetState(1691) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8656,10 +8651,10 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1683) + p.SetState(1685) p.Stmt() } - p.SetState(1685) + p.SetState(1687) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8668,7 +8663,7 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { if _la == PostgreSQLParserSEMI { { - p.SetState(1684) + p.SetState(1686) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -8679,7 +8674,7 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { } } - p.SetState(1691) + p.SetState(1693) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10906,7 +10901,7 @@ func (s *StmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt() (localctx IStmtContext) { localctx = NewStmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 8, PostgreSQLParserRULE_stmt) - p.SetState(1817) + p.SetState(1819) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10916,875 +10911,875 @@ func (p *PostgreSQLParser) Stmt() (localctx IStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1692) + p.SetState(1694) p.Altereventtrigstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1693) + p.SetState(1695) p.Altercollationstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1694) + p.SetState(1696) p.Alterdatabasestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1695) + p.SetState(1697) p.Alterdatabasesetstmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1696) + p.SetState(1698) p.Alterdefaultprivilegesstmt() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1697) + p.SetState(1699) p.Alterdomainstmt() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1698) + p.SetState(1700) p.Alterenumstmt() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1699) + p.SetState(1701) p.Alterextensionstmt() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1700) + p.SetState(1702) p.Alterextensioncontentsstmt() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1701) + p.SetState(1703) p.Alterfdwstmt() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1702) + p.SetState(1704) p.Alterforeignserverstmt() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1703) + p.SetState(1705) p.Alterfunctionstmt() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1704) + p.SetState(1706) p.Altergroupstmt() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1705) + p.SetState(1707) p.Alterobjectdependsstmt() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(1706) + p.SetState(1708) p.Alterobjectschemastmt() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(1707) + p.SetState(1709) p.Alterownerstmt() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(1708) + p.SetState(1710) p.Alteroperatorstmt() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(1709) + p.SetState(1711) p.Altertypestmt() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(1710) + p.SetState(1712) p.Alterpolicystmt() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(1711) + p.SetState(1713) p.Alterseqstmt() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(1712) + p.SetState(1714) p.Altersystemstmt() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(1713) + p.SetState(1715) p.Altertablestmt() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(1714) + p.SetState(1716) p.Altertblspcstmt() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(1715) + p.SetState(1717) p.Altercompositetypestmt() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(1716) + p.SetState(1718) p.Alterpublicationstmt() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(1717) + p.SetState(1719) p.Alterrolesetstmt() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(1718) + p.SetState(1720) p.Alterrolestmt() } case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(1719) + p.SetState(1721) p.Altersubscriptionstmt() } case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(1720) + p.SetState(1722) p.Alterstatsstmt() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(1721) + p.SetState(1723) p.Altertsconfigurationstmt() } case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(1722) + p.SetState(1724) p.Altertsdictionarystmt() } case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(1723) + p.SetState(1725) p.Alterusermappingstmt() } case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(1724) + p.SetState(1726) p.Analyzestmt() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(1725) + p.SetState(1727) p.Callstmt() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(1726) + p.SetState(1728) p.Checkpointstmt() } case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(1727) + p.SetState(1729) p.Closeportalstmt() } case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(1728) + p.SetState(1730) p.Clusterstmt() } case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(1729) + p.SetState(1731) p.Commentstmt() } case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(1730) + p.SetState(1732) p.Constraintssetstmt() } case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(1731) + p.SetState(1733) p.Copystmt() } case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(1732) + p.SetState(1734) p.Createamstmt() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(1733) + p.SetState(1735) p.Createasstmt() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(1734) + p.SetState(1736) p.Createassertionstmt() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(1735) + p.SetState(1737) p.Createcaststmt() } case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(1736) + p.SetState(1738) p.Createconversionstmt() } case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(1737) + p.SetState(1739) p.Createdomainstmt() } case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(1738) + p.SetState(1740) p.Createextensionstmt() } case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(1739) + p.SetState(1741) p.Createfdwstmt() } case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(1740) + p.SetState(1742) p.Createforeignserverstmt() } case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(1741) + p.SetState(1743) p.Createforeigntablestmt() } case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(1742) + p.SetState(1744) p.Createfunctionstmt() } case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(1743) + p.SetState(1745) p.Creategroupstmt() } case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(1744) + p.SetState(1746) p.Creatematviewstmt() } case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(1745) + p.SetState(1747) p.Createopclassstmt() } case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(1746) + p.SetState(1748) p.Createopfamilystmt() } case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(1747) + p.SetState(1749) p.Createpublicationstmt() } case 57: p.EnterOuterAlt(localctx, 57) { - p.SetState(1748) + p.SetState(1750) p.Alteropfamilystmt() } case 58: p.EnterOuterAlt(localctx, 58) { - p.SetState(1749) + p.SetState(1751) p.Createpolicystmt() } case 59: p.EnterOuterAlt(localctx, 59) { - p.SetState(1750) + p.SetState(1752) p.Createplangstmt() } case 60: p.EnterOuterAlt(localctx, 60) { - p.SetState(1751) + p.SetState(1753) p.Createschemastmt() } case 61: p.EnterOuterAlt(localctx, 61) { - p.SetState(1752) + p.SetState(1754) p.Createseqstmt() } case 62: p.EnterOuterAlt(localctx, 62) { - p.SetState(1753) + p.SetState(1755) p.Createstmt() } case 63: p.EnterOuterAlt(localctx, 63) { - p.SetState(1754) + p.SetState(1756) p.Createsubscriptionstmt() } case 64: p.EnterOuterAlt(localctx, 64) { - p.SetState(1755) + p.SetState(1757) p.Createstatsstmt() } case 65: p.EnterOuterAlt(localctx, 65) { - p.SetState(1756) + p.SetState(1758) p.Createtablespacestmt() } case 66: p.EnterOuterAlt(localctx, 66) { - p.SetState(1757) + p.SetState(1759) p.Createtransformstmt() } case 67: p.EnterOuterAlt(localctx, 67) { - p.SetState(1758) + p.SetState(1760) p.Createtrigstmt() } case 68: p.EnterOuterAlt(localctx, 68) { - p.SetState(1759) + p.SetState(1761) p.Createeventtrigstmt() } case 69: p.EnterOuterAlt(localctx, 69) { - p.SetState(1760) + p.SetState(1762) p.Createrolestmt() } case 70: p.EnterOuterAlt(localctx, 70) { - p.SetState(1761) + p.SetState(1763) p.Createuserstmt() } case 71: p.EnterOuterAlt(localctx, 71) { - p.SetState(1762) + p.SetState(1764) p.Createusermappingstmt() } case 72: p.EnterOuterAlt(localctx, 72) { - p.SetState(1763) + p.SetState(1765) p.Createdbstmt() } case 73: p.EnterOuterAlt(localctx, 73) { - p.SetState(1764) + p.SetState(1766) p.Deallocatestmt() } case 74: p.EnterOuterAlt(localctx, 74) { - p.SetState(1765) + p.SetState(1767) p.Declarecursorstmt() } case 75: p.EnterOuterAlt(localctx, 75) { - p.SetState(1766) + p.SetState(1768) p.Definestmt() } case 76: p.EnterOuterAlt(localctx, 76) { - p.SetState(1767) + p.SetState(1769) p.Deletestmt() } case 77: p.EnterOuterAlt(localctx, 77) { - p.SetState(1768) + p.SetState(1770) p.Discardstmt() } case 78: p.EnterOuterAlt(localctx, 78) { - p.SetState(1769) + p.SetState(1771) p.Dostmt() } case 79: p.EnterOuterAlt(localctx, 79) { - p.SetState(1770) + p.SetState(1772) p.Dropcaststmt() } case 80: p.EnterOuterAlt(localctx, 80) { - p.SetState(1771) + p.SetState(1773) p.Dropopclassstmt() } case 81: p.EnterOuterAlt(localctx, 81) { - p.SetState(1772) + p.SetState(1774) p.Dropopfamilystmt() } case 82: p.EnterOuterAlt(localctx, 82) { - p.SetState(1773) + p.SetState(1775) p.Dropownedstmt() } case 83: p.EnterOuterAlt(localctx, 83) { - p.SetState(1774) + p.SetState(1776) p.Dropstmt() } case 84: p.EnterOuterAlt(localctx, 84) { - p.SetState(1775) + p.SetState(1777) p.Dropsubscriptionstmt() } case 85: p.EnterOuterAlt(localctx, 85) { - p.SetState(1776) + p.SetState(1778) p.Droptablespacestmt() } case 86: p.EnterOuterAlt(localctx, 86) { - p.SetState(1777) + p.SetState(1779) p.Droptransformstmt() } case 87: p.EnterOuterAlt(localctx, 87) { - p.SetState(1778) + p.SetState(1780) p.Droprolestmt() } case 88: p.EnterOuterAlt(localctx, 88) { - p.SetState(1779) + p.SetState(1781) p.Dropusermappingstmt() } case 89: p.EnterOuterAlt(localctx, 89) { - p.SetState(1780) + p.SetState(1782) p.Dropdbstmt() } case 90: p.EnterOuterAlt(localctx, 90) { - p.SetState(1781) + p.SetState(1783) p.Executestmt() } case 91: p.EnterOuterAlt(localctx, 91) { - p.SetState(1782) + p.SetState(1784) p.Explainstmt() } case 92: p.EnterOuterAlt(localctx, 92) { - p.SetState(1783) + p.SetState(1785) p.Fetchstmt() } case 93: p.EnterOuterAlt(localctx, 93) { - p.SetState(1784) + p.SetState(1786) p.Grantstmt() } case 94: p.EnterOuterAlt(localctx, 94) { - p.SetState(1785) + p.SetState(1787) p.Grantrolestmt() } case 95: p.EnterOuterAlt(localctx, 95) { - p.SetState(1786) + p.SetState(1788) p.Importforeignschemastmt() } case 96: p.EnterOuterAlt(localctx, 96) { - p.SetState(1787) + p.SetState(1789) p.Indexstmt() } case 97: p.EnterOuterAlt(localctx, 97) { - p.SetState(1788) + p.SetState(1790) p.Insertstmt() } case 98: p.EnterOuterAlt(localctx, 98) { - p.SetState(1789) + p.SetState(1791) p.Mergestmt() } case 99: p.EnterOuterAlt(localctx, 99) { - p.SetState(1790) + p.SetState(1792) p.Listenstmt() } case 100: p.EnterOuterAlt(localctx, 100) { - p.SetState(1791) + p.SetState(1793) p.Refreshmatviewstmt() } case 101: p.EnterOuterAlt(localctx, 101) { - p.SetState(1792) + p.SetState(1794) p.Loadstmt() } case 102: p.EnterOuterAlt(localctx, 102) { - p.SetState(1793) + p.SetState(1795) p.Lockstmt() } case 103: p.EnterOuterAlt(localctx, 103) { - p.SetState(1794) + p.SetState(1796) p.Notifystmt() } case 104: p.EnterOuterAlt(localctx, 104) { - p.SetState(1795) + p.SetState(1797) p.Preparestmt() } case 105: p.EnterOuterAlt(localctx, 105) { - p.SetState(1796) + p.SetState(1798) p.Reassignownedstmt() } case 106: p.EnterOuterAlt(localctx, 106) { - p.SetState(1797) + p.SetState(1799) p.Reindexstmt() } case 107: p.EnterOuterAlt(localctx, 107) { - p.SetState(1798) + p.SetState(1800) p.Removeaggrstmt() } case 108: p.EnterOuterAlt(localctx, 108) { - p.SetState(1799) + p.SetState(1801) p.Removefuncstmt() } case 109: p.EnterOuterAlt(localctx, 109) { - p.SetState(1800) + p.SetState(1802) p.Removeoperstmt() } case 110: p.EnterOuterAlt(localctx, 110) { - p.SetState(1801) + p.SetState(1803) p.Renamestmt() } case 111: p.EnterOuterAlt(localctx, 111) { - p.SetState(1802) + p.SetState(1804) p.Revokestmt() } case 112: p.EnterOuterAlt(localctx, 112) { - p.SetState(1803) + p.SetState(1805) p.Revokerolestmt() } case 113: p.EnterOuterAlt(localctx, 113) { - p.SetState(1804) + p.SetState(1806) p.Rulestmt() } case 114: p.EnterOuterAlt(localctx, 114) { - p.SetState(1805) + p.SetState(1807) p.Seclabelstmt() } case 115: p.EnterOuterAlt(localctx, 115) { - p.SetState(1806) + p.SetState(1808) p.Selectstmt() } case 116: p.EnterOuterAlt(localctx, 116) { - p.SetState(1807) + p.SetState(1809) p.Transactionstmt() } case 117: p.EnterOuterAlt(localctx, 117) { - p.SetState(1808) + p.SetState(1810) p.Truncatestmt() } case 118: p.EnterOuterAlt(localctx, 118) { - p.SetState(1809) + p.SetState(1811) p.Unlistenstmt() } case 119: p.EnterOuterAlt(localctx, 119) { - p.SetState(1810) + p.SetState(1812) p.Updatestmt() } case 120: p.EnterOuterAlt(localctx, 120) { - p.SetState(1811) + p.SetState(1813) p.Vacuumstmt() } case 121: p.EnterOuterAlt(localctx, 121) { - p.SetState(1812) + p.SetState(1814) p.Variableresetstmt() } case 122: p.EnterOuterAlt(localctx, 122) { - p.SetState(1813) + p.SetState(1815) p.Variablesetstmt() } case 123: p.EnterOuterAlt(localctx, 123) { - p.SetState(1814) + p.SetState(1816) p.Variableshowstmt() } case 124: p.EnterOuterAlt(localctx, 124) { - p.SetState(1815) + p.SetState(1817) p.Viewstmt() } case 125: p.EnterOuterAlt(localctx, 125) { - p.SetState(1816) + p.SetState(1818) p.Plsqlconsolecommand() } @@ -11897,14 +11892,14 @@ func (p *PostgreSQLParser) Plsqlconsolecommand() (localctx IPlsqlconsolecommandC p.EnterOuterAlt(localctx, 1) { - p.SetState(1819) + p.SetState(1821) p.Match(PostgreSQLParserMetaCommand) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1821) + p.SetState(1823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11913,7 +11908,7 @@ func (p *PostgreSQLParser) Plsqlconsolecommand() (localctx IPlsqlconsolecommandC if _la == PostgreSQLParserEndMetaCommand { { - p.SetState(1820) + p.SetState(1822) p.Match(PostgreSQLParserEndMetaCommand) if p.HasError() { // Recognition error - abort rule @@ -12038,7 +12033,7 @@ func (p *PostgreSQLParser) Callstmt() (localctx ICallstmtContext) { p.EnterRule(localctx, 12, PostgreSQLParserRULE_callstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1823) + p.SetState(1825) p.Match(PostgreSQLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -12046,7 +12041,7 @@ func (p *PostgreSQLParser) Callstmt() (localctx ICallstmtContext) { } } { - p.SetState(1824) + p.SetState(1826) p.Func_application() } @@ -12204,7 +12199,7 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { p.EnterRule(localctx, 14, PostgreSQLParserRULE_createrolestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1826) + p.SetState(1828) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -12212,7 +12207,7 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { } } { - p.SetState(1827) + p.SetState(1829) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -12220,15 +12215,15 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { } } { - p.SetState(1828) + p.SetState(1830) p.Roleid() } - p.SetState(1830) + p.SetState(1832) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 4, p.GetParserRuleContext()) == 1 { { - p.SetState(1829) + p.SetState(1831) p.Opt_with() } @@ -12236,7 +12231,7 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { goto errorExit } { - p.SetState(1832) + p.SetState(1834) p.Optrolelist() } @@ -12338,7 +12333,7 @@ func (p *PostgreSQLParser) Opt_with() (localctx IOpt_withContext) { p.EnterRule(localctx, 16, PostgreSQLParserRULE_opt_with) p.EnterOuterAlt(localctx, 1) { - p.SetState(1834) + p.SetState(1836) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -12483,7 +12478,7 @@ func (p *PostgreSQLParser) Optrolelist() (localctx IOptrolelistContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1839) + p.SetState(1841) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12495,12 +12490,12 @@ func (p *PostgreSQLParser) Optrolelist() (localctx IOptrolelistContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1836) + p.SetState(1838) p.Createoptroleelem() } } - p.SetState(1841) + p.SetState(1843) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12648,7 +12643,7 @@ func (p *PostgreSQLParser) Alteroptrolelist() (localctx IAlteroptrolelistContext var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1845) + p.SetState(1847) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12660,12 +12655,12 @@ func (p *PostgreSQLParser) Alteroptrolelist() (localctx IAlteroptrolelistContext for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1842) + p.SetState(1844) p.Alteroptroleelem() } } - p.SetState(1847) + p.SetState(1849) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12887,7 +12882,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext p.EnterRule(localctx, 22, PostgreSQLParserRULE_alteroptroleelem) var _la int - p.SetState(1866) + p.SetState(1868) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12897,14 +12892,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext case PostgreSQLParserPASSWORD: p.EnterOuterAlt(localctx, 1) { - p.SetState(1848) + p.SetState(1850) p.Match(PostgreSQLParserPASSWORD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1851) + p.SetState(1853) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12913,13 +12908,13 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(1849) + p.SetState(1851) p.Sconst() } case PostgreSQLParserNULL_P: { - p.SetState(1850) + p.SetState(1852) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -12935,7 +12930,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext case PostgreSQLParserENCRYPTED, PostgreSQLParserUNENCRYPTED: p.EnterOuterAlt(localctx, 2) { - p.SetState(1853) + p.SetState(1855) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserENCRYPTED || _la == PostgreSQLParserUNENCRYPTED) { @@ -12946,7 +12941,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1854) + p.SetState(1856) p.Match(PostgreSQLParserPASSWORD) if p.HasError() { // Recognition error - abort rule @@ -12954,14 +12949,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1855) + p.SetState(1857) p.Sconst() } case PostgreSQLParserINHERIT: p.EnterOuterAlt(localctx, 3) { - p.SetState(1856) + p.SetState(1858) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -12972,7 +12967,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext case PostgreSQLParserCONNECTION: p.EnterOuterAlt(localctx, 4) { - p.SetState(1857) + p.SetState(1859) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -12980,7 +12975,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1858) + p.SetState(1860) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -12988,14 +12983,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1859) + p.SetState(1861) p.Signediconst() } case PostgreSQLParserVALID: p.EnterOuterAlt(localctx, 5) { - p.SetState(1860) + p.SetState(1862) p.Match(PostgreSQLParserVALID) if p.HasError() { // Recognition error - abort rule @@ -13003,7 +12998,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1861) + p.SetState(1863) p.Match(PostgreSQLParserUNTIL) if p.HasError() { // Recognition error - abort rule @@ -13011,14 +13006,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1862) + p.SetState(1864) p.Sconst() } case PostgreSQLParserUSER: p.EnterOuterAlt(localctx, 6) { - p.SetState(1863) + p.SetState(1865) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13026,14 +13021,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1864) + p.SetState(1866) p.Role_list() } case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserIS, PostgreSQLParserOUTER_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserBACKWARD, PostgreSQLParserCHAIN, PostgreSQLParserCLOSE, PostgreSQLParserCOMMIT, PostgreSQLParserCONTINUE_P, PostgreSQLParserCURSOR, PostgreSQLParserFIRST_P, PostgreSQLParserFORWARD, PostgreSQLParserINSERT, PostgreSQLParserLAST_P, PostgreSQLParserMOVE, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserOPTION, PostgreSQLParserPRIOR, PostgreSQLParserRELATIVE_P, PostgreSQLParserRESET, PostgreSQLParserROLLBACK, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSET, PostgreSQLParserTYPE_P, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserROWTYPE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 7) { - p.SetState(1865) + p.SetState(1867) p.Identifier() } @@ -13211,7 +13206,7 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte p.EnterRule(localctx, 24, PostgreSQLParserRULE_createoptroleelem) var _la int - p.SetState(1878) + p.SetState(1880) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13221,14 +13216,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserUSER, PostgreSQLParserIS, PostgreSQLParserOUTER_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserBACKWARD, PostgreSQLParserCHAIN, PostgreSQLParserCLOSE, PostgreSQLParserCOMMIT, PostgreSQLParserCONNECTION, PostgreSQLParserCONTINUE_P, PostgreSQLParserCURSOR, PostgreSQLParserENCRYPTED, PostgreSQLParserFIRST_P, PostgreSQLParserFORWARD, PostgreSQLParserINHERIT, PostgreSQLParserINSERT, PostgreSQLParserLAST_P, PostgreSQLParserMOVE, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserOPTION, PostgreSQLParserPASSWORD, PostgreSQLParserPRIOR, PostgreSQLParserRELATIVE_P, PostgreSQLParserRESET, PostgreSQLParserROLLBACK, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSET, PostgreSQLParserTYPE_P, PostgreSQLParserUNENCRYPTED, PostgreSQLParserVALID, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserROWTYPE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(1868) + p.SetState(1870) p.Alteroptroleelem() } case PostgreSQLParserSYSID: p.EnterOuterAlt(localctx, 2) { - p.SetState(1869) + p.SetState(1871) p.Match(PostgreSQLParserSYSID) if p.HasError() { // Recognition error - abort rule @@ -13236,14 +13231,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1870) + p.SetState(1872) p.Iconst() } case PostgreSQLParserADMIN: p.EnterOuterAlt(localctx, 3) { - p.SetState(1871) + p.SetState(1873) p.Match(PostgreSQLParserADMIN) if p.HasError() { // Recognition error - abort rule @@ -13251,14 +13246,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1872) + p.SetState(1874) p.Role_list() } case PostgreSQLParserROLE: p.EnterOuterAlt(localctx, 4) { - p.SetState(1873) + p.SetState(1875) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13266,14 +13261,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1874) + p.SetState(1876) p.Role_list() } case PostgreSQLParserIN_P: p.EnterOuterAlt(localctx, 5) { - p.SetState(1875) + p.SetState(1877) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -13281,7 +13276,7 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1876) + p.SetState(1878) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserGROUP_P || _la == PostgreSQLParserROLE) { @@ -13292,7 +13287,7 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1877) + p.SetState(1879) p.Role_list() } @@ -13455,7 +13450,7 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { p.EnterRule(localctx, 26, PostgreSQLParserRULE_createuserstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1880) + p.SetState(1882) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -13463,7 +13458,7 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { } } { - p.SetState(1881) + p.SetState(1883) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13471,15 +13466,15 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { } } { - p.SetState(1882) + p.SetState(1884) p.Roleid() } - p.SetState(1884) + p.SetState(1886) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 10, p.GetParserRuleContext()) == 1 { { - p.SetState(1883) + p.SetState(1885) p.Opt_with() } @@ -13487,7 +13482,7 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { goto errorExit } { - p.SetState(1886) + p.SetState(1888) p.Optrolelist() } @@ -13652,7 +13647,7 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1888) + p.SetState(1890) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -13660,7 +13655,7 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { } } { - p.SetState(1889) + p.SetState(1891) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserUSER || _la == PostgreSQLParserROLE) { @@ -13671,15 +13666,15 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { } } { - p.SetState(1890) + p.SetState(1892) p.Rolespec() } - p.SetState(1892) + p.SetState(1894) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 11, p.GetParserRuleContext()) == 1 { { - p.SetState(1891) + p.SetState(1893) p.Opt_with() } @@ -13687,7 +13682,7 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { goto errorExit } { - p.SetState(1894) + p.SetState(1896) p.Alteroptrolelist() } @@ -13811,7 +13806,7 @@ func (p *PostgreSQLParser) Opt_in_database() (localctx IOpt_in_databaseContext) p.EnterRule(localctx, 30, PostgreSQLParserRULE_opt_in_database) p.EnterOuterAlt(localctx, 1) { - p.SetState(1896) + p.SetState(1898) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -13819,7 +13814,7 @@ func (p *PostgreSQLParser) Opt_in_database() (localctx IOpt_in_databaseContext) } } { - p.SetState(1897) + p.SetState(1899) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -13827,7 +13822,7 @@ func (p *PostgreSQLParser) Opt_in_database() (localctx IOpt_in_databaseContext) } } { - p.SetState(1898) + p.SetState(1900) p.Name() } @@ -13997,7 +13992,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(1900) + p.SetState(1902) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -14005,7 +14000,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext } } { - p.SetState(1901) + p.SetState(1903) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserUSER || _la == PostgreSQLParserROLE) { @@ -14015,7 +14010,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext p.Consume() } } - p.SetState(1903) + p.SetState(1905) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14024,7 +14019,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext if _la == PostgreSQLParserALL { { - p.SetState(1902) + p.SetState(1904) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -14034,10 +14029,10 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext } { - p.SetState(1905) + p.SetState(1907) p.Rolespec() } - p.SetState(1907) + p.SetState(1909) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14046,13 +14041,13 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext if _la == PostgreSQLParserIN_P { { - p.SetState(1906) + p.SetState(1908) p.Opt_in_database() } } { - p.SetState(1909) + p.SetState(1911) p.Setresetclause() } @@ -14198,7 +14193,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1911) + p.SetState(1913) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -14206,7 +14201,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { } } { - p.SetState(1912) + p.SetState(1914) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserGROUP_P || _la == PostgreSQLParserUSER || _la == PostgreSQLParserROLE) { @@ -14216,12 +14211,12 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { p.Consume() } } - p.SetState(1915) + p.SetState(1917) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 14, p.GetParserRuleContext()) == 1 { { - p.SetState(1913) + p.SetState(1915) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -14229,7 +14224,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { } } { - p.SetState(1914) + p.SetState(1916) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -14241,7 +14236,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { goto errorExit } { - p.SetState(1917) + p.SetState(1919) p.Role_list() } @@ -14399,7 +14394,7 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) p.EnterRule(localctx, 36, PostgreSQLParserRULE_creategroupstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1919) + p.SetState(1921) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -14407,7 +14402,7 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) } } { - p.SetState(1920) + p.SetState(1922) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -14415,15 +14410,15 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) } } { - p.SetState(1921) + p.SetState(1923) p.Roleid() } - p.SetState(1923) + p.SetState(1925) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 15, p.GetParserRuleContext()) == 1 { { - p.SetState(1922) + p.SetState(1924) p.Opt_with() } @@ -14431,7 +14426,7 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) goto errorExit } { - p.SetState(1925) + p.SetState(1927) p.Optrolelist() } @@ -14594,7 +14589,7 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { p.EnterRule(localctx, 38, PostgreSQLParserRULE_altergroupstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1927) + p.SetState(1929) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -14602,7 +14597,7 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { } } { - p.SetState(1928) + p.SetState(1930) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -14610,15 +14605,15 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { } } { - p.SetState(1929) + p.SetState(1931) p.Rolespec() } { - p.SetState(1930) + p.SetState(1932) p.Add_drop() } { - p.SetState(1931) + p.SetState(1933) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -14626,7 +14621,7 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { } } { - p.SetState(1932) + p.SetState(1934) p.Role_list() } @@ -14735,7 +14730,7 @@ func (p *PostgreSQLParser) Add_drop() (localctx IAdd_dropContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1934) + p.SetState(1936) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserADD_P || _la == PostgreSQLParserDROP) { @@ -14939,7 +14934,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(1936) + p.SetState(1938) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -14947,19 +14942,19 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1937) + p.SetState(1939) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1941) + p.SetState(1943) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 16, p.GetParserRuleContext()) == 1 { { - p.SetState(1938) + p.SetState(1940) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -14967,7 +14962,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1939) + p.SetState(1941) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -14975,7 +14970,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1940) + p.SetState(1942) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -14986,7 +14981,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } else if p.HasError() { // JIM goto errorExit } - p.SetState(1949) + p.SetState(1951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14994,7 +14989,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 18, p.GetParserRuleContext()) { case 1: - p.SetState(1944) + p.SetState(1946) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15003,13 +14998,13 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(1943) + p.SetState(1945) p.Optschemaname() } } { - p.SetState(1946) + p.SetState(1948) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -15017,13 +15012,13 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1947) + p.SetState(1949) p.Rolespec() } case 2: { - p.SetState(1948) + p.SetState(1950) p.Colid() } @@ -15031,7 +15026,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext goto errorExit } { - p.SetState(1951) + p.SetState(1953) p.Optschemaeltlist() } @@ -15145,7 +15140,7 @@ func (p *PostgreSQLParser) Optschemaname() (localctx IOptschemanameContext) { p.EnterRule(localctx, 44, PostgreSQLParserRULE_optschemaname) p.EnterOuterAlt(localctx, 1) { - p.SetState(1953) + p.SetState(1955) p.Colid() } @@ -15286,7 +15281,7 @@ func (p *PostgreSQLParser) Optschemaeltlist() (localctx IOptschemaeltlistContext var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1958) + p.SetState(1960) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15298,12 +15293,12 @@ func (p *PostgreSQLParser) Optschemaeltlist() (localctx IOptschemaeltlistContext for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1955) + p.SetState(1957) p.Schema_stmt() } } - p.SetState(1960) + p.SetState(1962) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15507,7 +15502,7 @@ func (s *Schema_stmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Schema_stmt() (localctx ISchema_stmtContext) { localctx = NewSchema_stmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 48, PostgreSQLParserRULE_schema_stmt) - p.SetState(1967) + p.SetState(1969) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15517,42 +15512,42 @@ func (p *PostgreSQLParser) Schema_stmt() (localctx ISchema_stmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1961) + p.SetState(1963) p.Createstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1962) + p.SetState(1964) p.Indexstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1963) + p.SetState(1965) p.Createseqstmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1964) + p.SetState(1966) p.Createtrigstmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1965) + p.SetState(1967) p.Grantstmt() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1966) + p.SetState(1968) p.Viewstmt() } @@ -15687,19 +15682,19 @@ func (p *PostgreSQLParser) Variablesetstmt() (localctx IVariablesetstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(1969) + p.SetState(1971) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1971) + p.SetState(1973) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 21, p.GetParserRuleContext()) == 1 { { - p.SetState(1970) + p.SetState(1972) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserLOCAL || _la == PostgreSQLParserSESSION) { @@ -15714,7 +15709,7 @@ func (p *PostgreSQLParser) Variablesetstmt() (localctx IVariablesetstmtContext) goto errorExit } { - p.SetState(1973) + p.SetState(1975) p.Set_rest() } @@ -15863,7 +15858,7 @@ func (s *Set_restContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { localctx = NewSet_restContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 52, PostgreSQLParserRULE_set_rest) - p.SetState(1983) + p.SetState(1985) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15873,7 +15868,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1975) + p.SetState(1977) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -15881,14 +15876,14 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1976) + p.SetState(1978) p.Transaction_mode_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1977) + p.SetState(1979) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -15896,7 +15891,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1978) + p.SetState(1980) p.Match(PostgreSQLParserCHARACTERISTICS) if p.HasError() { // Recognition error - abort rule @@ -15904,7 +15899,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1979) + p.SetState(1981) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -15912,7 +15907,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1980) + p.SetState(1982) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -15920,14 +15915,14 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1981) + p.SetState(1983) p.Transaction_mode_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1982) + p.SetState(1984) p.Set_rest_more() } @@ -16074,11 +16069,11 @@ func (p *PostgreSQLParser) Generic_set() (localctx IGeneric_setContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1985) + p.SetState(1987) p.Var_name() } { - p.SetState(1986) + p.SetState(1988) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEQUAL || _la == PostgreSQLParserTO) { @@ -16089,7 +16084,7 @@ func (p *PostgreSQLParser) Generic_set() (localctx IGeneric_setContext) { } } { - p.SetState(1987) + p.SetState(1989) p.Var_list() } @@ -16375,7 +16370,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { p.EnterRule(localctx, 56, PostgreSQLParserRULE_set_rest_more) var _la int - p.SetState(2016) + p.SetState(2018) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16385,18 +16380,18 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1989) + p.SetState(1991) p.Generic_set() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1990) + p.SetState(1992) p.Var_name() } { - p.SetState(1991) + p.SetState(1993) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -16404,7 +16399,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1992) + p.SetState(1994) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -16415,7 +16410,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1994) + p.SetState(1996) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -16423,7 +16418,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1995) + p.SetState(1997) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -16431,14 +16426,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1996) + p.SetState(1998) p.Zone_value() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1997) + p.SetState(1999) p.Match(PostgreSQLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -16446,14 +16441,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1998) + p.SetState(2000) p.Sconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1999) + p.SetState(2001) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -16461,21 +16456,21 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2000) + p.SetState(2002) p.Sconst() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2001) + p.SetState(2003) p.Match(PostgreSQLParserNAMES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2003) + p.SetState(2005) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16484,7 +16479,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { if _la == PostgreSQLParserDEFAULT || ((int64((_la-673)) & ^0x3f) == 0 && ((int64(1)<<(_la-673))&67108885) != 0) { { - p.SetState(2002) + p.SetState(2004) p.Opt_encoding() } @@ -16493,7 +16488,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2005) + p.SetState(2007) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -16501,14 +16496,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2006) + p.SetState(2008) p.Nonreservedword_or_sconst() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2007) + p.SetState(2009) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -16516,7 +16511,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2008) + p.SetState(2010) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -16524,14 +16519,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2009) + p.SetState(2011) p.Nonreservedword_or_sconst() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2010) + p.SetState(2012) p.Match(PostgreSQLParserXML_P) if p.HasError() { // Recognition error - abort rule @@ -16539,7 +16534,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2011) + p.SetState(2013) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -16547,14 +16542,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2012) + p.SetState(2014) p.Document_or_content() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(2013) + p.SetState(2015) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -16562,7 +16557,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2014) + p.SetState(2016) p.Match(PostgreSQLParserSNAPSHOT) if p.HasError() { // Recognition error - abort rule @@ -16570,7 +16565,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2015) + p.SetState(2017) p.Sconst() } @@ -16726,10 +16721,10 @@ func (p *PostgreSQLParser) Var_name() (localctx IVar_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2018) + p.SetState(2020) p.Colid() } - p.SetState(2023) + p.SetState(2025) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16738,7 +16733,7 @@ func (p *PostgreSQLParser) Var_name() (localctx IVar_nameContext) { for _la == PostgreSQLParserDOT { { - p.SetState(2019) + p.SetState(2021) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -16746,11 +16741,11 @@ func (p *PostgreSQLParser) Var_name() (localctx IVar_nameContext) { } } { - p.SetState(2020) + p.SetState(2022) p.Colid() } - p.SetState(2025) + p.SetState(2027) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16906,10 +16901,10 @@ func (p *PostgreSQLParser) Var_list() (localctx IVar_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2026) + p.SetState(2028) p.Var_value() } - p.SetState(2031) + p.SetState(2033) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16918,7 +16913,7 @@ func (p *PostgreSQLParser) Var_list() (localctx IVar_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(2027) + p.SetState(2029) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -16926,11 +16921,11 @@ func (p *PostgreSQLParser) Var_list() (localctx IVar_listContext) { } } { - p.SetState(2028) + p.SetState(2030) p.Var_value() } - p.SetState(2033) + p.SetState(2035) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17063,7 +17058,7 @@ func (s *Var_valueContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Var_value() (localctx IVar_valueContext) { localctx = NewVar_valueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 62, PostgreSQLParserRULE_var_value) - p.SetState(2036) + p.SetState(2038) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17073,14 +17068,14 @@ func (p *PostgreSQLParser) Var_value() (localctx IVar_valueContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserON, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(2034) + p.SetState(2036) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(2035) + p.SetState(2037) p.Numericonly() } @@ -17207,7 +17202,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { p.EnterRule(localctx, 64, PostgreSQLParserRULE_iso_level) var _la int - p.SetState(2043) + p.SetState(2045) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17217,7 +17212,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { case PostgreSQLParserREAD: p.EnterOuterAlt(localctx, 1) { - p.SetState(2038) + p.SetState(2040) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -17225,7 +17220,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { } } { - p.SetState(2039) + p.SetState(2041) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCOMMITTED || _la == PostgreSQLParserUNCOMMITTED) { @@ -17239,7 +17234,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { case PostgreSQLParserREPEATABLE: p.EnterOuterAlt(localctx, 2) { - p.SetState(2040) + p.SetState(2042) p.Match(PostgreSQLParserREPEATABLE) if p.HasError() { // Recognition error - abort rule @@ -17247,7 +17242,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { } } { - p.SetState(2041) + p.SetState(2043) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -17258,7 +17253,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { case PostgreSQLParserSERIALIZABLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(2042) + p.SetState(2044) p.Match(PostgreSQLParserSERIALIZABLE) if p.HasError() { // Recognition error - abort rule @@ -17394,7 +17389,7 @@ func (s *Opt_boolean_or_stringContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_stringContext) { localctx = NewOpt_boolean_or_stringContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 66, PostgreSQLParserRULE_opt_boolean_or_string) - p.SetState(2049) + p.SetState(2051) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17404,7 +17399,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserTRUE_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(2045) + p.SetState(2047) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -17415,7 +17410,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserFALSE_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(2046) + p.SetState(2048) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -17426,7 +17421,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserON: p.EnterOuterAlt(localctx, 3) { - p.SetState(2047) + p.SetState(2049) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -17437,7 +17432,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 4) { - p.SetState(2048) + p.SetState(2050) p.Nonreservedword_or_sconst() } @@ -17661,7 +17656,7 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { p.EnterRule(localctx, 68, PostgreSQLParserRULE_zone_value) var _la int - p.SetState(2067) + p.SetState(2069) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17671,28 +17666,28 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2051) + p.SetState(2053) p.Sconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2052) + p.SetState(2054) p.Identifier() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2053) + p.SetState(2055) p.Constinterval() } { - p.SetState(2054) + p.SetState(2056) p.Sconst() } - p.SetState(2056) + p.SetState(2058) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17701,7 +17696,7 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { if _la == PostgreSQLParserDAY_P || _la == PostgreSQLParserHOUR_P || _la == PostgreSQLParserMINUTE_P || _la == PostgreSQLParserMONTH_P || _la == PostgreSQLParserSECOND_P || _la == PostgreSQLParserYEAR_P { { - p.SetState(2055) + p.SetState(2057) p.Opt_interval() } @@ -17710,11 +17705,11 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2058) + p.SetState(2060) p.Constinterval() } { - p.SetState(2059) + p.SetState(2061) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -17722,11 +17717,11 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { } } { - p.SetState(2060) + p.SetState(2062) p.Iconst() } { - p.SetState(2061) + p.SetState(2063) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -17734,21 +17729,21 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { } } { - p.SetState(2062) + p.SetState(2064) p.Sconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2064) + p.SetState(2066) p.Numericonly() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2065) + p.SetState(2067) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -17759,7 +17754,7 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2066) + p.SetState(2068) p.Match(PostgreSQLParserLOCAL) if p.HasError() { // Recognition error - abort rule @@ -17884,7 +17879,7 @@ func (s *Opt_encodingContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_encoding() (localctx IOpt_encodingContext) { localctx = NewOpt_encodingContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 70, PostgreSQLParserRULE_opt_encoding) - p.SetState(2071) + p.SetState(2073) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17894,14 +17889,14 @@ func (p *PostgreSQLParser) Opt_encoding() (localctx IOpt_encodingContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(2069) + p.SetState(2071) p.Sconst() } case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 2) { - p.SetState(2070) + p.SetState(2072) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -18039,7 +18034,7 @@ func (s *Nonreservedword_or_sconstContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Nonreservedword_or_sconst() (localctx INonreservedword_or_sconstContext) { localctx = NewNonreservedword_or_sconstContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 72, PostgreSQLParserRULE_nonreservedword_or_sconst) - p.SetState(2075) + p.SetState(2077) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18049,14 +18044,14 @@ func (p *PostgreSQLParser) Nonreservedword_or_sconst() (localctx INonreservedwor case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(2073) + p.SetState(2075) p.Nonreservedword() } case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 2) { - p.SetState(2074) + p.SetState(2076) p.Sconst() } @@ -18180,7 +18175,7 @@ func (p *PostgreSQLParser) Variableresetstmt() (localctx IVariableresetstmtConte p.EnterRule(localctx, 74, PostgreSQLParserRULE_variableresetstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2077) + p.SetState(2079) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -18188,7 +18183,7 @@ func (p *PostgreSQLParser) Variableresetstmt() (localctx IVariableresetstmtConte } } { - p.SetState(2078) + p.SetState(2080) p.Reset_rest() } @@ -18335,7 +18330,7 @@ func (s *Reset_restContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { localctx = NewReset_restContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 76, PostgreSQLParserRULE_reset_rest) - p.SetState(2088) + p.SetState(2090) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18345,14 +18340,14 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2080) + p.SetState(2082) p.Generic_reset() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2081) + p.SetState(2083) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -18360,7 +18355,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2082) + p.SetState(2084) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -18371,7 +18366,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2083) + p.SetState(2085) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -18379,7 +18374,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2084) + p.SetState(2086) p.Match(PostgreSQLParserISOLATION) if p.HasError() { // Recognition error - abort rule @@ -18387,7 +18382,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2085) + p.SetState(2087) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -18398,7 +18393,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2086) + p.SetState(2088) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -18406,7 +18401,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2087) + p.SetState(2089) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -18531,7 +18526,7 @@ func (s *Generic_resetContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Generic_reset() (localctx IGeneric_resetContext) { localctx = NewGeneric_resetContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 78, PostgreSQLParserRULE_generic_reset) - p.SetState(2092) + p.SetState(2094) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18541,14 +18536,14 @@ func (p *PostgreSQLParser) Generic_reset() (localctx IGeneric_resetContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(2090) + p.SetState(2092) p.Var_name() } case PostgreSQLParserALL: p.EnterOuterAlt(localctx, 2) { - p.SetState(2091) + p.SetState(2093) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -18691,7 +18686,7 @@ func (s *SetresetclauseContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Setresetclause() (localctx ISetresetclauseContext) { localctx = NewSetresetclauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 80, PostgreSQLParserRULE_setresetclause) - p.SetState(2097) + p.SetState(2099) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18701,7 +18696,7 @@ func (p *PostgreSQLParser) Setresetclause() (localctx ISetresetclauseContext) { case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(2094) + p.SetState(2096) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -18709,14 +18704,14 @@ func (p *PostgreSQLParser) Setresetclause() (localctx ISetresetclauseContext) { } } { - p.SetState(2095) + p.SetState(2097) p.Set_rest() } case PostgreSQLParserRESET: p.EnterOuterAlt(localctx, 2) { - p.SetState(2096) + p.SetState(2098) p.Variableresetstmt() } @@ -18855,7 +18850,7 @@ func (s *FunctionsetresetclauseContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Functionsetresetclause() (localctx IFunctionsetresetclauseContext) { localctx = NewFunctionsetresetclauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 82, PostgreSQLParserRULE_functionsetresetclause) - p.SetState(2102) + p.SetState(2104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18865,7 +18860,7 @@ func (p *PostgreSQLParser) Functionsetresetclause() (localctx IFunctionsetresetc case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(2099) + p.SetState(2101) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -18873,14 +18868,14 @@ func (p *PostgreSQLParser) Functionsetresetclause() (localctx IFunctionsetresetc } } { - p.SetState(2100) + p.SetState(2102) p.Set_rest_more() } case PostgreSQLParserRESET: p.EnterOuterAlt(localctx, 2) { - p.SetState(2101) + p.SetState(2103) p.Variableresetstmt() } @@ -19044,14 +19039,14 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext p.EnterRule(localctx, 84, PostgreSQLParserRULE_variableshowstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2104) + p.SetState(2106) p.Match(PostgreSQLParserSHOW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2114) + p.SetState(2116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19060,13 +19055,13 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 38, p.GetParserRuleContext()) { case 1: { - p.SetState(2105) + p.SetState(2107) p.Var_name() } case 2: { - p.SetState(2106) + p.SetState(2108) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -19074,7 +19069,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2107) + p.SetState(2109) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -19084,7 +19079,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext case 3: { - p.SetState(2108) + p.SetState(2110) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -19092,7 +19087,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2109) + p.SetState(2111) p.Match(PostgreSQLParserISOLATION) if p.HasError() { // Recognition error - abort rule @@ -19100,7 +19095,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2110) + p.SetState(2112) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -19110,7 +19105,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext case 4: { - p.SetState(2111) + p.SetState(2113) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -19118,7 +19113,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2112) + p.SetState(2114) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -19128,7 +19123,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext case 5: { - p.SetState(2113) + p.SetState(2115) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -19277,7 +19272,7 @@ func (p *PostgreSQLParser) Constraintssetstmt() (localctx IConstraintssetstmtCon p.EnterRule(localctx, 86, PostgreSQLParserRULE_constraintssetstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2116) + p.SetState(2118) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -19285,7 +19280,7 @@ func (p *PostgreSQLParser) Constraintssetstmt() (localctx IConstraintssetstmtCon } } { - p.SetState(2117) + p.SetState(2119) p.Match(PostgreSQLParserCONSTRAINTS) if p.HasError() { // Recognition error - abort rule @@ -19293,11 +19288,11 @@ func (p *PostgreSQLParser) Constraintssetstmt() (localctx IConstraintssetstmtCon } } { - p.SetState(2118) + p.SetState(2120) p.Constraints_set_list() } { - p.SetState(2119) + p.SetState(2121) p.Constraints_set_mode() } @@ -19414,7 +19409,7 @@ func (s *Constraints_set_listContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Constraints_set_list() (localctx IConstraints_set_listContext) { localctx = NewConstraints_set_listContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 88, PostgreSQLParserRULE_constraints_set_list) - p.SetState(2123) + p.SetState(2125) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19424,7 +19419,7 @@ func (p *PostgreSQLParser) Constraints_set_list() (localctx IConstraints_set_lis case PostgreSQLParserALL: p.EnterOuterAlt(localctx, 1) { - p.SetState(2121) + p.SetState(2123) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -19435,7 +19430,7 @@ func (p *PostgreSQLParser) Constraints_set_list() (localctx IConstraints_set_lis case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(2122) + p.SetState(2124) p.Qualified_name_list() } @@ -19549,7 +19544,7 @@ func (p *PostgreSQLParser) Constraints_set_mode() (localctx IConstraints_set_mod p.EnterOuterAlt(localctx, 1) { - p.SetState(2125) + p.SetState(2127) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDEFERRED || _la == PostgreSQLParserIMMEDIATE) { @@ -19658,7 +19653,7 @@ func (p *PostgreSQLParser) Checkpointstmt() (localctx ICheckpointstmtContext) { p.EnterRule(localctx, 92, PostgreSQLParserRULE_checkpointstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2127) + p.SetState(2129) p.Match(PostgreSQLParserCHECKPOINT) if p.HasError() { // Recognition error - abort rule @@ -19791,7 +19786,7 @@ func (p *PostgreSQLParser) Discardstmt() (localctx IDiscardstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2129) + p.SetState(2131) p.Match(PostgreSQLParserDISCARD) if p.HasError() { // Recognition error - abort rule @@ -19799,7 +19794,7 @@ func (p *PostgreSQLParser) Discardstmt() (localctx IDiscardstmtContext) { } } { - p.SetState(2130) + p.SetState(2132) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserPLANS || _la == PostgreSQLParserSEQUENCES || _la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -20145,7 +20140,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { p.EnterRule(localctx, 96, PostgreSQLParserRULE_altertablestmt) var _la int - p.SetState(2244) + p.SetState(2246) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20155,7 +20150,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2132) + p.SetState(2134) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20163,19 +20158,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2133) + p.SetState(2135) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2136) + p.SetState(2138) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 40, p.GetParserRuleContext()) == 1 { { - p.SetState(2134) + p.SetState(2136) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20183,7 +20178,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2135) + p.SetState(2137) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20195,10 +20190,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2138) + p.SetState(2140) p.Relation_expr() } - p.SetState(2141) + p.SetState(2143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20207,13 +20202,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserNOT, PostgreSQLParserADD_P, PostgreSQLParserALTER, PostgreSQLParserCLUSTER, PostgreSQLParserDISABLE_P, PostgreSQLParserDROP, PostgreSQLParserENABLE_P, PostgreSQLParserFORCE, PostgreSQLParserINHERIT, PostgreSQLParserNO, PostgreSQLParserOF, PostgreSQLParserOPTIONS, PostgreSQLParserOWNER, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserSET, PostgreSQLParserVALIDATE: { - p.SetState(2139) + p.SetState(2141) p.Alter_table_cmds() } case PostgreSQLParserATTACH, PostgreSQLParserDETACH: { - p.SetState(2140) + p.SetState(2142) p.Partition_cmd() } @@ -20225,7 +20220,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2143) + p.SetState(2145) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20233,7 +20228,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2144) + p.SetState(2146) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -20241,7 +20236,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2145) + p.SetState(2147) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -20249,7 +20244,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2146) + p.SetState(2148) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -20257,7 +20252,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2147) + p.SetState(2149) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20265,10 +20260,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2148) + p.SetState(2150) p.Name() } - p.SetState(2152) + p.SetState(2154) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20277,7 +20272,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserOWNED { { - p.SetState(2149) + p.SetState(2151) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -20285,7 +20280,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2150) + p.SetState(2152) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -20293,13 +20288,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2151) + p.SetState(2153) p.Role_list() } } { - p.SetState(2154) + p.SetState(2156) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -20307,7 +20302,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2155) + p.SetState(2157) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20315,10 +20310,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2156) + p.SetState(2158) p.Name() } - p.SetState(2158) + p.SetState(2160) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20327,7 +20322,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(2157) + p.SetState(2159) p.Opt_nowait() } @@ -20336,7 +20331,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2160) + p.SetState(2162) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20344,19 +20339,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2161) + p.SetState(2163) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2164) + p.SetState(2166) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 44, p.GetParserRuleContext()) == 1 { { - p.SetState(2162) + p.SetState(2164) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20364,7 +20359,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2163) + p.SetState(2165) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20376,10 +20371,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2166) + p.SetState(2168) p.Qualified_name() } - p.SetState(2169) + p.SetState(2171) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20388,13 +20383,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserNOT, PostgreSQLParserADD_P, PostgreSQLParserALTER, PostgreSQLParserCLUSTER, PostgreSQLParserDISABLE_P, PostgreSQLParserDROP, PostgreSQLParserENABLE_P, PostgreSQLParserFORCE, PostgreSQLParserINHERIT, PostgreSQLParserNO, PostgreSQLParserOF, PostgreSQLParserOPTIONS, PostgreSQLParserOWNER, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserSET, PostgreSQLParserVALIDATE: { - p.SetState(2167) + p.SetState(2169) p.Alter_table_cmds() } case PostgreSQLParserATTACH: { - p.SetState(2168) + p.SetState(2170) p.Index_partition_cmd() } @@ -20406,7 +20401,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2171) + p.SetState(2173) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20414,7 +20409,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2172) + p.SetState(2174) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -20422,7 +20417,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2173) + p.SetState(2175) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -20430,7 +20425,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2174) + p.SetState(2176) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -20438,7 +20433,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2175) + p.SetState(2177) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20446,10 +20441,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2176) + p.SetState(2178) p.Name() } - p.SetState(2180) + p.SetState(2182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20458,7 +20453,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserOWNED { { - p.SetState(2177) + p.SetState(2179) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -20466,7 +20461,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2178) + p.SetState(2180) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -20474,13 +20469,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2179) + p.SetState(2181) p.Role_list() } } { - p.SetState(2182) + p.SetState(2184) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -20488,7 +20483,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2183) + p.SetState(2185) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20496,10 +20491,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2184) + p.SetState(2186) p.Name() } - p.SetState(2186) + p.SetState(2188) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20508,7 +20503,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(2185) + p.SetState(2187) p.Opt_nowait() } @@ -20517,7 +20512,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2188) + p.SetState(2190) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20525,19 +20520,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2189) + p.SetState(2191) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2192) + p.SetState(2194) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 48, p.GetParserRuleContext()) == 1 { { - p.SetState(2190) + p.SetState(2192) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20545,7 +20540,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2191) + p.SetState(2193) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20557,18 +20552,18 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2194) + p.SetState(2196) p.Qualified_name() } { - p.SetState(2195) + p.SetState(2197) p.Alter_table_cmds() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2197) + p.SetState(2199) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20576,19 +20571,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2198) + p.SetState(2200) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2201) + p.SetState(2203) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 49, p.GetParserRuleContext()) == 1 { { - p.SetState(2199) + p.SetState(2201) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20596,7 +20591,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2200) + p.SetState(2202) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20608,18 +20603,18 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2203) + p.SetState(2205) p.Qualified_name() } { - p.SetState(2204) + p.SetState(2206) p.Alter_table_cmds() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2206) + p.SetState(2208) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20627,7 +20622,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2207) + p.SetState(2209) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -20635,19 +20630,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2208) + p.SetState(2210) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2211) + p.SetState(2213) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 50, p.GetParserRuleContext()) == 1 { { - p.SetState(2209) + p.SetState(2211) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20655,7 +20650,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2210) + p.SetState(2212) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20667,18 +20662,18 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2213) + p.SetState(2215) p.Qualified_name() } { - p.SetState(2214) + p.SetState(2216) p.Alter_table_cmds() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2216) + p.SetState(2218) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20686,7 +20681,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2217) + p.SetState(2219) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -20694,7 +20689,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2218) + p.SetState(2220) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -20702,7 +20697,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2219) + p.SetState(2221) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -20710,7 +20705,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2220) + p.SetState(2222) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -20718,7 +20713,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2221) + p.SetState(2223) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20726,10 +20721,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2222) + p.SetState(2224) p.Name() } - p.SetState(2226) + p.SetState(2228) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20738,7 +20733,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserOWNED { { - p.SetState(2223) + p.SetState(2225) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -20746,7 +20741,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2224) + p.SetState(2226) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -20754,13 +20749,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2225) + p.SetState(2227) p.Role_list() } } { - p.SetState(2228) + p.SetState(2230) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -20768,7 +20763,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2229) + p.SetState(2231) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20776,10 +20771,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2230) + p.SetState(2232) p.Name() } - p.SetState(2232) + p.SetState(2234) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20788,7 +20783,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(2231) + p.SetState(2233) p.Opt_nowait() } @@ -20797,7 +20792,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2234) + p.SetState(2236) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20805,7 +20800,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2235) + p.SetState(2237) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -20813,19 +20808,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2236) + p.SetState(2238) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2239) + p.SetState(2241) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 53, p.GetParserRuleContext()) == 1 { { - p.SetState(2237) + p.SetState(2239) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20833,7 +20828,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2238) + p.SetState(2240) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20845,11 +20840,11 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2241) + p.SetState(2243) p.Relation_expr() } { - p.SetState(2242) + p.SetState(2244) p.Alter_table_cmds() } @@ -21005,10 +21000,10 @@ func (p *PostgreSQLParser) Alter_table_cmds() (localctx IAlter_table_cmdsContext p.EnterOuterAlt(localctx, 1) { - p.SetState(2246) + p.SetState(2248) p.Alter_table_cmd() } - p.SetState(2251) + p.SetState(2253) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21017,7 +21012,7 @@ func (p *PostgreSQLParser) Alter_table_cmds() (localctx IAlter_table_cmdsContext for _la == PostgreSQLParserCOMMA { { - p.SetState(2247) + p.SetState(2249) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -21025,11 +21020,11 @@ func (p *PostgreSQLParser) Alter_table_cmds() (localctx IAlter_table_cmdsContext } } { - p.SetState(2248) + p.SetState(2250) p.Alter_table_cmd() } - p.SetState(2253) + p.SetState(2255) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21177,7 +21172,7 @@ func (s *Partition_cmdContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { localctx = NewPartition_cmdContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 100, PostgreSQLParserRULE_partition_cmd) - p.SetState(2262) + p.SetState(2264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21187,7 +21182,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { case PostgreSQLParserATTACH: p.EnterOuterAlt(localctx, 1) { - p.SetState(2254) + p.SetState(2256) p.Match(PostgreSQLParserATTACH) if p.HasError() { // Recognition error - abort rule @@ -21195,7 +21190,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2255) + p.SetState(2257) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -21203,18 +21198,18 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2256) + p.SetState(2258) p.Qualified_name() } { - p.SetState(2257) + p.SetState(2259) p.Partitionboundspec() } case PostgreSQLParserDETACH: p.EnterOuterAlt(localctx, 2) { - p.SetState(2259) + p.SetState(2261) p.Match(PostgreSQLParserDETACH) if p.HasError() { // Recognition error - abort rule @@ -21222,7 +21217,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2260) + p.SetState(2262) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -21230,7 +21225,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2261) + p.SetState(2263) p.Qualified_name() } @@ -21359,7 +21354,7 @@ func (p *PostgreSQLParser) Index_partition_cmd() (localctx IIndex_partition_cmdC p.EnterRule(localctx, 102, PostgreSQLParserRULE_index_partition_cmd) p.EnterOuterAlt(localctx, 1) { - p.SetState(2264) + p.SetState(2266) p.Match(PostgreSQLParserATTACH) if p.HasError() { // Recognition error - abort rule @@ -21367,7 +21362,7 @@ func (p *PostgreSQLParser) Index_partition_cmd() (localctx IIndex_partition_cmdC } } { - p.SetState(2265) + p.SetState(2267) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -21375,7 +21370,7 @@ func (p *PostgreSQLParser) Index_partition_cmd() (localctx IIndex_partition_cmdC } } { - p.SetState(2266) + p.SetState(2268) p.Qualified_name() } @@ -22114,7 +22109,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) p.EnterRule(localctx, 104, PostgreSQLParserRULE_alter_table_cmd) var _la int - p.SetState(2570) + p.SetState(2572) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22124,7 +22119,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2268) + p.SetState(2270) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22132,14 +22127,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2269) + p.SetState(2271) p.ColumnDef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2270) + p.SetState(2272) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22147,7 +22142,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2271) + p.SetState(2273) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22155,7 +22150,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2272) + p.SetState(2274) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22163,7 +22158,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2273) + p.SetState(2275) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22171,14 +22166,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2274) + p.SetState(2276) p.ColumnDef() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2275) + p.SetState(2277) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22186,7 +22181,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2276) + p.SetState(2278) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22194,14 +22189,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2277) + p.SetState(2279) p.ColumnDef() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2278) + p.SetState(2280) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22209,7 +22204,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2279) + p.SetState(2281) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22217,7 +22212,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2280) + p.SetState(2282) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22225,7 +22220,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2281) + p.SetState(2283) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22233,7 +22228,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2282) + p.SetState(2284) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22241,26 +22236,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2283) + p.SetState(2285) p.ColumnDef() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2284) + p.SetState(2286) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2286) + p.SetState(2288) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 57, p.GetParserRuleContext()) == 1 { { - p.SetState(2285) + p.SetState(2287) p.Opt_column() } @@ -22268,30 +22263,30 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2288) + p.SetState(2290) p.Colid() } { - p.SetState(2289) + p.SetState(2291) p.Alter_column_default() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2291) + p.SetState(2293) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2293) + p.SetState(2295) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 58, p.GetParserRuleContext()) == 1 { { - p.SetState(2292) + p.SetState(2294) p.Opt_column() } @@ -22299,11 +22294,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2295) + p.SetState(2297) p.Colid() } { - p.SetState(2296) + p.SetState(2298) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22311,7 +22306,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2297) + p.SetState(2299) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22319,7 +22314,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2298) + p.SetState(2300) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -22330,19 +22325,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2300) + p.SetState(2302) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2302) + p.SetState(2304) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 59, p.GetParserRuleContext()) == 1 { { - p.SetState(2301) + p.SetState(2303) p.Opt_column() } @@ -22350,11 +22345,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2304) + p.SetState(2306) p.Colid() } { - p.SetState(2305) + p.SetState(2307) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22362,7 +22357,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2306) + p.SetState(2308) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22370,7 +22365,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2307) + p.SetState(2309) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -22381,19 +22376,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2309) + p.SetState(2311) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2311) + p.SetState(2313) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 60, p.GetParserRuleContext()) == 1 { { - p.SetState(2310) + p.SetState(2312) p.Opt_column() } @@ -22401,11 +22396,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2313) + p.SetState(2315) p.Colid() } { - p.SetState(2314) + p.SetState(2316) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22413,7 +22408,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2315) + p.SetState(2317) p.Match(PostgreSQLParserEXPRESSION) if p.HasError() { // Recognition error - abort rule @@ -22424,19 +22419,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2317) + p.SetState(2319) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2319) + p.SetState(2321) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 61, p.GetParserRuleContext()) == 1 { { - p.SetState(2318) + p.SetState(2320) p.Opt_column() } @@ -22444,11 +22439,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2321) + p.SetState(2323) p.Colid() } { - p.SetState(2322) + p.SetState(2324) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22456,7 +22451,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2323) + p.SetState(2325) p.Match(PostgreSQLParserEXPRESSION) if p.HasError() { // Recognition error - abort rule @@ -22464,7 +22459,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2324) + p.SetState(2326) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22472,7 +22467,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2325) + p.SetState(2327) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22483,19 +22478,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(2327) + p.SetState(2329) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2329) + p.SetState(2331) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 62, p.GetParserRuleContext()) == 1 { { - p.SetState(2328) + p.SetState(2330) p.Opt_column() } @@ -22503,11 +22498,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2331) + p.SetState(2333) p.Colid() } { - p.SetState(2332) + p.SetState(2334) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22515,7 +22510,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2333) + p.SetState(2335) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -22523,21 +22518,21 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2334) + p.SetState(2336) p.Signediconst() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(2336) + p.SetState(2338) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2338) + p.SetState(2340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22546,17 +22541,17 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCOLUMN { { - p.SetState(2337) + p.SetState(2339) p.Opt_column() } } { - p.SetState(2340) + p.SetState(2342) p.Iconst() } { - p.SetState(2341) + p.SetState(2343) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22564,7 +22559,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2342) + p.SetState(2344) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -22572,26 +22567,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2343) + p.SetState(2345) p.Signediconst() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(2345) + p.SetState(2347) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2347) + p.SetState(2349) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 64, p.GetParserRuleContext()) == 1 { { - p.SetState(2346) + p.SetState(2348) p.Opt_column() } @@ -22599,11 +22594,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2349) + p.SetState(2351) p.Colid() } { - p.SetState(2350) + p.SetState(2352) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22611,26 +22606,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2351) + p.SetState(2353) p.Reloptions() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(2353) + p.SetState(2355) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2355) + p.SetState(2357) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 65, p.GetParserRuleContext()) == 1 { { - p.SetState(2354) + p.SetState(2356) p.Opt_column() } @@ -22638,11 +22633,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2357) + p.SetState(2359) p.Colid() } { - p.SetState(2358) + p.SetState(2360) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -22650,26 +22645,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2359) + p.SetState(2361) p.Reloptions() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(2361) + p.SetState(2363) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2363) + p.SetState(2365) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 66, p.GetParserRuleContext()) == 1 { { - p.SetState(2362) + p.SetState(2364) p.Opt_column() } @@ -22677,11 +22672,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2365) + p.SetState(2367) p.Colid() } { - p.SetState(2366) + p.SetState(2368) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22689,7 +22684,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2367) + p.SetState(2369) p.Match(PostgreSQLParserSTORAGE) if p.HasError() { // Recognition error - abort rule @@ -22697,26 +22692,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2368) + p.SetState(2370) p.Colid() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(2370) + p.SetState(2372) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2372) + p.SetState(2374) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 67, p.GetParserRuleContext()) == 1 { { - p.SetState(2371) + p.SetState(2373) p.Opt_column() } @@ -22724,11 +22719,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2374) + p.SetState(2376) p.Colid() } { - p.SetState(2375) + p.SetState(2377) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22736,7 +22731,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2376) + p.SetState(2378) p.Match(PostgreSQLParserGENERATED) if p.HasError() { // Recognition error - abort rule @@ -22744,11 +22739,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2377) + p.SetState(2379) p.Generated_when() } { - p.SetState(2378) + p.SetState(2380) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -22756,19 +22751,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2379) + p.SetState(2381) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2381) + p.SetState(2383) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 68, p.GetParserRuleContext()) == 1 { { - p.SetState(2380) + p.SetState(2382) p.Optparenthesizedseqoptlist() } @@ -22779,19 +22774,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(2383) + p.SetState(2385) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2385) + p.SetState(2387) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 69, p.GetParserRuleContext()) == 1 { { - p.SetState(2384) + p.SetState(2386) p.Opt_column() } @@ -22799,30 +22794,30 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2387) + p.SetState(2389) p.Colid() } { - p.SetState(2388) + p.SetState(2390) p.Alter_identity_column_option_list() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(2390) + p.SetState(2392) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2392) + p.SetState(2394) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 70, p.GetParserRuleContext()) == 1 { { - p.SetState(2391) + p.SetState(2393) p.Opt_column() } @@ -22830,11 +22825,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2394) + p.SetState(2396) p.Colid() } { - p.SetState(2395) + p.SetState(2397) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22842,7 +22837,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2396) + p.SetState(2398) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -22853,19 +22848,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(2398) + p.SetState(2400) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2400) + p.SetState(2402) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 71, p.GetParserRuleContext()) == 1 { { - p.SetState(2399) + p.SetState(2401) p.Opt_column() } @@ -22873,11 +22868,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2402) + p.SetState(2404) p.Colid() } { - p.SetState(2403) + p.SetState(2405) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22885,7 +22880,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2404) + p.SetState(2406) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -22893,7 +22888,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2405) + p.SetState(2407) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22901,7 +22896,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2406) + p.SetState(2408) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22912,14 +22907,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(2408) + p.SetState(2410) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2410) + p.SetState(2412) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22928,13 +22923,13 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCOLUMN { { - p.SetState(2409) + p.SetState(2411) p.Opt_column() } } { - p.SetState(2412) + p.SetState(2414) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22942,7 +22937,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2413) + p.SetState(2415) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22950,10 +22945,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2414) + p.SetState(2416) p.Colid() } - p.SetState(2416) + p.SetState(2418) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22962,7 +22957,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2415) + p.SetState(2417) p.Opt_drop_behavior() } @@ -22971,19 +22966,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(2418) + p.SetState(2420) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2420) + p.SetState(2422) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 74, p.GetParserRuleContext()) == 1 { { - p.SetState(2419) + p.SetState(2421) p.Opt_column() } @@ -22991,10 +22986,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2422) + p.SetState(2424) p.Colid() } - p.SetState(2424) + p.SetState(2426) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23003,7 +22998,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2423) + p.SetState(2425) p.Opt_drop_behavior() } @@ -23012,19 +23007,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(2426) + p.SetState(2428) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2428) + p.SetState(2430) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 76, p.GetParserRuleContext()) == 1 { { - p.SetState(2427) + p.SetState(2429) p.Opt_column() } @@ -23032,10 +23027,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2430) + p.SetState(2432) p.Colid() } - p.SetState(2432) + p.SetState(2434) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23044,13 +23039,13 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserSET { { - p.SetState(2431) + p.SetState(2433) p.Opt_set_data() } } { - p.SetState(2434) + p.SetState(2436) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -23058,10 +23053,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2435) + p.SetState(2437) p.Typename() } - p.SetState(2437) + p.SetState(2439) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23070,12 +23065,12 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCOLLATE { { - p.SetState(2436) + p.SetState(2438) p.Opt_collate_clause() } } - p.SetState(2440) + p.SetState(2442) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23084,7 +23079,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserUSING { { - p.SetState(2439) + p.SetState(2441) p.Alter_using() } @@ -23093,19 +23088,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(2442) + p.SetState(2444) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2444) + p.SetState(2446) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 80, p.GetParserRuleContext()) == 1 { { - p.SetState(2443) + p.SetState(2445) p.Opt_column() } @@ -23113,18 +23108,18 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2446) + p.SetState(2448) p.Colid() } { - p.SetState(2447) + p.SetState(2449) p.Alter_generic_options() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(2449) + p.SetState(2451) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -23132,14 +23127,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2450) + p.SetState(2452) p.Tableconstraint() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(2451) + p.SetState(2453) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -23147,7 +23142,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2452) + p.SetState(2454) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23155,18 +23150,18 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2453) + p.SetState(2455) p.Name() } { - p.SetState(2454) + p.SetState(2456) p.Constraintattributespec() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(2456) + p.SetState(2458) p.Match(PostgreSQLParserVALIDATE) if p.HasError() { // Recognition error - abort rule @@ -23174,7 +23169,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2457) + p.SetState(2459) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23182,14 +23177,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2458) + p.SetState(2460) p.Name() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(2459) + p.SetState(2461) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -23197,7 +23192,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2460) + p.SetState(2462) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23205,7 +23200,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2461) + p.SetState(2463) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -23213,7 +23208,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2462) + p.SetState(2464) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -23221,10 +23216,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2463) + p.SetState(2465) p.Name() } - p.SetState(2465) + p.SetState(2467) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23233,7 +23228,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2464) + p.SetState(2466) p.Opt_drop_behavior() } @@ -23242,7 +23237,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(2467) + p.SetState(2469) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -23250,7 +23245,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2468) + p.SetState(2470) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23258,10 +23253,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2469) + p.SetState(2471) p.Name() } - p.SetState(2471) + p.SetState(2473) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23270,7 +23265,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2470) + p.SetState(2472) p.Opt_drop_behavior() } @@ -23279,7 +23274,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(2473) + p.SetState(2475) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23287,7 +23282,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2474) + p.SetState(2476) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -23295,7 +23290,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2475) + p.SetState(2477) p.Match(PostgreSQLParserOIDS) if p.HasError() { // Recognition error - abort rule @@ -23306,7 +23301,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(2476) + p.SetState(2478) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule @@ -23314,7 +23309,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2477) + p.SetState(2479) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -23322,14 +23317,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2478) + p.SetState(2480) p.Name() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(2479) + p.SetState(2481) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23337,7 +23332,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2480) + p.SetState(2482) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -23345,7 +23340,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2481) + p.SetState(2483) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule @@ -23356,7 +23351,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(2482) + p.SetState(2484) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23364,7 +23359,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2483) + p.SetState(2485) p.Match(PostgreSQLParserLOGGED) if p.HasError() { // Recognition error - abort rule @@ -23375,7 +23370,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(2484) + p.SetState(2486) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23383,7 +23378,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2485) + p.SetState(2487) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -23394,7 +23389,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(2486) + p.SetState(2488) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23402,7 +23397,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2487) + p.SetState(2489) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23410,14 +23405,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2488) + p.SetState(2490) p.Name() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(2489) + p.SetState(2491) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23425,7 +23420,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2490) + p.SetState(2492) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -23433,7 +23428,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2491) + p.SetState(2493) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23441,14 +23436,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2492) + p.SetState(2494) p.Name() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(2493) + p.SetState(2495) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23456,7 +23451,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2494) + p.SetState(2496) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -23464,7 +23459,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2495) + p.SetState(2497) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23472,14 +23467,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2496) + p.SetState(2498) p.Name() } case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(2497) + p.SetState(2499) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23487,7 +23482,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2498) + p.SetState(2500) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23495,7 +23490,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2499) + p.SetState(2501) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -23506,7 +23501,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(2500) + p.SetState(2502) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23514,7 +23509,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2501) + p.SetState(2503) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23522,7 +23517,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2502) + p.SetState(2504) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -23533,7 +23528,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(2503) + p.SetState(2505) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23541,7 +23536,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2504) + p.SetState(2506) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23549,14 +23544,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2505) + p.SetState(2507) p.Name() } case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(2506) + p.SetState(2508) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23564,7 +23559,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2507) + p.SetState(2509) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23572,7 +23567,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2508) + p.SetState(2510) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -23583,7 +23578,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(2509) + p.SetState(2511) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23591,7 +23586,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2510) + p.SetState(2512) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23599,7 +23594,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2511) + p.SetState(2513) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -23610,7 +23605,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(2512) + p.SetState(2514) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23618,7 +23613,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2513) + p.SetState(2515) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23626,14 +23621,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2514) + p.SetState(2516) p.Name() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(2515) + p.SetState(2517) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23641,7 +23636,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2516) + p.SetState(2518) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -23649,7 +23644,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2517) + p.SetState(2519) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23657,14 +23652,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2518) + p.SetState(2520) p.Name() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(2519) + p.SetState(2521) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23672,7 +23667,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2520) + p.SetState(2522) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -23680,7 +23675,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2521) + p.SetState(2523) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23688,14 +23683,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2522) + p.SetState(2524) p.Name() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(2523) + p.SetState(2525) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23703,7 +23698,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2524) + p.SetState(2526) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23711,14 +23706,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2525) + p.SetState(2527) p.Name() } case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(2526) + p.SetState(2528) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -23726,14 +23721,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2527) + p.SetState(2529) p.Qualified_name() } case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(2528) + p.SetState(2530) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -23741,7 +23736,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2529) + p.SetState(2531) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -23749,14 +23744,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2530) + p.SetState(2532) p.Qualified_name() } case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(2531) + p.SetState(2533) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -23764,14 +23759,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2532) + p.SetState(2534) p.Any_name() } case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(2533) + p.SetState(2535) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -23779,7 +23774,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2534) + p.SetState(2536) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -23790,7 +23785,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(2535) + p.SetState(2537) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -23798,7 +23793,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2536) + p.SetState(2538) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -23806,14 +23801,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2537) + p.SetState(2539) p.Rolespec() } case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(2538) + p.SetState(2540) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23821,7 +23816,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2539) + p.SetState(2541) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -23829,7 +23824,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2540) + p.SetState(2542) p.Match(PostgreSQLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -23837,14 +23832,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2541) + p.SetState(2543) p.Name() } case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(2542) + p.SetState(2544) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23852,7 +23847,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2543) + p.SetState(2545) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -23860,14 +23855,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2544) + p.SetState(2546) p.Name() } case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(2545) + p.SetState(2547) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23875,14 +23870,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2546) + p.SetState(2548) p.Reloptions() } case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(2547) + p.SetState(2549) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -23890,14 +23885,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2548) + p.SetState(2550) p.Reloptions() } case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(2549) + p.SetState(2551) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -23905,7 +23900,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2550) + p.SetState(2552) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -23913,14 +23908,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2551) + p.SetState(2553) p.Replica_identity() } case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(2552) + p.SetState(2554) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23928,7 +23923,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2553) + p.SetState(2555) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -23936,7 +23931,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2554) + p.SetState(2556) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -23944,7 +23939,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2555) + p.SetState(2557) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -23955,7 +23950,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(2556) + p.SetState(2558) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23963,7 +23958,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2557) + p.SetState(2559) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -23971,7 +23966,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2558) + p.SetState(2560) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -23979,7 +23974,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2559) + p.SetState(2561) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -23990,7 +23985,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 57: p.EnterOuterAlt(localctx, 57) { - p.SetState(2560) + p.SetState(2562) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -23998,7 +23993,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2561) + p.SetState(2563) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -24006,7 +24001,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2562) + p.SetState(2564) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -24014,7 +24009,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2563) + p.SetState(2565) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -24025,7 +24020,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 58: p.EnterOuterAlt(localctx, 58) { - p.SetState(2564) + p.SetState(2566) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -24033,7 +24028,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2565) + p.SetState(2567) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -24041,7 +24036,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2566) + p.SetState(2568) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -24049,7 +24044,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2567) + p.SetState(2569) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -24057,7 +24052,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2568) + p.SetState(2570) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -24068,7 +24063,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 59: p.EnterOuterAlt(localctx, 59) { - p.SetState(2569) + p.SetState(2571) p.Alter_generic_options() } @@ -24199,7 +24194,7 @@ func (s *Alter_column_defaultContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaultContext) { localctx = NewAlter_column_defaultContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 106, PostgreSQLParserRULE_alter_column_default) - p.SetState(2577) + p.SetState(2579) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24209,7 +24204,7 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(2572) + p.SetState(2574) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -24217,7 +24212,7 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul } } { - p.SetState(2573) + p.SetState(2575) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -24225,14 +24220,14 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul } } { - p.SetState(2574) + p.SetState(2576) p.A_expr() } case PostgreSQLParserDROP: p.EnterOuterAlt(localctx, 2) { - p.SetState(2575) + p.SetState(2577) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -24240,7 +24235,7 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul } } { - p.SetState(2576) + p.SetState(2578) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -24358,7 +24353,7 @@ func (p *PostgreSQLParser) Opt_drop_behavior() (localctx IOpt_drop_behaviorConte p.EnterOuterAlt(localctx, 1) { - p.SetState(2579) + p.SetState(2581) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT) { @@ -24484,7 +24479,7 @@ func (p *PostgreSQLParser) Opt_collate_clause() (localctx IOpt_collate_clauseCon p.EnterRule(localctx, 110, PostgreSQLParserRULE_opt_collate_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(2581) + p.SetState(2583) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -24492,7 +24487,7 @@ func (p *PostgreSQLParser) Opt_collate_clause() (localctx IOpt_collate_clauseCon } } { - p.SetState(2582) + p.SetState(2584) p.Any_name() } @@ -24611,7 +24606,7 @@ func (p *PostgreSQLParser) Alter_using() (localctx IAlter_usingContext) { p.EnterRule(localctx, 112, PostgreSQLParserRULE_alter_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(2584) + p.SetState(2586) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -24619,7 +24614,7 @@ func (p *PostgreSQLParser) Alter_using() (localctx IAlter_usingContext) { } } { - p.SetState(2585) + p.SetState(2587) p.A_expr() } @@ -24756,7 +24751,7 @@ func (s *Replica_identityContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext) { localctx = NewReplica_identityContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 114, PostgreSQLParserRULE_replica_identity) - p.SetState(2593) + p.SetState(2595) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24766,7 +24761,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserNOTHING: p.EnterOuterAlt(localctx, 1) { - p.SetState(2587) + p.SetState(2589) p.Match(PostgreSQLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -24777,7 +24772,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserFULL: p.EnterOuterAlt(localctx, 2) { - p.SetState(2588) + p.SetState(2590) p.Match(PostgreSQLParserFULL) if p.HasError() { // Recognition error - abort rule @@ -24788,7 +24783,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 3) { - p.SetState(2589) + p.SetState(2591) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -24799,7 +24794,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserUSING: p.EnterOuterAlt(localctx, 4) { - p.SetState(2590) + p.SetState(2592) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -24807,7 +24802,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext } } { - p.SetState(2591) + p.SetState(2593) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -24815,7 +24810,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext } } { - p.SetState(2592) + p.SetState(2594) p.Name() } @@ -24944,7 +24939,7 @@ func (p *PostgreSQLParser) Reloptions() (localctx IReloptionsContext) { p.EnterRule(localctx, 116, PostgreSQLParserRULE_reloptions) p.EnterOuterAlt(localctx, 1) { - p.SetState(2595) + p.SetState(2597) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -24952,11 +24947,11 @@ func (p *PostgreSQLParser) Reloptions() (localctx IReloptionsContext) { } } { - p.SetState(2596) + p.SetState(2598) p.Reloption_list() } { - p.SetState(2597) + p.SetState(2599) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -25079,7 +25074,7 @@ func (p *PostgreSQLParser) Opt_reloptions() (localctx IOpt_reloptionsContext) { p.EnterRule(localctx, 118, PostgreSQLParserRULE_opt_reloptions) p.EnterOuterAlt(localctx, 1) { - p.SetState(2599) + p.SetState(2601) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -25087,7 +25082,7 @@ func (p *PostgreSQLParser) Opt_reloptions() (localctx IOpt_reloptionsContext) { } } { - p.SetState(2600) + p.SetState(2602) p.Reloptions() } @@ -25239,10 +25234,10 @@ func (p *PostgreSQLParser) Reloption_list() (localctx IReloption_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2602) + p.SetState(2604) p.Reloption_elem() } - p.SetState(2607) + p.SetState(2609) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25251,7 +25246,7 @@ func (p *PostgreSQLParser) Reloption_list() (localctx IReloption_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(2603) + p.SetState(2605) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -25259,11 +25254,11 @@ func (p *PostgreSQLParser) Reloption_list() (localctx IReloption_listContext) { } } { - p.SetState(2604) + p.SetState(2606) p.Reloption_elem() } - p.SetState(2609) + p.SetState(2611) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25436,10 +25431,10 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2610) + p.SetState(2612) p.Collabel() } - p.SetState(2619) + p.SetState(2621) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25447,7 +25442,7 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserEQUAL: { - p.SetState(2611) + p.SetState(2613) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -25455,13 +25450,13 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { } } { - p.SetState(2612) + p.SetState(2614) p.Def_arg() } case PostgreSQLParserDOT: { - p.SetState(2613) + p.SetState(2615) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -25469,10 +25464,10 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { } } { - p.SetState(2614) + p.SetState(2616) p.Collabel() } - p.SetState(2617) + p.SetState(2619) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25481,7 +25476,7 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { if _la == PostgreSQLParserEQUAL { { - p.SetState(2615) + p.SetState(2617) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -25489,7 +25484,7 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { } } { - p.SetState(2616) + p.SetState(2618) p.Def_arg() } @@ -25637,7 +25632,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option_list() (localctx IAlter_ var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(2622) + p.SetState(2624) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25647,7 +25642,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option_list() (localctx IAlter_ switch _alt { case 1: { - p.SetState(2621) + p.SetState(2623) p.Alter_identity_column_option() } @@ -25656,7 +25651,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option_list() (localctx IAlter_ goto errorExit } - p.SetState(2624) + p.SetState(2626) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 89, p.GetParserRuleContext()) if p.HasError() { @@ -25840,7 +25835,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident p.EnterRule(localctx, 126, PostgreSQLParserRULE_alter_identity_column_option) var _la int - p.SetState(2639) + p.SetState(2641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25850,18 +25845,18 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident case PostgreSQLParserRESTART: p.EnterOuterAlt(localctx, 1) { - p.SetState(2626) + p.SetState(2628) p.Match(PostgreSQLParserRESTART) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2631) + p.SetState(2633) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 91, p.GetParserRuleContext()) == 1 { - p.SetState(2628) + p.SetState(2630) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25870,13 +25865,13 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident if _la == PostgreSQLParserWITH { { - p.SetState(2627) + p.SetState(2629) p.Opt_with() } } { - p.SetState(2630) + p.SetState(2632) p.Numericonly() } @@ -25887,14 +25882,14 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 2) { - p.SetState(2633) + p.SetState(2635) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2637) + p.SetState(2639) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25903,13 +25898,13 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident switch p.GetTokenStream().LA(1) { case PostgreSQLParserAS, PostgreSQLParserCACHE, PostgreSQLParserCYCLE, PostgreSQLParserINCREMENT, PostgreSQLParserMAXVALUE, PostgreSQLParserMINVALUE, PostgreSQLParserNO, PostgreSQLParserOWNED, PostgreSQLParserRESTART, PostgreSQLParserSEQUENCE, PostgreSQLParserSTART, PostgreSQLParserUNLOGGED, PostgreSQLParserLOGGED: { - p.SetState(2634) + p.SetState(2636) p.Seqoptelem() } case PostgreSQLParserGENERATED: { - p.SetState(2635) + p.SetState(2637) p.Match(PostgreSQLParserGENERATED) if p.HasError() { // Recognition error - abort rule @@ -25917,7 +25912,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident } } { - p.SetState(2636) + p.SetState(2638) p.Generated_when() } @@ -26137,7 +26132,7 @@ func (s *PartitionboundspecContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecContext) { localctx = NewPartitionboundspecContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 128, PostgreSQLParserRULE_partitionboundspec) - p.SetState(2667) + p.SetState(2669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26147,7 +26142,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2641) + p.SetState(2643) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26155,7 +26150,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2642) + p.SetState(2644) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -26163,7 +26158,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2643) + p.SetState(2645) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -26171,7 +26166,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2644) + p.SetState(2646) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26179,11 +26174,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2645) + p.SetState(2647) p.Hash_partbound() } { - p.SetState(2646) + p.SetState(2648) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26194,7 +26189,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2648) + p.SetState(2650) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26202,7 +26197,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2649) + p.SetState(2651) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -26210,7 +26205,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2650) + p.SetState(2652) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -26218,7 +26213,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2651) + p.SetState(2653) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26226,11 +26221,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2652) + p.SetState(2654) p.Expr_list() } { - p.SetState(2653) + p.SetState(2655) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26241,7 +26236,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2655) + p.SetState(2657) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26249,7 +26244,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2656) + p.SetState(2658) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -26257,7 +26252,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2657) + p.SetState(2659) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -26265,7 +26260,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2658) + p.SetState(2660) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26273,11 +26268,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2659) + p.SetState(2661) p.Expr_list() } { - p.SetState(2660) + p.SetState(2662) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26285,7 +26280,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2661) + p.SetState(2663) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -26293,7 +26288,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2662) + p.SetState(2664) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26301,11 +26296,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2663) + p.SetState(2665) p.Expr_list() } { - p.SetState(2664) + p.SetState(2666) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26316,7 +26311,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2666) + p.SetState(2668) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -26455,11 +26450,11 @@ func (p *PostgreSQLParser) Hash_partbound_elem() (localctx IHash_partbound_elemC p.EnterRule(localctx, 130, PostgreSQLParserRULE_hash_partbound_elem) p.EnterOuterAlt(localctx, 1) { - p.SetState(2669) + p.SetState(2671) p.Nonreservedword() } { - p.SetState(2670) + p.SetState(2672) p.Iconst() } @@ -26611,10 +26606,10 @@ func (p *PostgreSQLParser) Hash_partbound() (localctx IHash_partboundContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2672) + p.SetState(2674) p.Hash_partbound_elem() } - p.SetState(2677) + p.SetState(2679) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26623,7 +26618,7 @@ func (p *PostgreSQLParser) Hash_partbound() (localctx IHash_partboundContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(2673) + p.SetState(2675) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -26631,11 +26626,11 @@ func (p *PostgreSQLParser) Hash_partbound() (localctx IHash_partboundContext) { } } { - p.SetState(2674) + p.SetState(2676) p.Hash_partbound_elem() } - p.SetState(2679) + p.SetState(2681) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26780,7 +26775,7 @@ func (p *PostgreSQLParser) Altercompositetypestmt() (localctx IAltercompositetyp p.EnterRule(localctx, 134, PostgreSQLParserRULE_altercompositetypestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2680) + p.SetState(2682) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -26788,7 +26783,7 @@ func (p *PostgreSQLParser) Altercompositetypestmt() (localctx IAltercompositetyp } } { - p.SetState(2681) + p.SetState(2683) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -26796,11 +26791,11 @@ func (p *PostgreSQLParser) Altercompositetypestmt() (localctx IAltercompositetyp } } { - p.SetState(2682) + p.SetState(2684) p.Any_name() } { - p.SetState(2683) + p.SetState(2685) p.Alter_type_cmds() } @@ -26952,10 +26947,10 @@ func (p *PostgreSQLParser) Alter_type_cmds() (localctx IAlter_type_cmdsContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(2685) + p.SetState(2687) p.Alter_type_cmd() } - p.SetState(2690) + p.SetState(2692) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26964,7 +26959,7 @@ func (p *PostgreSQLParser) Alter_type_cmds() (localctx IAlter_type_cmdsContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(2686) + p.SetState(2688) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -26972,11 +26967,11 @@ func (p *PostgreSQLParser) Alter_type_cmds() (localctx IAlter_type_cmdsContext) } } { - p.SetState(2687) + p.SetState(2689) p.Alter_type_cmd() } - p.SetState(2692) + p.SetState(2694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27214,7 +27209,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { p.EnterRule(localctx, 138, PostgreSQLParserRULE_alter_type_cmd) var _la int - p.SetState(2723) + p.SetState(2725) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27224,7 +27219,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { case PostgreSQLParserADD_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(2693) + p.SetState(2695) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -27232,7 +27227,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2694) + p.SetState(2696) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -27240,10 +27235,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2695) + p.SetState(2697) p.Tablefuncelement() } - p.SetState(2697) + p.SetState(2699) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27252,7 +27247,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2696) + p.SetState(2698) p.Opt_drop_behavior() } @@ -27261,7 +27256,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { case PostgreSQLParserDROP: p.EnterOuterAlt(localctx, 2) { - p.SetState(2699) + p.SetState(2701) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -27269,19 +27264,19 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2700) + p.SetState(2702) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2703) + p.SetState(2705) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 98, p.GetParserRuleContext()) == 1 { { - p.SetState(2701) + p.SetState(2703) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -27289,7 +27284,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2702) + p.SetState(2704) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -27301,10 +27296,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { goto errorExit } { - p.SetState(2705) + p.SetState(2707) p.Colid() } - p.SetState(2707) + p.SetState(2709) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27313,7 +27308,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2706) + p.SetState(2708) p.Opt_drop_behavior() } @@ -27322,7 +27317,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { case PostgreSQLParserALTER: p.EnterOuterAlt(localctx, 3) { - p.SetState(2709) + p.SetState(2711) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -27330,7 +27325,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2710) + p.SetState(2712) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -27338,10 +27333,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2711) + p.SetState(2713) p.Colid() } - p.SetState(2713) + p.SetState(2715) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27350,13 +27345,13 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserSET { { - p.SetState(2712) + p.SetState(2714) p.Opt_set_data() } } { - p.SetState(2715) + p.SetState(2717) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -27364,10 +27359,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2716) + p.SetState(2718) p.Typename() } - p.SetState(2718) + p.SetState(2720) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27376,12 +27371,12 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCOLLATE { { - p.SetState(2717) + p.SetState(2719) p.Opt_collate_clause() } } - p.SetState(2721) + p.SetState(2723) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27390,7 +27385,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2720) + p.SetState(2722) p.Opt_drop_behavior() } @@ -27521,14 +27516,14 @@ func (p *PostgreSQLParser) Closeportalstmt() (localctx ICloseportalstmtContext) p.EnterRule(localctx, 140, PostgreSQLParserRULE_closeportalstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2725) + p.SetState(2727) p.Match(PostgreSQLParserCLOSE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2728) + p.SetState(2730) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27537,13 +27532,13 @@ func (p *PostgreSQLParser) Closeportalstmt() (localctx ICloseportalstmtContext) switch p.GetTokenStream().LA(1) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(2726) + p.SetState(2728) p.Cursor_name() } case PostgreSQLParserALL: { - p.SetState(2727) + p.SetState(2729) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -27856,7 +27851,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { p.EnterRule(localctx, 142, PostgreSQLParserRULE_copystmt) var _la int - p.SetState(2767) + p.SetState(2769) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27866,14 +27861,14 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2730) + p.SetState(2732) p.Match(PostgreSQLParserCOPY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2732) + p.SetState(2734) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27882,16 +27877,16 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserBINARY { { - p.SetState(2731) + p.SetState(2733) p.Opt_binary() } } { - p.SetState(2734) + p.SetState(2736) p.Qualified_name() } - p.SetState(2736) + p.SetState(2738) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27900,16 +27895,16 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(2735) + p.SetState(2737) p.Opt_column_list() } } { - p.SetState(2738) + p.SetState(2740) p.Copy_from() } - p.SetState(2740) + p.SetState(2742) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27918,16 +27913,16 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserPROGRAM { { - p.SetState(2739) + p.SetState(2741) p.Opt_program() } } { - p.SetState(2742) + p.SetState(2744) p.Copy_file_name() } - p.SetState(2744) + p.SetState(2746) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27936,17 +27931,17 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserUSING || _la == PostgreSQLParserDELIMITERS { { - p.SetState(2743) + p.SetState(2745) p.Copy_delimiter() } } - p.SetState(2747) + p.SetState(2749) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 109, p.GetParserRuleContext()) == 1 { { - p.SetState(2746) + p.SetState(2748) p.Opt_with() } @@ -27954,10 +27949,10 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { goto errorExit } { - p.SetState(2749) + p.SetState(2751) p.Copy_options() } - p.SetState(2751) + p.SetState(2753) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27966,7 +27961,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(2750) + p.SetState(2752) p.Where_clause() } @@ -27975,7 +27970,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2753) + p.SetState(2755) p.Match(PostgreSQLParserCOPY) if p.HasError() { // Recognition error - abort rule @@ -27983,7 +27978,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { } } { - p.SetState(2754) + p.SetState(2756) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -27991,11 +27986,11 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { } } { - p.SetState(2755) + p.SetState(2757) p.Preparablestmt() } { - p.SetState(2756) + p.SetState(2758) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -28003,14 +27998,14 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { } } { - p.SetState(2757) + p.SetState(2759) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2759) + p.SetState(2761) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28019,21 +28014,21 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserPROGRAM { { - p.SetState(2758) + p.SetState(2760) p.Opt_program() } } { - p.SetState(2761) + p.SetState(2763) p.Copy_file_name() } - p.SetState(2763) + p.SetState(2765) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 112, p.GetParserRuleContext()) == 1 { { - p.SetState(2762) + p.SetState(2764) p.Opt_with() } @@ -28041,7 +28036,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { goto errorExit } { - p.SetState(2765) + p.SetState(2767) p.Copy_options() } @@ -28154,7 +28149,7 @@ func (p *PostgreSQLParser) Copy_from() (localctx ICopy_fromContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2769) + p.SetState(2771) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFROM || _la == PostgreSQLParserTO) { @@ -28263,7 +28258,7 @@ func (p *PostgreSQLParser) Opt_program() (localctx IOpt_programContext) { p.EnterRule(localctx, 146, PostgreSQLParserRULE_opt_program) p.EnterOuterAlt(localctx, 1) { - p.SetState(2771) + p.SetState(2773) p.Match(PostgreSQLParserPROGRAM) if p.HasError() { // Recognition error - abort rule @@ -28389,7 +28384,7 @@ func (s *Copy_file_nameContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Copy_file_name() (localctx ICopy_file_nameContext) { localctx = NewCopy_file_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 148, PostgreSQLParserRULE_copy_file_name) - p.SetState(2776) + p.SetState(2778) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28399,14 +28394,14 @@ func (p *PostgreSQLParser) Copy_file_name() (localctx ICopy_file_nameContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(2773) + p.SetState(2775) p.Sconst() } case PostgreSQLParserSTDIN: p.EnterOuterAlt(localctx, 2) { - p.SetState(2774) + p.SetState(2776) p.Match(PostgreSQLParserSTDIN) if p.HasError() { // Recognition error - abort rule @@ -28417,7 +28412,7 @@ func (p *PostgreSQLParser) Copy_file_name() (localctx ICopy_file_nameContext) { case PostgreSQLParserSTDOUT: p.EnterOuterAlt(localctx, 3) { - p.SetState(2775) + p.SetState(2777) p.Match(PostgreSQLParserSTDOUT) if p.HasError() { // Recognition error - abort rule @@ -28565,7 +28560,7 @@ func (s *Copy_optionsContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Copy_options() (localctx ICopy_optionsContext) { localctx = NewCopy_optionsContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 150, PostgreSQLParserRULE_copy_options) - p.SetState(2783) + p.SetState(2785) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28575,14 +28570,14 @@ func (p *PostgreSQLParser) Copy_options() (localctx ICopy_optionsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2778) + p.SetState(2780) p.Copy_opt_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2779) + p.SetState(2781) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -28590,11 +28585,11 @@ func (p *PostgreSQLParser) Copy_options() (localctx ICopy_optionsContext) { } } { - p.SetState(2780) + p.SetState(2782) p.Copy_generic_opt_list() } { - p.SetState(2781) + p.SetState(2783) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -28743,7 +28738,7 @@ func (p *PostgreSQLParser) Copy_opt_list() (localctx ICopy_opt_listContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2788) + p.SetState(2790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28752,11 +28747,11 @@ func (p *PostgreSQLParser) Copy_opt_list() (localctx ICopy_opt_listContext) { for ((int64((_la-78)) & ^0x3f) == 0 && ((int64(1)<<(_la-78))&9288674231451649) != 0) || ((int64((_la-190)) & ^0x3f) == 0 && ((int64(1)<<(_la-190))&35459325497345) != 0) || _la == PostgreSQLParserQUOTE { { - p.SetState(2785) + p.SetState(2787) p.Copy_opt_item() } - p.SetState(2790) + p.SetState(2792) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28968,7 +28963,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { p.EnterRule(localctx, 154, PostgreSQLParserRULE_copy_opt_item) var _la int - p.SetState(2830) + p.SetState(2832) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28978,7 +28973,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2791) + p.SetState(2793) p.Match(PostgreSQLParserBINARY) if p.HasError() { // Recognition error - abort rule @@ -28989,7 +28984,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2792) + p.SetState(2794) p.Match(PostgreSQLParserFREEZE) if p.HasError() { // Recognition error - abort rule @@ -29000,14 +28995,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2793) + p.SetState(2795) p.Match(PostgreSQLParserDELIMITER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2795) + p.SetState(2797) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29016,27 +29011,27 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2794) + p.SetState(2796) p.Opt_as() } } { - p.SetState(2797) + p.SetState(2799) p.Sconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2798) + p.SetState(2800) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2800) + p.SetState(2802) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29045,20 +29040,20 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2799) + p.SetState(2801) p.Opt_as() } } { - p.SetState(2802) + p.SetState(2804) p.Sconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2803) + p.SetState(2805) p.Match(PostgreSQLParserCSV) if p.HasError() { // Recognition error - abort rule @@ -29069,7 +29064,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2804) + p.SetState(2806) p.Match(PostgreSQLParserHEADER_P) if p.HasError() { // Recognition error - abort rule @@ -29080,14 +29075,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2805) + p.SetState(2807) p.Match(PostgreSQLParserQUOTE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2807) + p.SetState(2809) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29096,27 +29091,27 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2806) + p.SetState(2808) p.Opt_as() } } { - p.SetState(2809) + p.SetState(2811) p.Sconst() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2810) + p.SetState(2812) p.Match(PostgreSQLParserESCAPE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2812) + p.SetState(2814) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29125,20 +29120,20 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2811) + p.SetState(2813) p.Opt_as() } } { - p.SetState(2814) + p.SetState(2816) p.Sconst() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2815) + p.SetState(2817) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29146,7 +29141,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2816) + p.SetState(2818) p.Match(PostgreSQLParserQUOTE) if p.HasError() { // Recognition error - abort rule @@ -29154,14 +29149,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2817) + p.SetState(2819) p.Columnlist() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(2818) + p.SetState(2820) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29169,7 +29164,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2819) + p.SetState(2821) p.Match(PostgreSQLParserQUOTE) if p.HasError() { // Recognition error - abort rule @@ -29177,7 +29172,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2820) + p.SetState(2822) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -29188,7 +29183,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(2821) + p.SetState(2823) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29196,7 +29191,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2822) + p.SetState(2824) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -29204,7 +29199,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2823) + p.SetState(2825) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -29212,14 +29207,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2824) + p.SetState(2826) p.Columnlist() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(2825) + p.SetState(2827) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29227,7 +29222,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2826) + p.SetState(2828) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -29235,14 +29230,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2827) + p.SetState(2829) p.Columnlist() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(2828) + p.SetState(2830) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -29250,7 +29245,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2829) + p.SetState(2831) p.Sconst() } @@ -29356,7 +29351,7 @@ func (p *PostgreSQLParser) Opt_binary() (localctx IOpt_binaryContext) { p.EnterRule(localctx, 156, PostgreSQLParserRULE_opt_binary) p.EnterOuterAlt(localctx, 1) { - p.SetState(2832) + p.SetState(2834) p.Match(PostgreSQLParserBINARY) if p.HasError() { // Recognition error - abort rule @@ -29497,7 +29492,7 @@ func (p *PostgreSQLParser) Copy_delimiter() (localctx ICopy_delimiterContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2835) + p.SetState(2837) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29506,13 +29501,13 @@ func (p *PostgreSQLParser) Copy_delimiter() (localctx ICopy_delimiterContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2834) + p.SetState(2836) p.Opt_using() } } { - p.SetState(2837) + p.SetState(2839) p.Match(PostgreSQLParserDELIMITERS) if p.HasError() { // Recognition error - abort rule @@ -29520,7 +29515,7 @@ func (p *PostgreSQLParser) Copy_delimiter() (localctx ICopy_delimiterContext) { } } { - p.SetState(2838) + p.SetState(2840) p.Sconst() } @@ -29622,7 +29617,7 @@ func (p *PostgreSQLParser) Opt_using() (localctx IOpt_usingContext) { p.EnterRule(localctx, 160, PostgreSQLParserRULE_opt_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(2840) + p.SetState(2842) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -29778,10 +29773,10 @@ func (p *PostgreSQLParser) Copy_generic_opt_list() (localctx ICopy_generic_opt_l p.EnterOuterAlt(localctx, 1) { - p.SetState(2842) + p.SetState(2844) p.Copy_generic_opt_elem() } - p.SetState(2847) + p.SetState(2849) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29790,7 +29785,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_list() (localctx ICopy_generic_opt_l for _la == PostgreSQLParserCOMMA { { - p.SetState(2843) + p.SetState(2845) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -29798,11 +29793,11 @@ func (p *PostgreSQLParser) Copy_generic_opt_list() (localctx ICopy_generic_opt_l } } { - p.SetState(2844) + p.SetState(2846) p.Copy_generic_opt_elem() } - p.SetState(2849) + p.SetState(2851) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29939,10 +29934,10 @@ func (p *PostgreSQLParser) Copy_generic_opt_elem() (localctx ICopy_generic_opt_e p.EnterOuterAlt(localctx, 1) { - p.SetState(2850) + p.SetState(2852) p.Collabel() } - p.SetState(2852) + p.SetState(2854) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29951,7 +29946,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_elem() (localctx ICopy_generic_opt_e if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3611948516751979012) != 0) || ((int64((_la-80)) & ^0x3f) == 0 && ((int64(1)<<(_la-80))&-288251816158621695) != 0) || ((int64((_la-144)) & ^0x3f) == 0 && ((int64(1)<<(_la-144))&-3) != 0) || ((int64((_la-208)) & ^0x3f) == 0 && ((int64(1)<<(_la-208))&-2305843009213693953) != 0) || ((int64((_la-273)) & ^0x3f) == 0 && ((int64(1)<<(_la-273))&-1) != 0) || ((int64((_la-337)) & ^0x3f) == 0 && ((int64(1)<<(_la-337))&-1) != 0) || ((int64((_la-401)) & ^0x3f) == 0 && ((int64(1)<<(_la-401))&-1) != 0) || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&-2882303761517118465) != 0) || ((int64((_la-529)) & ^0x3f) == 0 && ((int64(1)<<(_la-529))&-2049) != 0) || ((int64((_la-593)) & ^0x3f) == 0 && ((int64(1)<<(_la-593))&-1) != 0) || ((int64((_la-657)) & ^0x3f) == 0 && ((int64(1)<<(_la-657))&4413617148385) != 0) { { - p.SetState(2851) + p.SetState(2853) p.Copy_generic_opt_arg() } @@ -30114,7 +30109,7 @@ func (s *Copy_generic_opt_argContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Copy_generic_opt_arg() (localctx ICopy_generic_opt_argContext) { localctx = NewCopy_generic_opt_argContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 166, PostgreSQLParserRULE_copy_generic_opt_arg) - p.SetState(2861) + p.SetState(2863) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30124,21 +30119,21 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg() (localctx ICopy_generic_opt_ar case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserON, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(2854) + p.SetState(2856) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(2855) + p.SetState(2857) p.Numericonly() } case PostgreSQLParserSTAR: p.EnterOuterAlt(localctx, 3) { - p.SetState(2856) + p.SetState(2858) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -30149,7 +30144,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg() (localctx ICopy_generic_opt_ar case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 4) { - p.SetState(2857) + p.SetState(2859) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -30157,11 +30152,11 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg() (localctx ICopy_generic_opt_ar } } { - p.SetState(2858) + p.SetState(2860) p.Copy_generic_opt_arg_list() } { - p.SetState(2859) + p.SetState(2861) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -30322,10 +30317,10 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list() (localctx ICopy_generic_o p.EnterOuterAlt(localctx, 1) { - p.SetState(2863) + p.SetState(2865) p.Copy_generic_opt_arg_list_item() } - p.SetState(2868) + p.SetState(2870) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30334,7 +30329,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list() (localctx ICopy_generic_o for _la == PostgreSQLParserCOMMA { { - p.SetState(2864) + p.SetState(2866) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -30342,11 +30337,11 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list() (localctx ICopy_generic_o } } { - p.SetState(2865) + p.SetState(2867) p.Copy_generic_opt_arg_list_item() } - p.SetState(2870) + p.SetState(2872) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30464,7 +30459,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list_item() (localctx ICopy_gene p.EnterRule(localctx, 170, PostgreSQLParserRULE_copy_generic_opt_arg_list_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(2871) + p.SetState(2873) p.Opt_boolean_or_string() } @@ -30838,14 +30833,14 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2873) + p.SetState(2875) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2875) + p.SetState(2877) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30854,25 +30849,25 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&32773) != 0) { { - p.SetState(2874) + p.SetState(2876) p.Opttemp() } } { - p.SetState(2877) + p.SetState(2879) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2881) + p.SetState(2883) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 128, p.GetParserRuleContext()) == 1 { { - p.SetState(2878) + p.SetState(2880) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -30880,7 +30875,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2879) + p.SetState(2881) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -30888,7 +30883,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2880) + p.SetState(2882) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -30900,10 +30895,10 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { goto errorExit } { - p.SetState(2883) + p.SetState(2885) p.Qualified_name() } - p.SetState(2949) + p.SetState(2951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30912,14 +30907,14 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(2884) + p.SetState(2886) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2886) + p.SetState(2888) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30928,20 +30923,20 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-6764340626663145472) != 0) || ((int64((_la-85)) & ^0x3f) == 0 && ((int64(1)<<(_la-85))&-7609957040837877631) != 0) || ((int64((_la-149)) & ^0x3f) == 0 && ((int64(1)<<(_la-149))&-1) != 0) || ((int64((_la-213)) & ^0x3f) == 0 && ((int64(1)<<(_la-213))&-648518346341351425) != 0) || ((int64((_la-277)) & ^0x3f) == 0 && ((int64(1)<<(_la-277))&-1) != 0) || ((int64((_la-341)) & ^0x3f) == 0 && ((int64(1)<<(_la-341))&-1) != 0) || ((int64((_la-405)) & ^0x3f) == 0 && ((int64(1)<<(_la-405))&-1) != 0) || ((int64((_la-469)) & ^0x3f) == 0 && ((int64(1)<<(_la-469))&-180143985111597121) != 0) || ((int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&-129) != 0) || ((int64((_la-597)) & ^0x3f) == 0 && ((int64(1)<<(_la-597))&2305843009213693951) != 0) || ((int64((_la-662)) & ^0x3f) == 0 && ((int64(1)<<(_la-662))&402653327) != 0) { { - p.SetState(2885) + p.SetState(2887) p.Opttableelementlist() } } { - p.SetState(2888) + p.SetState(2890) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2890) + p.SetState(2892) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30950,12 +30945,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserINHERITS { { - p.SetState(2889) + p.SetState(2891) p.Optinherit() } } - p.SetState(2893) + p.SetState(2895) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30964,12 +30959,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserPARTITION { { - p.SetState(2892) + p.SetState(2894) p.Optpartitionspec() } } - p.SetState(2896) + p.SetState(2898) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30978,24 +30973,24 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2895) + p.SetState(2897) p.Table_access_method_clause() } } - p.SetState(2899) + p.SetState(2901) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 133, p.GetParserRuleContext()) == 1 { { - p.SetState(2898) + p.SetState(2900) p.Optwith() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2902) + p.SetState(2904) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31004,12 +30999,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserON { { - p.SetState(2901) + p.SetState(2903) p.Oncommitoption() } } - p.SetState(2905) + p.SetState(2907) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31018,7 +31013,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(2904) + p.SetState(2906) p.Opttablespace() } @@ -31026,7 +31021,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { case PostgreSQLParserOF: { - p.SetState(2907) + p.SetState(2909) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -31034,22 +31029,22 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2908) + p.SetState(2910) p.Any_name() } - p.SetState(2910) + p.SetState(2912) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 136, p.GetParserRuleContext()) == 1 { { - p.SetState(2909) + p.SetState(2911) p.Opttypedtableelementlist() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2913) + p.SetState(2915) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31058,12 +31053,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserPARTITION { { - p.SetState(2912) + p.SetState(2914) p.Optpartitionspec() } } - p.SetState(2916) + p.SetState(2918) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31072,24 +31067,24 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2915) + p.SetState(2917) p.Table_access_method_clause() } } - p.SetState(2919) + p.SetState(2921) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 139, p.GetParserRuleContext()) == 1 { { - p.SetState(2918) + p.SetState(2920) p.Optwith() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2922) + p.SetState(2924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31098,12 +31093,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserON { { - p.SetState(2921) + p.SetState(2923) p.Oncommitoption() } } - p.SetState(2925) + p.SetState(2927) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31112,7 +31107,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(2924) + p.SetState(2926) p.Opttablespace() } @@ -31120,7 +31115,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { case PostgreSQLParserPARTITION: { - p.SetState(2927) + p.SetState(2929) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -31128,7 +31123,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2928) + p.SetState(2930) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -31136,10 +31131,10 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2929) + p.SetState(2931) p.Qualified_name() } - p.SetState(2931) + p.SetState(2933) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31148,16 +31143,16 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(2930) + p.SetState(2932) p.Opttypedtableelementlist() } } { - p.SetState(2933) + p.SetState(2935) p.Partitionboundspec() } - p.SetState(2935) + p.SetState(2937) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31166,12 +31161,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserPARTITION { { - p.SetState(2934) + p.SetState(2936) p.Optpartitionspec() } } - p.SetState(2938) + p.SetState(2940) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31180,24 +31175,24 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2937) + p.SetState(2939) p.Table_access_method_clause() } } - p.SetState(2941) + p.SetState(2943) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 145, p.GetParserRuleContext()) == 1 { { - p.SetState(2940) + p.SetState(2942) p.Optwith() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2944) + p.SetState(2946) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31206,12 +31201,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserON { { - p.SetState(2943) + p.SetState(2945) p.Oncommitoption() } } - p.SetState(2947) + p.SetState(2949) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31220,7 +31215,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(2946) + p.SetState(2948) p.Opttablespace() } @@ -31349,7 +31344,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { p.EnterRule(localctx, 174, PostgreSQLParserRULE_opttemp) var _la int - p.SetState(2958) + p.SetState(2960) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31359,7 +31354,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserTEMPORARY: p.EnterOuterAlt(localctx, 1) { - p.SetState(2951) + p.SetState(2953) p.Match(PostgreSQLParserTEMPORARY) if p.HasError() { // Recognition error - abort rule @@ -31370,7 +31365,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserTEMP: p.EnterOuterAlt(localctx, 2) { - p.SetState(2952) + p.SetState(2954) p.Match(PostgreSQLParserTEMP) if p.HasError() { // Recognition error - abort rule @@ -31381,7 +31376,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserLOCAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(2953) + p.SetState(2955) p.Match(PostgreSQLParserLOCAL) if p.HasError() { // Recognition error - abort rule @@ -31389,7 +31384,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { } } { - p.SetState(2954) + p.SetState(2956) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -31403,7 +31398,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserGLOBAL: p.EnterOuterAlt(localctx, 4) { - p.SetState(2955) + p.SetState(2957) p.Match(PostgreSQLParserGLOBAL) if p.HasError() { // Recognition error - abort rule @@ -31411,7 +31406,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { } } { - p.SetState(2956) + p.SetState(2958) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -31425,7 +31420,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserUNLOGGED: p.EnterOuterAlt(localctx, 5) { - p.SetState(2957) + p.SetState(2959) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -31548,7 +31543,7 @@ func (p *PostgreSQLParser) Opttableelementlist() (localctx IOpttableelementlistC p.EnterRule(localctx, 176, PostgreSQLParserRULE_opttableelementlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(2960) + p.SetState(2962) p.Tableelementlist() } @@ -31672,7 +31667,7 @@ func (p *PostgreSQLParser) Opttypedtableelementlist() (localctx IOpttypedtableel p.EnterRule(localctx, 178, PostgreSQLParserRULE_opttypedtableelementlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(2962) + p.SetState(2964) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -31680,11 +31675,11 @@ func (p *PostgreSQLParser) Opttypedtableelementlist() (localctx IOpttypedtableel } } { - p.SetState(2963) + p.SetState(2965) p.Typedtableelementlist() } { - p.SetState(2964) + p.SetState(2966) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -31840,10 +31835,10 @@ func (p *PostgreSQLParser) Tableelementlist() (localctx ITableelementlistContext p.EnterOuterAlt(localctx, 1) { - p.SetState(2966) + p.SetState(2968) p.Tableelement() } - p.SetState(2971) + p.SetState(2973) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31852,7 +31847,7 @@ func (p *PostgreSQLParser) Tableelementlist() (localctx ITableelementlistContext for _la == PostgreSQLParserCOMMA { { - p.SetState(2967) + p.SetState(2969) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -31860,11 +31855,11 @@ func (p *PostgreSQLParser) Tableelementlist() (localctx ITableelementlistContext } } { - p.SetState(2968) + p.SetState(2970) p.Tableelement() } - p.SetState(2973) + p.SetState(2975) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32020,10 +32015,10 @@ func (p *PostgreSQLParser) Typedtableelementlist() (localctx ITypedtableelementl p.EnterOuterAlt(localctx, 1) { - p.SetState(2974) + p.SetState(2976) p.Typedtableelement() } - p.SetState(2979) + p.SetState(2981) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32032,7 +32027,7 @@ func (p *PostgreSQLParser) Typedtableelementlist() (localctx ITypedtableelementl for _la == PostgreSQLParserCOMMA { { - p.SetState(2975) + p.SetState(2977) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -32040,11 +32035,11 @@ func (p *PostgreSQLParser) Typedtableelementlist() (localctx ITypedtableelementl } } { - p.SetState(2976) + p.SetState(2978) p.Typedtableelement() } - p.SetState(2981) + p.SetState(2983) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32194,7 +32189,7 @@ func (s *TableelementContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Tableelement() (localctx ITableelementContext) { localctx = NewTableelementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 184, PostgreSQLParserRULE_tableelement) - p.SetState(2985) + p.SetState(2987) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32204,21 +32199,21 @@ func (p *PostgreSQLParser) Tableelement() (localctx ITableelementContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2982) + p.SetState(2984) p.Tableconstraint() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2983) + p.SetState(2985) p.Tablelikeclause() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2984) + p.SetState(2986) p.ColumnDef() } @@ -32351,7 +32346,7 @@ func (s *TypedtableelementContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Typedtableelement() (localctx ITypedtableelementContext) { localctx = NewTypedtableelementContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 186, PostgreSQLParserRULE_typedtableelement) - p.SetState(2989) + p.SetState(2991) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32361,14 +32356,14 @@ func (p *PostgreSQLParser) Typedtableelement() (localctx ITypedtableelementConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2987) + p.SetState(2989) p.ColumnOptions() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2988) + p.SetState(2990) p.Tableconstraint() } @@ -32539,14 +32534,14 @@ func (p *PostgreSQLParser) ColumnDef() (localctx IColumnDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2991) + p.SetState(2993) p.Colid() } { - p.SetState(2992) + p.SetState(2994) p.Typename() } - p.SetState(2994) + p.SetState(2996) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32555,13 +32550,13 @@ func (p *PostgreSQLParser) ColumnDef() (localctx IColumnDefContext) { if _la == PostgreSQLParserOPTIONS { { - p.SetState(2993) + p.SetState(2995) p.Create_generic_options() } } { - p.SetState(2996) + p.SetState(2998) p.Colquallist() } @@ -32704,10 +32699,10 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2998) + p.SetState(3000) p.Colid() } - p.SetState(3001) + p.SetState(3003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32716,7 +32711,7 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { if _la == PostgreSQLParserWITH { { - p.SetState(2999) + p.SetState(3001) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -32724,7 +32719,7 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { } } { - p.SetState(3000) + p.SetState(3002) p.Match(PostgreSQLParserOPTIONS) if p.HasError() { // Recognition error - abort rule @@ -32734,7 +32729,7 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { } { - p.SetState(3003) + p.SetState(3005) p.Colquallist() } @@ -32875,7 +32870,7 @@ func (p *PostgreSQLParser) Colquallist() (localctx IColquallistContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3008) + p.SetState(3010) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32884,11 +32879,11 @@ func (p *PostgreSQLParser) Colquallist() (localctx IColquallistContext) { for ((int64((_la-42)) & ^0x3f) == 0 && ((int64(1)<<(_la-42))&72084085530433547) != 0) || _la == PostgreSQLParserGENERATED { { - p.SetState(3005) + p.SetState(3007) p.Colconstraint() } - p.SetState(3010) + p.SetState(3012) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33065,7 +33060,7 @@ func (s *ColconstraintContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { localctx = NewColconstraintContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 194, PostgreSQLParserRULE_colconstraint) - p.SetState(3019) + p.SetState(3021) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33075,7 +33070,7 @@ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3011) + p.SetState(3013) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -33083,32 +33078,32 @@ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { } } { - p.SetState(3012) + p.SetState(3014) p.Name() } { - p.SetState(3013) + p.SetState(3015) p.Colconstraintelem() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3015) + p.SetState(3017) p.Colconstraintelem() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3016) + p.SetState(3018) p.Constraintattr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3017) + p.SetState(3019) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -33116,7 +33111,7 @@ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { } } { - p.SetState(3018) + p.SetState(3020) p.Any_name() } @@ -33491,7 +33486,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte p.EnterRule(localctx, 196, PostgreSQLParserRULE_colconstraintelem) var _la int - p.SetState(3076) + p.SetState(3078) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33501,7 +33496,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserNOT: p.EnterOuterAlt(localctx, 1) { - p.SetState(3021) + p.SetState(3023) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -33509,7 +33504,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3022) + p.SetState(3024) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -33520,7 +33515,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(3023) + p.SetState(3025) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -33531,14 +33526,14 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserUNIQUE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3024) + p.SetState(3026) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3026) + p.SetState(3028) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33547,24 +33542,24 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserNULLS_P { { - p.SetState(3025) + p.SetState(3027) p.Opt_unique_null_treatment() } } - p.SetState(3029) + p.SetState(3031) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 159, p.GetParserRuleContext()) == 1 { { - p.SetState(3028) + p.SetState(3030) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3032) + p.SetState(3034) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33573,7 +33568,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserUSING { { - p.SetState(3031) + p.SetState(3033) p.Optconstablespace() } @@ -33582,7 +33577,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserPRIMARY: p.EnterOuterAlt(localctx, 4) { - p.SetState(3034) + p.SetState(3036) p.Match(PostgreSQLParserPRIMARY) if p.HasError() { // Recognition error - abort rule @@ -33590,26 +33585,26 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3035) + p.SetState(3037) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3037) + p.SetState(3039) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 161, p.GetParserRuleContext()) == 1 { { - p.SetState(3036) + p.SetState(3038) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3040) + p.SetState(3042) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33618,7 +33613,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserUSING { { - p.SetState(3039) + p.SetState(3041) p.Optconstablespace() } @@ -33627,7 +33622,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserCHECK: p.EnterOuterAlt(localctx, 5) { - p.SetState(3042) + p.SetState(3044) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -33635,7 +33630,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3043) + p.SetState(3045) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -33643,18 +33638,18 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3044) + p.SetState(3046) p.A_expr() } { - p.SetState(3045) + p.SetState(3047) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3047) + p.SetState(3049) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33663,7 +33658,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserNO { { - p.SetState(3046) + p.SetState(3048) p.Opt_no_inherit() } @@ -33672,7 +33667,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 6) { - p.SetState(3049) + p.SetState(3051) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -33680,14 +33675,14 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3050) + p.SetState(3052) p.b_expr(0) } case PostgreSQLParserGENERATED: p.EnterOuterAlt(localctx, 7) { - p.SetState(3051) + p.SetState(3053) p.Match(PostgreSQLParserGENERATED) if p.HasError() { // Recognition error - abort rule @@ -33695,18 +33690,18 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3052) + p.SetState(3054) p.Generated_when() } { - p.SetState(3053) + p.SetState(3055) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3063) + p.SetState(3065) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33715,19 +33710,19 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte switch p.GetTokenStream().LA(1) { case PostgreSQLParserIDENTITY_P: { - p.SetState(3054) + p.SetState(3056) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3056) + p.SetState(3058) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 164, p.GetParserRuleContext()) == 1 { { - p.SetState(3055) + p.SetState(3057) p.Optparenthesizedseqoptlist() } @@ -33737,7 +33732,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserOPEN_PAREN: { - p.SetState(3058) + p.SetState(3060) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -33745,11 +33740,11 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3059) + p.SetState(3061) p.A_expr() } { - p.SetState(3060) + p.SetState(3062) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -33757,7 +33752,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3061) + p.SetState(3063) p.Match(PostgreSQLParserSTORED) if p.HasError() { // Recognition error - abort rule @@ -33773,7 +33768,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserREFERENCES: p.EnterOuterAlt(localctx, 8) { - p.SetState(3065) + p.SetState(3067) p.Match(PostgreSQLParserREFERENCES) if p.HasError() { // Recognition error - abort rule @@ -33781,22 +33776,22 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3066) + p.SetState(3068) p.Qualified_name() } - p.SetState(3068) + p.SetState(3070) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 166, p.GetParserRuleContext()) == 1 { { - p.SetState(3067) + p.SetState(3069) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3071) + p.SetState(3073) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33805,12 +33800,12 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserMATCH { { - p.SetState(3070) + p.SetState(3072) p.Key_match() } } - p.SetState(3074) + p.SetState(3076) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33819,7 +33814,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserON { { - p.SetState(3073) + p.SetState(3075) p.Key_actions() } @@ -33940,14 +33935,14 @@ func (p *PostgreSQLParser) Opt_unique_null_treatment() (localctx IOpt_unique_nul p.EnterOuterAlt(localctx, 1) { - p.SetState(3078) + p.SetState(3080) p.Match(PostgreSQLParserNULLS_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3080) + p.SetState(3082) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33956,7 +33951,7 @@ func (p *PostgreSQLParser) Opt_unique_null_treatment() (localctx IOpt_unique_nul if _la == PostgreSQLParserNOT { { - p.SetState(3079) + p.SetState(3081) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -33966,7 +33961,7 @@ func (p *PostgreSQLParser) Opt_unique_null_treatment() (localctx IOpt_unique_nul } { - p.SetState(3082) + p.SetState(3084) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -34080,7 +34075,7 @@ func (s *Generated_whenContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { localctx = NewGenerated_whenContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 200, PostgreSQLParserRULE_generated_when) - p.SetState(3087) + p.SetState(3089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34090,7 +34085,7 @@ func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { case PostgreSQLParserALWAYS: p.EnterOuterAlt(localctx, 1) { - p.SetState(3084) + p.SetState(3086) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -34101,7 +34096,7 @@ func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { case PostgreSQLParserBY: p.EnterOuterAlt(localctx, 2) { - p.SetState(3085) + p.SetState(3087) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -34109,7 +34104,7 @@ func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { } } { - p.SetState(3086) + p.SetState(3088) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -34240,7 +34235,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { p.EnterRule(localctx, 202, PostgreSQLParserRULE_constraintattr) var _la int - p.SetState(3094) + p.SetState(3096) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34250,7 +34245,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { case PostgreSQLParserDEFERRABLE: p.EnterOuterAlt(localctx, 1) { - p.SetState(3089) + p.SetState(3091) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -34261,7 +34256,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { case PostgreSQLParserNOT: p.EnterOuterAlt(localctx, 2) { - p.SetState(3090) + p.SetState(3092) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -34269,7 +34264,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { } } { - p.SetState(3091) + p.SetState(3093) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -34280,7 +34275,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { case PostgreSQLParserINITIALLY: p.EnterOuterAlt(localctx, 3) { - p.SetState(3092) + p.SetState(3094) p.Match(PostgreSQLParserINITIALLY) if p.HasError() { // Recognition error - abort rule @@ -34288,7 +34283,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { } } { - p.SetState(3093) + p.SetState(3095) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDEFERRED || _la == PostgreSQLParserIMMEDIATE) { @@ -34436,7 +34431,7 @@ func (p *PostgreSQLParser) Tablelikeclause() (localctx ITablelikeclauseContext) p.EnterRule(localctx, 204, PostgreSQLParserRULE_tablelikeclause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3096) + p.SetState(3098) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -34444,11 +34439,11 @@ func (p *PostgreSQLParser) Tablelikeclause() (localctx ITablelikeclauseContext) } } { - p.SetState(3097) + p.SetState(3099) p.Qualified_name() } { - p.SetState(3098) + p.SetState(3100) p.Tablelikeoptionlist() } @@ -34609,7 +34604,7 @@ func (p *PostgreSQLParser) Tablelikeoptionlist() (localctx ITablelikeoptionlistC var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3104) + p.SetState(3106) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34618,7 +34613,7 @@ func (p *PostgreSQLParser) Tablelikeoptionlist() (localctx ITablelikeoptionlistC for _la == PostgreSQLParserEXCLUDING || _la == PostgreSQLParserINCLUDING { { - p.SetState(3100) + p.SetState(3102) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCLUDING || _la == PostgreSQLParserINCLUDING) { @@ -34629,11 +34624,11 @@ func (p *PostgreSQLParser) Tablelikeoptionlist() (localctx ITablelikeoptionlistC } } { - p.SetState(3101) + p.SetState(3103) p.Tablelikeoption() } - p.SetState(3106) + p.SetState(3108) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34781,7 +34776,7 @@ func (p *PostgreSQLParser) Tablelikeoption() (localctx ITablelikeoptionContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3107) + p.SetState(3109) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || ((int64((_la-179)) & ^0x3f) == 0 && ((int64(1)<<(_la-179))&576460752303947809) != 0) || _la == PostgreSQLParserINDEXES || _la == PostgreSQLParserSTATISTICS || _la == PostgreSQLParserSTORAGE || _la == PostgreSQLParserGENERATED) { @@ -34922,7 +34917,7 @@ func (s *TableconstraintContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Tableconstraint() (localctx ITableconstraintContext) { localctx = NewTableconstraintContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 210, PostgreSQLParserRULE_tableconstraint) - p.SetState(3114) + p.SetState(3116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34932,7 +34927,7 @@ func (p *PostgreSQLParser) Tableconstraint() (localctx ITableconstraintContext) case PostgreSQLParserCONSTRAINT: p.EnterOuterAlt(localctx, 1) { - p.SetState(3109) + p.SetState(3111) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -34940,18 +34935,18 @@ func (p *PostgreSQLParser) Tableconstraint() (localctx ITableconstraintContext) } } { - p.SetState(3110) + p.SetState(3112) p.Name() } { - p.SetState(3111) + p.SetState(3113) p.Constraintelem() } case PostgreSQLParserCHECK, PostgreSQLParserFOREIGN, PostgreSQLParserPRIMARY, PostgreSQLParserUNIQUE, PostgreSQLParserEXCLUDE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3113) + p.SetState(3115) p.Constraintelem() } @@ -35353,7 +35348,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { p.EnterRule(localctx, 212, PostgreSQLParserRULE_constraintelem) var _la int - p.SetState(3205) + p.SetState(3207) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35363,7 +35358,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { case PostgreSQLParserCHECK: p.EnterOuterAlt(localctx, 1) { - p.SetState(3116) + p.SetState(3118) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -35371,7 +35366,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3117) + p.SetState(3119) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35379,11 +35374,11 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3118) + p.SetState(3120) p.A_expr() } { - p.SetState(3119) + p.SetState(3121) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35391,21 +35386,21 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3120) + p.SetState(3122) p.Constraintattributespec() } case PostgreSQLParserUNIQUE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3122) + p.SetState(3124) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3124) + p.SetState(3126) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35414,12 +35409,12 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserNULLS_P { { - p.SetState(3123) + p.SetState(3125) p.Opt_unique_null_treatment() } } - p.SetState(3143) + p.SetState(3145) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35428,7 +35423,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(3126) + p.SetState(3128) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35436,18 +35431,18 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3127) + p.SetState(3129) p.Columnlist() } { - p.SetState(3128) + p.SetState(3130) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3130) + p.SetState(3132) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35456,24 +35451,24 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(3129) + p.SetState(3131) p.Opt_c_include() } } - p.SetState(3133) + p.SetState(3135) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 177, p.GetParserRuleContext()) == 1 { { - p.SetState(3132) + p.SetState(3134) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3136) + p.SetState(3138) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35482,23 +35477,23 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3135) + p.SetState(3137) p.Optconstablespace() } } { - p.SetState(3138) + p.SetState(3140) p.Constraintattributespec() } case PostgreSQLParserUSING: { - p.SetState(3140) + p.SetState(3142) p.Existingindex() } { - p.SetState(3141) + p.SetState(3143) p.Constraintattributespec() } @@ -35510,7 +35505,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { case PostgreSQLParserPRIMARY: p.EnterOuterAlt(localctx, 3) { - p.SetState(3145) + p.SetState(3147) p.Match(PostgreSQLParserPRIMARY) if p.HasError() { // Recognition error - abort rule @@ -35518,14 +35513,14 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3146) + p.SetState(3148) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3164) + p.SetState(3166) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35534,7 +35529,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(3147) + p.SetState(3149) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35542,18 +35537,18 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3148) + p.SetState(3150) p.Columnlist() } { - p.SetState(3149) + p.SetState(3151) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3151) + p.SetState(3153) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35562,24 +35557,24 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(3150) + p.SetState(3152) p.Opt_c_include() } } - p.SetState(3154) + p.SetState(3156) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 181, p.GetParserRuleContext()) == 1 { { - p.SetState(3153) + p.SetState(3155) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3157) + p.SetState(3159) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35588,23 +35583,23 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3156) + p.SetState(3158) p.Optconstablespace() } } { - p.SetState(3159) + p.SetState(3161) p.Constraintattributespec() } case PostgreSQLParserUSING: { - p.SetState(3161) + p.SetState(3163) p.Existingindex() } { - p.SetState(3162) + p.SetState(3164) p.Constraintattributespec() } @@ -35616,14 +35611,14 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { case PostgreSQLParserEXCLUDE: p.EnterOuterAlt(localctx, 4) { - p.SetState(3166) + p.SetState(3168) p.Match(PostgreSQLParserEXCLUDE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3168) + p.SetState(3170) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35632,13 +35627,13 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3167) + p.SetState(3169) p.Access_method_clause() } } { - p.SetState(3170) + p.SetState(3172) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35646,18 +35641,18 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3171) + p.SetState(3173) p.Exclusionconstraintlist() } { - p.SetState(3172) + p.SetState(3174) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3174) + p.SetState(3176) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35666,24 +35661,24 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(3173) + p.SetState(3175) p.Opt_c_include() } } - p.SetState(3177) + p.SetState(3179) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 186, p.GetParserRuleContext()) == 1 { { - p.SetState(3176) + p.SetState(3178) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3180) + p.SetState(3182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35692,12 +35687,12 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3179) + p.SetState(3181) p.Optconstablespace() } } - p.SetState(3183) + p.SetState(3185) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35706,20 +35701,20 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(3182) + p.SetState(3184) p.Exclusionwhereclause() } } { - p.SetState(3185) + p.SetState(3187) p.Constraintattributespec() } case PostgreSQLParserFOREIGN: p.EnterOuterAlt(localctx, 5) { - p.SetState(3187) + p.SetState(3189) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -35727,7 +35722,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3188) + p.SetState(3190) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule @@ -35735,7 +35730,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3189) + p.SetState(3191) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35743,11 +35738,11 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3190) + p.SetState(3192) p.Columnlist() } { - p.SetState(3191) + p.SetState(3193) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35755,7 +35750,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3192) + p.SetState(3194) p.Match(PostgreSQLParserREFERENCES) if p.HasError() { // Recognition error - abort rule @@ -35763,22 +35758,22 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3193) + p.SetState(3195) p.Qualified_name() } - p.SetState(3195) + p.SetState(3197) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 189, p.GetParserRuleContext()) == 1 { { - p.SetState(3194) + p.SetState(3196) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3198) + p.SetState(3200) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35787,12 +35782,12 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserMATCH { { - p.SetState(3197) + p.SetState(3199) p.Key_match() } } - p.SetState(3201) + p.SetState(3203) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35801,13 +35796,13 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserON { { - p.SetState(3200) + p.SetState(3202) p.Key_actions() } } { - p.SetState(3203) + p.SetState(3205) p.Constraintattributespec() } @@ -35919,7 +35914,7 @@ func (p *PostgreSQLParser) Opt_no_inherit() (localctx IOpt_no_inheritContext) { p.EnterRule(localctx, 214, PostgreSQLParserRULE_opt_no_inherit) p.EnterOuterAlt(localctx, 1) { - p.SetState(3207) + p.SetState(3209) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -35927,7 +35922,7 @@ func (p *PostgreSQLParser) Opt_no_inherit() (localctx IOpt_no_inheritContext) { } } { - p.SetState(3208) + p.SetState(3210) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -36055,7 +36050,7 @@ func (p *PostgreSQLParser) Opt_column_list() (localctx IOpt_column_listContext) p.EnterRule(localctx, 216, PostgreSQLParserRULE_opt_column_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(3210) + p.SetState(3212) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36063,11 +36058,11 @@ func (p *PostgreSQLParser) Opt_column_list() (localctx IOpt_column_listContext) } } { - p.SetState(3211) + p.SetState(3213) p.Columnlist() } { - p.SetState(3212) + p.SetState(3214) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36223,10 +36218,10 @@ func (p *PostgreSQLParser) Columnlist() (localctx IColumnlistContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3214) + p.SetState(3216) p.ColumnElem() } - p.SetState(3219) + p.SetState(3221) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36235,7 +36230,7 @@ func (p *PostgreSQLParser) Columnlist() (localctx IColumnlistContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(3215) + p.SetState(3217) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -36243,11 +36238,11 @@ func (p *PostgreSQLParser) Columnlist() (localctx IColumnlistContext) { } } { - p.SetState(3216) + p.SetState(3218) p.ColumnElem() } - p.SetState(3221) + p.SetState(3223) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36365,7 +36360,7 @@ func (p *PostgreSQLParser) ColumnElem() (localctx IColumnElemContext) { p.EnterRule(localctx, 220, PostgreSQLParserRULE_columnElem) p.EnterOuterAlt(localctx, 1) { - p.SetState(3222) + p.SetState(3224) p.Colid() } @@ -36494,7 +36489,7 @@ func (p *PostgreSQLParser) Opt_c_include() (localctx IOpt_c_includeContext) { p.EnterRule(localctx, 222, PostgreSQLParserRULE_opt_c_include) p.EnterOuterAlt(localctx, 1) { - p.SetState(3224) + p.SetState(3226) p.Match(PostgreSQLParserINCLUDE) if p.HasError() { // Recognition error - abort rule @@ -36502,7 +36497,7 @@ func (p *PostgreSQLParser) Opt_c_include() (localctx IOpt_c_includeContext) { } } { - p.SetState(3225) + p.SetState(3227) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36510,11 +36505,11 @@ func (p *PostgreSQLParser) Opt_c_include() (localctx IOpt_c_includeContext) { } } { - p.SetState(3226) + p.SetState(3228) p.Columnlist() } { - p.SetState(3227) + p.SetState(3229) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36637,7 +36632,7 @@ func (p *PostgreSQLParser) Key_match() (localctx IKey_matchContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3229) + p.SetState(3231) p.Match(PostgreSQLParserMATCH) if p.HasError() { // Recognition error - abort rule @@ -36645,7 +36640,7 @@ func (p *PostgreSQLParser) Key_match() (localctx IKey_matchContext) { } } { - p.SetState(3230) + p.SetState(3232) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFULL || _la == PostgreSQLParserPARTIAL || _la == PostgreSQLParserSIMPLE) { @@ -36804,10 +36799,10 @@ func (p *PostgreSQLParser) Exclusionconstraintlist() (localctx IExclusionconstra p.EnterOuterAlt(localctx, 1) { - p.SetState(3232) + p.SetState(3234) p.Exclusionconstraintelem() } - p.SetState(3237) + p.SetState(3239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36816,7 +36811,7 @@ func (p *PostgreSQLParser) Exclusionconstraintlist() (localctx IExclusionconstra for _la == PostgreSQLParserCOMMA { { - p.SetState(3233) + p.SetState(3235) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -36824,11 +36819,11 @@ func (p *PostgreSQLParser) Exclusionconstraintlist() (localctx IExclusionconstra } } { - p.SetState(3234) + p.SetState(3236) p.Exclusionconstraintelem() } - p.SetState(3239) + p.SetState(3241) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36983,18 +36978,18 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra p.EnterRule(localctx, 228, PostgreSQLParserRULE_exclusionconstraintelem) p.EnterOuterAlt(localctx, 1) { - p.SetState(3240) + p.SetState(3242) p.Index_elem() } { - p.SetState(3241) + p.SetState(3243) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3248) + p.SetState(3250) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37003,13 +36998,13 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 195, p.GetParserRuleContext()) { case 1: { - p.SetState(3242) + p.SetState(3244) p.Any_operator() } case 2: { - p.SetState(3243) + p.SetState(3245) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -37017,7 +37012,7 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra } } { - p.SetState(3244) + p.SetState(3246) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37025,11 +37020,11 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra } } { - p.SetState(3245) + p.SetState(3247) p.Any_operator() } { - p.SetState(3246) + p.SetState(3248) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37166,7 +37161,7 @@ func (p *PostgreSQLParser) Exclusionwhereclause() (localctx IExclusionwhereclaus p.EnterRule(localctx, 230, PostgreSQLParserRULE_exclusionwhereclause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3250) + p.SetState(3252) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -37174,7 +37169,7 @@ func (p *PostgreSQLParser) Exclusionwhereclause() (localctx IExclusionwhereclaus } } { - p.SetState(3251) + p.SetState(3253) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37182,11 +37177,11 @@ func (p *PostgreSQLParser) Exclusionwhereclause() (localctx IExclusionwhereclaus } } { - p.SetState(3252) + p.SetState(3254) p.A_expr() } { - p.SetState(3253) + p.SetState(3255) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37319,7 +37314,7 @@ func (s *Key_actionsContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Key_actions() (localctx IKey_actionsContext) { localctx = NewKey_actionsContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 232, PostgreSQLParserRULE_key_actions) - p.SetState(3263) + p.SetState(3265) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37329,36 +37324,36 @@ func (p *PostgreSQLParser) Key_actions() (localctx IKey_actionsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3255) + p.SetState(3257) p.Key_update() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3256) + p.SetState(3258) p.Key_delete() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3257) + p.SetState(3259) p.Key_update() } { - p.SetState(3258) + p.SetState(3260) p.Key_delete() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3260) + p.SetState(3262) p.Key_delete() } { - p.SetState(3261) + p.SetState(3263) p.Key_update() } @@ -37486,7 +37481,7 @@ func (p *PostgreSQLParser) Key_update() (localctx IKey_updateContext) { p.EnterRule(localctx, 234, PostgreSQLParserRULE_key_update) p.EnterOuterAlt(localctx, 1) { - p.SetState(3265) + p.SetState(3267) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -37494,7 +37489,7 @@ func (p *PostgreSQLParser) Key_update() (localctx IKey_updateContext) { } } { - p.SetState(3266) + p.SetState(3268) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -37502,7 +37497,7 @@ func (p *PostgreSQLParser) Key_update() (localctx IKey_updateContext) { } } { - p.SetState(3267) + p.SetState(3269) p.Key_action() } @@ -37626,7 +37621,7 @@ func (p *PostgreSQLParser) Key_delete() (localctx IKey_deleteContext) { p.EnterRule(localctx, 236, PostgreSQLParserRULE_key_delete) p.EnterOuterAlt(localctx, 1) { - p.SetState(3269) + p.SetState(3271) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -37634,7 +37629,7 @@ func (p *PostgreSQLParser) Key_delete() (localctx IKey_deleteContext) { } } { - p.SetState(3270) + p.SetState(3272) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -37642,7 +37637,7 @@ func (p *PostgreSQLParser) Key_delete() (localctx IKey_deleteContext) { } } { - p.SetState(3271) + p.SetState(3273) p.Key_action() } @@ -37791,7 +37786,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { p.EnterRule(localctx, 238, PostgreSQLParserRULE_key_action) var _la int - p.SetState(3282) + p.SetState(3284) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37801,7 +37796,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 1) { - p.SetState(3273) + p.SetState(3275) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -37809,7 +37804,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { } } { - p.SetState(3274) + p.SetState(3276) p.Match(PostgreSQLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -37820,7 +37815,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserRESTRICT: p.EnterOuterAlt(localctx, 2) { - p.SetState(3275) + p.SetState(3277) p.Match(PostgreSQLParserRESTRICT) if p.HasError() { // Recognition error - abort rule @@ -37831,7 +37826,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserCASCADE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3276) + p.SetState(3278) p.Match(PostgreSQLParserCASCADE) if p.HasError() { // Recognition error - abort rule @@ -37842,7 +37837,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 4) { - p.SetState(3277) + p.SetState(3279) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -37850,7 +37845,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { } } { - p.SetState(3278) + p.SetState(3280) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDEFAULT || _la == PostgreSQLParserNULL_P) { @@ -37860,12 +37855,12 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { p.Consume() } } - p.SetState(3280) + p.SetState(3282) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 197, p.GetParserRuleContext()) == 1 { { - p.SetState(3279) + p.SetState(3281) p.Opt_column_list() } @@ -38003,7 +37998,7 @@ func (p *PostgreSQLParser) Optinherit() (localctx IOptinheritContext) { p.EnterRule(localctx, 240, PostgreSQLParserRULE_optinherit) p.EnterOuterAlt(localctx, 1) { - p.SetState(3284) + p.SetState(3286) p.Match(PostgreSQLParserINHERITS) if p.HasError() { // Recognition error - abort rule @@ -38011,7 +38006,7 @@ func (p *PostgreSQLParser) Optinherit() (localctx IOptinheritContext) { } } { - p.SetState(3285) + p.SetState(3287) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38019,11 +38014,11 @@ func (p *PostgreSQLParser) Optinherit() (localctx IOptinheritContext) { } } { - p.SetState(3286) + p.SetState(3288) p.Qualified_name_list() } { - p.SetState(3287) + p.SetState(3289) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38141,7 +38136,7 @@ func (p *PostgreSQLParser) Optpartitionspec() (localctx IOptpartitionspecContext p.EnterRule(localctx, 242, PostgreSQLParserRULE_optpartitionspec) p.EnterOuterAlt(localctx, 1) { - p.SetState(3289) + p.SetState(3291) p.Partitionspec() } @@ -38292,7 +38287,7 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { p.EnterRule(localctx, 244, PostgreSQLParserRULE_partitionspec) p.EnterOuterAlt(localctx, 1) { - p.SetState(3291) + p.SetState(3293) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -38300,7 +38295,7 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { } } { - p.SetState(3292) + p.SetState(3294) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -38308,11 +38303,11 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { } } { - p.SetState(3293) + p.SetState(3295) p.Colid() } { - p.SetState(3294) + p.SetState(3296) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38320,11 +38315,11 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { } } { - p.SetState(3295) + p.SetState(3297) p.Part_params() } { - p.SetState(3296) + p.SetState(3298) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38480,10 +38475,10 @@ func (p *PostgreSQLParser) Part_params() (localctx IPart_paramsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3298) + p.SetState(3300) p.Part_elem() } - p.SetState(3303) + p.SetState(3305) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38492,7 +38487,7 @@ func (p *PostgreSQLParser) Part_params() (localctx IPart_paramsContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(3299) + p.SetState(3301) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -38500,11 +38495,11 @@ func (p *PostgreSQLParser) Part_params() (localctx IPart_paramsContext) { } } { - p.SetState(3300) + p.SetState(3302) p.Part_elem() } - p.SetState(3305) + p.SetState(3307) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38700,7 +38695,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { p.EnterRule(localctx, 248, PostgreSQLParserRULE_part_elem) var _la int - p.SetState(3329) + p.SetState(3331) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38710,22 +38705,22 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3306) + p.SetState(3308) p.Colid() } - p.SetState(3308) + p.SetState(3310) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 200, p.GetParserRuleContext()) == 1 { { - p.SetState(3307) + p.SetState(3309) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3311) + p.SetState(3313) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38734,7 +38729,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(3310) + p.SetState(3312) p.Opt_class() } @@ -38743,22 +38738,22 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3313) + p.SetState(3315) p.Func_expr_windowless() } - p.SetState(3315) + p.SetState(3317) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 202, p.GetParserRuleContext()) == 1 { { - p.SetState(3314) + p.SetState(3316) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3318) + p.SetState(3320) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38767,7 +38762,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(3317) + p.SetState(3319) p.Opt_class() } @@ -38776,7 +38771,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3320) + p.SetState(3322) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38784,30 +38779,30 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { } } { - p.SetState(3321) + p.SetState(3323) p.A_expr() } { - p.SetState(3322) + p.SetState(3324) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3324) + p.SetState(3326) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 204, p.GetParserRuleContext()) == 1 { { - p.SetState(3323) + p.SetState(3325) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3327) + p.SetState(3329) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38816,7 +38811,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(3326) + p.SetState(3328) p.Opt_class() } @@ -38941,7 +38936,7 @@ func (p *PostgreSQLParser) Table_access_method_clause() (localctx ITable_access_ p.EnterRule(localctx, 250, PostgreSQLParserRULE_table_access_method_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3331) + p.SetState(3333) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -38949,7 +38944,7 @@ func (p *PostgreSQLParser) Table_access_method_clause() (localctx ITable_access_ } } { - p.SetState(3332) + p.SetState(3334) p.Name() } @@ -39076,7 +39071,7 @@ func (s *OptwithContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { localctx = NewOptwithContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 252, PostgreSQLParserRULE_optwith) - p.SetState(3338) + p.SetState(3340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39086,7 +39081,7 @@ func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(3334) + p.SetState(3336) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -39094,14 +39089,14 @@ func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { } } { - p.SetState(3335) + p.SetState(3337) p.Reloptions() } case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(3336) + p.SetState(3338) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -39109,7 +39104,7 @@ func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { } } { - p.SetState(3337) + p.SetState(3339) p.Match(PostgreSQLParserOIDS) if p.HasError() { // Recognition error - abort rule @@ -39245,7 +39240,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { p.EnterRule(localctx, 254, PostgreSQLParserRULE_oncommitoption) p.EnterOuterAlt(localctx, 1) { - p.SetState(3340) + p.SetState(3342) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -39253,14 +39248,14 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { } } { - p.SetState(3341) + p.SetState(3343) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3347) + p.SetState(3349) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39269,7 +39264,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserDROP: { - p.SetState(3342) + p.SetState(3344) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -39279,7 +39274,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { case PostgreSQLParserDELETE_P: { - p.SetState(3343) + p.SetState(3345) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -39287,7 +39282,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { } } { - p.SetState(3344) + p.SetState(3346) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -39297,7 +39292,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { case PostgreSQLParserPRESERVE: { - p.SetState(3345) + p.SetState(3347) p.Match(PostgreSQLParserPRESERVE) if p.HasError() { // Recognition error - abort rule @@ -39305,7 +39300,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { } } { - p.SetState(3346) + p.SetState(3348) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -39433,7 +39428,7 @@ func (p *PostgreSQLParser) Opttablespace() (localctx IOpttablespaceContext) { p.EnterRule(localctx, 256, PostgreSQLParserRULE_opttablespace) p.EnterOuterAlt(localctx, 1) { - p.SetState(3349) + p.SetState(3351) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -39441,7 +39436,7 @@ func (p *PostgreSQLParser) Opttablespace() (localctx IOpttablespaceContext) { } } { - p.SetState(3350) + p.SetState(3352) p.Name() } @@ -39570,7 +39565,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte p.EnterRule(localctx, 258, PostgreSQLParserRULE_optconstablespace) p.EnterOuterAlt(localctx, 1) { - p.SetState(3352) + p.SetState(3354) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -39578,7 +39573,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte } } { - p.SetState(3353) + p.SetState(3355) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -39586,7 +39581,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte } } { - p.SetState(3354) + p.SetState(3356) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -39594,7 +39589,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte } } { - p.SetState(3355) + p.SetState(3357) p.Name() } @@ -39718,7 +39713,7 @@ func (p *PostgreSQLParser) Existingindex() (localctx IExistingindexContext) { p.EnterRule(localctx, 260, PostgreSQLParserRULE_existingindex) p.EnterOuterAlt(localctx, 1) { - p.SetState(3357) + p.SetState(3359) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -39726,7 +39721,7 @@ func (p *PostgreSQLParser) Existingindex() (localctx IExistingindexContext) { } } { - p.SetState(3358) + p.SetState(3360) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -39734,7 +39729,7 @@ func (p *PostgreSQLParser) Existingindex() (localctx IExistingindexContext) { } } { - p.SetState(3359) + p.SetState(3361) p.Name() } @@ -39936,7 +39931,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3361) + p.SetState(3363) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -39944,19 +39939,19 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3362) + p.SetState(3364) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3366) + p.SetState(3368) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 209, p.GetParserRuleContext()) == 1 { { - p.SetState(3363) + p.SetState(3365) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -39964,7 +39959,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3364) + p.SetState(3366) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -39972,7 +39967,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3365) + p.SetState(3367) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -39984,10 +39979,10 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) goto errorExit } { - p.SetState(3368) + p.SetState(3370) p.Any_name() } - p.SetState(3370) + p.SetState(3372) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39996,13 +39991,13 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3369) + p.SetState(3371) p.Opt_name_list() } } { - p.SetState(3372) + p.SetState(3374) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -40010,11 +40005,11 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3373) + p.SetState(3375) p.Expr_list() } { - p.SetState(3374) + p.SetState(3376) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -40022,7 +40017,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3375) + p.SetState(3377) p.From_list() } @@ -40183,7 +40178,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { p.EnterRule(localctx, 264, PostgreSQLParserRULE_alterstatsstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3377) + p.SetState(3379) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -40191,19 +40186,19 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3378) + p.SetState(3380) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3381) + p.SetState(3383) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 211, p.GetParserRuleContext()) == 1 { { - p.SetState(3379) + p.SetState(3381) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -40211,7 +40206,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3380) + p.SetState(3382) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -40223,11 +40218,11 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { goto errorExit } { - p.SetState(3383) + p.SetState(3385) p.Any_name() } { - p.SetState(3384) + p.SetState(3386) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -40235,7 +40230,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3385) + p.SetState(3387) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -40243,7 +40238,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3386) + p.SetState(3388) p.Signediconst() } @@ -40440,14 +40435,14 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3388) + p.SetState(3390) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3390) + p.SetState(3392) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40456,25 +40451,25 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&32773) != 0) { { - p.SetState(3389) + p.SetState(3391) p.Opttemp() } } { - p.SetState(3392) + p.SetState(3394) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3396) + p.SetState(3398) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 213, p.GetParserRuleContext()) == 1 { { - p.SetState(3393) + p.SetState(3395) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -40482,7 +40477,7 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { } } { - p.SetState(3394) + p.SetState(3396) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -40490,7 +40485,7 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { } } { - p.SetState(3395) + p.SetState(3397) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -40502,11 +40497,11 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { goto errorExit } { - p.SetState(3398) + p.SetState(3400) p.Create_as_target() } { - p.SetState(3399) + p.SetState(3401) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -40514,15 +40509,15 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { } } { - p.SetState(3400) + p.SetState(3402) p.Selectstmt() } - p.SetState(3402) + p.SetState(3404) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 214, p.GetParserRuleContext()) == 1 { { - p.SetState(3401) + p.SetState(3403) p.Opt_with_data() } @@ -40727,10 +40722,10 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext p.EnterOuterAlt(localctx, 1) { - p.SetState(3404) + p.SetState(3406) p.Qualified_name() } - p.SetState(3406) + p.SetState(3408) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40739,12 +40734,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3405) + p.SetState(3407) p.Opt_column_list() } } - p.SetState(3409) + p.SetState(3411) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40753,12 +40748,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserUSING { { - p.SetState(3408) + p.SetState(3410) p.Table_access_method_clause() } } - p.SetState(3412) + p.SetState(3414) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40767,12 +40762,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(3411) + p.SetState(3413) p.Optwith() } } - p.SetState(3415) + p.SetState(3417) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40781,12 +40776,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserON { { - p.SetState(3414) + p.SetState(3416) p.Oncommitoption() } } - p.SetState(3418) + p.SetState(3420) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40795,7 +40790,7 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserTABLESPACE { { - p.SetState(3417) + p.SetState(3419) p.Opttablespace() } @@ -40909,14 +40904,14 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { p.EnterRule(localctx, 270, PostgreSQLParserRULE_opt_with_data) p.EnterOuterAlt(localctx, 1) { - p.SetState(3420) + p.SetState(3422) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3424) + p.SetState(3426) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40925,7 +40920,7 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserDATA_P: { - p.SetState(3421) + p.SetState(3423) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -40935,7 +40930,7 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { case PostgreSQLParserNO: { - p.SetState(3422) + p.SetState(3424) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -40943,7 +40938,7 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { } } { - p.SetState(3423) + p.SetState(3425) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -41154,14 +41149,14 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(3426) + p.SetState(3428) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3428) + p.SetState(3430) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41170,13 +41165,13 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte if _la == PostgreSQLParserUNLOGGED { { - p.SetState(3427) + p.SetState(3429) p.Optnolog() } } { - p.SetState(3430) + p.SetState(3432) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -41184,19 +41179,19 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3431) + p.SetState(3433) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3435) + p.SetState(3437) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 222, p.GetParserRuleContext()) == 1 { { - p.SetState(3432) + p.SetState(3434) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -41204,7 +41199,7 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3433) + p.SetState(3435) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -41212,7 +41207,7 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3434) + p.SetState(3436) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -41224,11 +41219,11 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte goto errorExit } { - p.SetState(3437) + p.SetState(3439) p.Create_mv_target() } { - p.SetState(3438) + p.SetState(3440) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -41236,15 +41231,15 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3439) + p.SetState(3441) p.Selectstmt() } - p.SetState(3441) + p.SetState(3443) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 223, p.GetParserRuleContext()) == 1 { { - p.SetState(3440) + p.SetState(3442) p.Opt_with_data() } @@ -41432,10 +41427,10 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext p.EnterOuterAlt(localctx, 1) { - p.SetState(3443) + p.SetState(3445) p.Qualified_name() } - p.SetState(3445) + p.SetState(3447) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41444,12 +41439,12 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3444) + p.SetState(3446) p.Opt_column_list() } } - p.SetState(3448) + p.SetState(3450) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41458,12 +41453,12 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserUSING { { - p.SetState(3447) + p.SetState(3449) p.Table_access_method_clause() } } - p.SetState(3451) + p.SetState(3453) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41472,12 +41467,12 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserWITH { { - p.SetState(3450) + p.SetState(3452) p.Opt_reloptions() } } - p.SetState(3454) + p.SetState(3456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41486,7 +41481,7 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserTABLESPACE { { - p.SetState(3453) + p.SetState(3455) p.Opttablespace() } @@ -41590,7 +41585,7 @@ func (p *PostgreSQLParser) Optnolog() (localctx IOptnologContext) { p.EnterRule(localctx, 276, PostgreSQLParserRULE_optnolog) p.EnterOuterAlt(localctx, 1) { - p.SetState(3456) + p.SetState(3458) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -41759,7 +41754,7 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon p.EnterOuterAlt(localctx, 1) { - p.SetState(3458) + p.SetState(3460) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -41767,7 +41762,7 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon } } { - p.SetState(3459) + p.SetState(3461) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -41775,14 +41770,14 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon } } { - p.SetState(3460) + p.SetState(3462) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3462) + p.SetState(3464) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41791,21 +41786,21 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(3461) + p.SetState(3463) p.Opt_concurrently() } } { - p.SetState(3464) + p.SetState(3466) p.Qualified_name() } - p.SetState(3466) + p.SetState(3468) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 229, p.GetParserRuleContext()) == 1 { { - p.SetState(3465) + p.SetState(3467) p.Opt_with_data() } @@ -41984,14 +41979,14 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3468) + p.SetState(3470) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3470) + p.SetState(3472) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42000,25 +41995,25 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&32773) != 0) { { - p.SetState(3469) + p.SetState(3471) p.Opttemp() } } { - p.SetState(3472) + p.SetState(3474) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3476) + p.SetState(3478) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 231, p.GetParserRuleContext()) == 1 { { - p.SetState(3473) + p.SetState(3475) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -42026,7 +42021,7 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { } } { - p.SetState(3474) + p.SetState(3476) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -42034,7 +42029,7 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { } } { - p.SetState(3475) + p.SetState(3477) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -42046,15 +42041,15 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { goto errorExit } { - p.SetState(3478) + p.SetState(3480) p.Qualified_name() } - p.SetState(3480) + p.SetState(3482) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 232, p.GetParserRuleContext()) == 1 { { - p.SetState(3479) + p.SetState(3481) p.Optseqoptlist() } @@ -42209,7 +42204,7 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { p.EnterRule(localctx, 282, PostgreSQLParserRULE_alterseqstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3482) + p.SetState(3484) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -42217,19 +42212,19 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { } } { - p.SetState(3483) + p.SetState(3485) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3486) + p.SetState(3488) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 233, p.GetParserRuleContext()) == 1 { { - p.SetState(3484) + p.SetState(3486) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -42237,7 +42232,7 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { } } { - p.SetState(3485) + p.SetState(3487) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -42249,11 +42244,11 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { goto errorExit } { - p.SetState(3488) + p.SetState(3490) p.Qualified_name() } { - p.SetState(3489) + p.SetState(3491) p.Seqoptlist() } @@ -42367,7 +42362,7 @@ func (p *PostgreSQLParser) Optseqoptlist() (localctx IOptseqoptlistContext) { p.EnterRule(localctx, 284, PostgreSQLParserRULE_optseqoptlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(3491) + p.SetState(3493) p.Seqoptlist() } @@ -42491,7 +42486,7 @@ func (p *PostgreSQLParser) Optparenthesizedseqoptlist() (localctx IOptparenthesi p.EnterRule(localctx, 286, PostgreSQLParserRULE_optparenthesizedseqoptlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(3493) + p.SetState(3495) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -42499,11 +42494,11 @@ func (p *PostgreSQLParser) Optparenthesizedseqoptlist() (localctx IOptparenthesi } } { - p.SetState(3494) + p.SetState(3496) p.Seqoptlist() } { - p.SetState(3495) + p.SetState(3497) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -42648,7 +42643,7 @@ func (p *PostgreSQLParser) Seqoptlist() (localctx ISeqoptlistContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(3498) + p.SetState(3500) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42658,7 +42653,7 @@ func (p *PostgreSQLParser) Seqoptlist() (localctx ISeqoptlistContext) { switch _alt { case 1: { - p.SetState(3497) + p.SetState(3499) p.Seqoptelem() } @@ -42667,7 +42662,7 @@ func (p *PostgreSQLParser) Seqoptlist() (localctx ISeqoptlistContext) { goto errorExit } - p.SetState(3500) + p.SetState(3502) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 234, p.GetParserRuleContext()) if p.HasError() { @@ -42928,7 +42923,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { p.EnterRule(localctx, 290, PostgreSQLParserRULE_seqoptelem) var _la int - p.SetState(3538) + p.SetState(3540) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42938,7 +42933,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserAS: p.EnterOuterAlt(localctx, 1) { - p.SetState(3502) + p.SetState(3504) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -42946,14 +42941,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3503) + p.SetState(3505) p.Simpletypename() } case PostgreSQLParserCACHE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3504) + p.SetState(3506) p.Match(PostgreSQLParserCACHE) if p.HasError() { // Recognition error - abort rule @@ -42961,14 +42956,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3505) + p.SetState(3507) p.Numericonly() } case PostgreSQLParserCYCLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3506) + p.SetState(3508) p.Match(PostgreSQLParserCYCLE) if p.HasError() { // Recognition error - abort rule @@ -42979,14 +42974,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserINCREMENT: p.EnterOuterAlt(localctx, 4) { - p.SetState(3507) + p.SetState(3509) p.Match(PostgreSQLParserINCREMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3509) + p.SetState(3511) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42995,20 +42990,20 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { if _la == PostgreSQLParserBY { { - p.SetState(3508) + p.SetState(3510) p.Opt_by() } } { - p.SetState(3511) + p.SetState(3513) p.Numericonly() } case PostgreSQLParserLOGGED: p.EnterOuterAlt(localctx, 5) { - p.SetState(3512) + p.SetState(3514) p.Match(PostgreSQLParserLOGGED) if p.HasError() { // Recognition error - abort rule @@ -43019,7 +43014,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserMAXVALUE: p.EnterOuterAlt(localctx, 6) { - p.SetState(3513) + p.SetState(3515) p.Match(PostgreSQLParserMAXVALUE) if p.HasError() { // Recognition error - abort rule @@ -43027,14 +43022,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3514) + p.SetState(3516) p.Numericonly() } case PostgreSQLParserMINVALUE: p.EnterOuterAlt(localctx, 7) { - p.SetState(3515) + p.SetState(3517) p.Match(PostgreSQLParserMINVALUE) if p.HasError() { // Recognition error - abort rule @@ -43042,14 +43037,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3516) + p.SetState(3518) p.Numericonly() } case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 8) { - p.SetState(3517) + p.SetState(3519) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -43057,7 +43052,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3518) + p.SetState(3520) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCYCLE || _la == PostgreSQLParserMAXVALUE || _la == PostgreSQLParserMINVALUE) { @@ -43071,7 +43066,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserOWNED: p.EnterOuterAlt(localctx, 9) { - p.SetState(3519) + p.SetState(3521) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -43079,7 +43074,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3520) + p.SetState(3522) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -43087,14 +43082,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3521) + p.SetState(3523) p.Any_name() } case PostgreSQLParserSEQUENCE: p.EnterOuterAlt(localctx, 10) { - p.SetState(3522) + p.SetState(3524) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -43102,7 +43097,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3523) + p.SetState(3525) p.Match(PostgreSQLParserNAME_P) if p.HasError() { // Recognition error - abort rule @@ -43110,21 +43105,21 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3524) + p.SetState(3526) p.Any_name() } case PostgreSQLParserSTART: p.EnterOuterAlt(localctx, 11) { - p.SetState(3525) + p.SetState(3527) p.Match(PostgreSQLParserSTART) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3527) + p.SetState(3529) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43133,39 +43128,39 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { if _la == PostgreSQLParserWITH { { - p.SetState(3526) + p.SetState(3528) p.Opt_with() } } { - p.SetState(3529) + p.SetState(3531) p.Numericonly() } case PostgreSQLParserRESTART: p.EnterOuterAlt(localctx, 12) { - p.SetState(3530) + p.SetState(3532) p.Match(PostgreSQLParserRESTART) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3532) + p.SetState(3534) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 237, p.GetParserRuleContext()) == 1 { { - p.SetState(3531) + p.SetState(3533) p.Opt_with() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3535) + p.SetState(3537) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43174,7 +43169,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { if _la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS || _la == PostgreSQLParserIntegral || _la == PostgreSQLParserNumeric { { - p.SetState(3534) + p.SetState(3536) p.Numericonly() } @@ -43183,7 +43178,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserUNLOGGED: p.EnterOuterAlt(localctx, 13) { - p.SetState(3537) + p.SetState(3539) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -43294,7 +43289,7 @@ func (p *PostgreSQLParser) Opt_by() (localctx IOpt_byContext) { p.EnterRule(localctx, 292, PostgreSQLParserRULE_opt_by) p.EnterOuterAlt(localctx, 1) { - p.SetState(3540) + p.SetState(3542) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -43437,7 +43432,7 @@ func (s *NumericonlyContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { localctx = NewNumericonlyContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 294, PostgreSQLParserRULE_numericonly) - p.SetState(3548) + p.SetState(3550) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43447,14 +43442,14 @@ func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3542) + p.SetState(3544) p.Fconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3543) + p.SetState(3545) p.Match(PostgreSQLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -43462,14 +43457,14 @@ func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { } } { - p.SetState(3544) + p.SetState(3546) p.Fconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3545) + p.SetState(3547) p.Match(PostgreSQLParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -43477,14 +43472,14 @@ func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { } } { - p.SetState(3546) + p.SetState(3548) p.Fconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3547) + p.SetState(3549) p.Signediconst() } @@ -43640,10 +43635,10 @@ func (p *PostgreSQLParser) Numericonly_list() (localctx INumericonly_listContext p.EnterOuterAlt(localctx, 1) { - p.SetState(3550) + p.SetState(3552) p.Numericonly() } - p.SetState(3555) + p.SetState(3557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43652,7 +43647,7 @@ func (p *PostgreSQLParser) Numericonly_list() (localctx INumericonly_listContext for _la == PostgreSQLParserCOMMA { { - p.SetState(3551) + p.SetState(3553) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -43660,11 +43655,11 @@ func (p *PostgreSQLParser) Numericonly_list() (localctx INumericonly_listContext } } { - p.SetState(3552) + p.SetState(3554) p.Numericonly() } - p.SetState(3557) + p.SetState(3559) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43901,14 +43896,14 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3558) + p.SetState(3560) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3560) + p.SetState(3562) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43917,12 +43912,12 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserOR { { - p.SetState(3559) + p.SetState(3561) p.Opt_or_replace() } } - p.SetState(3563) + p.SetState(3565) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43931,12 +43926,12 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserTRUSTED { { - p.SetState(3562) + p.SetState(3564) p.Opt_trusted() } } - p.SetState(3566) + p.SetState(3568) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43945,13 +43940,13 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(3565) + p.SetState(3567) p.Opt_procedural() } } { - p.SetState(3568) + p.SetState(3570) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -43959,10 +43954,10 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) } } { - p.SetState(3569) + p.SetState(3571) p.Name() } - p.SetState(3578) + p.SetState(3580) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43971,7 +43966,7 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserHANDLER { { - p.SetState(3570) + p.SetState(3572) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -43979,10 +43974,10 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) } } { - p.SetState(3571) + p.SetState(3573) p.Handler_name() } - p.SetState(3573) + p.SetState(3575) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43991,12 +43986,12 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserINLINE_P { { - p.SetState(3572) + p.SetState(3574) p.Opt_inline_handler() } } - p.SetState(3576) + p.SetState(3578) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44005,7 +44000,7 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3575) + p.SetState(3577) p.Opt_validator() } @@ -44111,7 +44106,7 @@ func (p *PostgreSQLParser) Opt_trusted() (localctx IOpt_trustedContext) { p.EnterRule(localctx, 300, PostgreSQLParserRULE_opt_trusted) p.EnterOuterAlt(localctx, 1) { - p.SetState(3580) + p.SetState(3582) p.Match(PostgreSQLParserTRUSTED) if p.HasError() { // Recognition error - abort rule @@ -44248,10 +44243,10 @@ func (p *PostgreSQLParser) Handler_name() (localctx IHandler_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3582) + p.SetState(3584) p.Name() } - p.SetState(3584) + p.SetState(3586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44260,7 +44255,7 @@ func (p *PostgreSQLParser) Handler_name() (localctx IHandler_nameContext) { if _la == PostgreSQLParserDOT { { - p.SetState(3583) + p.SetState(3585) p.Attrs() } @@ -44381,7 +44376,7 @@ func (p *PostgreSQLParser) Opt_inline_handler() (localctx IOpt_inline_handlerCon p.EnterRule(localctx, 304, PostgreSQLParserRULE_opt_inline_handler) p.EnterOuterAlt(localctx, 1) { - p.SetState(3586) + p.SetState(3588) p.Match(PostgreSQLParserINLINE_P) if p.HasError() { // Recognition error - abort rule @@ -44389,7 +44384,7 @@ func (p *PostgreSQLParser) Opt_inline_handler() (localctx IOpt_inline_handlerCon } } { - p.SetState(3587) + p.SetState(3589) p.Handler_name() } @@ -44511,7 +44506,7 @@ func (s *Validator_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext) { localctx = NewValidator_clauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 306, PostgreSQLParserRULE_validator_clause) - p.SetState(3593) + p.SetState(3595) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44521,7 +44516,7 @@ func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext case PostgreSQLParserVALIDATOR: p.EnterOuterAlt(localctx, 1) { - p.SetState(3589) + p.SetState(3591) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -44529,14 +44524,14 @@ func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext } } { - p.SetState(3590) + p.SetState(3592) p.Handler_name() } case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 2) { - p.SetState(3591) + p.SetState(3593) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -44544,7 +44539,7 @@ func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext } } { - p.SetState(3592) + p.SetState(3594) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -44667,7 +44662,7 @@ func (p *PostgreSQLParser) Opt_validator() (localctx IOpt_validatorContext) { p.EnterRule(localctx, 308, PostgreSQLParserRULE_opt_validator) p.EnterOuterAlt(localctx, 1) { - p.SetState(3595) + p.SetState(3597) p.Validator_clause() } @@ -44769,7 +44764,7 @@ func (p *PostgreSQLParser) Opt_procedural() (localctx IOpt_proceduralContext) { p.EnterRule(localctx, 310, PostgreSQLParserRULE_opt_procedural) p.EnterOuterAlt(localctx, 1) { - p.SetState(3597) + p.SetState(3599) p.Match(PostgreSQLParserPROCEDURAL) if p.HasError() { // Recognition error - abort rule @@ -44955,7 +44950,7 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm p.EnterOuterAlt(localctx, 1) { - p.SetState(3599) + p.SetState(3601) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -44963,7 +44958,7 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm } } { - p.SetState(3600) + p.SetState(3602) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -44971,10 +44966,10 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm } } { - p.SetState(3601) + p.SetState(3603) p.Name() } - p.SetState(3603) + p.SetState(3605) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44983,13 +44978,13 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm if _la == PostgreSQLParserOWNER { { - p.SetState(3602) + p.SetState(3604) p.Opttablespaceowner() } } { - p.SetState(3605) + p.SetState(3607) p.Match(PostgreSQLParserLOCATION) if p.HasError() { // Recognition error - abort rule @@ -44997,15 +44992,15 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm } } { - p.SetState(3606) + p.SetState(3608) p.Sconst() } - p.SetState(3608) + p.SetState(3610) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 251, p.GetParserRuleContext()) == 1 { { - p.SetState(3607) + p.SetState(3609) p.Opt_reloptions() } @@ -45128,7 +45123,7 @@ func (p *PostgreSQLParser) Opttablespaceowner() (localctx IOpttablespaceownerCon p.EnterRule(localctx, 314, PostgreSQLParserRULE_opttablespaceowner) p.EnterOuterAlt(localctx, 1) { - p.SetState(3610) + p.SetState(3612) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -45136,7 +45131,7 @@ func (p *PostgreSQLParser) Opttablespaceowner() (localctx IOpttablespaceownerCon } } { - p.SetState(3611) + p.SetState(3613) p.Rolespec() } @@ -45270,7 +45265,7 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon p.EnterRule(localctx, 316, PostgreSQLParserRULE_droptablespacestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3613) + p.SetState(3615) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -45278,19 +45273,19 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon } } { - p.SetState(3614) + p.SetState(3616) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3617) + p.SetState(3619) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 252, p.GetParserRuleContext()) == 1 { { - p.SetState(3615) + p.SetState(3617) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -45298,7 +45293,7 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon } } { - p.SetState(3616) + p.SetState(3618) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -45310,7 +45305,7 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon goto errorExit } { - p.SetState(3619) + p.SetState(3621) p.Name() } @@ -45483,7 +45478,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC p.EnterRule(localctx, 318, PostgreSQLParserRULE_createextensionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3621) + p.SetState(3623) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -45491,19 +45486,19 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC } } { - p.SetState(3622) + p.SetState(3624) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3626) + p.SetState(3628) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 253, p.GetParserRuleContext()) == 1 { { - p.SetState(3623) + p.SetState(3625) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -45511,7 +45506,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC } } { - p.SetState(3624) + p.SetState(3626) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -45519,7 +45514,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC } } { - p.SetState(3625) + p.SetState(3627) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -45531,15 +45526,15 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC goto errorExit } { - p.SetState(3628) + p.SetState(3630) p.Name() } - p.SetState(3630) + p.SetState(3632) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 254, p.GetParserRuleContext()) == 1 { { - p.SetState(3629) + p.SetState(3631) p.Opt_with() } @@ -45547,7 +45542,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC goto errorExit } { - p.SetState(3632) + p.SetState(3634) p.Create_extension_opt_list() } @@ -45688,7 +45683,7 @@ func (p *PostgreSQLParser) Create_extension_opt_list() (localctx ICreate_extensi var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3637) + p.SetState(3639) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45697,11 +45692,11 @@ func (p *PostgreSQLParser) Create_extension_opt_list() (localctx ICreate_extensi for _la == PostgreSQLParserFROM || _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserSCHEMA || _la == PostgreSQLParserVERSION_P { { - p.SetState(3634) + p.SetState(3636) p.Create_extension_opt_item() } - p.SetState(3639) + p.SetState(3641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45854,7 +45849,7 @@ func (s *Create_extension_opt_itemContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extension_opt_itemContext) { localctx = NewCreate_extension_opt_itemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 322, PostgreSQLParserRULE_create_extension_opt_item) - p.SetState(3647) + p.SetState(3649) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45864,7 +45859,7 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi case PostgreSQLParserSCHEMA: p.EnterOuterAlt(localctx, 1) { - p.SetState(3640) + p.SetState(3642) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -45872,14 +45867,14 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi } } { - p.SetState(3641) + p.SetState(3643) p.Name() } case PostgreSQLParserVERSION_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(3642) + p.SetState(3644) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -45887,14 +45882,14 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi } } { - p.SetState(3643) + p.SetState(3645) p.Nonreservedword_or_sconst() } case PostgreSQLParserFROM: p.EnterOuterAlt(localctx, 3) { - p.SetState(3644) + p.SetState(3646) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -45902,14 +45897,14 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi } } { - p.SetState(3645) + p.SetState(3647) p.Nonreservedword_or_sconst() } case PostgreSQLParserCASCADE: p.EnterOuterAlt(localctx, 4) { - p.SetState(3646) + p.SetState(3648) p.Match(PostgreSQLParserCASCADE) if p.HasError() { // Recognition error - abort rule @@ -46064,7 +46059,7 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon p.EnterRule(localctx, 324, PostgreSQLParserRULE_alterextensionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3649) + p.SetState(3651) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46072,7 +46067,7 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon } } { - p.SetState(3650) + p.SetState(3652) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46080,11 +46075,11 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon } } { - p.SetState(3651) + p.SetState(3653) p.Name() } { - p.SetState(3652) + p.SetState(3654) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -46092,7 +46087,7 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon } } { - p.SetState(3653) + p.SetState(3655) p.Alter_extension_opt_list() } @@ -46233,7 +46228,7 @@ func (p *PostgreSQLParser) Alter_extension_opt_list() (localctx IAlter_extension var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3658) + p.SetState(3660) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46242,11 +46237,11 @@ func (p *PostgreSQLParser) Alter_extension_opt_list() (localctx IAlter_extension for _la == PostgreSQLParserTO { { - p.SetState(3655) + p.SetState(3657) p.Alter_extension_opt_item() } - p.SetState(3660) + p.SetState(3662) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46369,7 +46364,7 @@ func (p *PostgreSQLParser) Alter_extension_opt_item() (localctx IAlter_extension p.EnterRule(localctx, 328, PostgreSQLParserRULE_alter_extension_opt_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(3661) + p.SetState(3663) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -46377,7 +46372,7 @@ func (p *PostgreSQLParser) Alter_extension_opt_item() (localctx IAlter_extension } } { - p.SetState(3662) + p.SetState(3664) p.Nonreservedword_or_sconst() } @@ -46772,7 +46767,7 @@ func (s *AlterextensioncontentsstmtContext) Accept(visitor antlr.ParseTreeVisito func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensioncontentsstmtContext) { localctx = NewAlterextensioncontentsstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 330, PostgreSQLParserRULE_alterextensioncontentsstmt) - p.SetState(3768) + p.SetState(3770) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46782,7 +46777,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3664) + p.SetState(3666) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46790,7 +46785,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3665) + p.SetState(3667) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46798,26 +46793,26 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3666) + p.SetState(3668) p.Name() } { - p.SetState(3667) + p.SetState(3669) p.Add_drop() } { - p.SetState(3668) + p.SetState(3670) p.Object_type_name() } { - p.SetState(3669) + p.SetState(3671) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3671) + p.SetState(3673) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46825,7 +46820,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3672) + p.SetState(3674) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46833,26 +46828,26 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3673) + p.SetState(3675) p.Name() } { - p.SetState(3674) + p.SetState(3676) p.Add_drop() } { - p.SetState(3675) + p.SetState(3677) p.Object_type_any_name() } { - p.SetState(3676) + p.SetState(3678) p.Any_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3678) + p.SetState(3680) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46860,7 +46855,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3679) + p.SetState(3681) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46868,15 +46863,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3680) + p.SetState(3682) p.Name() } { - p.SetState(3681) + p.SetState(3683) p.Add_drop() } { - p.SetState(3682) + p.SetState(3684) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -46884,14 +46879,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3683) + p.SetState(3685) p.Aggregate_with_argtypes() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3685) + p.SetState(3687) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46899,7 +46894,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3686) + p.SetState(3688) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46907,15 +46902,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3687) + p.SetState(3689) p.Name() } { - p.SetState(3688) + p.SetState(3690) p.Add_drop() } { - p.SetState(3689) + p.SetState(3691) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -46923,7 +46918,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3690) + p.SetState(3692) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -46931,11 +46926,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3691) + p.SetState(3693) p.Typename() } { - p.SetState(3692) + p.SetState(3694) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -46943,11 +46938,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3693) + p.SetState(3695) p.Typename() } { - p.SetState(3694) + p.SetState(3696) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -46958,7 +46953,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(3696) + p.SetState(3698) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46966,7 +46961,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3697) + p.SetState(3699) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46974,15 +46969,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3698) + p.SetState(3700) p.Name() } { - p.SetState(3699) + p.SetState(3701) p.Add_drop() } { - p.SetState(3700) + p.SetState(3702) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -46990,14 +46985,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3701) + p.SetState(3703) p.Typename() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(3703) + p.SetState(3705) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47005,7 +47000,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3704) + p.SetState(3706) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47013,15 +47008,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3705) + p.SetState(3707) p.Name() } { - p.SetState(3706) + p.SetState(3708) p.Add_drop() } { - p.SetState(3707) + p.SetState(3709) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -47029,14 +47024,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3708) + p.SetState(3710) p.Function_with_argtypes() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(3710) + p.SetState(3712) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47044,7 +47039,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3711) + p.SetState(3713) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47052,15 +47047,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3712) + p.SetState(3714) p.Name() } { - p.SetState(3713) + p.SetState(3715) p.Add_drop() } { - p.SetState(3714) + p.SetState(3716) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -47068,14 +47063,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3715) + p.SetState(3717) p.Operator_with_argtypes() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(3717) + p.SetState(3719) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47083,7 +47078,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3718) + p.SetState(3720) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47091,15 +47086,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3719) + p.SetState(3721) p.Name() } { - p.SetState(3720) + p.SetState(3722) p.Add_drop() } { - p.SetState(3721) + p.SetState(3723) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -47107,7 +47102,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3722) + p.SetState(3724) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -47115,11 +47110,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3723) + p.SetState(3725) p.Any_name() } { - p.SetState(3724) + p.SetState(3726) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -47127,14 +47122,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3725) + p.SetState(3727) p.Name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(3727) + p.SetState(3729) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47142,7 +47137,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3728) + p.SetState(3730) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47150,15 +47145,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3729) + p.SetState(3731) p.Name() } { - p.SetState(3730) + p.SetState(3732) p.Add_drop() } { - p.SetState(3731) + p.SetState(3733) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -47166,7 +47161,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3732) + p.SetState(3734) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -47174,11 +47169,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3733) + p.SetState(3735) p.Any_name() } { - p.SetState(3734) + p.SetState(3736) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -47186,14 +47181,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3735) + p.SetState(3737) p.Name() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(3737) + p.SetState(3739) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47201,7 +47196,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3738) + p.SetState(3740) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47209,15 +47204,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3739) + p.SetState(3741) p.Name() } { - p.SetState(3740) + p.SetState(3742) p.Add_drop() } { - p.SetState(3741) + p.SetState(3743) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -47225,14 +47220,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3742) + p.SetState(3744) p.Function_with_argtypes() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(3744) + p.SetState(3746) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47240,7 +47235,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3745) + p.SetState(3747) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47248,15 +47243,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3746) + p.SetState(3748) p.Name() } { - p.SetState(3747) + p.SetState(3749) p.Add_drop() } { - p.SetState(3748) + p.SetState(3750) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -47264,14 +47259,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3749) + p.SetState(3751) p.Function_with_argtypes() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(3751) + p.SetState(3753) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47279,7 +47274,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3752) + p.SetState(3754) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47287,15 +47282,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3753) + p.SetState(3755) p.Name() } { - p.SetState(3754) + p.SetState(3756) p.Add_drop() } { - p.SetState(3755) + p.SetState(3757) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -47303,7 +47298,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3756) + p.SetState(3758) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -47311,11 +47306,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3757) + p.SetState(3759) p.Typename() } { - p.SetState(3758) + p.SetState(3760) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -47323,14 +47318,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3759) + p.SetState(3761) p.Name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(3761) + p.SetState(3763) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47338,7 +47333,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3762) + p.SetState(3764) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47346,15 +47341,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3763) + p.SetState(3765) p.Name() } { - p.SetState(3764) + p.SetState(3766) p.Add_drop() } { - p.SetState(3765) + p.SetState(3767) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -47362,7 +47357,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3766) + p.SetState(3768) p.Typename() } @@ -47536,7 +47531,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3770) + p.SetState(3772) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -47544,7 +47539,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3771) + p.SetState(3773) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -47552,7 +47547,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3772) + p.SetState(3774) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -47560,7 +47555,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3773) + p.SetState(3775) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -47568,10 +47563,10 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3774) + p.SetState(3776) p.Name() } - p.SetState(3776) + p.SetState(3778) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47580,12 +47575,12 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { if _la == PostgreSQLParserHANDLER || _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3775) + p.SetState(3777) p.Opt_fdw_options() } } - p.SetState(3779) + p.SetState(3781) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47594,7 +47589,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { if _la == PostgreSQLParserOPTIONS { { - p.SetState(3778) + p.SetState(3780) p.Create_generic_options() } @@ -47723,7 +47718,7 @@ func (s *Fdw_optionContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { localctx = NewFdw_optionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 334, PostgreSQLParserRULE_fdw_option) - p.SetState(3789) + p.SetState(3791) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47733,7 +47728,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3781) + p.SetState(3783) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -47741,14 +47736,14 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3782) + p.SetState(3784) p.Handler_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3783) + p.SetState(3785) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -47756,7 +47751,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3784) + p.SetState(3786) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -47767,7 +47762,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3785) + p.SetState(3787) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -47775,14 +47770,14 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3786) + p.SetState(3788) p.Handler_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3787) + p.SetState(3789) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -47790,7 +47785,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3788) + p.SetState(3790) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -47939,7 +47934,7 @@ func (p *PostgreSQLParser) Fdw_options() (localctx IFdw_optionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3792) + p.SetState(3794) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47948,11 +47943,11 @@ func (p *PostgreSQLParser) Fdw_options() (localctx IFdw_optionsContext) { for ok := true; ok; ok = _la == PostgreSQLParserHANDLER || _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3791) + p.SetState(3793) p.Fdw_option() } - p.SetState(3794) + p.SetState(3796) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48070,7 +48065,7 @@ func (p *PostgreSQLParser) Opt_fdw_options() (localctx IOpt_fdw_optionsContext) p.EnterRule(localctx, 338, PostgreSQLParserRULE_opt_fdw_options) p.EnterOuterAlt(localctx, 1) { - p.SetState(3796) + p.SetState(3798) p.Fdw_options() } @@ -48255,7 +48250,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { p.EnterRule(localctx, 340, PostgreSQLParserRULE_alterfdwstmt) var _la int - p.SetState(3815) + p.SetState(3817) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48265,7 +48260,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3798) + p.SetState(3800) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -48273,7 +48268,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3799) + p.SetState(3801) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -48281,7 +48276,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3800) + p.SetState(3802) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -48289,7 +48284,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3801) + p.SetState(3803) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -48297,10 +48292,10 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3802) + p.SetState(3804) p.Name() } - p.SetState(3804) + p.SetState(3806) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48309,20 +48304,20 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { if _la == PostgreSQLParserHANDLER || _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3803) + p.SetState(3805) p.Opt_fdw_options() } } { - p.SetState(3806) + p.SetState(3808) p.Alter_generic_options() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3808) + p.SetState(3810) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -48330,7 +48325,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3809) + p.SetState(3811) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -48338,7 +48333,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3810) + p.SetState(3812) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -48346,7 +48341,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3811) + p.SetState(3813) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -48354,11 +48349,11 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3812) + p.SetState(3814) p.Name() } { - p.SetState(3813) + p.SetState(3815) p.Fdw_options() } @@ -48491,7 +48486,7 @@ func (p *PostgreSQLParser) Create_generic_options() (localctx ICreate_generic_op p.EnterRule(localctx, 342, PostgreSQLParserRULE_create_generic_options) p.EnterOuterAlt(localctx, 1) { - p.SetState(3817) + p.SetState(3819) p.Match(PostgreSQLParserOPTIONS) if p.HasError() { // Recognition error - abort rule @@ -48499,7 +48494,7 @@ func (p *PostgreSQLParser) Create_generic_options() (localctx ICreate_generic_op } } { - p.SetState(3818) + p.SetState(3820) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -48507,11 +48502,11 @@ func (p *PostgreSQLParser) Create_generic_options() (localctx ICreate_generic_op } } { - p.SetState(3819) + p.SetState(3821) p.Generic_option_list() } { - p.SetState(3820) + p.SetState(3822) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -48667,10 +48662,10 @@ func (p *PostgreSQLParser) Generic_option_list() (localctx IGeneric_option_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(3822) + p.SetState(3824) p.Generic_option_elem() } - p.SetState(3827) + p.SetState(3829) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48679,7 +48674,7 @@ func (p *PostgreSQLParser) Generic_option_list() (localctx IGeneric_option_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(3823) + p.SetState(3825) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -48687,11 +48682,11 @@ func (p *PostgreSQLParser) Generic_option_list() (localctx IGeneric_option_listC } } { - p.SetState(3824) + p.SetState(3826) p.Generic_option_elem() } - p.SetState(3829) + p.SetState(3831) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48824,7 +48819,7 @@ func (p *PostgreSQLParser) Alter_generic_options() (localctx IAlter_generic_opti p.EnterRule(localctx, 346, PostgreSQLParserRULE_alter_generic_options) p.EnterOuterAlt(localctx, 1) { - p.SetState(3830) + p.SetState(3832) p.Match(PostgreSQLParserOPTIONS) if p.HasError() { // Recognition error - abort rule @@ -48832,7 +48827,7 @@ func (p *PostgreSQLParser) Alter_generic_options() (localctx IAlter_generic_opti } } { - p.SetState(3831) + p.SetState(3833) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -48840,11 +48835,11 @@ func (p *PostgreSQLParser) Alter_generic_options() (localctx IAlter_generic_opti } } { - p.SetState(3832) + p.SetState(3834) p.Alter_generic_option_list() } { - p.SetState(3833) + p.SetState(3835) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -49000,10 +48995,10 @@ func (p *PostgreSQLParser) Alter_generic_option_list() (localctx IAlter_generic_ p.EnterOuterAlt(localctx, 1) { - p.SetState(3835) + p.SetState(3837) p.Alter_generic_option_elem() } - p.SetState(3840) + p.SetState(3842) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49012,7 +49007,7 @@ func (p *PostgreSQLParser) Alter_generic_option_list() (localctx IAlter_generic_ for _la == PostgreSQLParserCOMMA { { - p.SetState(3836) + p.SetState(3838) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -49020,11 +49015,11 @@ func (p *PostgreSQLParser) Alter_generic_option_list() (localctx IAlter_generic_ } } { - p.SetState(3837) + p.SetState(3839) p.Alter_generic_option_elem() } - p.SetState(3842) + p.SetState(3844) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49172,7 +49167,7 @@ func (s *Alter_generic_option_elemContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_option_elemContext) { localctx = NewAlter_generic_option_elemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 350, PostgreSQLParserRULE_alter_generic_option_elem) - p.SetState(3850) + p.SetState(3852) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49182,14 +49177,14 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3843) + p.SetState(3845) p.Generic_option_elem() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3844) + p.SetState(3846) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -49197,14 +49192,14 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ } } { - p.SetState(3845) + p.SetState(3847) p.Generic_option_elem() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3846) + p.SetState(3848) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -49212,14 +49207,14 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ } } { - p.SetState(3847) + p.SetState(3849) p.Generic_option_elem() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3848) + p.SetState(3850) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -49227,7 +49222,7 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ } } { - p.SetState(3849) + p.SetState(3851) p.Generic_option_name() } @@ -49362,11 +49357,11 @@ func (p *PostgreSQLParser) Generic_option_elem() (localctx IGeneric_option_elemC p.EnterRule(localctx, 352, PostgreSQLParserRULE_generic_option_elem) p.EnterOuterAlt(localctx, 1) { - p.SetState(3852) + p.SetState(3854) p.Generic_option_name() } { - p.SetState(3853) + p.SetState(3855) p.Generic_option_arg() } @@ -49480,7 +49475,7 @@ func (p *PostgreSQLParser) Generic_option_name() (localctx IGeneric_option_nameC p.EnterRule(localctx, 354, PostgreSQLParserRULE_generic_option_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(3855) + p.SetState(3857) p.Collabel() } @@ -49594,7 +49589,7 @@ func (p *PostgreSQLParser) Generic_option_arg() (localctx IGeneric_option_argCon p.EnterRule(localctx, 356, PostgreSQLParserRULE_generic_option_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(3857) + p.SetState(3859) p.Sconst() } @@ -49825,7 +49820,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser p.EnterRule(localctx, 358, PostgreSQLParserRULE_createforeignserverstmt) var _la int - p.SetState(3894) + p.SetState(3896) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49835,7 +49830,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3859) + p.SetState(3861) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -49843,7 +49838,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3860) + p.SetState(3862) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -49851,10 +49846,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3861) + p.SetState(3863) p.Name() } - p.SetState(3863) + p.SetState(3865) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49863,12 +49858,12 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserTYPE_P { { - p.SetState(3862) + p.SetState(3864) p.Opt_type() } } - p.SetState(3866) + p.SetState(3868) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49877,13 +49872,13 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserVERSION_P { { - p.SetState(3865) + p.SetState(3867) p.Opt_foreign_server_version() } } { - p.SetState(3868) + p.SetState(3870) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -49891,7 +49886,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3869) + p.SetState(3871) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -49899,7 +49894,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3870) + p.SetState(3872) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -49907,10 +49902,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3871) + p.SetState(3873) p.Name() } - p.SetState(3873) + p.SetState(3875) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49919,7 +49914,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserOPTIONS { { - p.SetState(3872) + p.SetState(3874) p.Create_generic_options() } @@ -49928,7 +49923,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3875) + p.SetState(3877) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -49936,7 +49931,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3876) + p.SetState(3878) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -49944,7 +49939,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3877) + p.SetState(3879) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -49952,7 +49947,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3878) + p.SetState(3880) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -49960,7 +49955,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3879) + p.SetState(3881) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -49968,10 +49963,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3880) + p.SetState(3882) p.Name() } - p.SetState(3882) + p.SetState(3884) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49980,12 +49975,12 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserTYPE_P { { - p.SetState(3881) + p.SetState(3883) p.Opt_type() } } - p.SetState(3885) + p.SetState(3887) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49994,13 +49989,13 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserVERSION_P { { - p.SetState(3884) + p.SetState(3886) p.Opt_foreign_server_version() } } { - p.SetState(3887) + p.SetState(3889) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -50008,7 +50003,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3888) + p.SetState(3890) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -50016,7 +50011,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3889) + p.SetState(3891) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -50024,10 +50019,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3890) + p.SetState(3892) p.Name() } - p.SetState(3892) + p.SetState(3894) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50036,7 +50031,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserOPTIONS { { - p.SetState(3891) + p.SetState(3893) p.Create_generic_options() } @@ -50161,7 +50156,7 @@ func (p *PostgreSQLParser) Opt_type() (localctx IOpt_typeContext) { p.EnterRule(localctx, 360, PostgreSQLParserRULE_opt_type) p.EnterOuterAlt(localctx, 1) { - p.SetState(3896) + p.SetState(3898) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -50169,7 +50164,7 @@ func (p *PostgreSQLParser) Opt_type() (localctx IOpt_typeContext) { } } { - p.SetState(3897) + p.SetState(3899) p.Sconst() } @@ -50293,14 +50288,14 @@ func (p *PostgreSQLParser) Foreign_server_version() (localctx IForeign_server_ve p.EnterRule(localctx, 362, PostgreSQLParserRULE_foreign_server_version) p.EnterOuterAlt(localctx, 1) { - p.SetState(3899) + p.SetState(3901) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3902) + p.SetState(3904) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50309,13 +50304,13 @@ func (p *PostgreSQLParser) Foreign_server_version() (localctx IForeign_server_ve switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(3900) + p.SetState(3902) p.Sconst() } case PostgreSQLParserNULL_P: { - p.SetState(3901) + p.SetState(3903) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -50438,7 +50433,7 @@ func (p *PostgreSQLParser) Opt_foreign_server_version() (localctx IOpt_foreign_s p.EnterRule(localctx, 364, PostgreSQLParserRULE_opt_foreign_server_version) p.EnterOuterAlt(localctx, 1) { - p.SetState(3904) + p.SetState(3906) p.Foreign_server_version() } @@ -50598,7 +50593,7 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve p.EnterOuterAlt(localctx, 1) { - p.SetState(3906) + p.SetState(3908) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -50606,7 +50601,7 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve } } { - p.SetState(3907) + p.SetState(3909) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -50614,10 +50609,10 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve } } { - p.SetState(3908) + p.SetState(3910) p.Name() } - p.SetState(3914) + p.SetState(3916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50626,16 +50621,16 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPTIONS: { - p.SetState(3909) + p.SetState(3911) p.Alter_generic_options() } case PostgreSQLParserVERSION_P: { - p.SetState(3910) + p.SetState(3912) p.Foreign_server_version() } - p.SetState(3912) + p.SetState(3914) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50644,7 +50639,7 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve if _la == PostgreSQLParserOPTIONS { { - p.SetState(3911) + p.SetState(3913) p.Alter_generic_options() } @@ -50948,7 +50943,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl p.EnterRule(localctx, 368, PostgreSQLParserRULE_createforeigntablestmt) var _la int - p.SetState(3988) + p.SetState(3990) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50958,7 +50953,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3916) + p.SetState(3918) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -50966,7 +50961,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3917) + p.SetState(3919) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -50974,7 +50969,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3918) + p.SetState(3920) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -50982,18 +50977,18 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3919) + p.SetState(3921) p.Qualified_name() } { - p.SetState(3920) + p.SetState(3922) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3922) + p.SetState(3924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51002,20 +50997,20 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-6764340626663145472) != 0) || ((int64((_la-85)) & ^0x3f) == 0 && ((int64(1)<<(_la-85))&-7609957040837877631) != 0) || ((int64((_la-149)) & ^0x3f) == 0 && ((int64(1)<<(_la-149))&-1) != 0) || ((int64((_la-213)) & ^0x3f) == 0 && ((int64(1)<<(_la-213))&-648518346341351425) != 0) || ((int64((_la-277)) & ^0x3f) == 0 && ((int64(1)<<(_la-277))&-1) != 0) || ((int64((_la-341)) & ^0x3f) == 0 && ((int64(1)<<(_la-341))&-1) != 0) || ((int64((_la-405)) & ^0x3f) == 0 && ((int64(1)<<(_la-405))&-1) != 0) || ((int64((_la-469)) & ^0x3f) == 0 && ((int64(1)<<(_la-469))&-180143985111597121) != 0) || ((int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&-129) != 0) || ((int64((_la-597)) & ^0x3f) == 0 && ((int64(1)<<(_la-597))&2305843009213693951) != 0) || ((int64((_la-662)) & ^0x3f) == 0 && ((int64(1)<<(_la-662))&402653327) != 0) { { - p.SetState(3921) + p.SetState(3923) p.Opttableelementlist() } } { - p.SetState(3924) + p.SetState(3926) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3926) + p.SetState(3928) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51024,13 +51019,13 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserINHERITS { { - p.SetState(3925) + p.SetState(3927) p.Optinherit() } } { - p.SetState(3928) + p.SetState(3930) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51038,10 +51033,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3929) + p.SetState(3931) p.Name() } - p.SetState(3931) + p.SetState(3933) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51050,7 +51045,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3930) + p.SetState(3932) p.Create_generic_options() } @@ -51059,7 +51054,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3933) + p.SetState(3935) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -51067,7 +51062,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3934) + p.SetState(3936) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51075,7 +51070,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3935) + p.SetState(3937) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -51083,7 +51078,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3936) + p.SetState(3938) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -51091,7 +51086,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3937) + p.SetState(3939) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -51099,7 +51094,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3938) + p.SetState(3940) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -51107,18 +51102,18 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3939) + p.SetState(3941) p.Qualified_name() } { - p.SetState(3940) + p.SetState(3942) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3942) + p.SetState(3944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51127,20 +51122,20 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-6764340626663145472) != 0) || ((int64((_la-85)) & ^0x3f) == 0 && ((int64(1)<<(_la-85))&-7609957040837877631) != 0) || ((int64((_la-149)) & ^0x3f) == 0 && ((int64(1)<<(_la-149))&-1) != 0) || ((int64((_la-213)) & ^0x3f) == 0 && ((int64(1)<<(_la-213))&-648518346341351425) != 0) || ((int64((_la-277)) & ^0x3f) == 0 && ((int64(1)<<(_la-277))&-1) != 0) || ((int64((_la-341)) & ^0x3f) == 0 && ((int64(1)<<(_la-341))&-1) != 0) || ((int64((_la-405)) & ^0x3f) == 0 && ((int64(1)<<(_la-405))&-1) != 0) || ((int64((_la-469)) & ^0x3f) == 0 && ((int64(1)<<(_la-469))&-180143985111597121) != 0) || ((int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&-129) != 0) || ((int64((_la-597)) & ^0x3f) == 0 && ((int64(1)<<(_la-597))&2305843009213693951) != 0) || ((int64((_la-662)) & ^0x3f) == 0 && ((int64(1)<<(_la-662))&402653327) != 0) { { - p.SetState(3941) + p.SetState(3943) p.Opttableelementlist() } } { - p.SetState(3944) + p.SetState(3946) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3946) + p.SetState(3948) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51149,13 +51144,13 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserINHERITS { { - p.SetState(3945) + p.SetState(3947) p.Optinherit() } } { - p.SetState(3948) + p.SetState(3950) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51163,10 +51158,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3949) + p.SetState(3951) p.Name() } - p.SetState(3951) + p.SetState(3953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51175,7 +51170,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3950) + p.SetState(3952) p.Create_generic_options() } @@ -51184,7 +51179,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3953) + p.SetState(3955) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -51192,7 +51187,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3954) + p.SetState(3956) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51200,7 +51195,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3955) + p.SetState(3957) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -51208,11 +51203,11 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3956) + p.SetState(3958) p.Qualified_name() } { - p.SetState(3957) + p.SetState(3959) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -51220,7 +51215,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3958) + p.SetState(3960) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -51228,10 +51223,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3959) + p.SetState(3961) p.Qualified_name() } - p.SetState(3961) + p.SetState(3963) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51240,17 +51235,17 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3960) + p.SetState(3962) p.Opttypedtableelementlist() } } { - p.SetState(3963) + p.SetState(3965) p.Partitionboundspec() } { - p.SetState(3964) + p.SetState(3966) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51258,10 +51253,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3965) + p.SetState(3967) p.Name() } - p.SetState(3967) + p.SetState(3969) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51270,7 +51265,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3966) + p.SetState(3968) p.Create_generic_options() } @@ -51279,7 +51274,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3969) + p.SetState(3971) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -51287,7 +51282,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3970) + p.SetState(3972) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51295,7 +51290,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3971) + p.SetState(3973) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -51303,7 +51298,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3972) + p.SetState(3974) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -51311,7 +51306,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3973) + p.SetState(3975) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -51319,7 +51314,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3974) + p.SetState(3976) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -51327,11 +51322,11 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3975) + p.SetState(3977) p.Qualified_name() } { - p.SetState(3976) + p.SetState(3978) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -51339,7 +51334,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3977) + p.SetState(3979) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -51347,10 +51342,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3978) + p.SetState(3980) p.Qualified_name() } - p.SetState(3980) + p.SetState(3982) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51359,17 +51354,17 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3979) + p.SetState(3981) p.Opttypedtableelementlist() } } { - p.SetState(3982) + p.SetState(3984) p.Partitionboundspec() } { - p.SetState(3983) + p.SetState(3985) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51377,10 +51372,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3984) + p.SetState(3986) p.Name() } - p.SetState(3986) + p.SetState(3988) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51389,7 +51384,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3985) + p.SetState(3987) p.Create_generic_options() } @@ -51601,7 +51596,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch p.EnterOuterAlt(localctx, 1) { - p.SetState(3990) + p.SetState(3992) p.Match(PostgreSQLParserIMPORT_P) if p.HasError() { // Recognition error - abort rule @@ -51609,7 +51604,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3991) + p.SetState(3993) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51617,7 +51612,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3992) + p.SetState(3994) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -51625,10 +51620,10 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3993) + p.SetState(3995) p.Name() } - p.SetState(3995) + p.SetState(3997) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51637,13 +51632,13 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch if _la == PostgreSQLParserEXCEPT || _la == PostgreSQLParserLIMIT { { - p.SetState(3994) + p.SetState(3996) p.Import_qualification() } } { - p.SetState(3997) + p.SetState(3999) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -51651,7 +51646,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3998) + p.SetState(4000) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51659,11 +51654,11 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3999) + p.SetState(4001) p.Name() } { - p.SetState(4000) + p.SetState(4002) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -51671,10 +51666,10 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(4001) + p.SetState(4003) p.Name() } - p.SetState(4003) + p.SetState(4005) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51683,7 +51678,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch if _la == PostgreSQLParserOPTIONS { { - p.SetState(4002) + p.SetState(4004) p.Create_generic_options() } @@ -51795,7 +51790,7 @@ func (s *Import_qualification_typeContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualification_typeContext) { localctx = NewImport_qualification_typeContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 372, PostgreSQLParserRULE_import_qualification_type) - p.SetState(4008) + p.SetState(4010) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51805,7 +51800,7 @@ func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualifi case PostgreSQLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(4005) + p.SetState(4007) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -51813,7 +51808,7 @@ func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualifi } } { - p.SetState(4006) + p.SetState(4008) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -51824,7 +51819,7 @@ func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualifi case PostgreSQLParserEXCEPT: p.EnterOuterAlt(localctx, 2) { - p.SetState(4007) + p.SetState(4009) p.Match(PostgreSQLParserEXCEPT) if p.HasError() { // Recognition error - abort rule @@ -51974,11 +51969,11 @@ func (p *PostgreSQLParser) Import_qualification() (localctx IImport_qualificatio p.EnterRule(localctx, 374, PostgreSQLParserRULE_import_qualification) p.EnterOuterAlt(localctx, 1) { - p.SetState(4010) + p.SetState(4012) p.Import_qualification_type() } { - p.SetState(4011) + p.SetState(4013) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -51986,11 +51981,11 @@ func (p *PostgreSQLParser) Import_qualification() (localctx IImport_qualificatio } } { - p.SetState(4012) + p.SetState(4014) p.Relation_expr_list() } { - p.SetState(4013) + p.SetState(4015) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -52182,7 +52177,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings p.EnterRule(localctx, 376, PostgreSQLParserRULE_createusermappingstmt) var _la int - p.SetState(4038) + p.SetState(4040) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52192,7 +52187,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4015) + p.SetState(4017) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -52200,7 +52195,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4016) + p.SetState(4018) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52208,7 +52203,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4017) + p.SetState(4019) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52216,7 +52211,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4018) + p.SetState(4020) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52224,11 +52219,11 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4019) + p.SetState(4021) p.Auth_ident() } { - p.SetState(4020) + p.SetState(4022) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52236,10 +52231,10 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4021) + p.SetState(4023) p.Name() } - p.SetState(4023) + p.SetState(4025) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52248,7 +52243,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings if _la == PostgreSQLParserOPTIONS { { - p.SetState(4022) + p.SetState(4024) p.Create_generic_options() } @@ -52257,7 +52252,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4025) + p.SetState(4027) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -52265,7 +52260,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4026) + p.SetState(4028) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52273,7 +52268,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4027) + p.SetState(4029) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52281,7 +52276,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4028) + p.SetState(4030) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -52289,7 +52284,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4029) + p.SetState(4031) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -52297,7 +52292,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4030) + p.SetState(4032) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -52305,7 +52300,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4031) + p.SetState(4033) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52313,11 +52308,11 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4032) + p.SetState(4034) p.Auth_ident() } { - p.SetState(4033) + p.SetState(4035) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52325,10 +52320,10 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4034) + p.SetState(4036) p.Name() } - p.SetState(4036) + p.SetState(4038) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52337,7 +52332,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings if _la == PostgreSQLParserOPTIONS { { - p.SetState(4035) + p.SetState(4037) p.Create_generic_options() } @@ -52460,7 +52455,7 @@ func (s *Auth_identContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Auth_ident() (localctx IAuth_identContext) { localctx = NewAuth_identContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 378, PostgreSQLParserRULE_auth_ident) - p.SetState(4042) + p.SetState(4044) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52470,14 +52465,14 @@ func (p *PostgreSQLParser) Auth_ident() (localctx IAuth_identContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(4040) + p.SetState(4042) p.Rolespec() } case PostgreSQLParserUSER: p.EnterOuterAlt(localctx, 2) { - p.SetState(4041) + p.SetState(4043) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52650,7 +52645,7 @@ func (s *DropusermappingstmtContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtContext) { localctx = NewDropusermappingstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 380, PostgreSQLParserRULE_dropusermappingstmt) - p.SetState(4062) + p.SetState(4064) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52660,7 +52655,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4044) + p.SetState(4046) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -52668,7 +52663,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4045) + p.SetState(4047) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52676,7 +52671,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4046) + p.SetState(4048) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52684,7 +52679,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4047) + p.SetState(4049) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52692,11 +52687,11 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4048) + p.SetState(4050) p.Auth_ident() } { - p.SetState(4049) + p.SetState(4051) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52704,14 +52699,14 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4050) + p.SetState(4052) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4052) + p.SetState(4054) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -52719,7 +52714,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4053) + p.SetState(4055) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52727,7 +52722,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4054) + p.SetState(4056) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52735,7 +52730,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4055) + p.SetState(4057) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -52743,7 +52738,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4056) + p.SetState(4058) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -52751,7 +52746,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4057) + p.SetState(4059) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52759,11 +52754,11 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4058) + p.SetState(4060) p.Auth_ident() } { - p.SetState(4059) + p.SetState(4061) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52771,7 +52766,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4060) + p.SetState(4062) p.Name() } @@ -52948,7 +52943,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm p.EnterRule(localctx, 382, PostgreSQLParserRULE_alterusermappingstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4064) + p.SetState(4066) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -52956,7 +52951,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4065) + p.SetState(4067) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52964,7 +52959,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4066) + p.SetState(4068) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52972,7 +52967,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4067) + p.SetState(4069) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52980,11 +52975,11 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4068) + p.SetState(4070) p.Auth_ident() } { - p.SetState(4069) + p.SetState(4071) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52992,11 +52987,11 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4070) + p.SetState(4072) p.Name() } { - p.SetState(4071) + p.SetState(4073) p.Alter_generic_options() } @@ -53229,7 +53224,7 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(4073) + p.SetState(4075) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -53237,7 +53232,7 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext } } { - p.SetState(4074) + p.SetState(4076) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -53245,11 +53240,11 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext } } { - p.SetState(4075) + p.SetState(4077) p.Name() } { - p.SetState(4076) + p.SetState(4078) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -53257,10 +53252,10 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext } } { - p.SetState(4077) + p.SetState(4079) p.Qualified_name() } - p.SetState(4079) + p.SetState(4081) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53269,12 +53264,12 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserAS { { - p.SetState(4078) + p.SetState(4080) p.Rowsecuritydefaultpermissive() } } - p.SetState(4082) + p.SetState(4084) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53283,12 +53278,12 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserFOR { { - p.SetState(4081) + p.SetState(4083) p.Rowsecuritydefaultforcmd() } } - p.SetState(4085) + p.SetState(4087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53297,12 +53292,12 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserTO { { - p.SetState(4084) + p.SetState(4086) p.Rowsecuritydefaulttorole() } } - p.SetState(4088) + p.SetState(4090) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53311,17 +53306,17 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserUSING { { - p.SetState(4087) + p.SetState(4089) p.Rowsecurityoptionalexpr() } } - p.SetState(4091) + p.SetState(4093) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 301, p.GetParserRuleContext()) == 1 { { - p.SetState(4090) + p.SetState(4092) p.Rowsecurityoptionalwithcheck() } @@ -53524,7 +53519,7 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(4093) + p.SetState(4095) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -53532,7 +53527,7 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) } } { - p.SetState(4094) + p.SetState(4096) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -53540,11 +53535,11 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) } } { - p.SetState(4095) + p.SetState(4097) p.Name() } { - p.SetState(4096) + p.SetState(4098) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -53552,10 +53547,10 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) } } { - p.SetState(4097) + p.SetState(4099) p.Qualified_name() } - p.SetState(4099) + p.SetState(4101) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53564,12 +53559,12 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) if _la == PostgreSQLParserTO { { - p.SetState(4098) + p.SetState(4100) p.Rowsecurityoptionaltorole() } } - p.SetState(4102) + p.SetState(4104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53578,17 +53573,17 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) if _la == PostgreSQLParserUSING { { - p.SetState(4101) + p.SetState(4103) p.Rowsecurityoptionalexpr() } } - p.SetState(4105) + p.SetState(4107) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 304, p.GetParserRuleContext()) == 1 { { - p.SetState(4104) + p.SetState(4106) p.Rowsecurityoptionalwithcheck() } @@ -53721,7 +53716,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalexpr() (localctx IRowsecurityoptio p.EnterRule(localctx, 388, PostgreSQLParserRULE_rowsecurityoptionalexpr) p.EnterOuterAlt(localctx, 1) { - p.SetState(4107) + p.SetState(4109) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -53729,7 +53724,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalexpr() (localctx IRowsecurityoptio } } { - p.SetState(4108) + p.SetState(4110) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -53737,11 +53732,11 @@ func (p *PostgreSQLParser) Rowsecurityoptionalexpr() (localctx IRowsecurityoptio } } { - p.SetState(4109) + p.SetState(4111) p.A_expr() } { - p.SetState(4110) + p.SetState(4112) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -53879,7 +53874,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity p.EnterRule(localctx, 390, PostgreSQLParserRULE_rowsecurityoptionalwithcheck) p.EnterOuterAlt(localctx, 1) { - p.SetState(4112) + p.SetState(4114) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -53887,7 +53882,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity } } { - p.SetState(4113) + p.SetState(4115) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -53895,7 +53890,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity } } { - p.SetState(4114) + p.SetState(4116) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -53903,11 +53898,11 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity } } { - p.SetState(4115) + p.SetState(4117) p.A_expr() } { - p.SetState(4116) + p.SetState(4118) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -54030,7 +54025,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaulttorole() (localctx IRowsecuritydefa p.EnterRule(localctx, 392, PostgreSQLParserRULE_rowsecuritydefaulttorole) p.EnterOuterAlt(localctx, 1) { - p.SetState(4118) + p.SetState(4120) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -54038,7 +54033,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaulttorole() (localctx IRowsecuritydefa } } { - p.SetState(4119) + p.SetState(4121) p.Role_list() } @@ -54157,7 +54152,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionaltorole() (localctx IRowsecurityopt p.EnterRule(localctx, 394, PostgreSQLParserRULE_rowsecurityoptionaltorole) p.EnterOuterAlt(localctx, 1) { - p.SetState(4121) + p.SetState(4123) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -54165,7 +54160,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionaltorole() (localctx IRowsecurityopt } } { - p.SetState(4122) + p.SetState(4124) p.Role_list() } @@ -54284,7 +54279,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultpermissive() (localctx IRowsecurity p.EnterRule(localctx, 396, PostgreSQLParserRULE_rowsecuritydefaultpermissive) p.EnterOuterAlt(localctx, 1) { - p.SetState(4124) + p.SetState(4126) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -54292,7 +54287,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultpermissive() (localctx IRowsecurity } } { - p.SetState(4125) + p.SetState(4127) p.Identifier() } @@ -54411,7 +54406,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultforcmd() (localctx IRowsecuritydefa p.EnterRule(localctx, 398, PostgreSQLParserRULE_rowsecuritydefaultforcmd) p.EnterOuterAlt(localctx, 1) { - p.SetState(4127) + p.SetState(4129) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -54419,7 +54414,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultforcmd() (localctx IRowsecuritydefa } } { - p.SetState(4128) + p.SetState(4130) p.Row_security_cmd() } @@ -54543,7 +54538,7 @@ func (p *PostgreSQLParser) Row_security_cmd() (localctx IRow_security_cmdContext p.EnterOuterAlt(localctx, 1) { - p.SetState(4130) + p.SetState(4132) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserSELECT || _la == PostgreSQLParserDELETE_P || _la == PostgreSQLParserINSERT || _la == PostgreSQLParserUPDATE) { @@ -54723,7 +54718,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { p.EnterRule(localctx, 402, PostgreSQLParserRULE_createamstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4132) + p.SetState(4134) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -54731,7 +54726,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4133) + p.SetState(4135) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -54739,7 +54734,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4134) + p.SetState(4136) p.Match(PostgreSQLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -54747,11 +54742,11 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4135) + p.SetState(4137) p.Name() } { - p.SetState(4136) + p.SetState(4138) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -54759,11 +54754,11 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4137) + p.SetState(4139) p.Am_type() } { - p.SetState(4138) + p.SetState(4140) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -54771,7 +54766,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4139) + p.SetState(4141) p.Handler_name() } @@ -54880,7 +54875,7 @@ func (p *PostgreSQLParser) Am_type() (localctx IAm_typeContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4141) + p.SetState(4143) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTABLE || _la == PostgreSQLParserINDEX) { @@ -55243,7 +55238,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { p.EnterRule(localctx, 406, PostgreSQLParserRULE_createtrigstmt) var _la int - p.SetState(4191) + p.SetState(4193) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55253,7 +55248,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4143) + p.SetState(4145) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -55261,7 +55256,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4144) + p.SetState(4146) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -55269,19 +55264,19 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4145) + p.SetState(4147) p.Name() } { - p.SetState(4146) + p.SetState(4148) p.Triggeractiontime() } { - p.SetState(4147) + p.SetState(4149) p.Triggerevents() } { - p.SetState(4148) + p.SetState(4150) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -55289,10 +55284,10 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4149) + p.SetState(4151) p.Qualified_name() } - p.SetState(4151) + p.SetState(4153) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55301,12 +55296,12 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserREFERENCING { { - p.SetState(4150) + p.SetState(4152) p.Triggerreferencing() } } - p.SetState(4154) + p.SetState(4156) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55315,12 +55310,12 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(4153) + p.SetState(4155) p.Triggerforspec() } } - p.SetState(4157) + p.SetState(4159) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55329,13 +55324,13 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(4156) + p.SetState(4158) p.Triggerwhen() } } { - p.SetState(4159) + p.SetState(4161) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -55343,15 +55338,15 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4160) + p.SetState(4162) p.Function_or_procedure() } { - p.SetState(4161) + p.SetState(4163) p.Func_name() } { - p.SetState(4162) + p.SetState(4164) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55359,11 +55354,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4163) + p.SetState(4165) p.Triggerfuncargs() } { - p.SetState(4164) + p.SetState(4166) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55374,7 +55369,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4166) + p.SetState(4168) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -55382,7 +55377,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4167) + p.SetState(4169) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -55390,7 +55385,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4168) + p.SetState(4170) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -55398,11 +55393,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4169) + p.SetState(4171) p.Name() } { - p.SetState(4170) + p.SetState(4172) p.Match(PostgreSQLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -55410,11 +55405,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4171) + p.SetState(4173) p.Triggerevents() } { - p.SetState(4172) + p.SetState(4174) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -55422,10 +55417,10 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4173) + p.SetState(4175) p.Qualified_name() } - p.SetState(4175) + p.SetState(4177) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55434,17 +55429,17 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserFROM { { - p.SetState(4174) + p.SetState(4176) p.Optconstrfromtable() } } { - p.SetState(4177) + p.SetState(4179) p.Constraintattributespec() } { - p.SetState(4178) + p.SetState(4180) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -55452,7 +55447,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4179) + p.SetState(4181) p.Match(PostgreSQLParserEACH) if p.HasError() { // Recognition error - abort rule @@ -55460,14 +55455,14 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4180) + p.SetState(4182) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4182) + p.SetState(4184) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55476,13 +55471,13 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(4181) + p.SetState(4183) p.Triggerwhen() } } { - p.SetState(4184) + p.SetState(4186) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -55490,15 +55485,15 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4185) + p.SetState(4187) p.Function_or_procedure() } { - p.SetState(4186) + p.SetState(4188) p.Func_name() } { - p.SetState(4187) + p.SetState(4189) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55506,11 +55501,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4188) + p.SetState(4190) p.Triggerfuncargs() } { - p.SetState(4189) + p.SetState(4191) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55633,7 +55628,7 @@ func (s *TriggeractiontimeContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeContext) { localctx = NewTriggeractiontimeContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 408, PostgreSQLParserRULE_triggeractiontime) - p.SetState(4197) + p.SetState(4199) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55643,7 +55638,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte case PostgreSQLParserBEFORE: p.EnterOuterAlt(localctx, 1) { - p.SetState(4193) + p.SetState(4195) p.Match(PostgreSQLParserBEFORE) if p.HasError() { // Recognition error - abort rule @@ -55654,7 +55649,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte case PostgreSQLParserAFTER: p.EnterOuterAlt(localctx, 2) { - p.SetState(4194) + p.SetState(4196) p.Match(PostgreSQLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -55665,7 +55660,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte case PostgreSQLParserINSTEAD: p.EnterOuterAlt(localctx, 3) { - p.SetState(4195) + p.SetState(4197) p.Match(PostgreSQLParserINSTEAD) if p.HasError() { // Recognition error - abort rule @@ -55673,7 +55668,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte } } { - p.SetState(4196) + p.SetState(4198) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -55834,10 +55829,10 @@ func (p *PostgreSQLParser) Triggerevents() (localctx ITriggereventsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4199) + p.SetState(4201) p.Triggeroneevent() } - p.SetState(4204) + p.SetState(4206) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55846,7 +55841,7 @@ func (p *PostgreSQLParser) Triggerevents() (localctx ITriggereventsContext) { for _la == PostgreSQLParserOR { { - p.SetState(4200) + p.SetState(4202) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -55854,11 +55849,11 @@ func (p *PostgreSQLParser) Triggerevents() (localctx ITriggereventsContext) { } } { - p.SetState(4201) + p.SetState(4203) p.Triggeroneevent() } - p.SetState(4206) + p.SetState(4208) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55999,7 +55994,7 @@ func (s *TriggeroneeventContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) { localctx = NewTriggeroneeventContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 412, PostgreSQLParserRULE_triggeroneevent) - p.SetState(4214) + p.SetState(4216) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56009,7 +56004,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4207) + p.SetState(4209) p.Match(PostgreSQLParserINSERT) if p.HasError() { // Recognition error - abort rule @@ -56020,7 +56015,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4208) + p.SetState(4210) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -56031,7 +56026,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4209) + p.SetState(4211) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -56042,7 +56037,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4210) + p.SetState(4212) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -56050,7 +56045,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) } } { - p.SetState(4211) + p.SetState(4213) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -56058,14 +56053,14 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) } } { - p.SetState(4212) + p.SetState(4214) p.Columnlist() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4213) + p.SetState(4215) p.Match(PostgreSQLParserTRUNCATE) if p.HasError() { // Recognition error - abort rule @@ -56192,7 +56187,7 @@ func (p *PostgreSQLParser) Triggerreferencing() (localctx ITriggerreferencingCon p.EnterRule(localctx, 414, PostgreSQLParserRULE_triggerreferencing) p.EnterOuterAlt(localctx, 1) { - p.SetState(4216) + p.SetState(4218) p.Match(PostgreSQLParserREFERENCING) if p.HasError() { // Recognition error - abort rule @@ -56200,7 +56195,7 @@ func (p *PostgreSQLParser) Triggerreferencing() (localctx ITriggerreferencingCon } } { - p.SetState(4217) + p.SetState(4219) p.Triggertransitions() } @@ -56341,7 +56336,7 @@ func (p *PostgreSQLParser) Triggertransitions() (localctx ITriggertransitionsCon var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4220) + p.SetState(4222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56350,11 +56345,11 @@ func (p *PostgreSQLParser) Triggertransitions() (localctx ITriggertransitionsCon for ok := true; ok; ok = _la == PostgreSQLParserNEW || _la == PostgreSQLParserOLD { { - p.SetState(4219) + p.SetState(4221) p.Triggertransition() } - p.SetState(4222) + p.SetState(4224) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56525,14 +56520,14 @@ func (p *PostgreSQLParser) Triggertransition() (localctx ITriggertransitionConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4224) + p.SetState(4226) p.Transitionoldornew() } { - p.SetState(4225) + p.SetState(4227) p.Transitionrowortable() } - p.SetState(4227) + p.SetState(4229) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56541,13 +56536,13 @@ func (p *PostgreSQLParser) Triggertransition() (localctx ITriggertransitionConte if _la == PostgreSQLParserAS { { - p.SetState(4226) + p.SetState(4228) p.Opt_as() } } { - p.SetState(4229) + p.SetState(4231) p.Transitionrelname() } @@ -56656,7 +56651,7 @@ func (p *PostgreSQLParser) Transitionoldornew() (localctx ITransitionoldornewCon p.EnterOuterAlt(localctx, 1) { - p.SetState(4231) + p.SetState(4233) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserNEW || _la == PostgreSQLParserOLD) { @@ -56772,7 +56767,7 @@ func (p *PostgreSQLParser) Transitionrowortable() (localctx ITransitionrowortabl p.EnterOuterAlt(localctx, 1) { - p.SetState(4233) + p.SetState(4235) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTABLE || _la == PostgreSQLParserROW) { @@ -56893,7 +56888,7 @@ func (p *PostgreSQLParser) Transitionrelname() (localctx ITransitionrelnameConte p.EnterRule(localctx, 424, PostgreSQLParserRULE_transitionrelname) p.EnterOuterAlt(localctx, 1) { - p.SetState(4235) + p.SetState(4237) p.Colid() } @@ -57031,14 +57026,14 @@ func (p *PostgreSQLParser) Triggerforspec() (localctx ITriggerforspecContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4237) + p.SetState(4239) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4239) + p.SetState(4241) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57047,13 +57042,13 @@ func (p *PostgreSQLParser) Triggerforspec() (localctx ITriggerforspecContext) { if _la == PostgreSQLParserEACH { { - p.SetState(4238) + p.SetState(4240) p.Triggerforopteach() } } { - p.SetState(4241) + p.SetState(4243) p.Triggerfortype() } @@ -57155,7 +57150,7 @@ func (p *PostgreSQLParser) Triggerforopteach() (localctx ITriggerforopteachConte p.EnterRule(localctx, 428, PostgreSQLParserRULE_triggerforopteach) p.EnterOuterAlt(localctx, 1) { - p.SetState(4243) + p.SetState(4245) p.Match(PostgreSQLParserEACH) if p.HasError() { // Recognition error - abort rule @@ -57268,7 +57263,7 @@ func (p *PostgreSQLParser) Triggerfortype() (localctx ITriggerfortypeContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4245) + p.SetState(4247) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserSTATEMENT || _la == PostgreSQLParserROW) { @@ -57404,7 +57399,7 @@ func (p *PostgreSQLParser) Triggerwhen() (localctx ITriggerwhenContext) { p.EnterRule(localctx, 432, PostgreSQLParserRULE_triggerwhen) p.EnterOuterAlt(localctx, 1) { - p.SetState(4247) + p.SetState(4249) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -57412,7 +57407,7 @@ func (p *PostgreSQLParser) Triggerwhen() (localctx ITriggerwhenContext) { } } { - p.SetState(4248) + p.SetState(4250) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -57420,11 +57415,11 @@ func (p *PostgreSQLParser) Triggerwhen() (localctx ITriggerwhenContext) { } } { - p.SetState(4249) + p.SetState(4251) p.A_expr() } { - p.SetState(4250) + p.SetState(4252) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -57537,7 +57532,7 @@ func (p *PostgreSQLParser) Function_or_procedure() (localctx IFunction_or_proced p.EnterOuterAlt(localctx, 1) { - p.SetState(4252) + p.SetState(4254) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTION || _la == PostgreSQLParserPROCEDURE) { @@ -57695,7 +57690,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4256) + p.SetState(4258) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57704,7 +57699,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) switch p.GetTokenStream().LA(1) { case PostgreSQLParserALL, PostgreSQLParserANALYSE, PostgreSQLParserANALYZE, PostgreSQLParserAND, PostgreSQLParserANY, PostgreSQLParserARRAY, PostgreSQLParserAS, PostgreSQLParserASC, PostgreSQLParserASYMMETRIC, PostgreSQLParserBOTH, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCHECK, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCREATE, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDEFERRABLE, PostgreSQLParserDESC, PostgreSQLParserDISTINCT, PostgreSQLParserDO, PostgreSQLParserELSE, PostgreSQLParserEXCEPT, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserFOR, PostgreSQLParserFOREIGN, PostgreSQLParserFROM, PostgreSQLParserGRANT, PostgreSQLParserGROUP_P, PostgreSQLParserHAVING, PostgreSQLParserIN_P, PostgreSQLParserINITIALLY, PostgreSQLParserINTERSECT, PostgreSQLParserLATERAL_P, PostgreSQLParserLEADING, PostgreSQLParserLIMIT, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserOFFSET, PostgreSQLParserON, PostgreSQLParserONLY, PostgreSQLParserOR, PostgreSQLParserORDER, PostgreSQLParserPLACING, PostgreSQLParserPRIMARY, PostgreSQLParserREFERENCES, PostgreSQLParserRETURNING, PostgreSQLParserSELECT, PostgreSQLParserSESSION_USER, PostgreSQLParserSOME, PostgreSQLParserSYMMETRIC, PostgreSQLParserTABLE, PostgreSQLParserTHEN, PostgreSQLParserTO, PostgreSQLParserTRAILING, PostgreSQLParserTRUE_P, PostgreSQLParserUNION, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserUSING, PostgreSQLParserVARIADIC, PostgreSQLParserWHEN, PostgreSQLParserWHERE, PostgreSQLParserWINDOW, PostgreSQLParserWITH, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserEND_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserIntegral, PostgreSQLParserNumeric, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: { - p.SetState(4254) + p.SetState(4256) p.Triggerfuncarg() } @@ -57714,7 +57709,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(4262) + p.SetState(4264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57723,7 +57718,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(4258) + p.SetState(4260) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -57731,11 +57726,11 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) } } { - p.SetState(4259) + p.SetState(4261) p.Triggerfuncarg() } - p.SetState(4264) + p.SetState(4266) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57902,7 +57897,7 @@ func (s *TriggerfuncargContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Triggerfuncarg() (localctx ITriggerfuncargContext) { localctx = NewTriggerfuncargContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 438, PostgreSQLParserRULE_triggerfuncarg) - p.SetState(4269) + p.SetState(4271) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57912,28 +57907,28 @@ func (p *PostgreSQLParser) Triggerfuncarg() (localctx ITriggerfuncargContext) { case PostgreSQLParserIntegral: p.EnterOuterAlt(localctx, 1) { - p.SetState(4265) + p.SetState(4267) p.Iconst() } case PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(4266) + p.SetState(4268) p.Fconst() } case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 3) { - p.SetState(4267) + p.SetState(4269) p.Sconst() } case PostgreSQLParserALL, PostgreSQLParserANALYSE, PostgreSQLParserANALYZE, PostgreSQLParserAND, PostgreSQLParserANY, PostgreSQLParserARRAY, PostgreSQLParserAS, PostgreSQLParserASC, PostgreSQLParserASYMMETRIC, PostgreSQLParserBOTH, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCHECK, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCREATE, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDEFERRABLE, PostgreSQLParserDESC, PostgreSQLParserDISTINCT, PostgreSQLParserDO, PostgreSQLParserELSE, PostgreSQLParserEXCEPT, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserFOR, PostgreSQLParserFOREIGN, PostgreSQLParserFROM, PostgreSQLParserGRANT, PostgreSQLParserGROUP_P, PostgreSQLParserHAVING, PostgreSQLParserIN_P, PostgreSQLParserINITIALLY, PostgreSQLParserINTERSECT, PostgreSQLParserLATERAL_P, PostgreSQLParserLEADING, PostgreSQLParserLIMIT, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserOFFSET, PostgreSQLParserON, PostgreSQLParserONLY, PostgreSQLParserOR, PostgreSQLParserORDER, PostgreSQLParserPLACING, PostgreSQLParserPRIMARY, PostgreSQLParserREFERENCES, PostgreSQLParserRETURNING, PostgreSQLParserSELECT, PostgreSQLParserSESSION_USER, PostgreSQLParserSOME, PostgreSQLParserSYMMETRIC, PostgreSQLParserTABLE, PostgreSQLParserTHEN, PostgreSQLParserTO, PostgreSQLParserTRAILING, PostgreSQLParserTRUE_P, PostgreSQLParserUNION, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserUSING, PostgreSQLParserVARIADIC, PostgreSQLParserWHEN, PostgreSQLParserWHERE, PostgreSQLParserWINDOW, PostgreSQLParserWITH, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserEND_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 4) { - p.SetState(4268) + p.SetState(4270) p.Collabel() } @@ -58057,7 +58052,7 @@ func (p *PostgreSQLParser) Optconstrfromtable() (localctx IOptconstrfromtableCon p.EnterRule(localctx, 440, PostgreSQLParserRULE_optconstrfromtable) p.EnterOuterAlt(localctx, 1) { - p.SetState(4271) + p.SetState(4273) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -58065,7 +58060,7 @@ func (p *PostgreSQLParser) Optconstrfromtable() (localctx IOptconstrfromtableCon } } { - p.SetState(4272) + p.SetState(4274) p.Qualified_name() } @@ -58206,7 +58201,7 @@ func (p *PostgreSQLParser) Constraintattributespec() (localctx IConstraintattrib var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4277) + p.SetState(4279) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58215,11 +58210,11 @@ func (p *PostgreSQLParser) Constraintattributespec() (localctx IConstraintattrib for ((int64((_la-54)) & ^0x3f) == 0 && ((int64(1)<<(_la-54))&8421377) != 0) || _la == PostgreSQLParserNO { { - p.SetState(4274) + p.SetState(4276) p.ConstraintattributeElem() } - p.SetState(4279) + p.SetState(4281) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58358,7 +58353,7 @@ func (s *ConstraintattributeElemContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattributeElemContext) { localctx = NewConstraintattributeElemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 444, PostgreSQLParserRULE_constraintattributeElem) - p.SetState(4291) + p.SetState(4293) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58368,7 +58363,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4280) + p.SetState(4282) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -58376,7 +58371,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4281) + p.SetState(4283) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -58387,7 +58382,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4282) + p.SetState(4284) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -58398,7 +58393,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4283) + p.SetState(4285) p.Match(PostgreSQLParserINITIALLY) if p.HasError() { // Recognition error - abort rule @@ -58406,7 +58401,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4284) + p.SetState(4286) p.Match(PostgreSQLParserIMMEDIATE) if p.HasError() { // Recognition error - abort rule @@ -58417,7 +58412,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4285) + p.SetState(4287) p.Match(PostgreSQLParserINITIALLY) if p.HasError() { // Recognition error - abort rule @@ -58425,7 +58420,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4286) + p.SetState(4288) p.Match(PostgreSQLParserDEFERRED) if p.HasError() { // Recognition error - abort rule @@ -58436,7 +58431,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4287) + p.SetState(4289) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -58444,7 +58439,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4288) + p.SetState(4290) p.Match(PostgreSQLParserVALID) if p.HasError() { // Recognition error - abort rule @@ -58455,7 +58450,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4289) + p.SetState(4291) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -58463,7 +58458,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4290) + p.SetState(4292) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -58691,7 +58686,7 @@ func (s *CreateeventtrigstmtContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtContext) { localctx = NewCreateeventtrigstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 446, PostgreSQLParserRULE_createeventtrigstmt) - p.SetState(4319) + p.SetState(4321) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58701,7 +58696,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4293) + p.SetState(4295) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -58709,7 +58704,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4294) + p.SetState(4296) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -58717,7 +58712,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4295) + p.SetState(4297) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -58725,11 +58720,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4296) + p.SetState(4298) p.Name() } { - p.SetState(4297) + p.SetState(4299) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -58737,11 +58732,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4298) + p.SetState(4300) p.Collabel() } { - p.SetState(4299) + p.SetState(4301) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -58749,15 +58744,15 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4300) + p.SetState(4302) p.Function_or_procedure() } { - p.SetState(4301) + p.SetState(4303) p.Func_name() } { - p.SetState(4302) + p.SetState(4304) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -58765,7 +58760,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4303) + p.SetState(4305) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -58776,7 +58771,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4305) + p.SetState(4307) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -58784,7 +58779,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4306) + p.SetState(4308) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -58792,7 +58787,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4307) + p.SetState(4309) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -58800,11 +58795,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4308) + p.SetState(4310) p.Name() } { - p.SetState(4309) + p.SetState(4311) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -58812,11 +58807,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4310) + p.SetState(4312) p.Collabel() } { - p.SetState(4311) + p.SetState(4313) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -58824,11 +58819,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4312) + p.SetState(4314) p.Event_trigger_when_list() } { - p.SetState(4313) + p.SetState(4315) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -58836,15 +58831,15 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4314) + p.SetState(4316) p.Function_or_procedure() } { - p.SetState(4315) + p.SetState(4317) p.Func_name() } { - p.SetState(4316) + p.SetState(4318) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -58852,7 +58847,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4317) + p.SetState(4319) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59012,10 +59007,10 @@ func (p *PostgreSQLParser) Event_trigger_when_list() (localctx IEvent_trigger_wh p.EnterOuterAlt(localctx, 1) { - p.SetState(4321) + p.SetState(4323) p.Event_trigger_when_item() } - p.SetState(4326) + p.SetState(4328) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59024,7 +59019,7 @@ func (p *PostgreSQLParser) Event_trigger_when_list() (localctx IEvent_trigger_wh for _la == PostgreSQLParserAND { { - p.SetState(4322) + p.SetState(4324) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -59032,11 +59027,11 @@ func (p *PostgreSQLParser) Event_trigger_when_list() (localctx IEvent_trigger_wh } } { - p.SetState(4323) + p.SetState(4325) p.Event_trigger_when_item() } - p.SetState(4328) + p.SetState(4330) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59186,11 +59181,11 @@ func (p *PostgreSQLParser) Event_trigger_when_item() (localctx IEvent_trigger_wh p.EnterRule(localctx, 450, PostgreSQLParserRULE_event_trigger_when_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(4329) + p.SetState(4331) p.Colid() } { - p.SetState(4330) + p.SetState(4332) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -59198,7 +59193,7 @@ func (p *PostgreSQLParser) Event_trigger_when_item() (localctx IEvent_trigger_wh } } { - p.SetState(4331) + p.SetState(4333) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59206,11 +59201,11 @@ func (p *PostgreSQLParser) Event_trigger_when_item() (localctx IEvent_trigger_wh } } { - p.SetState(4332) + p.SetState(4334) p.Event_trigger_value_list() } { - p.SetState(4333) + p.SetState(4335) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59366,10 +59361,10 @@ func (p *PostgreSQLParser) Event_trigger_value_list() (localctx IEvent_trigger_v p.EnterOuterAlt(localctx, 1) { - p.SetState(4335) + p.SetState(4337) p.Sconst() } - p.SetState(4340) + p.SetState(4342) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59378,7 +59373,7 @@ func (p *PostgreSQLParser) Event_trigger_value_list() (localctx IEvent_trigger_v for _la == PostgreSQLParserCOMMA { { - p.SetState(4336) + p.SetState(4338) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -59386,11 +59381,11 @@ func (p *PostgreSQLParser) Event_trigger_value_list() (localctx IEvent_trigger_v } } { - p.SetState(4337) + p.SetState(4339) p.Sconst() } - p.SetState(4342) + p.SetState(4344) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59540,7 +59535,7 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon p.EnterRule(localctx, 454, PostgreSQLParserRULE_altereventtrigstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4343) + p.SetState(4345) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -59548,7 +59543,7 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon } } { - p.SetState(4344) + p.SetState(4346) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -59556,7 +59551,7 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon } } { - p.SetState(4345) + p.SetState(4347) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -59564,11 +59559,11 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon } } { - p.SetState(4346) + p.SetState(4348) p.Name() } { - p.SetState(4347) + p.SetState(4349) p.Enable_trigger() } @@ -59683,7 +59678,7 @@ func (s *Enable_triggerContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { localctx = NewEnable_triggerContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 456, PostgreSQLParserRULE_enable_trigger) - p.SetState(4355) + p.SetState(4357) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59693,7 +59688,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4349) + p.SetState(4351) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59704,7 +59699,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4350) + p.SetState(4352) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59712,7 +59707,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { } } { - p.SetState(4351) + p.SetState(4353) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -59723,7 +59718,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4352) + p.SetState(4354) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59731,7 +59726,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { } } { - p.SetState(4353) + p.SetState(4355) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -59742,7 +59737,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4354) + p.SetState(4356) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59923,7 +59918,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC p.EnterRule(localctx, 458, PostgreSQLParserRULE_createassertionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4357) + p.SetState(4359) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -59931,7 +59926,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4358) + p.SetState(4360) p.Match(PostgreSQLParserASSERTION) if p.HasError() { // Recognition error - abort rule @@ -59939,11 +59934,11 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4359) + p.SetState(4361) p.Any_name() } { - p.SetState(4360) + p.SetState(4362) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -59951,7 +59946,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4361) + p.SetState(4363) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59959,11 +59954,11 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4362) + p.SetState(4364) p.A_expr() } { - p.SetState(4363) + p.SetState(4365) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59971,7 +59966,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4364) + p.SetState(4366) p.Constraintattributespec() } @@ -60347,7 +60342,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { p.EnterRule(localctx, 460, PostgreSQLParserRULE_definestmt) var _la int - p.SetState(4480) + p.SetState(4482) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60357,14 +60352,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4366) + p.SetState(4368) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4368) + p.SetState(4370) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60373,13 +60368,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(4367) + p.SetState(4369) p.Opt_or_replace() } } { - p.SetState(4370) + p.SetState(4372) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -60387,29 +60382,29 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4371) + p.SetState(4373) p.Func_name() } { - p.SetState(4372) + p.SetState(4374) p.Aggr_args() } { - p.SetState(4373) + p.SetState(4375) p.Definition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4375) + p.SetState(4377) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4377) + p.SetState(4379) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60418,13 +60413,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(4376) + p.SetState(4378) p.Opt_or_replace() } } { - p.SetState(4379) + p.SetState(4381) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -60432,18 +60427,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4380) + p.SetState(4382) p.Func_name() } { - p.SetState(4381) + p.SetState(4383) p.Old_aggr_definition() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4383) + p.SetState(4385) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60451,7 +60446,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4384) + p.SetState(4386) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -60459,18 +60454,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4385) + p.SetState(4387) p.Any_operator() } { - p.SetState(4386) + p.SetState(4388) p.Definition() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4388) + p.SetState(4390) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60478,7 +60473,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4389) + p.SetState(4391) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60486,18 +60481,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4390) + p.SetState(4392) p.Any_name() } { - p.SetState(4391) + p.SetState(4393) p.Definition() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4393) + p.SetState(4395) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60505,7 +60500,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4394) + p.SetState(4396) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60513,14 +60508,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4395) + p.SetState(4397) p.Any_name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4396) + p.SetState(4398) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60528,7 +60523,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4397) + p.SetState(4399) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60536,11 +60531,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4398) + p.SetState(4400) p.Any_name() } { - p.SetState(4399) + p.SetState(4401) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -60548,14 +60543,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4400) + p.SetState(4402) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4402) + p.SetState(4404) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60564,13 +60559,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(4401) + p.SetState(4403) p.Opttablefuncelementlist() } } { - p.SetState(4404) + p.SetState(4406) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -60581,7 +60576,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4406) + p.SetState(4408) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60589,7 +60584,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4407) + p.SetState(4409) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60597,11 +60592,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4408) + p.SetState(4410) p.Any_name() } { - p.SetState(4409) + p.SetState(4411) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -60609,7 +60604,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4410) + p.SetState(4412) p.Match(PostgreSQLParserENUM_P) if p.HasError() { // Recognition error - abort rule @@ -60617,14 +60612,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4411) + p.SetState(4413) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4413) + p.SetState(4415) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60633,13 +60628,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if (int64((_la-673)) & ^0x3f) == 0 && ((int64(1)<<(_la-673))&67108885) != 0 { { - p.SetState(4412) + p.SetState(4414) p.Opt_enum_val_list() } } { - p.SetState(4415) + p.SetState(4417) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -60650,7 +60645,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4417) + p.SetState(4419) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60658,7 +60653,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4418) + p.SetState(4420) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60666,11 +60661,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4419) + p.SetState(4421) p.Any_name() } { - p.SetState(4420) + p.SetState(4422) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -60678,7 +60673,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4421) + p.SetState(4423) p.Match(PostgreSQLParserRANGE) if p.HasError() { // Recognition error - abort rule @@ -60686,14 +60681,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4422) + p.SetState(4424) p.Definition() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4424) + p.SetState(4426) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60701,7 +60696,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4425) + p.SetState(4427) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60709,7 +60704,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4426) + p.SetState(4428) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60717,7 +60712,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4427) + p.SetState(4429) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -60725,18 +60720,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4428) + p.SetState(4430) p.Any_name() } { - p.SetState(4429) + p.SetState(4431) p.Definition() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4431) + p.SetState(4433) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60744,7 +60739,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4432) + p.SetState(4434) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60752,7 +60747,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4433) + p.SetState(4435) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60760,7 +60755,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4434) + p.SetState(4436) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -60768,18 +60763,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4435) + p.SetState(4437) p.Any_name() } { - p.SetState(4436) + p.SetState(4438) p.Definition() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4438) + p.SetState(4440) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60787,7 +60782,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4439) + p.SetState(4441) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60795,7 +60790,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4440) + p.SetState(4442) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60803,7 +60798,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4441) + p.SetState(4443) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -60811,18 +60806,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4442) + p.SetState(4444) p.Any_name() } { - p.SetState(4443) + p.SetState(4445) p.Definition() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4445) + p.SetState(4447) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60830,7 +60825,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4446) + p.SetState(4448) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60838,7 +60833,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4447) + p.SetState(4449) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60846,7 +60841,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4448) + p.SetState(4450) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -60854,18 +60849,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4449) + p.SetState(4451) p.Any_name() } { - p.SetState(4450) + p.SetState(4452) p.Definition() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(4452) + p.SetState(4454) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60873,7 +60868,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4453) + p.SetState(4455) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60881,18 +60876,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4454) + p.SetState(4456) p.Any_name() } { - p.SetState(4455) + p.SetState(4457) p.Definition() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(4457) + p.SetState(4459) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60900,7 +60895,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4458) + p.SetState(4460) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60908,7 +60903,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4459) + p.SetState(4461) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -60916,7 +60911,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4460) + p.SetState(4462) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -60924,7 +60919,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4461) + p.SetState(4463) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -60932,18 +60927,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4462) + p.SetState(4464) p.Any_name() } { - p.SetState(4463) + p.SetState(4465) p.Definition() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(4465) + p.SetState(4467) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60951,7 +60946,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4466) + p.SetState(4468) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60959,11 +60954,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4467) + p.SetState(4469) p.Any_name() } { - p.SetState(4468) + p.SetState(4470) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -60971,14 +60966,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4469) + p.SetState(4471) p.Any_name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(4471) + p.SetState(4473) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60986,7 +60981,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4472) + p.SetState(4474) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60994,7 +60989,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4473) + p.SetState(4475) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -61002,7 +60997,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4474) + p.SetState(4476) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -61010,7 +61005,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4475) + p.SetState(4477) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -61018,11 +61013,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4476) + p.SetState(4478) p.Any_name() } { - p.SetState(4477) + p.SetState(4479) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -61030,7 +61025,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4478) + p.SetState(4480) p.Any_name() } @@ -61158,7 +61153,7 @@ func (p *PostgreSQLParser) Definition() (localctx IDefinitionContext) { p.EnterRule(localctx, 462, PostgreSQLParserRULE_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(4482) + p.SetState(4484) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -61166,11 +61161,11 @@ func (p *PostgreSQLParser) Definition() (localctx IDefinitionContext) { } } { - p.SetState(4483) + p.SetState(4485) p.Def_list() } { - p.SetState(4484) + p.SetState(4486) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -61326,10 +61321,10 @@ func (p *PostgreSQLParser) Def_list() (localctx IDef_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4486) + p.SetState(4488) p.Def_elem() } - p.SetState(4491) + p.SetState(4493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61338,7 +61333,7 @@ func (p *PostgreSQLParser) Def_list() (localctx IDef_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4487) + p.SetState(4489) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -61346,11 +61341,11 @@ func (p *PostgreSQLParser) Def_list() (localctx IDef_listContext) { } } { - p.SetState(4488) + p.SetState(4490) p.Def_elem() } - p.SetState(4493) + p.SetState(4495) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61492,10 +61487,10 @@ func (p *PostgreSQLParser) Def_elem() (localctx IDef_elemContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4494) + p.SetState(4496) p.Collabel() } - p.SetState(4497) + p.SetState(4499) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61504,7 +61499,7 @@ func (p *PostgreSQLParser) Def_elem() (localctx IDef_elemContext) { if _la == PostgreSQLParserEQUAL { { - p.SetState(4495) + p.SetState(4497) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -61512,7 +61507,7 @@ func (p *PostgreSQLParser) Def_elem() (localctx IDef_elemContext) { } } { - p.SetState(4496) + p.SetState(4498) p.Def_arg() } @@ -61699,7 +61694,7 @@ func (s *Def_argContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Def_arg() (localctx IDef_argContext) { localctx = NewDef_argContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 468, PostgreSQLParserRULE_def_arg) - p.SetState(4505) + p.SetState(4507) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61709,42 +61704,42 @@ func (p *PostgreSQLParser) Def_arg() (localctx IDef_argContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4499) + p.SetState(4501) p.Func_type() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4500) + p.SetState(4502) p.Reserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4501) + p.SetState(4503) p.Qual_all_op() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4502) + p.SetState(4504) p.Numericonly() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4503) + p.SetState(4505) p.Sconst() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4504) + p.SetState(4506) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -61876,7 +61871,7 @@ func (p *PostgreSQLParser) Old_aggr_definition() (localctx IOld_aggr_definitionC p.EnterRule(localctx, 470, PostgreSQLParserRULE_old_aggr_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(4507) + p.SetState(4509) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -61884,11 +61879,11 @@ func (p *PostgreSQLParser) Old_aggr_definition() (localctx IOld_aggr_definitionC } } { - p.SetState(4508) + p.SetState(4510) p.Old_aggr_list() } { - p.SetState(4509) + p.SetState(4511) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -62044,10 +62039,10 @@ func (p *PostgreSQLParser) Old_aggr_list() (localctx IOld_aggr_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4511) + p.SetState(4513) p.Old_aggr_elem() } - p.SetState(4516) + p.SetState(4518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62056,7 +62051,7 @@ func (p *PostgreSQLParser) Old_aggr_list() (localctx IOld_aggr_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4512) + p.SetState(4514) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -62064,11 +62059,11 @@ func (p *PostgreSQLParser) Old_aggr_list() (localctx IOld_aggr_listContext) { } } { - p.SetState(4513) + p.SetState(4515) p.Old_aggr_elem() } - p.SetState(4518) + p.SetState(4520) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62208,11 +62203,11 @@ func (p *PostgreSQLParser) Old_aggr_elem() (localctx IOld_aggr_elemContext) { p.EnterRule(localctx, 474, PostgreSQLParserRULE_old_aggr_elem) p.EnterOuterAlt(localctx, 1) { - p.SetState(4519) + p.SetState(4521) p.Identifier() } { - p.SetState(4520) + p.SetState(4522) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -62220,7 +62215,7 @@ func (p *PostgreSQLParser) Old_aggr_elem() (localctx IOld_aggr_elemContext) { } } { - p.SetState(4521) + p.SetState(4523) p.Def_arg() } @@ -62334,7 +62329,7 @@ func (p *PostgreSQLParser) Opt_enum_val_list() (localctx IOpt_enum_val_listConte p.EnterRule(localctx, 476, PostgreSQLParserRULE_opt_enum_val_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(4523) + p.SetState(4525) p.Enum_val_list() } @@ -62486,10 +62481,10 @@ func (p *PostgreSQLParser) Enum_val_list() (localctx IEnum_val_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4525) + p.SetState(4527) p.Sconst() } - p.SetState(4530) + p.SetState(4532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62498,7 +62493,7 @@ func (p *PostgreSQLParser) Enum_val_list() (localctx IEnum_val_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4526) + p.SetState(4528) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -62506,11 +62501,11 @@ func (p *PostgreSQLParser) Enum_val_list() (localctx IEnum_val_listContext) { } } { - p.SetState(4527) + p.SetState(4529) p.Sconst() } - p.SetState(4532) + p.SetState(4534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62728,7 +62723,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { p.EnterRule(localctx, 480, PostgreSQLParserRULE_alterenumstmt) var _la int - p.SetState(4576) + p.SetState(4578) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62738,7 +62733,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4533) + p.SetState(4535) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62746,7 +62741,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4534) + p.SetState(4536) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62754,11 +62749,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4535) + p.SetState(4537) p.Any_name() } { - p.SetState(4536) + p.SetState(4538) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -62766,14 +62761,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4537) + p.SetState(4539) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4539) + p.SetState(4541) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62782,20 +62777,20 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(4538) + p.SetState(4540) p.Opt_if_not_exists() } } { - p.SetState(4541) + p.SetState(4543) p.Sconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4543) + p.SetState(4545) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62803,7 +62798,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4544) + p.SetState(4546) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62811,11 +62806,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4545) + p.SetState(4547) p.Any_name() } { - p.SetState(4546) + p.SetState(4548) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -62823,14 +62818,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4547) + p.SetState(4549) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4549) + p.SetState(4551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62839,17 +62834,17 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(4548) + p.SetState(4550) p.Opt_if_not_exists() } } { - p.SetState(4551) + p.SetState(4553) p.Sconst() } { - p.SetState(4552) + p.SetState(4554) p.Match(PostgreSQLParserBEFORE) if p.HasError() { // Recognition error - abort rule @@ -62857,14 +62852,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4553) + p.SetState(4555) p.Sconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4555) + p.SetState(4557) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62872,7 +62867,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4556) + p.SetState(4558) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62880,11 +62875,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4557) + p.SetState(4559) p.Any_name() } { - p.SetState(4558) + p.SetState(4560) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -62892,14 +62887,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4559) + p.SetState(4561) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4561) + p.SetState(4563) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62908,17 +62903,17 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(4560) + p.SetState(4562) p.Opt_if_not_exists() } } { - p.SetState(4563) + p.SetState(4565) p.Sconst() } { - p.SetState(4564) + p.SetState(4566) p.Match(PostgreSQLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -62926,14 +62921,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4565) + p.SetState(4567) p.Sconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4567) + p.SetState(4569) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62941,7 +62936,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4568) + p.SetState(4570) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62949,11 +62944,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4569) + p.SetState(4571) p.Any_name() } { - p.SetState(4570) + p.SetState(4572) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -62961,7 +62956,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4571) + p.SetState(4573) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -62969,11 +62964,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4572) + p.SetState(4574) p.Sconst() } { - p.SetState(4573) + p.SetState(4575) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -62981,7 +62976,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4574) + p.SetState(4576) p.Sconst() } @@ -63097,7 +63092,7 @@ func (p *PostgreSQLParser) Opt_if_not_exists() (localctx IOpt_if_not_existsConte p.EnterRule(localctx, 482, PostgreSQLParserRULE_opt_if_not_exists) p.EnterOuterAlt(localctx, 1) { - p.SetState(4578) + p.SetState(4580) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -63105,7 +63100,7 @@ func (p *PostgreSQLParser) Opt_if_not_exists() (localctx IOpt_if_not_existsConte } } { - p.SetState(4579) + p.SetState(4581) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -63113,7 +63108,7 @@ func (p *PostgreSQLParser) Opt_if_not_exists() (localctx IOpt_if_not_existsConte } } { - p.SetState(4580) + p.SetState(4582) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -63353,7 +63348,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4582) + p.SetState(4584) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -63361,7 +63356,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4583) + p.SetState(4585) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -63369,7 +63364,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4584) + p.SetState(4586) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -63377,10 +63372,10 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4585) + p.SetState(4587) p.Any_name() } - p.SetState(4587) + p.SetState(4589) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63389,13 +63384,13 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte if _la == PostgreSQLParserDEFAULT { { - p.SetState(4586) + p.SetState(4588) p.Opt_default() } } { - p.SetState(4589) + p.SetState(4591) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -63403,7 +63398,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4590) + p.SetState(4592) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -63411,11 +63406,11 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4591) + p.SetState(4593) p.Typename() } { - p.SetState(4592) + p.SetState(4594) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -63423,10 +63418,10 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4593) + p.SetState(4595) p.Name() } - p.SetState(4595) + p.SetState(4597) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63435,13 +63430,13 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte if _la == PostgreSQLParserFAMILY { { - p.SetState(4594) + p.SetState(4596) p.Opt_opfamily() } } { - p.SetState(4597) + p.SetState(4599) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -63449,7 +63444,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4598) + p.SetState(4600) p.Opclass_item_list() } @@ -63601,10 +63596,10 @@ func (p *PostgreSQLParser) Opclass_item_list() (localctx IOpclass_item_listConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4600) + p.SetState(4602) p.Opclass_item() } - p.SetState(4605) + p.SetState(4607) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63613,7 +63608,7 @@ func (p *PostgreSQLParser) Opclass_item_list() (localctx IOpclass_item_listConte for _la == PostgreSQLParserCOMMA { { - p.SetState(4601) + p.SetState(4603) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -63621,11 +63616,11 @@ func (p *PostgreSQLParser) Opclass_item_list() (localctx IOpclass_item_listConte } } { - p.SetState(4602) + p.SetState(4604) p.Opclass_item() } - p.SetState(4607) + p.SetState(4609) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63887,7 +63882,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { p.EnterRule(localctx, 488, PostgreSQLParserRULE_opclass_item) var _la int - p.SetState(4639) + p.SetState(4641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63897,7 +63892,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4608) + p.SetState(4610) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -63905,14 +63900,14 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4609) + p.SetState(4611) p.Iconst() } { - p.SetState(4610) + p.SetState(4612) p.Any_operator() } - p.SetState(4612) + p.SetState(4614) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63921,12 +63916,12 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserFOR { { - p.SetState(4611) + p.SetState(4613) p.Opclass_purpose() } } - p.SetState(4615) + p.SetState(4617) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63935,7 +63930,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserRECHECK { { - p.SetState(4614) + p.SetState(4616) p.Opt_recheck() } @@ -63944,7 +63939,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4617) + p.SetState(4619) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -63952,14 +63947,14 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4618) + p.SetState(4620) p.Iconst() } { - p.SetState(4619) + p.SetState(4621) p.Operator_with_argtypes() } - p.SetState(4621) + p.SetState(4623) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63968,12 +63963,12 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserFOR { { - p.SetState(4620) + p.SetState(4622) p.Opclass_purpose() } } - p.SetState(4624) + p.SetState(4626) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63982,7 +63977,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserRECHECK { { - p.SetState(4623) + p.SetState(4625) p.Opt_recheck() } @@ -63991,7 +63986,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4626) + p.SetState(4628) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -63999,18 +63994,18 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4627) + p.SetState(4629) p.Iconst() } { - p.SetState(4628) + p.SetState(4630) p.Function_with_argtypes() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4630) + p.SetState(4632) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -64018,11 +64013,11 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4631) + p.SetState(4633) p.Iconst() } { - p.SetState(4632) + p.SetState(4634) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -64030,11 +64025,11 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4633) + p.SetState(4635) p.Type_list() } { - p.SetState(4634) + p.SetState(4636) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -64042,14 +64037,14 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4635) + p.SetState(4637) p.Function_with_argtypes() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4637) + p.SetState(4639) p.Match(PostgreSQLParserSTORAGE) if p.HasError() { // Recognition error - abort rule @@ -64057,7 +64052,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4638) + p.SetState(4640) p.Typename() } @@ -64163,7 +64158,7 @@ func (p *PostgreSQLParser) Opt_default() (localctx IOpt_defaultContext) { p.EnterRule(localctx, 490, PostgreSQLParserRULE_opt_default) p.EnterOuterAlt(localctx, 1) { - p.SetState(4641) + p.SetState(4643) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -64286,7 +64281,7 @@ func (p *PostgreSQLParser) Opt_opfamily() (localctx IOpt_opfamilyContext) { p.EnterRule(localctx, 492, PostgreSQLParserRULE_opt_opfamily) p.EnterOuterAlt(localctx, 1) { - p.SetState(4643) + p.SetState(4645) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -64294,7 +64289,7 @@ func (p *PostgreSQLParser) Opt_opfamily() (localctx IOpt_opfamilyContext) { } } { - p.SetState(4644) + p.SetState(4646) p.Any_name() } @@ -64426,7 +64421,7 @@ func (s *Opclass_purposeContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) { localctx = NewOpclass_purposeContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 494, PostgreSQLParserRULE_opclass_purpose) - p.SetState(4652) + p.SetState(4654) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64436,7 +64431,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4646) + p.SetState(4648) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -64444,7 +64439,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4647) + p.SetState(4649) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -64455,7 +64450,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4648) + p.SetState(4650) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -64463,7 +64458,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4649) + p.SetState(4651) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -64471,7 +64466,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4650) + p.SetState(4652) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -64479,7 +64474,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4651) + p.SetState(4653) p.Any_name() } @@ -64585,7 +64580,7 @@ func (p *PostgreSQLParser) Opt_recheck() (localctx IOpt_recheckContext) { p.EnterRule(localctx, 496, PostgreSQLParserRULE_opt_recheck) p.EnterOuterAlt(localctx, 1) { - p.SetState(4654) + p.SetState(4656) p.Match(PostgreSQLParserRECHECK) if p.HasError() { // Recognition error - abort rule @@ -64740,7 +64735,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon p.EnterRule(localctx, 498, PostgreSQLParserRULE_createopfamilystmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4656) + p.SetState(4658) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -64748,7 +64743,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4657) + p.SetState(4659) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -64756,7 +64751,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4658) + p.SetState(4660) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -64764,11 +64759,11 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4659) + p.SetState(4661) p.Any_name() } { - p.SetState(4660) + p.SetState(4662) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -64776,7 +64771,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4661) + p.SetState(4663) p.Name() } @@ -64969,7 +64964,7 @@ func (s *AlteropfamilystmtContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtContext) { localctx = NewAlteropfamilystmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 500, PostgreSQLParserRULE_alteropfamilystmt) - p.SetState(4681) + p.SetState(4683) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64979,7 +64974,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4663) + p.SetState(4665) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -64987,7 +64982,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4664) + p.SetState(4666) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -64995,7 +64990,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4665) + p.SetState(4667) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -65003,11 +64998,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4666) + p.SetState(4668) p.Any_name() } { - p.SetState(4667) + p.SetState(4669) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65015,11 +65010,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4668) + p.SetState(4670) p.Name() } { - p.SetState(4669) + p.SetState(4671) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -65027,14 +65022,14 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4670) + p.SetState(4672) p.Opclass_item_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4672) + p.SetState(4674) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -65042,7 +65037,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4673) + p.SetState(4675) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65050,7 +65045,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4674) + p.SetState(4676) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -65058,11 +65053,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4675) + p.SetState(4677) p.Any_name() } { - p.SetState(4676) + p.SetState(4678) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65070,11 +65065,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4677) + p.SetState(4679) p.Name() } { - p.SetState(4678) + p.SetState(4680) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -65082,7 +65077,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4679) + p.SetState(4681) p.Opclass_drop_list() } @@ -65238,10 +65233,10 @@ func (p *PostgreSQLParser) Opclass_drop_list() (localctx IOpclass_drop_listConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4683) + p.SetState(4685) p.Opclass_drop() } - p.SetState(4688) + p.SetState(4690) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65250,7 +65245,7 @@ func (p *PostgreSQLParser) Opclass_drop_list() (localctx IOpclass_drop_listConte for _la == PostgreSQLParserCOMMA { { - p.SetState(4684) + p.SetState(4686) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -65258,11 +65253,11 @@ func (p *PostgreSQLParser) Opclass_drop_list() (localctx IOpclass_drop_listConte } } { - p.SetState(4685) + p.SetState(4687) p.Opclass_drop() } - p.SetState(4690) + p.SetState(4692) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65415,7 +65410,7 @@ func (s *Opclass_dropContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { localctx = NewOpclass_dropContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 504, PostgreSQLParserRULE_opclass_drop) - p.SetState(4703) + p.SetState(4705) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65425,7 +65420,7 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { case PostgreSQLParserOPERATOR: p.EnterOuterAlt(localctx, 1) { - p.SetState(4691) + p.SetState(4693) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65433,11 +65428,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4692) + p.SetState(4694) p.Iconst() } { - p.SetState(4693) + p.SetState(4695) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65445,11 +65440,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4694) + p.SetState(4696) p.Type_list() } { - p.SetState(4695) + p.SetState(4697) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65460,7 +65455,7 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { case PostgreSQLParserFUNCTION: p.EnterOuterAlt(localctx, 2) { - p.SetState(4697) + p.SetState(4699) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -65468,11 +65463,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4698) + p.SetState(4700) p.Iconst() } { - p.SetState(4699) + p.SetState(4701) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65480,11 +65475,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4700) + p.SetState(4702) p.Type_list() } { - p.SetState(4701) + p.SetState(4703) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65671,7 +65666,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) p.EnterRule(localctx, 506, PostgreSQLParserRULE_dropopclassstmt) var _la int - p.SetState(4725) + p.SetState(4727) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65681,7 +65676,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4705) + p.SetState(4707) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -65689,7 +65684,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4706) + p.SetState(4708) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65697,7 +65692,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4707) + p.SetState(4709) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -65705,11 +65700,11 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4708) + p.SetState(4710) p.Any_name() } { - p.SetState(4709) + p.SetState(4711) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65717,10 +65712,10 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4710) + p.SetState(4712) p.Name() } - p.SetState(4712) + p.SetState(4714) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65729,7 +65724,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4711) + p.SetState(4713) p.Opt_drop_behavior() } @@ -65738,7 +65733,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4714) + p.SetState(4716) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -65746,7 +65741,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4715) + p.SetState(4717) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65754,7 +65749,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4716) + p.SetState(4718) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -65762,7 +65757,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4717) + p.SetState(4719) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -65770,7 +65765,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4718) + p.SetState(4720) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -65778,11 +65773,11 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4719) + p.SetState(4721) p.Any_name() } { - p.SetState(4720) + p.SetState(4722) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65790,10 +65785,10 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4721) + p.SetState(4723) p.Name() } - p.SetState(4723) + p.SetState(4725) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65802,7 +65797,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4722) + p.SetState(4724) p.Opt_drop_behavior() } @@ -65986,7 +65981,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext p.EnterRule(localctx, 508, PostgreSQLParserRULE_dropopfamilystmt) var _la int - p.SetState(4747) + p.SetState(4749) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65996,7 +65991,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4727) + p.SetState(4729) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66004,7 +65999,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4728) + p.SetState(4730) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -66012,7 +66007,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4729) + p.SetState(4731) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -66020,11 +66015,11 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4730) + p.SetState(4732) p.Any_name() } { - p.SetState(4731) + p.SetState(4733) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -66032,10 +66027,10 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4732) + p.SetState(4734) p.Name() } - p.SetState(4734) + p.SetState(4736) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66044,7 +66039,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4733) + p.SetState(4735) p.Opt_drop_behavior() } @@ -66053,7 +66048,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4736) + p.SetState(4738) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66061,7 +66056,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4737) + p.SetState(4739) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -66069,7 +66064,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4738) + p.SetState(4740) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -66077,7 +66072,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4739) + p.SetState(4741) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -66085,7 +66080,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4740) + p.SetState(4742) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -66093,11 +66088,11 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4741) + p.SetState(4743) p.Any_name() } { - p.SetState(4742) + p.SetState(4744) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -66105,10 +66100,10 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4743) + p.SetState(4745) p.Name() } - p.SetState(4745) + p.SetState(4747) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66117,7 +66112,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4744) + p.SetState(4746) p.Opt_drop_behavior() } @@ -66271,7 +66266,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4749) + p.SetState(4751) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66279,7 +66274,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { } } { - p.SetState(4750) + p.SetState(4752) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -66287,7 +66282,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { } } { - p.SetState(4751) + p.SetState(4753) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -66295,10 +66290,10 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { } } { - p.SetState(4752) + p.SetState(4754) p.Role_list() } - p.SetState(4754) + p.SetState(4756) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66307,7 +66302,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4753) + p.SetState(4755) p.Opt_drop_behavior() } @@ -66460,7 +66455,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte p.EnterRule(localctx, 512, PostgreSQLParserRULE_reassignownedstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4756) + p.SetState(4758) p.Match(PostgreSQLParserREASSIGN) if p.HasError() { // Recognition error - abort rule @@ -66468,7 +66463,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4757) + p.SetState(4759) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -66476,7 +66471,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4758) + p.SetState(4760) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -66484,11 +66479,11 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4759) + p.SetState(4761) p.Role_list() } { - p.SetState(4760) + p.SetState(4762) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -66496,7 +66491,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4761) + p.SetState(4763) p.Rolespec() } @@ -66786,7 +66781,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { p.EnterRule(localctx, 514, PostgreSQLParserRULE_dropstmt) var _la int - p.SetState(4853) + p.SetState(4855) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66796,7 +66791,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4763) + p.SetState(4765) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66804,11 +66799,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4764) + p.SetState(4766) p.Object_type_any_name() } { - p.SetState(4765) + p.SetState(4767) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -66816,7 +66811,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4766) + p.SetState(4768) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -66824,10 +66819,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4767) + p.SetState(4769) p.Any_name_list() } - p.SetState(4769) + p.SetState(4771) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66836,7 +66831,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4768) + p.SetState(4770) p.Opt_drop_behavior() } @@ -66845,7 +66840,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4771) + p.SetState(4773) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66853,14 +66848,14 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4772) + p.SetState(4774) p.Object_type_any_name() } { - p.SetState(4773) + p.SetState(4775) p.Any_name_list() } - p.SetState(4775) + p.SetState(4777) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66869,7 +66864,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4774) + p.SetState(4776) p.Opt_drop_behavior() } @@ -66878,7 +66873,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4777) + p.SetState(4779) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66886,11 +66881,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4778) + p.SetState(4780) p.Drop_type_name() } { - p.SetState(4779) + p.SetState(4781) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -66898,7 +66893,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4780) + p.SetState(4782) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -66906,10 +66901,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4781) + p.SetState(4783) p.Name_list() } - p.SetState(4783) + p.SetState(4785) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66918,7 +66913,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4782) + p.SetState(4784) p.Opt_drop_behavior() } @@ -66927,7 +66922,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4785) + p.SetState(4787) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66935,14 +66930,14 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4786) + p.SetState(4788) p.Drop_type_name() } { - p.SetState(4787) + p.SetState(4789) p.Name_list() } - p.SetState(4789) + p.SetState(4791) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66951,7 +66946,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4788) + p.SetState(4790) p.Opt_drop_behavior() } @@ -66960,7 +66955,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4791) + p.SetState(4793) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66968,15 +66963,15 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4792) + p.SetState(4794) p.Object_type_name_on_any_name() } { - p.SetState(4793) + p.SetState(4795) p.Name() } { - p.SetState(4794) + p.SetState(4796) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -66984,10 +66979,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4795) + p.SetState(4797) p.Any_name() } - p.SetState(4797) + p.SetState(4799) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66996,7 +66991,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4796) + p.SetState(4798) p.Opt_drop_behavior() } @@ -67005,7 +67000,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4799) + p.SetState(4801) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67013,11 +67008,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4800) + p.SetState(4802) p.Object_type_name_on_any_name() } { - p.SetState(4801) + p.SetState(4803) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67025,7 +67020,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4802) + p.SetState(4804) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67033,11 +67028,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4803) + p.SetState(4805) p.Name() } { - p.SetState(4804) + p.SetState(4806) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -67045,10 +67040,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4805) + p.SetState(4807) p.Any_name() } - p.SetState(4807) + p.SetState(4809) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67057,7 +67052,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4806) + p.SetState(4808) p.Opt_drop_behavior() } @@ -67066,7 +67061,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4809) + p.SetState(4811) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67074,7 +67069,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4810) + p.SetState(4812) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -67082,10 +67077,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4811) + p.SetState(4813) p.Type_name_list() } - p.SetState(4813) + p.SetState(4815) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67094,7 +67089,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4812) + p.SetState(4814) p.Opt_drop_behavior() } @@ -67103,7 +67098,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4815) + p.SetState(4817) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67111,7 +67106,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4816) + p.SetState(4818) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -67119,7 +67114,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4817) + p.SetState(4819) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67127,7 +67122,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4818) + p.SetState(4820) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67135,10 +67130,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4819) + p.SetState(4821) p.Type_name_list() } - p.SetState(4821) + p.SetState(4823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67147,7 +67142,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4820) + p.SetState(4822) p.Opt_drop_behavior() } @@ -67156,7 +67151,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4823) + p.SetState(4825) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67164,7 +67159,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4824) + p.SetState(4826) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -67172,10 +67167,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4825) + p.SetState(4827) p.Type_name_list() } - p.SetState(4827) + p.SetState(4829) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67184,7 +67179,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4826) + p.SetState(4828) p.Opt_drop_behavior() } @@ -67193,7 +67188,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4829) + p.SetState(4831) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67201,7 +67196,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4830) + p.SetState(4832) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -67209,7 +67204,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4831) + p.SetState(4833) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67217,7 +67212,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4832) + p.SetState(4834) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67225,10 +67220,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4833) + p.SetState(4835) p.Type_name_list() } - p.SetState(4835) + p.SetState(4837) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67237,7 +67232,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4834) + p.SetState(4836) p.Opt_drop_behavior() } @@ -67246,7 +67241,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4837) + p.SetState(4839) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67254,7 +67249,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4838) + p.SetState(4840) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -67262,7 +67257,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4839) + p.SetState(4841) p.Match(PostgreSQLParserCONCURRENTLY) if p.HasError() { // Recognition error - abort rule @@ -67270,10 +67265,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4840) + p.SetState(4842) p.Any_name_list() } - p.SetState(4842) + p.SetState(4844) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67282,7 +67277,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4841) + p.SetState(4843) p.Opt_drop_behavior() } @@ -67291,7 +67286,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4844) + p.SetState(4846) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67299,7 +67294,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4845) + p.SetState(4847) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -67307,7 +67302,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4846) + p.SetState(4848) p.Match(PostgreSQLParserCONCURRENTLY) if p.HasError() { // Recognition error - abort rule @@ -67315,7 +67310,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4847) + p.SetState(4849) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67323,7 +67318,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4848) + p.SetState(4850) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67331,10 +67326,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4849) + p.SetState(4851) p.Any_name_list() } - p.SetState(4851) + p.SetState(4853) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67343,7 +67338,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4850) + p.SetState(4852) p.Opt_drop_behavior() } @@ -67519,7 +67514,7 @@ func (s *Object_type_any_nameContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nameContext) { localctx = NewObject_type_any_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 516, PostgreSQLParserRULE_object_type_any_name) - p.SetState(4878) + p.SetState(4880) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67529,7 +67524,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4855) + p.SetState(4857) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -67540,7 +67535,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4856) + p.SetState(4858) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -67551,7 +67546,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4857) + p.SetState(4859) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -67562,7 +67557,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4858) + p.SetState(4860) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -67570,7 +67565,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4859) + p.SetState(4861) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -67581,7 +67576,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4860) + p.SetState(4862) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -67592,7 +67587,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4861) + p.SetState(4863) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -67600,7 +67595,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4862) + p.SetState(4864) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -67611,7 +67606,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4863) + p.SetState(4865) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -67622,7 +67617,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4864) + p.SetState(4866) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -67633,7 +67628,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4865) + p.SetState(4867) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -67644,7 +67639,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4866) + p.SetState(4868) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67652,7 +67647,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4867) + p.SetState(4869) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67660,7 +67655,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4868) + p.SetState(4870) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -67671,7 +67666,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4869) + p.SetState(4871) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67679,7 +67674,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4870) + p.SetState(4872) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67687,7 +67682,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4871) + p.SetState(4873) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -67698,7 +67693,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4872) + p.SetState(4874) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67706,7 +67701,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4873) + p.SetState(4875) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67714,7 +67709,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4874) + p.SetState(4876) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -67725,7 +67720,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(4875) + p.SetState(4877) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67733,7 +67728,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4876) + p.SetState(4878) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67741,7 +67736,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4877) + p.SetState(4879) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -67881,7 +67876,7 @@ func (s *Object_type_nameContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext) { localctx = NewObject_type_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 518, PostgreSQLParserRULE_object_type_name) - p.SetState(4885) + p.SetState(4887) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67891,14 +67886,14 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserFOREIGN, PostgreSQLParserACCESS, PostgreSQLParserEVENT, PostgreSQLParserEXTENSION, PostgreSQLParserLANGUAGE, PostgreSQLParserPROCEDURAL, PostgreSQLParserSCHEMA, PostgreSQLParserSERVER, PostgreSQLParserPUBLICATION: p.EnterOuterAlt(localctx, 1) { - p.SetState(4880) + p.SetState(4882) p.Drop_type_name() } case PostgreSQLParserDATABASE: p.EnterOuterAlt(localctx, 2) { - p.SetState(4881) + p.SetState(4883) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -67909,7 +67904,7 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserROLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(4882) + p.SetState(4884) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -67920,7 +67915,7 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserSUBSCRIPTION: p.EnterOuterAlt(localctx, 4) { - p.SetState(4883) + p.SetState(4885) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -67931,7 +67926,7 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserTABLESPACE: p.EnterOuterAlt(localctx, 5) { - p.SetState(4884) + p.SetState(4886) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -68114,7 +68109,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { p.EnterRule(localctx, 520, PostgreSQLParserRULE_drop_type_name) var _la int - p.SetState(4902) + p.SetState(4904) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68124,7 +68119,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserACCESS: p.EnterOuterAlt(localctx, 1) { - p.SetState(4887) + p.SetState(4889) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -68132,7 +68127,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4888) + p.SetState(4890) p.Match(PostgreSQLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -68143,7 +68138,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserEVENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(4889) + p.SetState(4891) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -68151,7 +68146,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4890) + p.SetState(4892) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -68162,7 +68157,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserEXTENSION: p.EnterOuterAlt(localctx, 3) { - p.SetState(4891) + p.SetState(4893) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -68173,7 +68168,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserFOREIGN: p.EnterOuterAlt(localctx, 4) { - p.SetState(4892) + p.SetState(4894) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -68181,7 +68176,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4893) + p.SetState(4895) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -68189,7 +68184,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4894) + p.SetState(4896) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -68199,7 +68194,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserLANGUAGE, PostgreSQLParserPROCEDURAL: p.EnterOuterAlt(localctx, 5) - p.SetState(4896) + p.SetState(4898) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68208,13 +68203,13 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(4895) + p.SetState(4897) p.Opt_procedural() } } { - p.SetState(4898) + p.SetState(4900) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -68225,7 +68220,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserPUBLICATION: p.EnterOuterAlt(localctx, 6) { - p.SetState(4899) + p.SetState(4901) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -68236,7 +68231,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserSCHEMA: p.EnterOuterAlt(localctx, 7) { - p.SetState(4900) + p.SetState(4902) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -68247,7 +68242,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserSERVER: p.EnterOuterAlt(localctx, 8) { - p.SetState(4901) + p.SetState(4903) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -68370,7 +68365,7 @@ func (p *PostgreSQLParser) Object_type_name_on_any_name() (localctx IObject_type p.EnterOuterAlt(localctx, 1) { - p.SetState(4904) + p.SetState(4906) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserRULE || _la == PostgreSQLParserTRIGGER || _la == PostgreSQLParserPOLICY) { @@ -68529,10 +68524,10 @@ func (p *PostgreSQLParser) Any_name_list() (localctx IAny_name_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4906) + p.SetState(4908) p.Any_name() } - p.SetState(4911) + p.SetState(4913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68541,7 +68536,7 @@ func (p *PostgreSQLParser) Any_name_list() (localctx IAny_name_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4907) + p.SetState(4909) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -68549,11 +68544,11 @@ func (p *PostgreSQLParser) Any_name_list() (localctx IAny_name_listContext) { } } { - p.SetState(4908) + p.SetState(4910) p.Any_name() } - p.SetState(4913) + p.SetState(4915) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68690,10 +68685,10 @@ func (p *PostgreSQLParser) Any_name() (localctx IAny_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4914) + p.SetState(4916) p.Colid() } - p.SetState(4916) + p.SetState(4918) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68702,7 +68697,7 @@ func (p *PostgreSQLParser) Any_name() (localctx IAny_nameContext) { if _la == PostgreSQLParserDOT { { - p.SetState(4915) + p.SetState(4917) p.Attrs() } @@ -68855,7 +68850,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(4920) + p.SetState(4922) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68865,7 +68860,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { switch _alt { case 1: { - p.SetState(4918) + p.SetState(4920) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -68873,7 +68868,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { } } { - p.SetState(4919) + p.SetState(4921) p.Attr_name() } @@ -68882,7 +68877,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { goto errorExit } - p.SetState(4922) + p.SetState(4924) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 378, p.GetParserRuleContext()) if p.HasError() { @@ -69038,10 +69033,10 @@ func (p *PostgreSQLParser) Type_name_list() (localctx IType_name_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4924) + p.SetState(4926) p.Typename() } - p.SetState(4929) + p.SetState(4931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69050,7 +69045,7 @@ func (p *PostgreSQLParser) Type_name_list() (localctx IType_name_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4925) + p.SetState(4927) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -69058,11 +69053,11 @@ func (p *PostgreSQLParser) Type_name_list() (localctx IType_name_listContext) { } } { - p.SetState(4926) + p.SetState(4928) p.Typename() } - p.SetState(4931) + p.SetState(4933) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69238,19 +69233,19 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4932) + p.SetState(4934) p.Match(PostgreSQLParserTRUNCATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4934) + p.SetState(4936) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 380, p.GetParserRuleContext()) == 1 { { - p.SetState(4933) + p.SetState(4935) p.Opt_table() } @@ -69258,10 +69253,10 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { goto errorExit } { - p.SetState(4936) + p.SetState(4938) p.Relation_expr_list() } - p.SetState(4938) + p.SetState(4940) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69270,12 +69265,12 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { if _la == PostgreSQLParserCONTINUE_P || _la == PostgreSQLParserRESTART { { - p.SetState(4937) + p.SetState(4939) p.Opt_restart_seqs() } } - p.SetState(4941) + p.SetState(4943) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69284,7 +69279,7 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4940) + p.SetState(4942) p.Opt_drop_behavior() } @@ -69396,7 +69391,7 @@ func (s *Opt_restart_seqsContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext) { localctx = NewOpt_restart_seqsContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 534, PostgreSQLParserRULE_opt_restart_seqs) - p.SetState(4947) + p.SetState(4949) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69406,7 +69401,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext case PostgreSQLParserCONTINUE_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(4943) + p.SetState(4945) p.Match(PostgreSQLParserCONTINUE_P) if p.HasError() { // Recognition error - abort rule @@ -69414,7 +69409,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext } } { - p.SetState(4944) + p.SetState(4946) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -69425,7 +69420,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext case PostgreSQLParserRESTART: p.EnterOuterAlt(localctx, 2) { - p.SetState(4945) + p.SetState(4947) p.Match(PostgreSQLParserRESTART) if p.HasError() { // Recognition error - abort rule @@ -69433,7 +69428,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext } } { - p.SetState(4946) + p.SetState(4948) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -69875,7 +69870,7 @@ func (s *CommentstmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { localctx = NewCommentstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 536, PostgreSQLParserRULE_commentstmt) - p.SetState(5096) + p.SetState(5098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69885,7 +69880,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4949) + p.SetState(4951) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69893,7 +69888,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4950) + p.SetState(4952) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -69901,15 +69896,15 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4951) + p.SetState(4953) p.Object_type_any_name() } { - p.SetState(4952) + p.SetState(4954) p.Any_name() } { - p.SetState(4953) + p.SetState(4955) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -69917,14 +69912,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4954) + p.SetState(4956) p.Comment_text() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4956) + p.SetState(4958) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69932,7 +69927,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4957) + p.SetState(4959) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -69940,7 +69935,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4958) + p.SetState(4960) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -69948,11 +69943,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4959) + p.SetState(4961) p.Any_name() } { - p.SetState(4960) + p.SetState(4962) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -69960,14 +69955,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4961) + p.SetState(4963) p.Comment_text() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4963) + p.SetState(4965) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69975,7 +69970,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4964) + p.SetState(4966) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -69983,15 +69978,15 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4965) + p.SetState(4967) p.Object_type_name() } { - p.SetState(4966) + p.SetState(4968) p.Name() } { - p.SetState(4967) + p.SetState(4969) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -69999,14 +69994,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4968) + p.SetState(4970) p.Comment_text() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4970) + p.SetState(4972) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70014,7 +70009,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4971) + p.SetState(4973) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70022,7 +70017,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4972) + p.SetState(4974) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -70030,11 +70025,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4973) + p.SetState(4975) p.Typename() } { - p.SetState(4974) + p.SetState(4976) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70042,14 +70037,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4975) + p.SetState(4977) p.Comment_text() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4977) + p.SetState(4979) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70057,7 +70052,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4978) + p.SetState(4980) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70065,7 +70060,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4979) + p.SetState(4981) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -70073,11 +70068,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4980) + p.SetState(4982) p.Typename() } { - p.SetState(4981) + p.SetState(4983) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70085,14 +70080,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4982) + p.SetState(4984) p.Comment_text() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4984) + p.SetState(4986) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70100,7 +70095,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4985) + p.SetState(4987) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70108,7 +70103,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4986) + p.SetState(4988) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -70116,11 +70111,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4987) + p.SetState(4989) p.Aggregate_with_argtypes() } { - p.SetState(4988) + p.SetState(4990) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70128,14 +70123,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4989) + p.SetState(4991) p.Comment_text() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4991) + p.SetState(4993) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70143,7 +70138,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4992) + p.SetState(4994) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70151,7 +70146,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4993) + p.SetState(4995) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -70159,11 +70154,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4994) + p.SetState(4996) p.Function_with_argtypes() } { - p.SetState(4995) + p.SetState(4997) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70171,14 +70166,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4996) + p.SetState(4998) p.Comment_text() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4998) + p.SetState(5000) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70186,7 +70181,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4999) + p.SetState(5001) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70194,7 +70189,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5000) + p.SetState(5002) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -70202,11 +70197,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5001) + p.SetState(5003) p.Operator_with_argtypes() } { - p.SetState(5002) + p.SetState(5004) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70214,14 +70209,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5003) + p.SetState(5005) p.Comment_text() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5005) + p.SetState(5007) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70229,7 +70224,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5006) + p.SetState(5008) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70237,7 +70232,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5007) + p.SetState(5009) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -70245,11 +70240,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5008) + p.SetState(5010) p.Name() } { - p.SetState(5009) + p.SetState(5011) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70257,11 +70252,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5010) + p.SetState(5012) p.Any_name() } { - p.SetState(5011) + p.SetState(5013) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70269,14 +70264,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5012) + p.SetState(5014) p.Comment_text() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5014) + p.SetState(5016) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70284,7 +70279,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5015) + p.SetState(5017) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70292,7 +70287,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5016) + p.SetState(5018) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -70300,11 +70295,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5017) + p.SetState(5019) p.Name() } { - p.SetState(5018) + p.SetState(5020) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70312,7 +70307,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5019) + p.SetState(5021) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -70320,11 +70315,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5020) + p.SetState(5022) p.Any_name() } { - p.SetState(5021) + p.SetState(5023) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70332,14 +70327,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5022) + p.SetState(5024) p.Comment_text() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5024) + p.SetState(5026) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70347,7 +70342,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5025) + p.SetState(5027) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70355,15 +70350,15 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5026) + p.SetState(5028) p.Object_type_name_on_any_name() } { - p.SetState(5027) + p.SetState(5029) p.Name() } { - p.SetState(5028) + p.SetState(5030) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70371,11 +70366,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5029) + p.SetState(5031) p.Any_name() } { - p.SetState(5030) + p.SetState(5032) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70383,14 +70378,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5031) + p.SetState(5033) p.Comment_text() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5033) + p.SetState(5035) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70398,7 +70393,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5034) + p.SetState(5036) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70406,7 +70401,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5035) + p.SetState(5037) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -70414,11 +70409,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5036) + p.SetState(5038) p.Function_with_argtypes() } { - p.SetState(5037) + p.SetState(5039) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70426,14 +70421,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5038) + p.SetState(5040) p.Comment_text() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5040) + p.SetState(5042) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70441,7 +70436,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5041) + p.SetState(5043) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70449,7 +70444,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5042) + p.SetState(5044) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -70457,11 +70452,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5043) + p.SetState(5045) p.Function_with_argtypes() } { - p.SetState(5044) + p.SetState(5046) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70469,14 +70464,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5045) + p.SetState(5047) p.Comment_text() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5047) + p.SetState(5049) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70484,7 +70479,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5048) + p.SetState(5050) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70492,7 +70487,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5049) + p.SetState(5051) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -70500,7 +70495,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5050) + p.SetState(5052) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -70508,11 +70503,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5051) + p.SetState(5053) p.Typename() } { - p.SetState(5052) + p.SetState(5054) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -70520,11 +70515,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5053) + p.SetState(5055) p.Name() } { - p.SetState(5054) + p.SetState(5056) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70532,14 +70527,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5055) + p.SetState(5057) p.Comment_text() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5057) + p.SetState(5059) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70547,7 +70542,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5058) + p.SetState(5060) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70555,7 +70550,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5059) + p.SetState(5061) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -70563,7 +70558,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5060) + p.SetState(5062) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -70571,11 +70566,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5061) + p.SetState(5063) p.Any_name() } { - p.SetState(5062) + p.SetState(5064) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -70583,11 +70578,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5063) + p.SetState(5065) p.Name() } { - p.SetState(5064) + p.SetState(5066) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70595,14 +70590,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5065) + p.SetState(5067) p.Comment_text() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5067) + p.SetState(5069) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70610,7 +70605,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5068) + p.SetState(5070) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70618,7 +70613,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5069) + p.SetState(5071) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -70626,7 +70621,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5070) + p.SetState(5072) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -70634,11 +70629,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5071) + p.SetState(5073) p.Any_name() } { - p.SetState(5072) + p.SetState(5074) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -70646,11 +70641,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5073) + p.SetState(5075) p.Name() } { - p.SetState(5074) + p.SetState(5076) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70658,14 +70653,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5075) + p.SetState(5077) p.Comment_text() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5077) + p.SetState(5079) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70673,7 +70668,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5078) + p.SetState(5080) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70681,7 +70676,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5079) + p.SetState(5081) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -70689,7 +70684,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5080) + p.SetState(5082) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -70697,11 +70692,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5081) + p.SetState(5083) p.Numericonly() } { - p.SetState(5082) + p.SetState(5084) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70709,14 +70704,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5083) + p.SetState(5085) p.Comment_text() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(5085) + p.SetState(5087) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70724,7 +70719,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5086) + p.SetState(5088) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70732,7 +70727,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5087) + p.SetState(5089) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -70740,7 +70735,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5088) + p.SetState(5090) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -70748,11 +70743,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5089) + p.SetState(5091) p.Typename() } { - p.SetState(5090) + p.SetState(5092) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -70760,11 +70755,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5091) + p.SetState(5093) p.Typename() } { - p.SetState(5092) + p.SetState(5094) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -70772,7 +70767,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5093) + p.SetState(5095) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70780,7 +70775,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5094) + p.SetState(5096) p.Comment_text() } @@ -70901,7 +70896,7 @@ func (s *Comment_textContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Comment_text() (localctx IComment_textContext) { localctx = NewComment_textContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 538, PostgreSQLParserRULE_comment_text) - p.SetState(5100) + p.SetState(5102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70911,14 +70906,14 @@ func (p *PostgreSQLParser) Comment_text() (localctx IComment_textContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(5098) + p.SetState(5100) p.Sconst() } case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5099) + p.SetState(5101) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -71259,7 +71254,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { p.EnterRule(localctx, 540, PostgreSQLParserRULE_seclabelstmt) var _la int - p.SetState(5213) + p.SetState(5215) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71269,7 +71264,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5102) + p.SetState(5104) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71277,14 +71272,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5103) + p.SetState(5105) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5105) + p.SetState(5107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71293,13 +71288,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5104) + p.SetState(5106) p.Opt_provider() } } { - p.SetState(5107) + p.SetState(5109) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71307,15 +71302,15 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5108) + p.SetState(5110) p.Object_type_any_name() } { - p.SetState(5109) + p.SetState(5111) p.Any_name() } { - p.SetState(5110) + p.SetState(5112) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71323,14 +71318,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5111) + p.SetState(5113) p.Security_label() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5113) + p.SetState(5115) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71338,14 +71333,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5114) + p.SetState(5116) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5116) + p.SetState(5118) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71354,13 +71349,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5115) + p.SetState(5117) p.Opt_provider() } } { - p.SetState(5118) + p.SetState(5120) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71368,7 +71363,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5119) + p.SetState(5121) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -71376,11 +71371,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5120) + p.SetState(5122) p.Any_name() } { - p.SetState(5121) + p.SetState(5123) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71388,14 +71383,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5122) + p.SetState(5124) p.Security_label() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5124) + p.SetState(5126) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71403,14 +71398,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5125) + p.SetState(5127) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5127) + p.SetState(5129) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71419,13 +71414,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5126) + p.SetState(5128) p.Opt_provider() } } { - p.SetState(5129) + p.SetState(5131) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71433,15 +71428,15 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5130) + p.SetState(5132) p.Object_type_name() } { - p.SetState(5131) + p.SetState(5133) p.Name() } { - p.SetState(5132) + p.SetState(5134) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71449,14 +71444,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5133) + p.SetState(5135) p.Security_label() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5135) + p.SetState(5137) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71464,14 +71459,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5136) + p.SetState(5138) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5138) + p.SetState(5140) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71480,13 +71475,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5137) + p.SetState(5139) p.Opt_provider() } } { - p.SetState(5140) + p.SetState(5142) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71494,7 +71489,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5141) + p.SetState(5143) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -71502,11 +71497,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5142) + p.SetState(5144) p.Typename() } { - p.SetState(5143) + p.SetState(5145) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71514,14 +71509,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5144) + p.SetState(5146) p.Security_label() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5146) + p.SetState(5148) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71529,14 +71524,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5147) + p.SetState(5149) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5149) + p.SetState(5151) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71545,13 +71540,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5148) + p.SetState(5150) p.Opt_provider() } } { - p.SetState(5151) + p.SetState(5153) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71559,7 +71554,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5152) + p.SetState(5154) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -71567,11 +71562,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5153) + p.SetState(5155) p.Typename() } { - p.SetState(5154) + p.SetState(5156) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71579,14 +71574,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5155) + p.SetState(5157) p.Security_label() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5157) + p.SetState(5159) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71594,14 +71589,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5158) + p.SetState(5160) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5160) + p.SetState(5162) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71610,13 +71605,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5159) + p.SetState(5161) p.Opt_provider() } } { - p.SetState(5162) + p.SetState(5164) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71624,7 +71619,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5163) + p.SetState(5165) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -71632,11 +71627,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5164) + p.SetState(5166) p.Aggregate_with_argtypes() } { - p.SetState(5165) + p.SetState(5167) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71644,14 +71639,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5166) + p.SetState(5168) p.Security_label() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5168) + p.SetState(5170) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71659,14 +71654,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5169) + p.SetState(5171) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5171) + p.SetState(5173) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71675,13 +71670,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5170) + p.SetState(5172) p.Opt_provider() } } { - p.SetState(5173) + p.SetState(5175) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71689,7 +71684,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5174) + p.SetState(5176) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -71697,11 +71692,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5175) + p.SetState(5177) p.Function_with_argtypes() } { - p.SetState(5176) + p.SetState(5178) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71709,14 +71704,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5177) + p.SetState(5179) p.Security_label() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5179) + p.SetState(5181) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71724,14 +71719,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5180) + p.SetState(5182) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5182) + p.SetState(5184) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71740,13 +71735,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5181) + p.SetState(5183) p.Opt_provider() } } { - p.SetState(5184) + p.SetState(5186) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71754,7 +71749,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5185) + p.SetState(5187) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -71762,7 +71757,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5186) + p.SetState(5188) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -71770,11 +71765,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5187) + p.SetState(5189) p.Numericonly() } { - p.SetState(5188) + p.SetState(5190) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71782,14 +71777,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5189) + p.SetState(5191) p.Security_label() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5191) + p.SetState(5193) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71797,14 +71792,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5192) + p.SetState(5194) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5194) + p.SetState(5196) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71813,13 +71808,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5193) + p.SetState(5195) p.Opt_provider() } } { - p.SetState(5196) + p.SetState(5198) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71827,7 +71822,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5197) + p.SetState(5199) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -71835,11 +71830,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5198) + p.SetState(5200) p.Function_with_argtypes() } { - p.SetState(5199) + p.SetState(5201) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71847,14 +71842,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5200) + p.SetState(5202) p.Security_label() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5202) + p.SetState(5204) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71862,14 +71857,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5203) + p.SetState(5205) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5205) + p.SetState(5207) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71878,13 +71873,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5204) + p.SetState(5206) p.Opt_provider() } } { - p.SetState(5207) + p.SetState(5209) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71892,7 +71887,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5208) + p.SetState(5210) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -71900,11 +71895,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5209) + p.SetState(5211) p.Function_with_argtypes() } { - p.SetState(5210) + p.SetState(5212) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71912,7 +71907,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5211) + p.SetState(5213) p.Security_label() } @@ -72035,7 +72030,7 @@ func (p *PostgreSQLParser) Opt_provider() (localctx IOpt_providerContext) { p.EnterRule(localctx, 542, PostgreSQLParserRULE_opt_provider) p.EnterOuterAlt(localctx, 1) { - p.SetState(5215) + p.SetState(5217) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -72043,7 +72038,7 @@ func (p *PostgreSQLParser) Opt_provider() (localctx IOpt_providerContext) { } } { - p.SetState(5216) + p.SetState(5218) p.Nonreservedword_or_sconst() } @@ -72160,7 +72155,7 @@ func (s *Security_labelContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Security_label() (localctx ISecurity_labelContext) { localctx = NewSecurity_labelContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 544, PostgreSQLParserRULE_security_label) - p.SetState(5220) + p.SetState(5222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72170,14 +72165,14 @@ func (p *PostgreSQLParser) Security_label() (localctx ISecurity_labelContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(5218) + p.SetState(5220) p.Sconst() } case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5219) + p.SetState(5221) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -72308,7 +72303,7 @@ func (s *FetchstmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { localctx = NewFetchstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 546, PostgreSQLParserRULE_fetchstmt) - p.SetState(5226) + p.SetState(5228) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72318,7 +72313,7 @@ func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { case PostgreSQLParserFETCH: p.EnterOuterAlt(localctx, 1) { - p.SetState(5222) + p.SetState(5224) p.Match(PostgreSQLParserFETCH) if p.HasError() { // Recognition error - abort rule @@ -72326,14 +72321,14 @@ func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { } } { - p.SetState(5223) + p.SetState(5225) p.Fetch_args() } case PostgreSQLParserMOVE: p.EnterOuterAlt(localctx, 2) { - p.SetState(5224) + p.SetState(5226) p.Match(PostgreSQLParserMOVE) if p.HasError() { // Recognition error - abort rule @@ -72341,7 +72336,7 @@ func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { } } { - p.SetState(5225) + p.SetState(5227) p.Fetch_args() } @@ -72556,7 +72551,7 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { p.EnterRule(localctx, 548, PostgreSQLParserRULE_fetch_args) var _la int - p.SetState(5313) + p.SetState(5315) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72566,32 +72561,32 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5228) + p.SetState(5230) p.Cursor_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5229) + p.SetState(5231) p.From_in() } { - p.SetState(5230) + p.SetState(5232) p.Cursor_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5232) + p.SetState(5234) p.Match(PostgreSQLParserNEXT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5234) + p.SetState(5236) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72600,27 +72595,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5233) + p.SetState(5235) p.Opt_from_in() } } { - p.SetState(5236) + p.SetState(5238) p.Cursor_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5237) + p.SetState(5239) p.Match(PostgreSQLParserPRIOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5239) + p.SetState(5241) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72629,27 +72624,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5238) + p.SetState(5240) p.Opt_from_in() } } { - p.SetState(5241) + p.SetState(5243) p.Cursor_name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5242) + p.SetState(5244) p.Match(PostgreSQLParserFIRST_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5244) + p.SetState(5246) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72658,27 +72653,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5243) + p.SetState(5245) p.Opt_from_in() } } { - p.SetState(5246) + p.SetState(5248) p.Cursor_name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5247) + p.SetState(5249) p.Match(PostgreSQLParserLAST_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5249) + p.SetState(5251) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72687,20 +72682,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5248) + p.SetState(5250) p.Opt_from_in() } } { - p.SetState(5251) + p.SetState(5253) p.Cursor_name() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5252) + p.SetState(5254) p.Match(PostgreSQLParserABSOLUTE_P) if p.HasError() { // Recognition error - abort rule @@ -72708,10 +72703,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5253) + p.SetState(5255) p.Signediconst() } - p.SetState(5255) + p.SetState(5257) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72720,20 +72715,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5254) + p.SetState(5256) p.Opt_from_in() } } { - p.SetState(5257) + p.SetState(5259) p.Cursor_name() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5259) + p.SetState(5261) p.Match(PostgreSQLParserRELATIVE_P) if p.HasError() { // Recognition error - abort rule @@ -72741,10 +72736,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5260) + p.SetState(5262) p.Signediconst() } - p.SetState(5262) + p.SetState(5264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72753,23 +72748,23 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5261) + p.SetState(5263) p.Opt_from_in() } } { - p.SetState(5264) + p.SetState(5266) p.Cursor_name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5266) + p.SetState(5268) p.Signediconst() } - p.SetState(5268) + p.SetState(5270) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72778,27 +72773,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5267) + p.SetState(5269) p.Opt_from_in() } } { - p.SetState(5270) + p.SetState(5272) p.Cursor_name() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5272) + p.SetState(5274) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5274) + p.SetState(5276) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72807,27 +72802,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5273) + p.SetState(5275) p.Opt_from_in() } } { - p.SetState(5276) + p.SetState(5278) p.Cursor_name() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5277) + p.SetState(5279) p.Match(PostgreSQLParserFORWARD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5279) + p.SetState(5281) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72836,20 +72831,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5278) + p.SetState(5280) p.Opt_from_in() } } { - p.SetState(5281) + p.SetState(5283) p.Cursor_name() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5282) + p.SetState(5284) p.Match(PostgreSQLParserFORWARD) if p.HasError() { // Recognition error - abort rule @@ -72857,10 +72852,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5283) + p.SetState(5285) p.Signediconst() } - p.SetState(5285) + p.SetState(5287) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72869,20 +72864,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5284) + p.SetState(5286) p.Opt_from_in() } } { - p.SetState(5287) + p.SetState(5289) p.Cursor_name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5289) + p.SetState(5291) p.Match(PostgreSQLParserFORWARD) if p.HasError() { // Recognition error - abort rule @@ -72890,14 +72885,14 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5290) + p.SetState(5292) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5292) + p.SetState(5294) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72906,27 +72901,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5291) + p.SetState(5293) p.Opt_from_in() } } { - p.SetState(5294) + p.SetState(5296) p.Cursor_name() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5295) + p.SetState(5297) p.Match(PostgreSQLParserBACKWARD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5297) + p.SetState(5299) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72935,20 +72930,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5296) + p.SetState(5298) p.Opt_from_in() } } { - p.SetState(5299) + p.SetState(5301) p.Cursor_name() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5300) + p.SetState(5302) p.Match(PostgreSQLParserBACKWARD) if p.HasError() { // Recognition error - abort rule @@ -72956,10 +72951,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5301) + p.SetState(5303) p.Signediconst() } - p.SetState(5303) + p.SetState(5305) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72968,20 +72963,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5302) + p.SetState(5304) p.Opt_from_in() } } { - p.SetState(5305) + p.SetState(5307) p.Cursor_name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5307) + p.SetState(5309) p.Match(PostgreSQLParserBACKWARD) if p.HasError() { // Recognition error - abort rule @@ -72989,14 +72984,14 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5308) + p.SetState(5310) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5310) + p.SetState(5312) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73005,13 +73000,13 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5309) + p.SetState(5311) p.Opt_from_in() } } { - p.SetState(5312) + p.SetState(5314) p.Cursor_name() } @@ -73124,7 +73119,7 @@ func (p *PostgreSQLParser) From_in() (localctx IFrom_inContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5315) + p.SetState(5317) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P) { @@ -73245,7 +73240,7 @@ func (p *PostgreSQLParser) Opt_from_in() (localctx IOpt_from_inContext) { p.EnterRule(localctx, 552, PostgreSQLParserRULE_opt_from_in) p.EnterOuterAlt(localctx, 1) { - p.SetState(5317) + p.SetState(5319) p.From_in() } @@ -73425,7 +73420,7 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { p.EnterRule(localctx, 554, PostgreSQLParserRULE_grantstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(5319) + p.SetState(5321) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -73433,11 +73428,11 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { } } { - p.SetState(5320) + p.SetState(5322) p.Privileges() } { - p.SetState(5321) + p.SetState(5323) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -73445,11 +73440,11 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { } } { - p.SetState(5322) + p.SetState(5324) p.Privilege_target() } { - p.SetState(5323) + p.SetState(5325) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -73457,15 +73452,15 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { } } { - p.SetState(5324) + p.SetState(5326) p.Grantee_list() } - p.SetState(5326) + p.SetState(5328) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 414, p.GetParserRuleContext()) == 1 { { - p.SetState(5325) + p.SetState(5327) p.Opt_grant_grant_option() } @@ -73664,7 +73659,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { p.EnterRule(localctx, 556, PostgreSQLParserRULE_revokestmt) var _la int - p.SetState(5349) + p.SetState(5351) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73674,7 +73669,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5328) + p.SetState(5330) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -73682,11 +73677,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5329) + p.SetState(5331) p.Privileges() } { - p.SetState(5330) + p.SetState(5332) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -73694,11 +73689,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5331) + p.SetState(5333) p.Privilege_target() } { - p.SetState(5332) + p.SetState(5334) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -73706,10 +73701,10 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5333) + p.SetState(5335) p.Grantee_list() } - p.SetState(5335) + p.SetState(5337) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73718,7 +73713,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5334) + p.SetState(5336) p.Opt_drop_behavior() } @@ -73727,7 +73722,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5337) + p.SetState(5339) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -73735,7 +73730,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5338) + p.SetState(5340) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -73743,7 +73738,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5339) + p.SetState(5341) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -73751,7 +73746,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5340) + p.SetState(5342) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -73759,11 +73754,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5341) + p.SetState(5343) p.Privileges() } { - p.SetState(5342) + p.SetState(5344) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -73771,11 +73766,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5343) + p.SetState(5345) p.Privilege_target() } { - p.SetState(5344) + p.SetState(5346) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -73783,10 +73778,10 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5345) + p.SetState(5347) p.Grantee_list() } - p.SetState(5347) + p.SetState(5349) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73795,7 +73790,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5346) + p.SetState(5348) p.Opt_drop_behavior() } @@ -73950,7 +73945,7 @@ func (s *PrivilegesContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { localctx = NewPrivilegesContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 558, PostgreSQLParserRULE_privileges) - p.SetState(5366) + p.SetState(5368) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73960,14 +73955,14 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5351) + p.SetState(5353) p.Privilege_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5352) + p.SetState(5354) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -73978,7 +73973,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5353) + p.SetState(5355) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -73986,7 +73981,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5354) + p.SetState(5356) p.Match(PostgreSQLParserPRIVILEGES) if p.HasError() { // Recognition error - abort rule @@ -73997,7 +73992,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5355) + p.SetState(5357) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -74005,7 +74000,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5356) + p.SetState(5358) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74013,11 +74008,11 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5357) + p.SetState(5359) p.Columnlist() } { - p.SetState(5358) + p.SetState(5360) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74028,7 +74023,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5360) + p.SetState(5362) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -74036,7 +74031,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5361) + p.SetState(5363) p.Match(PostgreSQLParserPRIVILEGES) if p.HasError() { // Recognition error - abort rule @@ -74044,7 +74039,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5362) + p.SetState(5364) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74052,11 +74047,11 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5363) + p.SetState(5365) p.Columnlist() } { - p.SetState(5364) + p.SetState(5366) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74216,10 +74211,10 @@ func (p *PostgreSQLParser) Privilege_list() (localctx IPrivilege_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5368) + p.SetState(5370) p.Privilege() } - p.SetState(5373) + p.SetState(5375) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74228,7 +74223,7 @@ func (p *PostgreSQLParser) Privilege_list() (localctx IPrivilege_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5369) + p.SetState(5371) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -74236,11 +74231,11 @@ func (p *PostgreSQLParser) Privilege_list() (localctx IPrivilege_listContext) { } } { - p.SetState(5370) + p.SetState(5372) p.Privilege() } - p.SetState(5375) + p.SetState(5377) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74400,7 +74395,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { p.EnterRule(localctx, 562, PostgreSQLParserRULE_privilege) var _la int - p.SetState(5394) + p.SetState(5396) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74410,14 +74405,14 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5376) + p.SetState(5378) p.Match(PostgreSQLParserSELECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5378) + p.SetState(5380) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74426,7 +74421,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5377) + p.SetState(5379) p.Opt_column_list() } @@ -74435,14 +74430,14 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5380) + p.SetState(5382) p.Match(PostgreSQLParserREFERENCES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5382) + p.SetState(5384) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74451,7 +74446,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5381) + p.SetState(5383) p.Opt_column_list() } @@ -74460,14 +74455,14 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5384) + p.SetState(5386) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5386) + p.SetState(5388) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74476,7 +74471,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5385) + p.SetState(5387) p.Opt_column_list() } @@ -74485,7 +74480,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5388) + p.SetState(5390) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -74493,7 +74488,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { } } { - p.SetState(5389) + p.SetState(5391) p.Match(PostgreSQLParserSYSTEM_P) if p.HasError() { // Recognition error - abort rule @@ -74504,10 +74499,10 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5390) + p.SetState(5392) p.Colid() } - p.SetState(5392) + p.SetState(5394) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74516,7 +74511,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5391) + p.SetState(5393) p.Opt_column_list() } @@ -74844,7 +74839,7 @@ func (s *Privilege_targetContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext) { localctx = NewPrivilege_targetContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 564, PostgreSQLParserRULE_privilege_target) - p.SetState(5456) + p.SetState(5458) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74854,14 +74849,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5396) + p.SetState(5398) p.Qualified_name_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5397) + p.SetState(5399) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -74869,14 +74864,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5398) + p.SetState(5400) p.Qualified_name_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5399) + p.SetState(5401) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -74884,14 +74879,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5400) + p.SetState(5402) p.Qualified_name_list() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5401) + p.SetState(5403) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -74899,7 +74894,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5402) + p.SetState(5404) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -74907,7 +74902,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5403) + p.SetState(5405) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -74915,14 +74910,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5404) + p.SetState(5406) p.Name_list() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5405) + p.SetState(5407) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -74930,7 +74925,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5406) + p.SetState(5408) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -74938,14 +74933,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5407) + p.SetState(5409) p.Name_list() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5408) + p.SetState(5410) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -74953,14 +74948,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5409) + p.SetState(5411) p.Function_with_argtypes_list() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5410) + p.SetState(5412) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -74968,14 +74963,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5411) + p.SetState(5413) p.Function_with_argtypes_list() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5412) + p.SetState(5414) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -74983,14 +74978,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5413) + p.SetState(5415) p.Function_with_argtypes_list() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5414) + p.SetState(5416) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -74998,14 +74993,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5415) + p.SetState(5417) p.Name_list() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5416) + p.SetState(5418) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -75013,14 +75008,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5417) + p.SetState(5419) p.Any_name_list() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5418) + p.SetState(5420) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -75028,14 +75023,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5419) + p.SetState(5421) p.Name_list() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5420) + p.SetState(5422) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -75043,7 +75038,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5421) + p.SetState(5423) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -75051,14 +75046,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5422) + p.SetState(5424) p.Numericonly_list() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5423) + p.SetState(5425) p.Match(PostgreSQLParserPARAMETER) if p.HasError() { // Recognition error - abort rule @@ -75066,14 +75061,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5424) + p.SetState(5426) p.Parameter_name_list() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5425) + p.SetState(5427) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75081,14 +75076,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5426) + p.SetState(5428) p.Name_list() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5427) + p.SetState(5429) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -75096,14 +75091,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5428) + p.SetState(5430) p.Name_list() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5429) + p.SetState(5431) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -75111,14 +75106,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5430) + p.SetState(5432) p.Any_name_list() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5431) + p.SetState(5433) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75126,7 +75121,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5432) + p.SetState(5434) p.Match(PostgreSQLParserTABLES) if p.HasError() { // Recognition error - abort rule @@ -75134,7 +75129,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5433) + p.SetState(5435) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75142,7 +75137,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5434) + p.SetState(5436) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75150,14 +75145,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5435) + p.SetState(5437) p.Name_list() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(5436) + p.SetState(5438) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75165,7 +75160,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5437) + p.SetState(5439) p.Match(PostgreSQLParserSEQUENCES) if p.HasError() { // Recognition error - abort rule @@ -75173,7 +75168,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5438) + p.SetState(5440) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75181,7 +75176,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5439) + p.SetState(5441) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75189,14 +75184,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5440) + p.SetState(5442) p.Name_list() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(5441) + p.SetState(5443) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75204,7 +75199,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5442) + p.SetState(5444) p.Match(PostgreSQLParserFUNCTIONS) if p.HasError() { // Recognition error - abort rule @@ -75212,7 +75207,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5443) + p.SetState(5445) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75220,7 +75215,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5444) + p.SetState(5446) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75228,14 +75223,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5445) + p.SetState(5447) p.Name_list() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(5446) + p.SetState(5448) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75243,7 +75238,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5447) + p.SetState(5449) p.Match(PostgreSQLParserPROCEDURES) if p.HasError() { // Recognition error - abort rule @@ -75251,7 +75246,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5448) + p.SetState(5450) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75259,7 +75254,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5449) + p.SetState(5451) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75267,14 +75262,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5450) + p.SetState(5452) p.Name_list() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(5451) + p.SetState(5453) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75282,7 +75277,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5452) + p.SetState(5454) p.Match(PostgreSQLParserROUTINES) if p.HasError() { // Recognition error - abort rule @@ -75290,7 +75285,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5453) + p.SetState(5455) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75298,7 +75293,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5454) + p.SetState(5456) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75306,7 +75301,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5455) + p.SetState(5457) p.Name_list() } @@ -75462,10 +75457,10 @@ func (p *PostgreSQLParser) Parameter_name_list() (localctx IParameter_name_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(5458) + p.SetState(5460) p.Parameter_name() } - p.SetState(5463) + p.SetState(5465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75474,7 +75469,7 @@ func (p *PostgreSQLParser) Parameter_name_list() (localctx IParameter_name_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(5459) + p.SetState(5461) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -75482,11 +75477,11 @@ func (p *PostgreSQLParser) Parameter_name_list() (localctx IParameter_name_listC } } { - p.SetState(5460) + p.SetState(5462) p.Parameter_name() } - p.SetState(5465) + p.SetState(5467) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75637,10 +75632,10 @@ func (p *PostgreSQLParser) Parameter_name() (localctx IParameter_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5466) + p.SetState(5468) p.Colid() } - p.SetState(5469) + p.SetState(5471) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75649,7 +75644,7 @@ func (p *PostgreSQLParser) Parameter_name() (localctx IParameter_nameContext) { if _la == PostgreSQLParserDOT { { - p.SetState(5467) + p.SetState(5469) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -75657,7 +75652,7 @@ func (p *PostgreSQLParser) Parameter_name() (localctx IParameter_nameContext) { } } { - p.SetState(5468) + p.SetState(5470) p.Colid() } @@ -75811,10 +75806,10 @@ func (p *PostgreSQLParser) Grantee_list() (localctx IGrantee_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5471) + p.SetState(5473) p.Grantee() } - p.SetState(5476) + p.SetState(5478) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75823,7 +75818,7 @@ func (p *PostgreSQLParser) Grantee_list() (localctx IGrantee_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5472) + p.SetState(5474) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -75831,11 +75826,11 @@ func (p *PostgreSQLParser) Grantee_list() (localctx IGrantee_listContext) { } } { - p.SetState(5473) + p.SetState(5475) p.Grantee() } - p.SetState(5478) + p.SetState(5480) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75956,7 +75951,7 @@ func (s *GranteeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Grantee() (localctx IGranteeContext) { localctx = NewGranteeContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 572, PostgreSQLParserRULE_grantee) - p.SetState(5482) + p.SetState(5484) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75966,14 +75961,14 @@ func (p *PostgreSQLParser) Grantee() (localctx IGranteeContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(5479) + p.SetState(5481) p.Rolespec() } case PostgreSQLParserGROUP_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5480) + p.SetState(5482) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -75981,7 +75976,7 @@ func (p *PostgreSQLParser) Grantee() (localctx IGranteeContext) { } } { - p.SetState(5481) + p.SetState(5483) p.Rolespec() } @@ -76098,7 +76093,7 @@ func (p *PostgreSQLParser) Opt_grant_grant_option() (localctx IOpt_grant_grant_o p.EnterRule(localctx, 574, PostgreSQLParserRULE_opt_grant_grant_option) p.EnterOuterAlt(localctx, 1) { - p.SetState(5484) + p.SetState(5486) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -76106,7 +76101,7 @@ func (p *PostgreSQLParser) Opt_grant_grant_option() (localctx IOpt_grant_grant_o } } { - p.SetState(5485) + p.SetState(5487) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -76114,7 +76109,7 @@ func (p *PostgreSQLParser) Opt_grant_grant_option() (localctx IOpt_grant_grant_o } } { - p.SetState(5486) + p.SetState(5488) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -76295,7 +76290,7 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5488) + p.SetState(5490) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -76303,11 +76298,11 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { } } { - p.SetState(5489) + p.SetState(5491) p.Privilege_list() } { - p.SetState(5490) + p.SetState(5492) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -76315,22 +76310,22 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { } } { - p.SetState(5491) + p.SetState(5493) p.Role_list() } - p.SetState(5493) + p.SetState(5495) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 430, p.GetParserRuleContext()) == 1 { { - p.SetState(5492) + p.SetState(5494) p.Opt_grant_admin_option() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5496) + p.SetState(5498) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76339,7 +76334,7 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { if _la == PostgreSQLParserGRANTED { { - p.SetState(5495) + p.SetState(5497) p.Opt_granted_by() } @@ -76531,7 +76526,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { p.EnterRule(localctx, 578, PostgreSQLParserRULE_revokerolestmt) var _la int - p.SetState(5521) + p.SetState(5523) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76541,7 +76536,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5498) + p.SetState(5500) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -76549,11 +76544,11 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5499) + p.SetState(5501) p.Privilege_list() } { - p.SetState(5500) + p.SetState(5502) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -76561,10 +76556,10 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5501) + p.SetState(5503) p.Role_list() } - p.SetState(5503) + p.SetState(5505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76573,12 +76568,12 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserGRANTED { { - p.SetState(5502) + p.SetState(5504) p.Opt_granted_by() } } - p.SetState(5506) + p.SetState(5508) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76587,7 +76582,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5505) + p.SetState(5507) p.Opt_drop_behavior() } @@ -76596,7 +76591,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5508) + p.SetState(5510) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -76604,7 +76599,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5509) + p.SetState(5511) p.Match(PostgreSQLParserADMIN) if p.HasError() { // Recognition error - abort rule @@ -76612,7 +76607,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5510) + p.SetState(5512) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -76620,7 +76615,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5511) + p.SetState(5513) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -76628,11 +76623,11 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5512) + p.SetState(5514) p.Privilege_list() } { - p.SetState(5513) + p.SetState(5515) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -76640,10 +76635,10 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5514) + p.SetState(5516) p.Role_list() } - p.SetState(5516) + p.SetState(5518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76652,12 +76647,12 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserGRANTED { { - p.SetState(5515) + p.SetState(5517) p.Opt_granted_by() } } - p.SetState(5519) + p.SetState(5521) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76666,7 +76661,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5518) + p.SetState(5520) p.Opt_drop_behavior() } @@ -76784,7 +76779,7 @@ func (p *PostgreSQLParser) Opt_grant_admin_option() (localctx IOpt_grant_admin_o p.EnterRule(localctx, 580, PostgreSQLParserRULE_opt_grant_admin_option) p.EnterOuterAlt(localctx, 1) { - p.SetState(5523) + p.SetState(5525) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -76792,7 +76787,7 @@ func (p *PostgreSQLParser) Opt_grant_admin_option() (localctx IOpt_grant_admin_o } } { - p.SetState(5524) + p.SetState(5526) p.Match(PostgreSQLParserADMIN) if p.HasError() { // Recognition error - abort rule @@ -76800,7 +76795,7 @@ func (p *PostgreSQLParser) Opt_grant_admin_option() (localctx IOpt_grant_admin_o } } { - p.SetState(5525) + p.SetState(5527) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -76928,7 +76923,7 @@ func (p *PostgreSQLParser) Opt_granted_by() (localctx IOpt_granted_byContext) { p.EnterRule(localctx, 582, PostgreSQLParserRULE_opt_granted_by) p.EnterOuterAlt(localctx, 1) { - p.SetState(5527) + p.SetState(5529) p.Match(PostgreSQLParserGRANTED) if p.HasError() { // Recognition error - abort rule @@ -76936,7 +76931,7 @@ func (p *PostgreSQLParser) Opt_granted_by() (localctx IOpt_granted_byContext) { } } { - p.SetState(5528) + p.SetState(5530) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -76944,7 +76939,7 @@ func (p *PostgreSQLParser) Opt_granted_by() (localctx IOpt_granted_byContext) { } } { - p.SetState(5529) + p.SetState(5531) p.Rolespec() } @@ -77090,7 +77085,7 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp p.EnterRule(localctx, 584, PostgreSQLParserRULE_alterdefaultprivilegesstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(5531) + p.SetState(5533) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -77098,7 +77093,7 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp } } { - p.SetState(5532) + p.SetState(5534) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -77106,7 +77101,7 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp } } { - p.SetState(5533) + p.SetState(5535) p.Match(PostgreSQLParserPRIVILEGES) if p.HasError() { // Recognition error - abort rule @@ -77114,11 +77109,11 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp } } { - p.SetState(5534) + p.SetState(5536) p.Defacloptionlist() } { - p.SetState(5535) + p.SetState(5537) p.Defaclaction() } @@ -77259,7 +77254,7 @@ func (p *PostgreSQLParser) Defacloptionlist() (localctx IDefacloptionlistContext var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(5540) + p.SetState(5542) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77268,11 +77263,11 @@ func (p *PostgreSQLParser) Defacloptionlist() (localctx IDefacloptionlistContext for _la == PostgreSQLParserFOR || _la == PostgreSQLParserIN_P { { - p.SetState(5537) + p.SetState(5539) p.Defacloption() } - p.SetState(5542) + p.SetState(5544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77430,7 +77425,7 @@ func (s *DefacloptionContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { localctx = NewDefacloptionContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 588, PostgreSQLParserRULE_defacloption) - p.SetState(5552) + p.SetState(5554) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77440,7 +77435,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5543) + p.SetState(5545) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -77448,7 +77443,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5544) + p.SetState(5546) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -77456,14 +77451,14 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5545) + p.SetState(5547) p.Name_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5546) + p.SetState(5548) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -77471,7 +77466,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5547) + p.SetState(5549) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -77479,14 +77474,14 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5548) + p.SetState(5550) p.Role_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5549) + p.SetState(5551) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -77494,7 +77489,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5550) + p.SetState(5552) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -77502,7 +77497,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5551) + p.SetState(5553) p.Role_list() } @@ -77723,7 +77718,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { p.EnterRule(localctx, 590, PostgreSQLParserRULE_defaclaction) var _la int - p.SetState(5584) + p.SetState(5586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77733,7 +77728,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5554) + p.SetState(5556) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -77741,11 +77736,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5555) + p.SetState(5557) p.Privileges() } { - p.SetState(5556) + p.SetState(5558) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -77753,11 +77748,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5557) + p.SetState(5559) p.Defacl_privilege_target() } { - p.SetState(5558) + p.SetState(5560) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -77765,15 +77760,15 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5559) + p.SetState(5561) p.Grantee_list() } - p.SetState(5561) + p.SetState(5563) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 439, p.GetParserRuleContext()) == 1 { { - p.SetState(5560) + p.SetState(5562) p.Opt_grant_grant_option() } @@ -77784,7 +77779,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5563) + p.SetState(5565) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -77792,11 +77787,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5564) + p.SetState(5566) p.Privileges() } { - p.SetState(5565) + p.SetState(5567) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -77804,11 +77799,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5566) + p.SetState(5568) p.Defacl_privilege_target() } { - p.SetState(5567) + p.SetState(5569) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -77816,10 +77811,10 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5568) + p.SetState(5570) p.Grantee_list() } - p.SetState(5570) + p.SetState(5572) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77828,7 +77823,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5569) + p.SetState(5571) p.Opt_drop_behavior() } @@ -77837,7 +77832,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5572) + p.SetState(5574) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -77845,7 +77840,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5573) + p.SetState(5575) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -77853,7 +77848,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5574) + p.SetState(5576) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -77861,7 +77856,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5575) + p.SetState(5577) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -77869,11 +77864,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5576) + p.SetState(5578) p.Privileges() } { - p.SetState(5577) + p.SetState(5579) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -77881,11 +77876,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5578) + p.SetState(5580) p.Defacl_privilege_target() } { - p.SetState(5579) + p.SetState(5581) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -77893,10 +77888,10 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5580) + p.SetState(5582) p.Grantee_list() } - p.SetState(5582) + p.SetState(5584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77905,7 +77900,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5581) + p.SetState(5583) p.Opt_drop_behavior() } @@ -78040,7 +78035,7 @@ func (p *PostgreSQLParser) Defacl_privilege_target() (localctx IDefacl_privilege p.EnterOuterAlt(localctx, 1) { - p.SetState(5586) + p.SetState(5588) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTIONS || ((int64((_la-341)) & ^0x3f) == 0 && ((int64(1)<<(_la-341))&4297064449) != 0) || _la == PostgreSQLParserROUTINES || _la == PostgreSQLParserSCHEMAS) { @@ -78373,14 +78368,14 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5588) + p.SetState(5590) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5590) + p.SetState(5592) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78389,20 +78384,20 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserUNIQUE { { - p.SetState(5589) + p.SetState(5591) p.Opt_unique() } } { - p.SetState(5592) + p.SetState(5594) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5594) + p.SetState(5596) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78411,12 +78406,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(5593) + p.SetState(5595) p.Opt_concurrently() } } - p.SetState(5602) + p.SetState(5604) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78424,12 +78419,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { _la = p.GetTokenStream().LA(1) if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { - p.SetState(5599) + p.SetState(5601) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 445, p.GetParserRuleContext()) == 1 { { - p.SetState(5596) + p.SetState(5598) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -78437,7 +78432,7 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5597) + p.SetState(5599) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -78445,7 +78440,7 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5598) + p.SetState(5600) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -78457,13 +78452,13 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { goto errorExit } { - p.SetState(5601) + p.SetState(5603) p.Name() } } { - p.SetState(5604) + p.SetState(5606) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -78471,10 +78466,10 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5605) + p.SetState(5607) p.Relation_expr() } - p.SetState(5607) + p.SetState(5609) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78483,13 +78478,13 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(5606) + p.SetState(5608) p.Access_method_clause() } } { - p.SetState(5609) + p.SetState(5611) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -78497,18 +78492,18 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5610) + p.SetState(5612) p.Index_params() } { - p.SetState(5611) + p.SetState(5613) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5613) + p.SetState(5615) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78517,12 +78512,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(5612) + p.SetState(5614) p.Opt_include() } } - p.SetState(5616) + p.SetState(5618) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78531,24 +78526,24 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserNULLS_P { { - p.SetState(5615) + p.SetState(5617) p.Opt_unique_null_treatment() } } - p.SetState(5619) + p.SetState(5621) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 450, p.GetParserRuleContext()) == 1 { { - p.SetState(5618) + p.SetState(5620) p.Opt_reloptions() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5622) + p.SetState(5624) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78557,12 +78552,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(5621) + p.SetState(5623) p.Opttablespace() } } - p.SetState(5625) + p.SetState(5627) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78571,7 +78566,7 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(5624) + p.SetState(5626) p.Where_clause() } @@ -78675,7 +78670,7 @@ func (p *PostgreSQLParser) Opt_unique() (localctx IOpt_uniqueContext) { p.EnterRule(localctx, 596, PostgreSQLParserRULE_opt_unique) p.EnterOuterAlt(localctx, 1) { - p.SetState(5627) + p.SetState(5629) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule @@ -78781,7 +78776,7 @@ func (p *PostgreSQLParser) Opt_concurrently() (localctx IOpt_concurrentlyContext p.EnterRule(localctx, 598, PostgreSQLParserRULE_opt_concurrently) p.EnterOuterAlt(localctx, 1) { - p.SetState(5629) + p.SetState(5631) p.Match(PostgreSQLParserCONCURRENTLY) if p.HasError() { // Recognition error - abort rule @@ -78899,7 +78894,7 @@ func (p *PostgreSQLParser) Opt_index_name() (localctx IOpt_index_nameContext) { p.EnterRule(localctx, 600, PostgreSQLParserRULE_opt_index_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(5631) + p.SetState(5633) p.Name() } @@ -79018,7 +79013,7 @@ func (p *PostgreSQLParser) Access_method_clause() (localctx IAccess_method_claus p.EnterRule(localctx, 602, PostgreSQLParserRULE_access_method_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(5633) + p.SetState(5635) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -79026,7 +79021,7 @@ func (p *PostgreSQLParser) Access_method_clause() (localctx IAccess_method_claus } } { - p.SetState(5634) + p.SetState(5636) p.Name() } @@ -79178,10 +79173,10 @@ func (p *PostgreSQLParser) Index_params() (localctx IIndex_paramsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5636) + p.SetState(5638) p.Index_elem() } - p.SetState(5641) + p.SetState(5643) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79190,7 +79185,7 @@ func (p *PostgreSQLParser) Index_params() (localctx IIndex_paramsContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5637) + p.SetState(5639) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -79198,11 +79193,11 @@ func (p *PostgreSQLParser) Index_params() (localctx IIndex_paramsContext) { } } { - p.SetState(5638) + p.SetState(5640) p.Index_elem() } - p.SetState(5643) + p.SetState(5645) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79405,7 +79400,7 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon p.EnterRule(localctx, 606, PostgreSQLParserRULE_index_elem_options) var _la int - p.SetState(5667) + p.SetState(5669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79414,31 +79409,31 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 461, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(5645) + p.SetState(5647) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 454, p.GetParserRuleContext()) == 1 { { - p.SetState(5644) + p.SetState(5646) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5648) + p.SetState(5650) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 455, p.GetParserRuleContext()) == 1 { { - p.SetState(5647) + p.SetState(5649) p.Opt_class() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5651) + p.SetState(5653) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79447,12 +79442,12 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserASC || _la == PostgreSQLParserDESC { { - p.SetState(5650) + p.SetState(5652) p.Opt_asc_desc() } } - p.SetState(5654) + p.SetState(5656) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79461,7 +79456,7 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserNULLS_P { { - p.SetState(5653) + p.SetState(5655) p.Opt_nulls_order() } @@ -79469,12 +79464,12 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(5657) + p.SetState(5659) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 458, p.GetParserRuleContext()) == 1 { { - p.SetState(5656) + p.SetState(5658) p.Opt_collate() } @@ -79482,14 +79477,14 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon goto errorExit } { - p.SetState(5659) + p.SetState(5661) p.Any_name() } { - p.SetState(5660) + p.SetState(5662) p.Reloptions() } - p.SetState(5662) + p.SetState(5664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79498,12 +79493,12 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserASC || _la == PostgreSQLParserDESC { { - p.SetState(5661) + p.SetState(5663) p.Opt_asc_desc() } } - p.SetState(5665) + p.SetState(5667) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79512,7 +79507,7 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserNULLS_P { { - p.SetState(5664) + p.SetState(5666) p.Opt_nulls_order() } @@ -79691,7 +79686,7 @@ func (s *Index_elemContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { localctx = NewIndex_elemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 608, PostgreSQLParserRULE_index_elem) - p.SetState(5680) + p.SetState(5682) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79701,29 +79696,29 @@ func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5669) + p.SetState(5671) p.Colid() } { - p.SetState(5670) + p.SetState(5672) p.Index_elem_options() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5672) + p.SetState(5674) p.Func_expr_windowless() } { - p.SetState(5673) + p.SetState(5675) p.Index_elem_options() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5675) + p.SetState(5677) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -79731,11 +79726,11 @@ func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { } } { - p.SetState(5676) + p.SetState(5678) p.A_expr() } { - p.SetState(5677) + p.SetState(5679) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -79743,7 +79738,7 @@ func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { } } { - p.SetState(5678) + p.SetState(5680) p.Index_elem_options() } @@ -79876,7 +79871,7 @@ func (p *PostgreSQLParser) Opt_include() (localctx IOpt_includeContext) { p.EnterRule(localctx, 610, PostgreSQLParserRULE_opt_include) p.EnterOuterAlt(localctx, 1) { - p.SetState(5682) + p.SetState(5684) p.Match(PostgreSQLParserINCLUDE) if p.HasError() { // Recognition error - abort rule @@ -79884,7 +79879,7 @@ func (p *PostgreSQLParser) Opt_include() (localctx IOpt_includeContext) { } } { - p.SetState(5683) + p.SetState(5685) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -79892,11 +79887,11 @@ func (p *PostgreSQLParser) Opt_include() (localctx IOpt_includeContext) { } } { - p.SetState(5684) + p.SetState(5686) p.Index_including_params() } { - p.SetState(5685) + p.SetState(5687) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -80052,10 +80047,10 @@ func (p *PostgreSQLParser) Index_including_params() (localctx IIndex_including_p p.EnterOuterAlt(localctx, 1) { - p.SetState(5687) + p.SetState(5689) p.Index_elem() } - p.SetState(5692) + p.SetState(5694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80064,7 +80059,7 @@ func (p *PostgreSQLParser) Index_including_params() (localctx IIndex_including_p for _la == PostgreSQLParserCOMMA { { - p.SetState(5688) + p.SetState(5690) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -80072,11 +80067,11 @@ func (p *PostgreSQLParser) Index_including_params() (localctx IIndex_including_p } } { - p.SetState(5689) + p.SetState(5691) p.Index_elem() } - p.SetState(5694) + p.SetState(5696) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80199,7 +80194,7 @@ func (p *PostgreSQLParser) Opt_collate() (localctx IOpt_collateContext) { p.EnterRule(localctx, 614, PostgreSQLParserRULE_opt_collate) p.EnterOuterAlt(localctx, 1) { - p.SetState(5695) + p.SetState(5697) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -80207,7 +80202,7 @@ func (p *PostgreSQLParser) Opt_collate() (localctx IOpt_collateContext) { } } { - p.SetState(5696) + p.SetState(5698) p.Any_name() } @@ -80321,7 +80316,7 @@ func (p *PostgreSQLParser) Opt_class() (localctx IOpt_classContext) { p.EnterRule(localctx, 616, PostgreSQLParserRULE_opt_class) p.EnterOuterAlt(localctx, 1) { - p.SetState(5698) + p.SetState(5700) p.Any_name() } @@ -80430,7 +80425,7 @@ func (p *PostgreSQLParser) Opt_asc_desc() (localctx IOpt_asc_descContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5700) + p.SetState(5702) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserASC || _la == PostgreSQLParserDESC) { @@ -80547,7 +80542,7 @@ func (s *Opt_nulls_orderContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) { localctx = NewOpt_nulls_orderContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 620, PostgreSQLParserRULE_opt_nulls_order) - p.SetState(5706) + p.SetState(5708) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80557,7 +80552,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5702) + p.SetState(5704) p.Match(PostgreSQLParserNULLS_P) if p.HasError() { // Recognition error - abort rule @@ -80565,7 +80560,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) } } { - p.SetState(5703) + p.SetState(5705) p.Match(PostgreSQLParserFIRST_P) if p.HasError() { // Recognition error - abort rule @@ -80576,7 +80571,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5704) + p.SetState(5706) p.Match(PostgreSQLParserNULLS_P) if p.HasError() { // Recognition error - abort rule @@ -80584,7 +80579,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) } } { - p.SetState(5705) + p.SetState(5707) p.Match(PostgreSQLParserLAST_P) if p.HasError() { // Recognition error - abort rule @@ -80828,14 +80823,14 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon p.EnterOuterAlt(localctx, 1) { - p.SetState(5708) + p.SetState(5710) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5710) + p.SetState(5712) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80844,13 +80839,13 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon if _la == PostgreSQLParserOR { { - p.SetState(5709) + p.SetState(5711) p.Opt_or_replace() } } { - p.SetState(5712) + p.SetState(5714) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTION || _la == PostgreSQLParserPROCEDURE) { @@ -80861,26 +80856,26 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon } } { - p.SetState(5713) + p.SetState(5715) p.Func_name() } { - p.SetState(5714) + p.SetState(5716) p.Func_args_with_defaults() } - p.SetState(5724) + p.SetState(5726) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 467, p.GetParserRuleContext()) == 1 { { - p.SetState(5715) + p.SetState(5717) p.Match(PostgreSQLParserRETURNS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5722) + p.SetState(5724) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80889,13 +80884,13 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 466, p.GetParserRuleContext()) { case 1: { - p.SetState(5716) + p.SetState(5718) p.Func_return() } case 2: { - p.SetState(5717) + p.SetState(5719) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -80903,7 +80898,7 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon } } { - p.SetState(5718) + p.SetState(5720) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -80911,11 +80906,11 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon } } { - p.SetState(5719) + p.SetState(5721) p.Table_func_column_list() } { - p.SetState(5720) + p.SetState(5722) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -80931,7 +80926,7 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon goto errorExit } { - p.SetState(5726) + p.SetState(5728) p.Createfunc_opt_list() } @@ -81038,7 +81033,7 @@ func (p *PostgreSQLParser) Opt_or_replace() (localctx IOpt_or_replaceContext) { p.EnterRule(localctx, 624, PostgreSQLParserRULE_opt_or_replace) p.EnterOuterAlt(localctx, 1) { - p.SetState(5728) + p.SetState(5730) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -81046,7 +81041,7 @@ func (p *PostgreSQLParser) Opt_or_replace() (localctx IOpt_or_replaceContext) { } } { - p.SetState(5729) + p.SetState(5731) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -81176,14 +81171,14 @@ func (p *PostgreSQLParser) Func_args() (localctx IFunc_argsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5731) + p.SetState(5733) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5733) + p.SetState(5735) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81192,13 +81187,13 @@ func (p *PostgreSQLParser) Func_args() (localctx IFunc_argsContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-68)) & ^0x3f) == 0 && ((int64(1)<<(_la-68))&-87818259981664255) != 0) || ((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&-1) != 0) || ((int64((_la-196)) & ^0x3f) == 0 && ((int64(1)<<(_la-196))&-1) != 0) || ((int64((_la-260)) & ^0x3f) == 0 && ((int64(1)<<(_la-260))&-4609) != 0) || ((int64((_la-324)) & ^0x3f) == 0 && ((int64(1)<<(_la-324))&-1) != 0) || ((int64((_la-388)) & ^0x3f) == 0 && ((int64(1)<<(_la-388))&-1) != 0) || ((int64((_la-452)) & ^0x3f) == 0 && ((int64(1)<<(_la-452))&-8388609) != 0) || ((int64((_la-516)) & ^0x3f) == 0 && ((int64(1)<<(_la-516))&-16778497) != 0) || ((int64((_la-580)) & ^0x3f) == 0 && ((int64(1)<<(_la-580))&-1) != 0) || ((int64((_la-644)) & ^0x3f) == 0 && ((int64(1)<<(_la-644))&105553153769471) != 0) { { - p.SetState(5732) + p.SetState(5734) p.Func_args_list() } } { - p.SetState(5735) + p.SetState(5737) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -81354,10 +81349,10 @@ func (p *PostgreSQLParser) Func_args_list() (localctx IFunc_args_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5737) + p.SetState(5739) p.Func_arg() } - p.SetState(5742) + p.SetState(5744) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81366,7 +81361,7 @@ func (p *PostgreSQLParser) Func_args_list() (localctx IFunc_args_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5738) + p.SetState(5740) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -81374,11 +81369,11 @@ func (p *PostgreSQLParser) Func_args_list() (localctx IFunc_args_listContext) { } } { - p.SetState(5739) + p.SetState(5741) p.Func_arg() } - p.SetState(5744) + p.SetState(5746) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81534,10 +81529,10 @@ func (p *PostgreSQLParser) Function_with_argtypes_list() (localctx IFunction_wit p.EnterOuterAlt(localctx, 1) { - p.SetState(5745) + p.SetState(5747) p.Function_with_argtypes() } - p.SetState(5750) + p.SetState(5752) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81546,7 +81541,7 @@ func (p *PostgreSQLParser) Function_with_argtypes_list() (localctx IFunction_wit for _la == PostgreSQLParserCOMMA { { - p.SetState(5746) + p.SetState(5748) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -81554,11 +81549,11 @@ func (p *PostgreSQLParser) Function_with_argtypes_list() (localctx IFunction_wit } } { - p.SetState(5747) + p.SetState(5749) p.Function_with_argtypes() } - p.SetState(5752) + p.SetState(5754) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81744,7 +81739,7 @@ func (p *PostgreSQLParser) Function_with_argtypes() (localctx IFunction_with_arg p.EnterRule(localctx, 632, PostgreSQLParserRULE_function_with_argtypes) var _la int - p.SetState(5761) + p.SetState(5763) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81754,28 +81749,28 @@ func (p *PostgreSQLParser) Function_with_argtypes() (localctx IFunction_with_arg case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5753) + p.SetState(5755) p.Func_name() } { - p.SetState(5754) + p.SetState(5756) p.Func_args() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5756) + p.SetState(5758) p.Type_func_name_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5757) + p.SetState(5759) p.Colid() } - p.SetState(5759) + p.SetState(5761) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81784,7 +81779,7 @@ func (p *PostgreSQLParser) Function_with_argtypes() (localctx IFunction_with_arg if _la == PostgreSQLParserOPEN_BRACKET || _la == PostgreSQLParserDOT { { - p.SetState(5758) + p.SetState(5760) p.Indirection() } @@ -81916,14 +81911,14 @@ func (p *PostgreSQLParser) Func_args_with_defaults() (localctx IFunc_args_with_d p.EnterOuterAlt(localctx, 1) { - p.SetState(5763) + p.SetState(5765) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5765) + p.SetState(5767) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81932,13 +81927,13 @@ func (p *PostgreSQLParser) Func_args_with_defaults() (localctx IFunc_args_with_d if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-68)) & ^0x3f) == 0 && ((int64(1)<<(_la-68))&-87818259981664255) != 0) || ((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&-1) != 0) || ((int64((_la-196)) & ^0x3f) == 0 && ((int64(1)<<(_la-196))&-1) != 0) || ((int64((_la-260)) & ^0x3f) == 0 && ((int64(1)<<(_la-260))&-4609) != 0) || ((int64((_la-324)) & ^0x3f) == 0 && ((int64(1)<<(_la-324))&-1) != 0) || ((int64((_la-388)) & ^0x3f) == 0 && ((int64(1)<<(_la-388))&-1) != 0) || ((int64((_la-452)) & ^0x3f) == 0 && ((int64(1)<<(_la-452))&-8388609) != 0) || ((int64((_la-516)) & ^0x3f) == 0 && ((int64(1)<<(_la-516))&-16778497) != 0) || ((int64((_la-580)) & ^0x3f) == 0 && ((int64(1)<<(_la-580))&-1) != 0) || ((int64((_la-644)) & ^0x3f) == 0 && ((int64(1)<<(_la-644))&105553153769471) != 0) { { - p.SetState(5764) + p.SetState(5766) p.Func_args_with_defaults_list() } } { - p.SetState(5767) + p.SetState(5769) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -82094,10 +82089,10 @@ func (p *PostgreSQLParser) Func_args_with_defaults_list() (localctx IFunc_args_w p.EnterOuterAlt(localctx, 1) { - p.SetState(5769) + p.SetState(5771) p.Func_arg_with_default() } - p.SetState(5774) + p.SetState(5776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82106,7 +82101,7 @@ func (p *PostgreSQLParser) Func_args_with_defaults_list() (localctx IFunc_args_w for _la == PostgreSQLParserCOMMA { { - p.SetState(5770) + p.SetState(5772) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -82114,11 +82109,11 @@ func (p *PostgreSQLParser) Func_args_with_defaults_list() (localctx IFunc_args_w } } { - p.SetState(5771) + p.SetState(5773) p.Func_arg_with_default() } - p.SetState(5776) + p.SetState(5778) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82268,7 +82263,7 @@ func (s *Func_argContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { localctx = NewFunc_argContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 638, PostgreSQLParserRULE_func_arg) - p.SetState(5790) + p.SetState(5792) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82278,15 +82273,15 @@ func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5777) + p.SetState(5779) p.Arg_class() } - p.SetState(5779) + p.SetState(5781) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 475, p.GetParserRuleContext()) == 1 { { - p.SetState(5778) + p.SetState(5780) p.Param_name() } @@ -82294,22 +82289,22 @@ func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { goto errorExit } { - p.SetState(5781) + p.SetState(5783) p.Func_type() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5783) + p.SetState(5785) p.Param_name() } - p.SetState(5785) + p.SetState(5787) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 476, p.GetParserRuleContext()) == 1 { { - p.SetState(5784) + p.SetState(5786) p.Arg_class() } @@ -82317,14 +82312,14 @@ func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { goto errorExit } { - p.SetState(5787) + p.SetState(5789) p.Func_type() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5789) + p.SetState(5791) p.Func_type() } @@ -82443,7 +82438,7 @@ func (s *Arg_classContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { localctx = NewArg_classContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 640, PostgreSQLParserRULE_arg_class) - p.SetState(5799) + p.SetState(5801) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82453,19 +82448,19 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserIN_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(5792) + p.SetState(5794) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5794) + p.SetState(5796) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 478, p.GetParserRuleContext()) == 1 { { - p.SetState(5793) + p.SetState(5795) p.Match(PostgreSQLParserOUT_P) if p.HasError() { // Recognition error - abort rule @@ -82480,7 +82475,7 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserOUT_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5796) + p.SetState(5798) p.Match(PostgreSQLParserOUT_P) if p.HasError() { // Recognition error - abort rule @@ -82491,7 +82486,7 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserINOUT: p.EnterOuterAlt(localctx, 3) { - p.SetState(5797) + p.SetState(5799) p.Match(PostgreSQLParserINOUT) if p.HasError() { // Recognition error - abort rule @@ -82502,7 +82497,7 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserVARIADIC: p.EnterOuterAlt(localctx, 4) { - p.SetState(5798) + p.SetState(5800) p.Match(PostgreSQLParserVARIADIC) if p.HasError() { // Recognition error - abort rule @@ -82650,7 +82645,7 @@ func (s *Param_nameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Param_name() (localctx IParam_nameContext) { localctx = NewParam_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 642, PostgreSQLParserRULE_param_name) - p.SetState(5805) + p.SetState(5807) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82660,21 +82655,21 @@ func (p *PostgreSQLParser) Param_name() (localctx IParam_nameContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5801) + p.SetState(5803) p.Type_function_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5802) + p.SetState(5804) p.Builtin_function_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5803) + p.SetState(5805) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -82685,7 +82680,7 @@ func (p *PostgreSQLParser) Param_name() (localctx IParam_nameContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5804) + p.SetState(5806) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -82807,7 +82802,7 @@ func (p *PostgreSQLParser) Func_return() (localctx IFunc_returnContext) { p.EnterRule(localctx, 644, PostgreSQLParserRULE_func_return) p.EnterOuterAlt(localctx, 1) { - p.SetState(5807) + p.SetState(5809) p.Func_type() } @@ -82997,7 +82992,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { p.EnterRule(localctx, 646, PostgreSQLParserRULE_func_type) var _la int - p.SetState(5823) + p.SetState(5825) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83007,13 +83002,13 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5809) + p.SetState(5811) p.Typename() } case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(5811) + p.SetState(5813) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83022,7 +83017,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { if _la == PostgreSQLParserSETOF { { - p.SetState(5810) + p.SetState(5812) p.Match(PostgreSQLParserSETOF) if p.HasError() { // Recognition error - abort rule @@ -83031,7 +83026,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { } } - p.SetState(5817) + p.SetState(5819) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83040,19 +83035,19 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 482, p.GetParserRuleContext()) { case 1: { - p.SetState(5813) + p.SetState(5815) p.Builtin_function_name() } case 2: { - p.SetState(5814) + p.SetState(5816) p.Type_function_name() } case 3: { - p.SetState(5815) + p.SetState(5817) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -83062,7 +83057,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { case 4: { - p.SetState(5816) + p.SetState(5818) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -83074,11 +83069,11 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { goto errorExit } { - p.SetState(5819) + p.SetState(5821) p.Attrs() } { - p.SetState(5820) + p.SetState(5822) p.Match(PostgreSQLParserPERCENT) if p.HasError() { // Recognition error - abort rule @@ -83086,7 +83081,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { } } { - p.SetState(5821) + p.SetState(5823) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -83237,10 +83232,10 @@ func (p *PostgreSQLParser) Func_arg_with_default() (localctx IFunc_arg_with_defa p.EnterOuterAlt(localctx, 1) { - p.SetState(5825) + p.SetState(5827) p.Func_arg() } - p.SetState(5828) + p.SetState(5830) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83249,7 +83244,7 @@ func (p *PostgreSQLParser) Func_arg_with_default() (localctx IFunc_arg_with_defa if _la == PostgreSQLParserEQUAL || _la == PostgreSQLParserDEFAULT { { - p.SetState(5826) + p.SetState(5828) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEQUAL || _la == PostgreSQLParserDEFAULT) { @@ -83260,7 +83255,7 @@ func (p *PostgreSQLParser) Func_arg_with_default() (localctx IFunc_arg_with_defa } } { - p.SetState(5827) + p.SetState(5829) p.A_expr() } @@ -83376,7 +83371,7 @@ func (p *PostgreSQLParser) Aggr_arg() (localctx IAggr_argContext) { p.EnterRule(localctx, 650, PostgreSQLParserRULE_aggr_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(5830) + p.SetState(5832) p.Func_arg() } @@ -83541,14 +83536,14 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { p.EnterRule(localctx, 652, PostgreSQLParserRULE_aggr_args) p.EnterOuterAlt(localctx, 1) { - p.SetState(5832) + p.SetState(5834) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5843) + p.SetState(5845) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83557,7 +83552,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 485, p.GetParserRuleContext()) { case 1: { - p.SetState(5833) + p.SetState(5835) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -83567,13 +83562,13 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { case 2: { - p.SetState(5834) + p.SetState(5836) p.Aggr_args_list() } case 3: { - p.SetState(5835) + p.SetState(5837) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -83581,7 +83576,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5836) + p.SetState(5838) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -83589,17 +83584,17 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5837) + p.SetState(5839) p.Aggr_args_list() } case 4: { - p.SetState(5838) + p.SetState(5840) p.Aggr_args_list() } { - p.SetState(5839) + p.SetState(5841) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -83607,7 +83602,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5840) + p.SetState(5842) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -83615,7 +83610,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5841) + p.SetState(5843) p.Aggr_args_list() } @@ -83623,7 +83618,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { goto errorExit } { - p.SetState(5845) + p.SetState(5847) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -83779,10 +83774,10 @@ func (p *PostgreSQLParser) Aggr_args_list() (localctx IAggr_args_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5847) + p.SetState(5849) p.Aggr_arg() } - p.SetState(5852) + p.SetState(5854) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83791,7 +83786,7 @@ func (p *PostgreSQLParser) Aggr_args_list() (localctx IAggr_args_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5848) + p.SetState(5850) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -83799,11 +83794,11 @@ func (p *PostgreSQLParser) Aggr_args_list() (localctx IAggr_args_listContext) { } } { - p.SetState(5849) + p.SetState(5851) p.Aggr_arg() } - p.SetState(5854) + p.SetState(5856) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83938,11 +83933,11 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes() (localctx IAggregate_with_a p.EnterRule(localctx, 656, PostgreSQLParserRULE_aggregate_with_argtypes) p.EnterOuterAlt(localctx, 1) { - p.SetState(5855) + p.SetState(5857) p.Func_name() } { - p.SetState(5856) + p.SetState(5858) p.Aggr_args() } @@ -84094,10 +84089,10 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes_list() (localctx IAggregate_w p.EnterOuterAlt(localctx, 1) { - p.SetState(5858) + p.SetState(5860) p.Aggregate_with_argtypes() } - p.SetState(5863) + p.SetState(5865) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84106,7 +84101,7 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes_list() (localctx IAggregate_w for _la == PostgreSQLParserCOMMA { { - p.SetState(5859) + p.SetState(5861) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -84114,11 +84109,11 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes_list() (localctx IAggregate_w } } { - p.SetState(5860) + p.SetState(5862) p.Aggregate_with_argtypes() } - p.SetState(5865) + p.SetState(5867) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84263,7 +84258,7 @@ func (p *PostgreSQLParser) Createfunc_opt_list() (localctx ICreatefunc_opt_listC var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(5867) + p.SetState(5869) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84273,7 +84268,7 @@ func (p *PostgreSQLParser) Createfunc_opt_list() (localctx ICreatefunc_opt_listC switch _alt { case 1: { - p.SetState(5866) + p.SetState(5868) p.Createfunc_opt_item() } @@ -84282,7 +84277,7 @@ func (p *PostgreSQLParser) Createfunc_opt_list() (localctx ICreatefunc_opt_listC goto errorExit } - p.SetState(5869) + p.SetState(5871) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 488, p.GetParserRuleContext()) if p.HasError() { @@ -84551,7 +84546,7 @@ func (s *Common_func_opt_itemContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_itemContext) { localctx = NewCommon_func_opt_itemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 662, PostgreSQLParserRULE_common_func_opt_item) - p.SetState(5908) + p.SetState(5910) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84561,7 +84556,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5873) + p.SetState(5875) p.Match(PostgreSQLParserCALLED) if p.HasError() { // Recognition error - abort rule @@ -84569,7 +84564,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5874) + p.SetState(5876) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -84577,7 +84572,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5875) + p.SetState(5877) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -84585,7 +84580,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5876) + p.SetState(5878) p.Match(PostgreSQLParserINPUT_P) if p.HasError() { // Recognition error - abort rule @@ -84596,7 +84591,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5877) + p.SetState(5879) p.Match(PostgreSQLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -84604,7 +84599,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5878) + p.SetState(5880) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -84612,7 +84607,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5879) + p.SetState(5881) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -84620,7 +84615,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5880) + p.SetState(5882) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -84628,7 +84623,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5881) + p.SetState(5883) p.Match(PostgreSQLParserINPUT_P) if p.HasError() { // Recognition error - abort rule @@ -84639,7 +84634,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5882) + p.SetState(5884) p.Match(PostgreSQLParserSTRICT_P) if p.HasError() { // Recognition error - abort rule @@ -84650,7 +84645,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5883) + p.SetState(5885) p.Match(PostgreSQLParserIMMUTABLE) if p.HasError() { // Recognition error - abort rule @@ -84661,7 +84656,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5884) + p.SetState(5886) p.Match(PostgreSQLParserSTABLE) if p.HasError() { // Recognition error - abort rule @@ -84672,7 +84667,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5885) + p.SetState(5887) p.Match(PostgreSQLParserVOLATILE) if p.HasError() { // Recognition error - abort rule @@ -84683,7 +84678,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5886) + p.SetState(5888) p.Match(PostgreSQLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -84691,7 +84686,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5887) + p.SetState(5889) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84699,7 +84694,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5888) + p.SetState(5890) p.Match(PostgreSQLParserDEFINER) if p.HasError() { // Recognition error - abort rule @@ -84710,7 +84705,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5889) + p.SetState(5891) p.Match(PostgreSQLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -84718,7 +84713,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5890) + p.SetState(5892) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84726,7 +84721,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5891) + p.SetState(5893) p.Match(PostgreSQLParserINVOKER) if p.HasError() { // Recognition error - abort rule @@ -84737,7 +84732,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5892) + p.SetState(5894) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84745,7 +84740,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5893) + p.SetState(5895) p.Match(PostgreSQLParserDEFINER) if p.HasError() { // Recognition error - abort rule @@ -84756,7 +84751,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5894) + p.SetState(5896) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84764,7 +84759,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5895) + p.SetState(5897) p.Match(PostgreSQLParserINVOKER) if p.HasError() { // Recognition error - abort rule @@ -84775,7 +84770,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5896) + p.SetState(5898) p.Match(PostgreSQLParserLEAKPROOF) if p.HasError() { // Recognition error - abort rule @@ -84786,7 +84781,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5897) + p.SetState(5899) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -84794,7 +84789,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5898) + p.SetState(5900) p.Match(PostgreSQLParserLEAKPROOF) if p.HasError() { // Recognition error - abort rule @@ -84805,7 +84800,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5899) + p.SetState(5901) p.Match(PostgreSQLParserCOST) if p.HasError() { // Recognition error - abort rule @@ -84813,14 +84808,14 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5900) + p.SetState(5902) p.Numericonly() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5901) + p.SetState(5903) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -84828,14 +84823,14 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5902) + p.SetState(5904) p.Numericonly() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5903) + p.SetState(5905) p.Match(PostgreSQLParserSUPPORT) if p.HasError() { // Recognition error - abort rule @@ -84843,21 +84838,21 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5904) + p.SetState(5906) p.Any_name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5905) + p.SetState(5907) p.Functionsetresetclause() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5906) + p.SetState(5908) p.Match(PostgreSQLParserPARALLEL) if p.HasError() { // Recognition error - abort rule @@ -84865,7 +84860,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5907) + p.SetState(5909) p.Colid() } @@ -85084,7 +85079,7 @@ func (s *Createfunc_opt_itemContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemContext) { localctx = NewCreatefunc_opt_itemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 664, PostgreSQLParserRULE_createfunc_opt_item) - p.SetState(5923) + p.SetState(5925) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85094,7 +85089,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC case PostgreSQLParserAS: p.EnterOuterAlt(localctx, 1) { - p.SetState(5910) + p.SetState(5912) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -85102,14 +85097,14 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5911) + p.SetState(5913) p.Func_as() } case PostgreSQLParserBEGIN_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5912) + p.SetState(5914) p.Match(PostgreSQLParserBEGIN_P) if p.HasError() { // Recognition error - abort rule @@ -85117,7 +85112,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5913) + p.SetState(5915) p.Match(PostgreSQLParserATOMIC_P) if p.HasError() { // Recognition error - abort rule @@ -85125,11 +85120,11 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5914) + p.SetState(5916) p.Stmtmulti() } { - p.SetState(5915) + p.SetState(5917) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -85140,7 +85135,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC case PostgreSQLParserLANGUAGE: p.EnterOuterAlt(localctx, 3) { - p.SetState(5917) + p.SetState(5919) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -85148,14 +85143,14 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5918) + p.SetState(5920) p.Nonreservedword_or_sconst() } case PostgreSQLParserTRANSFORM: p.EnterOuterAlt(localctx, 4) { - p.SetState(5919) + p.SetState(5921) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -85163,14 +85158,14 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5920) + p.SetState(5922) p.Transform_type_list() } case PostgreSQLParserWINDOW: p.EnterOuterAlt(localctx, 5) { - p.SetState(5921) + p.SetState(5923) p.Match(PostgreSQLParserWINDOW) if p.HasError() { // Recognition error - abort rule @@ -85181,7 +85176,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC case PostgreSQLParserNOT, PostgreSQLParserCALLED, PostgreSQLParserCOST, PostgreSQLParserEXTERNAL, PostgreSQLParserIMMUTABLE, PostgreSQLParserLEAKPROOF, PostgreSQLParserRESET, PostgreSQLParserRETURNS, PostgreSQLParserROWS, PostgreSQLParserSECURITY, PostgreSQLParserSET, PostgreSQLParserSTABLE, PostgreSQLParserSTRICT_P, PostgreSQLParserVOLATILE, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL: p.EnterOuterAlt(localctx, 6) { - p.SetState(5922) + p.SetState(5924) p.Common_func_opt_item() } @@ -85351,7 +85346,7 @@ func (s *Func_asContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { localctx = NewFunc_asContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 666, PostgreSQLParserRULE_func_as) - p.SetState(5930) + p.SetState(5932) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85361,7 +85356,7 @@ func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5925) + p.SetState(5927) var _x = p.Sconst() @@ -85371,11 +85366,11 @@ func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5926) + p.SetState(5928) p.Sconst() } { - p.SetState(5927) + p.SetState(5929) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -85383,7 +85378,7 @@ func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { } } { - p.SetState(5928) + p.SetState(5930) p.Sconst() } @@ -85559,7 +85554,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(5932) + p.SetState(5934) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -85567,7 +85562,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5933) + p.SetState(5935) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -85575,10 +85570,10 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5934) + p.SetState(5936) p.Typename() } - p.SetState(5941) + p.SetState(5943) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85587,7 +85582,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(5935) + p.SetState(5937) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -85595,7 +85590,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5936) + p.SetState(5938) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -85603,7 +85598,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5937) + p.SetState(5939) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -85611,11 +85606,11 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5938) + p.SetState(5940) p.Typename() } - p.SetState(5943) + p.SetState(5945) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85738,7 +85733,7 @@ func (p *PostgreSQLParser) Opt_definition() (localctx IOpt_definitionContext) { p.EnterRule(localctx, 670, PostgreSQLParserRULE_opt_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(5944) + p.SetState(5946) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -85746,7 +85741,7 @@ func (p *PostgreSQLParser) Opt_definition() (localctx IOpt_definitionContext) { } } { - p.SetState(5945) + p.SetState(5947) p.Definition() } @@ -85877,11 +85872,11 @@ func (p *PostgreSQLParser) Table_func_column() (localctx ITable_func_columnConte p.EnterRule(localctx, 672, PostgreSQLParserRULE_table_func_column) p.EnterOuterAlt(localctx, 1) { - p.SetState(5947) + p.SetState(5949) p.Param_name() } { - p.SetState(5948) + p.SetState(5950) p.Func_type() } @@ -86033,10 +86028,10 @@ func (p *PostgreSQLParser) Table_func_column_list() (localctx ITable_func_column p.EnterOuterAlt(localctx, 1) { - p.SetState(5950) + p.SetState(5952) p.Table_func_column() } - p.SetState(5955) + p.SetState(5957) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86045,7 +86040,7 @@ func (p *PostgreSQLParser) Table_func_column_list() (localctx ITable_func_column for _la == PostgreSQLParserCOMMA { { - p.SetState(5951) + p.SetState(5953) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -86053,11 +86048,11 @@ func (p *PostgreSQLParser) Table_func_column_list() (localctx ITable_func_column } } { - p.SetState(5952) + p.SetState(5954) p.Table_func_column() } - p.SetState(5957) + p.SetState(5959) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86231,7 +86226,7 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(5958) + p.SetState(5960) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -86239,7 +86234,7 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte } } { - p.SetState(5959) + p.SetState(5961) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTION || _la == PostgreSQLParserPROCEDURE || _la == PostgreSQLParserROUTINE) { @@ -86250,14 +86245,14 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte } } { - p.SetState(5960) + p.SetState(5962) p.Function_with_argtypes() } { - p.SetState(5961) + p.SetState(5963) p.Alterfunc_opt_list() } - p.SetState(5963) + p.SetState(5965) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86266,7 +86261,7 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte if _la == PostgreSQLParserRESTRICT { { - p.SetState(5962) + p.SetState(5964) p.Opt_restrict() } @@ -86409,7 +86404,7 @@ func (p *PostgreSQLParser) Alterfunc_opt_list() (localctx IAlterfunc_opt_listCon var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(5966) + p.SetState(5968) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86419,7 +86414,7 @@ func (p *PostgreSQLParser) Alterfunc_opt_list() (localctx IAlterfunc_opt_listCon switch _alt { case 1: { - p.SetState(5965) + p.SetState(5967) p.Common_func_opt_item() } @@ -86428,7 +86423,7 @@ func (p *PostgreSQLParser) Alterfunc_opt_list() (localctx IAlterfunc_opt_listCon goto errorExit } - p.SetState(5968) + p.SetState(5970) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 495, p.GetParserRuleContext()) if p.HasError() { @@ -86534,7 +86529,7 @@ func (p *PostgreSQLParser) Opt_restrict() (localctx IOpt_restrictContext) { p.EnterRule(localctx, 680, PostgreSQLParserRULE_opt_restrict) p.EnterOuterAlt(localctx, 1) { - p.SetState(5970) + p.SetState(5972) p.Match(PostgreSQLParserRESTRICT) if p.HasError() { // Recognition error - abort rule @@ -86699,7 +86694,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { p.EnterRule(localctx, 682, PostgreSQLParserRULE_removefuncstmt) var _la int - p.SetState(6014) + p.SetState(6016) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86709,7 +86704,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5972) + p.SetState(5974) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86717,7 +86712,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5973) + p.SetState(5975) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -86725,10 +86720,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5974) + p.SetState(5976) p.Function_with_argtypes_list() } - p.SetState(5976) + p.SetState(5978) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86737,7 +86732,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5975) + p.SetState(5977) p.Opt_drop_behavior() } @@ -86746,7 +86741,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5978) + p.SetState(5980) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86754,7 +86749,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5979) + p.SetState(5981) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -86762,7 +86757,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5980) + p.SetState(5982) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -86770,7 +86765,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5981) + p.SetState(5983) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -86778,10 +86773,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5982) + p.SetState(5984) p.Function_with_argtypes_list() } - p.SetState(5984) + p.SetState(5986) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86790,7 +86785,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5983) + p.SetState(5985) p.Opt_drop_behavior() } @@ -86799,7 +86794,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5986) + p.SetState(5988) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86807,7 +86802,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5987) + p.SetState(5989) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -86815,10 +86810,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5988) + p.SetState(5990) p.Function_with_argtypes_list() } - p.SetState(5990) + p.SetState(5992) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86827,7 +86822,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5989) + p.SetState(5991) p.Opt_drop_behavior() } @@ -86836,7 +86831,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5992) + p.SetState(5994) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86844,7 +86839,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5993) + p.SetState(5995) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -86852,7 +86847,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5994) + p.SetState(5996) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -86860,7 +86855,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5995) + p.SetState(5997) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -86868,10 +86863,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5996) + p.SetState(5998) p.Function_with_argtypes_list() } - p.SetState(5998) + p.SetState(6000) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86880,7 +86875,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5997) + p.SetState(5999) p.Opt_drop_behavior() } @@ -86889,7 +86884,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6000) + p.SetState(6002) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86897,7 +86892,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6001) + p.SetState(6003) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -86905,10 +86900,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6002) + p.SetState(6004) p.Function_with_argtypes_list() } - p.SetState(6004) + p.SetState(6006) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86917,7 +86912,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6003) + p.SetState(6005) p.Opt_drop_behavior() } @@ -86926,7 +86921,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6006) + p.SetState(6008) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86934,7 +86929,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6007) + p.SetState(6009) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -86942,7 +86937,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6008) + p.SetState(6010) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -86950,7 +86945,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6009) + p.SetState(6011) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -86958,10 +86953,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6010) + p.SetState(6012) p.Function_with_argtypes_list() } - p.SetState(6012) + p.SetState(6014) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86970,7 +86965,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6011) + p.SetState(6013) p.Opt_drop_behavior() } @@ -87127,7 +87122,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { p.EnterRule(localctx, 684, PostgreSQLParserRULE_removeaggrstmt) var _la int - p.SetState(6030) + p.SetState(6032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87137,7 +87132,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6016) + p.SetState(6018) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87145,7 +87140,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6017) + p.SetState(6019) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -87153,10 +87148,10 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6018) + p.SetState(6020) p.Aggregate_with_argtypes_list() } - p.SetState(6020) + p.SetState(6022) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87165,7 +87160,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6019) + p.SetState(6021) p.Opt_drop_behavior() } @@ -87174,7 +87169,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6022) + p.SetState(6024) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87182,7 +87177,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6023) + p.SetState(6025) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -87190,7 +87185,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6024) + p.SetState(6026) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -87198,7 +87193,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6025) + p.SetState(6027) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -87206,10 +87201,10 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6026) + p.SetState(6028) p.Aggregate_with_argtypes_list() } - p.SetState(6028) + p.SetState(6030) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87218,7 +87213,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6027) + p.SetState(6029) p.Opt_drop_behavior() } @@ -87375,7 +87370,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { p.EnterRule(localctx, 686, PostgreSQLParserRULE_removeoperstmt) var _la int - p.SetState(6046) + p.SetState(6048) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87385,7 +87380,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6032) + p.SetState(6034) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87393,7 +87388,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6033) + p.SetState(6035) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -87401,10 +87396,10 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6034) + p.SetState(6036) p.Operator_with_argtypes_list() } - p.SetState(6036) + p.SetState(6038) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87413,7 +87408,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6035) + p.SetState(6037) p.Opt_drop_behavior() } @@ -87422,7 +87417,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6038) + p.SetState(6040) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87430,7 +87425,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6039) + p.SetState(6041) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -87438,7 +87433,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6040) + p.SetState(6042) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -87446,7 +87441,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6041) + p.SetState(6043) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -87454,10 +87449,10 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6042) + p.SetState(6044) p.Operator_with_argtypes_list() } - p.SetState(6044) + p.SetState(6046) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87466,7 +87461,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6043) + p.SetState(6045) p.Opt_drop_behavior() } @@ -87630,7 +87625,7 @@ func (s *Oper_argtypesContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { localctx = NewOper_argtypesContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 688, PostgreSQLParserRULE_oper_argtypes) - p.SetState(6070) + p.SetState(6072) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87640,7 +87635,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6048) + p.SetState(6050) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87648,11 +87643,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6049) + p.SetState(6051) p.Typename() } { - p.SetState(6050) + p.SetState(6052) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87663,7 +87658,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6052) + p.SetState(6054) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87671,11 +87666,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6053) + p.SetState(6055) p.Typename() } { - p.SetState(6054) + p.SetState(6056) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -87683,11 +87678,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6055) + p.SetState(6057) p.Typename() } { - p.SetState(6056) + p.SetState(6058) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87698,7 +87693,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6058) + p.SetState(6060) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87706,7 +87701,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6059) + p.SetState(6061) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -87714,7 +87709,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6060) + p.SetState(6062) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -87722,11 +87717,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6061) + p.SetState(6063) p.Typename() } { - p.SetState(6062) + p.SetState(6064) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87737,7 +87732,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6064) + p.SetState(6066) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87745,11 +87740,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6065) + p.SetState(6067) p.Typename() } { - p.SetState(6066) + p.SetState(6068) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -87757,7 +87752,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6067) + p.SetState(6069) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -87765,7 +87760,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6068) + p.SetState(6070) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87941,7 +87936,7 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(6077) + p.SetState(6079) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87950,11 +87945,11 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { for ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(6072) + p.SetState(6074) p.Colid() } { - p.SetState(6073) + p.SetState(6075) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -87962,7 +87957,7 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { } } - p.SetState(6079) + p.SetState(6081) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87970,7 +87965,7 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(6080) + p.SetState(6082) p.All_op() } @@ -88122,10 +88117,10 @@ func (p *PostgreSQLParser) Operator_with_argtypes_list() (localctx IOperator_wit p.EnterOuterAlt(localctx, 1) { - p.SetState(6082) + p.SetState(6084) p.Operator_with_argtypes() } - p.SetState(6087) + p.SetState(6089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88134,7 +88129,7 @@ func (p *PostgreSQLParser) Operator_with_argtypes_list() (localctx IOperator_wit for _la == PostgreSQLParserCOMMA { { - p.SetState(6083) + p.SetState(6085) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -88142,11 +88137,11 @@ func (p *PostgreSQLParser) Operator_with_argtypes_list() (localctx IOperator_wit } } { - p.SetState(6084) + p.SetState(6086) p.Operator_with_argtypes() } - p.SetState(6089) + p.SetState(6091) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88281,11 +88276,11 @@ func (p *PostgreSQLParser) Operator_with_argtypes() (localctx IOperator_with_arg p.EnterRule(localctx, 694, PostgreSQLParserRULE_operator_with_argtypes) p.EnterOuterAlt(localctx, 1) { - p.SetState(6090) + p.SetState(6092) p.Any_operator() } { - p.SetState(6091) + p.SetState(6093) p.Oper_argtypes() } @@ -88404,7 +88399,7 @@ func (p *PostgreSQLParser) Dostmt() (localctx IDostmtContext) { p.EnterRule(localctx, 696, PostgreSQLParserRULE_dostmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(6093) + p.SetState(6095) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule @@ -88412,7 +88407,7 @@ func (p *PostgreSQLParser) Dostmt() (localctx IDostmtContext) { } } { - p.SetState(6094) + p.SetState(6096) p.Dostmt_opt_list() } @@ -88553,7 +88548,7 @@ func (p *PostgreSQLParser) Dostmt_opt_list() (localctx IDostmt_opt_listContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(6097) + p.SetState(6099) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88562,11 +88557,11 @@ func (p *PostgreSQLParser) Dostmt_opt_list() (localctx IDostmt_opt_listContext) for ok := true; ok; ok = _la == PostgreSQLParserLANGUAGE || ((int64((_la-673)) & ^0x3f) == 0 && ((int64(1)<<(_la-673))&67108885) != 0) { { - p.SetState(6096) + p.SetState(6098) p.Dostmt_opt_item() } - p.SetState(6099) + p.SetState(6101) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88704,7 +88699,7 @@ func (s *Dostmt_opt_itemContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Dostmt_opt_item() (localctx IDostmt_opt_itemContext) { localctx = NewDostmt_opt_itemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 700, PostgreSQLParserRULE_dostmt_opt_item) - p.SetState(6104) + p.SetState(6106) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88714,14 +88709,14 @@ func (p *PostgreSQLParser) Dostmt_opt_item() (localctx IDostmt_opt_itemContext) case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(6101) + p.SetState(6103) p.Sconst() } case PostgreSQLParserLANGUAGE: p.EnterOuterAlt(localctx, 2) { - p.SetState(6102) + p.SetState(6104) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -88729,7 +88724,7 @@ func (p *PostgreSQLParser) Dostmt_opt_item() (localctx IDostmt_opt_itemContext) } } { - p.SetState(6103) + p.SetState(6105) p.Nonreservedword_or_sconst() } @@ -88953,7 +88948,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { p.EnterRule(localctx, 702, PostgreSQLParserRULE_createcaststmt) var _la int - p.SetState(6143) + p.SetState(6145) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88963,7 +88958,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6106) + p.SetState(6108) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -88971,7 +88966,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6107) + p.SetState(6109) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -88979,7 +88974,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6108) + p.SetState(6110) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -88987,11 +88982,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6109) + p.SetState(6111) p.Typename() } { - p.SetState(6110) + p.SetState(6112) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -88999,11 +88994,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6111) + p.SetState(6113) p.Typename() } { - p.SetState(6112) + p.SetState(6114) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89011,7 +89006,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6113) + p.SetState(6115) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -89019,7 +89014,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6114) + p.SetState(6116) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -89027,10 +89022,10 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6115) + p.SetState(6117) p.Function_with_argtypes() } - p.SetState(6117) + p.SetState(6119) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89039,7 +89034,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { if _la == PostgreSQLParserAS { { - p.SetState(6116) + p.SetState(6118) p.Cast_context() } @@ -89048,7 +89043,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6119) + p.SetState(6121) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -89056,7 +89051,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6120) + p.SetState(6122) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -89064,7 +89059,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6121) + p.SetState(6123) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89072,11 +89067,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6122) + p.SetState(6124) p.Typename() } { - p.SetState(6123) + p.SetState(6125) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89084,11 +89079,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6124) + p.SetState(6126) p.Typename() } { - p.SetState(6125) + p.SetState(6127) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89096,7 +89091,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6126) + p.SetState(6128) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -89104,14 +89099,14 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6127) + p.SetState(6129) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6129) + p.SetState(6131) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89120,7 +89115,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { if _la == PostgreSQLParserAS { { - p.SetState(6128) + p.SetState(6130) p.Cast_context() } @@ -89129,7 +89124,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6131) + p.SetState(6133) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -89137,7 +89132,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6132) + p.SetState(6134) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -89145,7 +89140,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6133) + p.SetState(6135) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89153,11 +89148,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6134) + p.SetState(6136) p.Typename() } { - p.SetState(6135) + p.SetState(6137) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89165,11 +89160,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6136) + p.SetState(6138) p.Typename() } { - p.SetState(6137) + p.SetState(6139) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89177,7 +89172,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6138) + p.SetState(6140) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -89185,14 +89180,14 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6139) + p.SetState(6141) p.Match(PostgreSQLParserINOUT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6141) + p.SetState(6143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89201,7 +89196,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { if _la == PostgreSQLParserAS { { - p.SetState(6140) + p.SetState(6142) p.Cast_context() } @@ -89317,7 +89312,7 @@ func (s *Cast_contextContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { localctx = NewCast_contextContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 704, PostgreSQLParserRULE_cast_context) - p.SetState(6149) + p.SetState(6151) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89327,7 +89322,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6145) + p.SetState(6147) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89335,7 +89330,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { } } { - p.SetState(6146) + p.SetState(6148) p.Match(PostgreSQLParserIMPLICIT_P) if p.HasError() { // Recognition error - abort rule @@ -89346,7 +89341,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6147) + p.SetState(6149) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89354,7 +89349,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { } } { - p.SetState(6148) + p.SetState(6150) p.Match(PostgreSQLParserASSIGNMENT) if p.HasError() { // Recognition error - abort rule @@ -89563,7 +89558,7 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6151) + p.SetState(6153) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -89571,14 +89566,14 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { } } { - p.SetState(6152) + p.SetState(6154) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6154) + p.SetState(6156) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89587,13 +89582,13 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(6153) + p.SetState(6155) p.Opt_if_exists() } } { - p.SetState(6156) + p.SetState(6158) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89601,11 +89596,11 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { } } { - p.SetState(6157) + p.SetState(6159) p.Typename() } { - p.SetState(6158) + p.SetState(6160) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89613,18 +89608,18 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { } } { - p.SetState(6159) + p.SetState(6161) p.Typename() } { - p.SetState(6160) + p.SetState(6162) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6162) + p.SetState(6164) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89633,7 +89628,7 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6161) + p.SetState(6163) p.Opt_drop_behavior() } @@ -89742,7 +89737,7 @@ func (p *PostgreSQLParser) Opt_if_exists() (localctx IOpt_if_existsContext) { p.EnterRule(localctx, 708, PostgreSQLParserRULE_opt_if_exists) p.EnterOuterAlt(localctx, 1) { - p.SetState(6164) + p.SetState(6166) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -89750,7 +89745,7 @@ func (p *PostgreSQLParser) Opt_if_exists() (localctx IOpt_if_existsContext) { } } { - p.SetState(6165) + p.SetState(6167) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -89951,14 +89946,14 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC p.EnterOuterAlt(localctx, 1) { - p.SetState(6167) + p.SetState(6169) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6169) + p.SetState(6171) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89967,13 +89962,13 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC if _la == PostgreSQLParserOR { { - p.SetState(6168) + p.SetState(6170) p.Opt_or_replace() } } { - p.SetState(6171) + p.SetState(6173) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -89981,7 +89976,7 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6172) + p.SetState(6174) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -89989,11 +89984,11 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6173) + p.SetState(6175) p.Typename() } { - p.SetState(6174) + p.SetState(6176) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -90001,11 +89996,11 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6175) + p.SetState(6177) p.Name() } { - p.SetState(6176) + p.SetState(6178) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -90013,11 +90008,11 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6177) + p.SetState(6179) p.Transform_element_list() } { - p.SetState(6178) + p.SetState(6180) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -90204,7 +90199,7 @@ func (s *Transform_element_listContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element_listContext) { localctx = NewTransform_element_listContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 712, PostgreSQLParserRULE_transform_element_list) - p.SetState(6214) + p.SetState(6216) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90214,7 +90209,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6180) + p.SetState(6182) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -90222,7 +90217,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6181) + p.SetState(6183) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90230,7 +90225,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6182) + p.SetState(6184) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90238,7 +90233,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6183) + p.SetState(6185) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90246,11 +90241,11 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6184) + p.SetState(6186) p.Function_with_argtypes() } { - p.SetState(6185) + p.SetState(6187) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -90258,7 +90253,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6186) + p.SetState(6188) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -90266,7 +90261,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6187) + p.SetState(6189) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90274,7 +90269,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6188) + p.SetState(6190) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90282,7 +90277,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6189) + p.SetState(6191) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90290,14 +90285,14 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6190) + p.SetState(6192) p.Function_with_argtypes() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6192) + p.SetState(6194) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -90305,7 +90300,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6193) + p.SetState(6195) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90313,7 +90308,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6194) + p.SetState(6196) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90321,7 +90316,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6195) + p.SetState(6197) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90329,11 +90324,11 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6196) + p.SetState(6198) p.Function_with_argtypes() } { - p.SetState(6197) + p.SetState(6199) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -90341,7 +90336,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6198) + p.SetState(6200) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -90349,7 +90344,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6199) + p.SetState(6201) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90357,7 +90352,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6200) + p.SetState(6202) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90365,7 +90360,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6201) + p.SetState(6203) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90373,14 +90368,14 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6202) + p.SetState(6204) p.Function_with_argtypes() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6204) + p.SetState(6206) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -90388,7 +90383,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6205) + p.SetState(6207) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90396,7 +90391,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6206) + p.SetState(6208) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90404,7 +90399,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6207) + p.SetState(6209) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90412,14 +90407,14 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6208) + p.SetState(6210) p.Function_with_argtypes() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6209) + p.SetState(6211) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -90427,7 +90422,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6210) + p.SetState(6212) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90435,7 +90430,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6211) + p.SetState(6213) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90443,7 +90438,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6212) + p.SetState(6214) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90451,7 +90446,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6213) + p.SetState(6215) p.Function_with_argtypes() } @@ -90642,7 +90637,7 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(6216) + p.SetState(6218) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -90650,14 +90645,14 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte } } { - p.SetState(6217) + p.SetState(6219) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6219) + p.SetState(6221) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90666,13 +90661,13 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte if _la == PostgreSQLParserIF_P { { - p.SetState(6218) + p.SetState(6220) p.Opt_if_exists() } } { - p.SetState(6221) + p.SetState(6223) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -90680,11 +90675,11 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte } } { - p.SetState(6222) + p.SetState(6224) p.Typename() } { - p.SetState(6223) + p.SetState(6225) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -90692,10 +90687,10 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte } } { - p.SetState(6224) + p.SetState(6226) p.Name() } - p.SetState(6226) + p.SetState(6228) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90704,7 +90699,7 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6225) + p.SetState(6227) p.Opt_drop_behavior() } @@ -90920,7 +90915,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { p.EnterRule(localctx, 716, PostgreSQLParserRULE_reindexstmt) var _la int - p.SetState(6262) + p.SetState(6264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90930,7 +90925,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6228) + p.SetState(6230) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -90938,10 +90933,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6229) + p.SetState(6231) p.Reindex_target_type() } - p.SetState(6231) + p.SetState(6233) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90950,20 +90945,20 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6230) + p.SetState(6232) p.Opt_concurrently() } } { - p.SetState(6233) + p.SetState(6235) p.Qualified_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6235) + p.SetState(6237) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -90971,10 +90966,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6236) + p.SetState(6238) p.Reindex_target_multitable() } - p.SetState(6238) + p.SetState(6240) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90983,20 +90978,20 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6237) + p.SetState(6239) p.Opt_concurrently() } } { - p.SetState(6240) + p.SetState(6242) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6242) + p.SetState(6244) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -91004,7 +90999,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6243) + p.SetState(6245) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91012,11 +91007,11 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6244) + p.SetState(6246) p.Reindex_option_list() } { - p.SetState(6245) + p.SetState(6247) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91024,10 +91019,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6246) + p.SetState(6248) p.Reindex_target_type() } - p.SetState(6248) + p.SetState(6250) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91036,20 +91031,20 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6247) + p.SetState(6249) p.Opt_concurrently() } } { - p.SetState(6250) + p.SetState(6252) p.Qualified_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6252) + p.SetState(6254) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -91057,7 +91052,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6253) + p.SetState(6255) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91065,11 +91060,11 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6254) + p.SetState(6256) p.Reindex_option_list() } { - p.SetState(6255) + p.SetState(6257) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91077,10 +91072,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6256) + p.SetState(6258) p.Reindex_target_multitable() } - p.SetState(6258) + p.SetState(6260) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91089,13 +91084,13 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6257) + p.SetState(6259) p.Opt_concurrently() } } { - p.SetState(6260) + p.SetState(6262) p.Name() } @@ -91223,7 +91218,7 @@ func (p *PostgreSQLParser) Reindex_target_type() (localctx IReindex_target_typeC p.EnterOuterAlt(localctx, 1) { - p.SetState(6264) + p.SetState(6266) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTABLE || _la == PostgreSQLParserDATABASE || _la == PostgreSQLParserINDEX || _la == PostgreSQLParserSCHEMA || _la == PostgreSQLParserSYSTEM_P) { @@ -91344,7 +91339,7 @@ func (p *PostgreSQLParser) Reindex_target_multitable() (localctx IReindex_target p.EnterOuterAlt(localctx, 1) { - p.SetState(6266) + p.SetState(6268) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDATABASE || _la == PostgreSQLParserSCHEMA || _la == PostgreSQLParserSYSTEM_P) { @@ -91503,10 +91498,10 @@ func (p *PostgreSQLParser) Reindex_option_list() (localctx IReindex_option_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(6268) + p.SetState(6270) p.Reindex_option_elem() } - p.SetState(6273) + p.SetState(6275) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91515,7 +91510,7 @@ func (p *PostgreSQLParser) Reindex_option_list() (localctx IReindex_option_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(6269) + p.SetState(6271) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -91523,11 +91518,11 @@ func (p *PostgreSQLParser) Reindex_option_list() (localctx IReindex_option_listC } } { - p.SetState(6270) + p.SetState(6272) p.Reindex_option_elem() } - p.SetState(6275) + p.SetState(6277) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91645,7 +91640,7 @@ func (p *PostgreSQLParser) Reindex_option_elem() (localctx IReindex_option_elemC p.EnterOuterAlt(localctx, 1) { - p.SetState(6276) + p.SetState(6278) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONCURRENTLY || _la == PostgreSQLParserVERBOSE || _la == PostgreSQLParserTABLESPACE) { @@ -91801,7 +91796,7 @@ func (s *AltertblspcstmtContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) { localctx = NewAltertblspcstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 726, PostgreSQLParserRULE_altertblspcstmt) - p.SetState(6290) + p.SetState(6292) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91811,7 +91806,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6278) + p.SetState(6280) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -91819,7 +91814,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6279) + p.SetState(6281) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -91827,11 +91822,11 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6280) + p.SetState(6282) p.Name() } { - p.SetState(6281) + p.SetState(6283) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -91839,14 +91834,14 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6282) + p.SetState(6284) p.Reloptions() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6284) + p.SetState(6286) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -91854,7 +91849,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6285) + p.SetState(6287) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -91862,11 +91857,11 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6286) + p.SetState(6288) p.Name() } { - p.SetState(6287) + p.SetState(6289) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -91874,7 +91869,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6288) + p.SetState(6290) p.Reloptions() } @@ -92442,7 +92437,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { p.EnterRule(localctx, 728, PostgreSQLParserRULE_renamestmt) var _la int - p.SetState(6779) + p.SetState(6781) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92452,7 +92447,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6292) + p.SetState(6294) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92460,7 +92455,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6293) + p.SetState(6295) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -92468,11 +92463,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6294) + p.SetState(6296) p.Aggregate_with_argtypes() } { - p.SetState(6295) + p.SetState(6297) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92480,7 +92475,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6296) + p.SetState(6298) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92488,14 +92483,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6297) + p.SetState(6299) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6299) + p.SetState(6301) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92503,7 +92498,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6300) + p.SetState(6302) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -92511,11 +92506,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6301) + p.SetState(6303) p.Any_name() } { - p.SetState(6302) + p.SetState(6304) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92523,7 +92518,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6303) + p.SetState(6305) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92531,14 +92526,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6304) + p.SetState(6306) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6306) + p.SetState(6308) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92546,7 +92541,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6307) + p.SetState(6309) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -92554,11 +92549,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6308) + p.SetState(6310) p.Any_name() } { - p.SetState(6309) + p.SetState(6311) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92566,7 +92561,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6310) + p.SetState(6312) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92574,14 +92569,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6311) + p.SetState(6313) p.Name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6313) + p.SetState(6315) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92589,7 +92584,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6314) + p.SetState(6316) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -92597,11 +92592,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6315) + p.SetState(6317) p.Name() } { - p.SetState(6316) + p.SetState(6318) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92609,7 +92604,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6317) + p.SetState(6319) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92617,14 +92612,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6318) + p.SetState(6320) p.Name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6320) + p.SetState(6322) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92632,7 +92627,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6321) + p.SetState(6323) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -92640,11 +92635,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6322) + p.SetState(6324) p.Any_name() } { - p.SetState(6323) + p.SetState(6325) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92652,7 +92647,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6324) + p.SetState(6326) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92660,14 +92655,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6325) + p.SetState(6327) p.Name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6327) + p.SetState(6329) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92675,7 +92670,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6328) + p.SetState(6330) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -92683,11 +92678,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6329) + p.SetState(6331) p.Any_name() } { - p.SetState(6330) + p.SetState(6332) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92695,7 +92690,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6331) + p.SetState(6333) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -92703,11 +92698,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6332) + p.SetState(6334) p.Name() } { - p.SetState(6333) + p.SetState(6335) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92715,14 +92710,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6334) + p.SetState(6336) p.Name() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(6336) + p.SetState(6338) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92730,7 +92725,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6337) + p.SetState(6339) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -92738,7 +92733,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6338) + p.SetState(6340) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -92746,7 +92741,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6339) + p.SetState(6341) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -92754,11 +92749,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6340) + p.SetState(6342) p.Name() } { - p.SetState(6341) + p.SetState(6343) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92766,7 +92761,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6342) + p.SetState(6344) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92774,14 +92769,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6343) + p.SetState(6345) p.Name() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(6345) + p.SetState(6347) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92789,7 +92784,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6346) + p.SetState(6348) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -92797,11 +92792,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6347) + p.SetState(6349) p.Function_with_argtypes() } { - p.SetState(6348) + p.SetState(6350) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92809,7 +92804,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6349) + p.SetState(6351) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92817,14 +92812,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6350) + p.SetState(6352) p.Name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(6352) + p.SetState(6354) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92832,7 +92827,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6353) + p.SetState(6355) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -92840,11 +92835,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6354) + p.SetState(6356) p.Roleid() } { - p.SetState(6355) + p.SetState(6357) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92852,7 +92847,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6356) + p.SetState(6358) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92860,21 +92855,21 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6357) + p.SetState(6359) p.Roleid() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(6359) + p.SetState(6361) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6361) + p.SetState(6363) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92883,13 +92878,13 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(6360) + p.SetState(6362) p.Opt_procedural() } } { - p.SetState(6363) + p.SetState(6365) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -92897,11 +92892,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6364) + p.SetState(6366) p.Name() } { - p.SetState(6365) + p.SetState(6367) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92909,7 +92904,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6366) + p.SetState(6368) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92917,14 +92912,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6367) + p.SetState(6369) p.Name() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(6369) + p.SetState(6371) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92932,7 +92927,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6370) + p.SetState(6372) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -92940,7 +92935,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6371) + p.SetState(6373) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -92948,11 +92943,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6372) + p.SetState(6374) p.Any_name() } { - p.SetState(6373) + p.SetState(6375) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -92960,11 +92955,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6374) + p.SetState(6376) p.Name() } { - p.SetState(6375) + p.SetState(6377) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92972,7 +92967,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6376) + p.SetState(6378) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92980,14 +92975,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6377) + p.SetState(6379) p.Name() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(6379) + p.SetState(6381) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92995,7 +92990,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6380) + p.SetState(6382) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -93003,7 +92998,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6381) + p.SetState(6383) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -93011,11 +93006,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6382) + p.SetState(6384) p.Any_name() } { - p.SetState(6383) + p.SetState(6385) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -93023,11 +93018,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6384) + p.SetState(6386) p.Name() } { - p.SetState(6385) + p.SetState(6387) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93035,7 +93030,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6386) + p.SetState(6388) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93043,14 +93038,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6387) + p.SetState(6389) p.Name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(6389) + p.SetState(6391) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93058,7 +93053,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6390) + p.SetState(6392) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -93066,11 +93061,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6391) + p.SetState(6393) p.Name() } { - p.SetState(6392) + p.SetState(6394) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -93078,11 +93073,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6393) + p.SetState(6395) p.Qualified_name() } { - p.SetState(6394) + p.SetState(6396) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93090,7 +93085,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6395) + p.SetState(6397) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93098,14 +93093,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6396) + p.SetState(6398) p.Name() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(6398) + p.SetState(6400) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93113,7 +93108,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6399) + p.SetState(6401) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -93121,7 +93116,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6400) + p.SetState(6402) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93129,7 +93124,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6401) + p.SetState(6403) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93137,11 +93132,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6402) + p.SetState(6404) p.Name() } { - p.SetState(6403) + p.SetState(6405) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -93149,11 +93144,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6404) + p.SetState(6406) p.Qualified_name() } { - p.SetState(6405) + p.SetState(6407) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93161,7 +93156,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6406) + p.SetState(6408) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93169,14 +93164,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6407) + p.SetState(6409) p.Name() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(6409) + p.SetState(6411) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93184,7 +93179,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6410) + p.SetState(6412) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -93192,11 +93187,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6411) + p.SetState(6413) p.Function_with_argtypes() } { - p.SetState(6412) + p.SetState(6414) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93204,7 +93199,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6413) + p.SetState(6415) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93212,14 +93207,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6414) + p.SetState(6416) p.Name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(6416) + p.SetState(6418) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93227,7 +93222,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6417) + p.SetState(6419) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -93235,11 +93230,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6418) + p.SetState(6420) p.Name() } { - p.SetState(6419) + p.SetState(6421) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93247,7 +93242,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6420) + p.SetState(6422) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93255,14 +93250,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6421) + p.SetState(6423) p.Name() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(6423) + p.SetState(6425) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93270,7 +93265,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6424) + p.SetState(6426) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -93278,11 +93273,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6425) + p.SetState(6427) p.Function_with_argtypes() } { - p.SetState(6426) + p.SetState(6428) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93290,7 +93285,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6427) + p.SetState(6429) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93298,14 +93293,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6428) + p.SetState(6430) p.Name() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(6430) + p.SetState(6432) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93313,7 +93308,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6431) + p.SetState(6433) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -93321,11 +93316,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6432) + p.SetState(6434) p.Name() } { - p.SetState(6433) + p.SetState(6435) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93333,7 +93328,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6434) + p.SetState(6436) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93341,14 +93336,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6435) + p.SetState(6437) p.Name() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(6437) + p.SetState(6439) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93356,7 +93351,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6438) + p.SetState(6440) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -93364,11 +93359,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6439) + p.SetState(6441) p.Name() } { - p.SetState(6440) + p.SetState(6442) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93376,7 +93371,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6441) + p.SetState(6443) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93384,14 +93379,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6442) + p.SetState(6444) p.Name() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(6444) + p.SetState(6446) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93399,7 +93394,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6445) + p.SetState(6447) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -93407,11 +93402,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6446) + p.SetState(6448) p.Name() } { - p.SetState(6447) + p.SetState(6449) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93419,7 +93414,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6448) + p.SetState(6450) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93427,14 +93422,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6449) + p.SetState(6451) p.Name() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(6451) + p.SetState(6453) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93442,7 +93437,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6452) + p.SetState(6454) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -93450,11 +93445,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6453) + p.SetState(6455) p.Relation_expr() } { - p.SetState(6454) + p.SetState(6456) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93462,7 +93457,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6455) + p.SetState(6457) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93470,14 +93465,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6456) + p.SetState(6458) p.Name() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(6458) + p.SetState(6460) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93485,7 +93480,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6459) + p.SetState(6461) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -93493,7 +93488,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6460) + p.SetState(6462) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93501,7 +93496,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6461) + p.SetState(6463) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93509,11 +93504,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6462) + p.SetState(6464) p.Relation_expr() } { - p.SetState(6463) + p.SetState(6465) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93521,7 +93516,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6464) + p.SetState(6466) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93529,14 +93524,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6465) + p.SetState(6467) p.Name() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(6467) + p.SetState(6469) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93544,7 +93539,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6468) + p.SetState(6470) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -93552,11 +93547,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6469) + p.SetState(6471) p.Qualified_name() } { - p.SetState(6470) + p.SetState(6472) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93564,7 +93559,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6471) + p.SetState(6473) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93572,14 +93567,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6472) + p.SetState(6474) p.Name() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(6474) + p.SetState(6476) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93587,7 +93582,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6475) + p.SetState(6477) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -93595,7 +93590,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6476) + p.SetState(6478) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93603,7 +93598,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6477) + p.SetState(6479) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93611,11 +93606,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6478) + p.SetState(6480) p.Qualified_name() } { - p.SetState(6479) + p.SetState(6481) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93623,7 +93618,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6480) + p.SetState(6482) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93631,14 +93626,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6481) + p.SetState(6483) p.Name() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(6483) + p.SetState(6485) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93646,7 +93641,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6484) + p.SetState(6486) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93654,11 +93649,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6485) + p.SetState(6487) p.Qualified_name() } { - p.SetState(6486) + p.SetState(6488) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93666,7 +93661,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6487) + p.SetState(6489) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93674,14 +93669,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6488) + p.SetState(6490) p.Name() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(6490) + p.SetState(6492) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93689,7 +93684,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6491) + p.SetState(6493) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93697,7 +93692,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6492) + p.SetState(6494) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93705,7 +93700,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6493) + p.SetState(6495) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93713,11 +93708,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6494) + p.SetState(6496) p.Qualified_name() } { - p.SetState(6495) + p.SetState(6497) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93725,7 +93720,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6496) + p.SetState(6498) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93733,14 +93728,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6497) + p.SetState(6499) p.Name() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(6499) + p.SetState(6501) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93748,7 +93743,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6500) + p.SetState(6502) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -93756,7 +93751,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6501) + p.SetState(6503) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93764,11 +93759,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6502) + p.SetState(6504) p.Qualified_name() } { - p.SetState(6503) + p.SetState(6505) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93776,7 +93771,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6504) + p.SetState(6506) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93784,14 +93779,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6505) + p.SetState(6507) p.Name() } case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(6507) + p.SetState(6509) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93799,7 +93794,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6508) + p.SetState(6510) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -93807,7 +93802,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6509) + p.SetState(6511) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93815,7 +93810,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6510) + p.SetState(6512) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93823,7 +93818,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6511) + p.SetState(6513) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93831,11 +93826,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6512) + p.SetState(6514) p.Qualified_name() } { - p.SetState(6513) + p.SetState(6515) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93843,7 +93838,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6514) + p.SetState(6516) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93851,14 +93846,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6515) + p.SetState(6517) p.Name() } case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(6517) + p.SetState(6519) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93866,7 +93861,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6518) + p.SetState(6520) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -93874,11 +93869,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6519) + p.SetState(6521) p.Qualified_name() } { - p.SetState(6520) + p.SetState(6522) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93886,7 +93881,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6521) + p.SetState(6523) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93894,14 +93889,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6522) + p.SetState(6524) p.Name() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(6524) + p.SetState(6526) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93909,7 +93904,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6525) + p.SetState(6527) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -93917,7 +93912,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6526) + p.SetState(6528) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93925,7 +93920,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6527) + p.SetState(6529) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93933,11 +93928,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6528) + p.SetState(6530) p.Qualified_name() } { - p.SetState(6529) + p.SetState(6531) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93945,7 +93940,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6530) + p.SetState(6532) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93953,14 +93948,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6531) + p.SetState(6533) p.Name() } case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(6533) + p.SetState(6535) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93968,7 +93963,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6534) + p.SetState(6536) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -93976,7 +93971,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6535) + p.SetState(6537) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -93984,11 +93979,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6536) + p.SetState(6538) p.Relation_expr() } { - p.SetState(6537) + p.SetState(6539) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93996,7 +93991,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6538) + p.SetState(6540) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94004,14 +93999,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6539) + p.SetState(6541) p.Name() } case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(6541) + p.SetState(6543) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94019,7 +94014,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6542) + p.SetState(6544) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -94027,7 +94022,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6543) + p.SetState(6545) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94035,7 +94030,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6544) + p.SetState(6546) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94043,7 +94038,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6545) + p.SetState(6547) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94051,11 +94046,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6546) + p.SetState(6548) p.Relation_expr() } { - p.SetState(6547) + p.SetState(6549) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94063,7 +94058,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6548) + p.SetState(6550) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94071,14 +94066,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6549) + p.SetState(6551) p.Name() } case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(6551) + p.SetState(6553) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94086,7 +94081,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6552) + p.SetState(6554) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94094,23 +94089,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6553) + p.SetState(6555) p.Relation_expr() } { - p.SetState(6554) + p.SetState(6556) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6556) + p.SetState(6558) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 533, p.GetParserRuleContext()) == 1 { { - p.SetState(6555) + p.SetState(6557) p.Opt_column() } @@ -94118,11 +94113,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6558) + p.SetState(6560) p.Name() } { - p.SetState(6559) + p.SetState(6561) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94130,14 +94125,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6560) + p.SetState(6562) p.Name() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(6562) + p.SetState(6564) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94145,7 +94140,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6563) + p.SetState(6565) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94153,7 +94148,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6564) + p.SetState(6566) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94161,7 +94156,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6565) + p.SetState(6567) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94169,23 +94164,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6566) + p.SetState(6568) p.Relation_expr() } { - p.SetState(6567) + p.SetState(6569) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6569) + p.SetState(6571) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 534, p.GetParserRuleContext()) == 1 { { - p.SetState(6568) + p.SetState(6570) p.Opt_column() } @@ -94193,11 +94188,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6571) + p.SetState(6573) p.Name() } { - p.SetState(6572) + p.SetState(6574) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94205,14 +94200,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6573) + p.SetState(6575) p.Name() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(6575) + p.SetState(6577) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94220,7 +94215,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6576) + p.SetState(6578) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94228,23 +94223,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6577) + p.SetState(6579) p.Qualified_name() } { - p.SetState(6578) + p.SetState(6580) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6580) + p.SetState(6582) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 535, p.GetParserRuleContext()) == 1 { { - p.SetState(6579) + p.SetState(6581) p.Opt_column() } @@ -94252,11 +94247,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6582) + p.SetState(6584) p.Name() } { - p.SetState(6583) + p.SetState(6585) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94264,14 +94259,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6584) + p.SetState(6586) p.Name() } case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(6586) + p.SetState(6588) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94279,7 +94274,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6587) + p.SetState(6589) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94287,7 +94282,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6588) + p.SetState(6590) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94295,7 +94290,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6589) + p.SetState(6591) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94303,23 +94298,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6590) + p.SetState(6592) p.Qualified_name() } { - p.SetState(6591) + p.SetState(6593) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6593) + p.SetState(6595) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 536, p.GetParserRuleContext()) == 1 { { - p.SetState(6592) + p.SetState(6594) p.Opt_column() } @@ -94327,11 +94322,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6595) + p.SetState(6597) p.Name() } { - p.SetState(6596) + p.SetState(6598) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94339,14 +94334,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6597) + p.SetState(6599) p.Name() } case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(6599) + p.SetState(6601) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94354,7 +94349,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6600) + p.SetState(6602) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -94362,7 +94357,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6601) + p.SetState(6603) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94370,23 +94365,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6602) + p.SetState(6604) p.Qualified_name() } { - p.SetState(6603) + p.SetState(6605) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6605) + p.SetState(6607) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 537, p.GetParserRuleContext()) == 1 { { - p.SetState(6604) + p.SetState(6606) p.Opt_column() } @@ -94394,11 +94389,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6607) + p.SetState(6609) p.Name() } { - p.SetState(6608) + p.SetState(6610) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94406,14 +94401,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6609) + p.SetState(6611) p.Name() } case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(6611) + p.SetState(6613) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94421,7 +94416,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6612) + p.SetState(6614) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -94429,7 +94424,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6613) + p.SetState(6615) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94437,7 +94432,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6614) + p.SetState(6616) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94445,7 +94440,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6615) + p.SetState(6617) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94453,23 +94448,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6616) + p.SetState(6618) p.Qualified_name() } { - p.SetState(6617) + p.SetState(6619) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6619) + p.SetState(6621) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 538, p.GetParserRuleContext()) == 1 { { - p.SetState(6618) + p.SetState(6620) p.Opt_column() } @@ -94477,11 +94472,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6621) + p.SetState(6623) p.Name() } { - p.SetState(6622) + p.SetState(6624) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94489,14 +94484,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6623) + p.SetState(6625) p.Name() } case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(6625) + p.SetState(6627) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94504,7 +94499,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6626) + p.SetState(6628) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94512,11 +94507,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6627) + p.SetState(6629) p.Relation_expr() } { - p.SetState(6628) + p.SetState(6630) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94524,7 +94519,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6629) + p.SetState(6631) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -94532,11 +94527,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6630) + p.SetState(6632) p.Name() } { - p.SetState(6631) + p.SetState(6633) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94544,14 +94539,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6632) + p.SetState(6634) p.Name() } case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(6634) + p.SetState(6636) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94559,7 +94554,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6635) + p.SetState(6637) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94567,7 +94562,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6636) + p.SetState(6638) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94575,7 +94570,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6637) + p.SetState(6639) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94583,11 +94578,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6638) + p.SetState(6640) p.Relation_expr() } { - p.SetState(6639) + p.SetState(6641) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94595,7 +94590,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6640) + p.SetState(6642) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -94603,11 +94598,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6641) + p.SetState(6643) p.Name() } { - p.SetState(6642) + p.SetState(6644) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94615,14 +94610,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6643) + p.SetState(6645) p.Name() } case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(6645) + p.SetState(6647) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94630,7 +94625,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6646) + p.SetState(6648) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -94638,7 +94633,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6647) + p.SetState(6649) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94646,23 +94641,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6648) + p.SetState(6650) p.Relation_expr() } { - p.SetState(6649) + p.SetState(6651) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6651) + p.SetState(6653) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 539, p.GetParserRuleContext()) == 1 { { - p.SetState(6650) + p.SetState(6652) p.Opt_column() } @@ -94670,11 +94665,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6653) + p.SetState(6655) p.Name() } { - p.SetState(6654) + p.SetState(6656) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94682,14 +94677,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6655) + p.SetState(6657) p.Name() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(6657) + p.SetState(6659) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94697,7 +94692,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6658) + p.SetState(6660) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -94705,7 +94700,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6659) + p.SetState(6661) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94713,7 +94708,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6660) + p.SetState(6662) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94721,7 +94716,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6661) + p.SetState(6663) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94729,23 +94724,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6662) + p.SetState(6664) p.Relation_expr() } { - p.SetState(6663) + p.SetState(6665) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6665) + p.SetState(6667) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 540, p.GetParserRuleContext()) == 1 { { - p.SetState(6664) + p.SetState(6666) p.Opt_column() } @@ -94753,11 +94748,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6667) + p.SetState(6669) p.Name() } { - p.SetState(6668) + p.SetState(6670) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94765,14 +94760,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6669) + p.SetState(6671) p.Name() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(6671) + p.SetState(6673) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94780,7 +94775,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6672) + p.SetState(6674) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -94788,11 +94783,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6673) + p.SetState(6675) p.Name() } { - p.SetState(6674) + p.SetState(6676) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -94800,11 +94795,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6675) + p.SetState(6677) p.Qualified_name() } { - p.SetState(6676) + p.SetState(6678) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94812,7 +94807,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6677) + p.SetState(6679) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94820,14 +94815,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6678) + p.SetState(6680) p.Name() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(6680) + p.SetState(6682) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94835,7 +94830,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6681) + p.SetState(6683) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -94843,11 +94838,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6682) + p.SetState(6684) p.Name() } { - p.SetState(6683) + p.SetState(6685) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -94855,11 +94850,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6684) + p.SetState(6686) p.Qualified_name() } { - p.SetState(6685) + p.SetState(6687) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94867,7 +94862,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6686) + p.SetState(6688) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94875,14 +94870,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6687) + p.SetState(6689) p.Name() } case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(6689) + p.SetState(6691) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94890,7 +94885,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6690) + p.SetState(6692) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -94898,7 +94893,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6691) + p.SetState(6693) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -94906,11 +94901,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6692) + p.SetState(6694) p.Name() } { - p.SetState(6693) + p.SetState(6695) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94918,7 +94913,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6694) + p.SetState(6696) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94926,14 +94921,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6695) + p.SetState(6697) p.Name() } case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(6697) + p.SetState(6699) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94941,7 +94936,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6698) + p.SetState(6700) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -94949,11 +94944,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6699) + p.SetState(6701) p.Roleid() } { - p.SetState(6700) + p.SetState(6702) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94961,7 +94956,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6701) + p.SetState(6703) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94969,14 +94964,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6702) + p.SetState(6704) p.Roleid() } case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(6704) + p.SetState(6706) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94984,7 +94979,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6705) + p.SetState(6707) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -94992,11 +94987,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6706) + p.SetState(6708) p.Roleid() } { - p.SetState(6707) + p.SetState(6709) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95004,7 +94999,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6708) + p.SetState(6710) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95012,14 +95007,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6709) + p.SetState(6711) p.Roleid() } case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(6711) + p.SetState(6713) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95027,7 +95022,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6712) + p.SetState(6714) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -95035,11 +95030,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6713) + p.SetState(6715) p.Name() } { - p.SetState(6714) + p.SetState(6716) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95047,7 +95042,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6715) + p.SetState(6717) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95055,14 +95050,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6716) + p.SetState(6718) p.Name() } case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(6718) + p.SetState(6720) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95070,7 +95065,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6719) + p.SetState(6721) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -95078,11 +95073,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6720) + p.SetState(6722) p.Any_name() } { - p.SetState(6721) + p.SetState(6723) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95090,7 +95085,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6722) + p.SetState(6724) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95098,14 +95093,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6723) + p.SetState(6725) p.Name() } case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(6725) + p.SetState(6727) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95113,7 +95108,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6726) + p.SetState(6728) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95121,7 +95116,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6727) + p.SetState(6729) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95129,7 +95124,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6728) + p.SetState(6730) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -95137,11 +95132,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6729) + p.SetState(6731) p.Any_name() } { - p.SetState(6730) + p.SetState(6732) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95149,7 +95144,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6731) + p.SetState(6733) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95157,14 +95152,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6732) + p.SetState(6734) p.Name() } case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(6734) + p.SetState(6736) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95172,7 +95167,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6735) + p.SetState(6737) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95180,7 +95175,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6736) + p.SetState(6738) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95188,7 +95183,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6737) + p.SetState(6739) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -95196,11 +95191,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6738) + p.SetState(6740) p.Any_name() } { - p.SetState(6739) + p.SetState(6741) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95208,7 +95203,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6740) + p.SetState(6742) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95216,14 +95211,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6741) + p.SetState(6743) p.Name() } case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(6743) + p.SetState(6745) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95231,7 +95226,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6744) + p.SetState(6746) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95239,7 +95234,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6745) + p.SetState(6747) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95247,7 +95242,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6746) + p.SetState(6748) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -95255,11 +95250,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6747) + p.SetState(6749) p.Any_name() } { - p.SetState(6748) + p.SetState(6750) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95267,7 +95262,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6749) + p.SetState(6751) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95275,14 +95270,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6750) + p.SetState(6752) p.Name() } case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(6752) + p.SetState(6754) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95290,7 +95285,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6753) + p.SetState(6755) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95298,7 +95293,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6754) + p.SetState(6756) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95306,7 +95301,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6755) + p.SetState(6757) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -95314,11 +95309,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6756) + p.SetState(6758) p.Any_name() } { - p.SetState(6757) + p.SetState(6759) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95326,7 +95321,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6758) + p.SetState(6760) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95334,14 +95329,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6759) + p.SetState(6761) p.Name() } case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(6761) + p.SetState(6763) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95349,7 +95344,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6762) + p.SetState(6764) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -95357,11 +95352,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6763) + p.SetState(6765) p.Any_name() } { - p.SetState(6764) + p.SetState(6766) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95369,7 +95364,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6765) + p.SetState(6767) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95377,14 +95372,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6766) + p.SetState(6768) p.Name() } case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(6768) + p.SetState(6770) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95392,7 +95387,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6769) + p.SetState(6771) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -95400,11 +95395,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6770) + p.SetState(6772) p.Any_name() } { - p.SetState(6771) + p.SetState(6773) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95412,7 +95407,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6772) + p.SetState(6774) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -95420,11 +95415,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6773) + p.SetState(6775) p.Name() } { - p.SetState(6774) + p.SetState(6776) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95432,10 +95427,10 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6775) + p.SetState(6777) p.Name() } - p.SetState(6777) + p.SetState(6779) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -95444,7 +95439,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6776) + p.SetState(6778) p.Opt_drop_behavior() } @@ -95552,7 +95547,7 @@ func (p *PostgreSQLParser) Opt_column() (localctx IOpt_columnContext) { p.EnterRule(localctx, 730, PostgreSQLParserRULE_opt_column) p.EnterOuterAlt(localctx, 1) { - p.SetState(6781) + p.SetState(6783) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -95663,7 +95658,7 @@ func (p *PostgreSQLParser) Opt_set_data() (localctx IOpt_set_dataContext) { p.EnterRule(localctx, 732, PostgreSQLParserRULE_opt_set_data) p.EnterOuterAlt(localctx, 1) { - p.SetState(6783) + p.SetState(6785) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -95671,7 +95666,7 @@ func (p *PostgreSQLParser) Opt_set_data() (localctx IOpt_set_dataContext) { } } { - p.SetState(6784) + p.SetState(6786) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -95926,7 +95921,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend p.EnterRule(localctx, 734, PostgreSQLParserRULE_alterobjectdependsstmt) var _la int - p.SetState(6855) + p.SetState(6857) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -95936,7 +95931,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6786) + p.SetState(6788) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95944,7 +95939,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6787) + p.SetState(6789) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -95952,10 +95947,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6788) + p.SetState(6790) p.Function_with_argtypes() } - p.SetState(6790) + p.SetState(6792) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -95964,13 +95959,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6789) + p.SetState(6791) p.Opt_no() } } { - p.SetState(6792) + p.SetState(6794) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -95978,7 +95973,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6793) + p.SetState(6795) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -95986,7 +95981,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6794) + p.SetState(6796) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -95994,14 +95989,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6795) + p.SetState(6797) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6797) + p.SetState(6799) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96009,7 +96004,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6798) + p.SetState(6800) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -96017,10 +96012,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6799) + p.SetState(6801) p.Function_with_argtypes() } - p.SetState(6801) + p.SetState(6803) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96029,13 +96024,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6800) + p.SetState(6802) p.Opt_no() } } { - p.SetState(6803) + p.SetState(6805) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96043,7 +96038,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6804) + p.SetState(6806) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96051,7 +96046,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6805) + p.SetState(6807) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96059,14 +96054,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6806) + p.SetState(6808) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6808) + p.SetState(6810) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96074,7 +96069,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6809) + p.SetState(6811) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -96082,10 +96077,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6810) + p.SetState(6812) p.Function_with_argtypes() } - p.SetState(6812) + p.SetState(6814) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96094,13 +96089,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6811) + p.SetState(6813) p.Opt_no() } } { - p.SetState(6814) + p.SetState(6816) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96108,7 +96103,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6815) + p.SetState(6817) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96116,7 +96111,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6816) + p.SetState(6818) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96124,14 +96119,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6817) + p.SetState(6819) p.Name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6819) + p.SetState(6821) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96139,7 +96134,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6820) + p.SetState(6822) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -96147,11 +96142,11 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6821) + p.SetState(6823) p.Name() } { - p.SetState(6822) + p.SetState(6824) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96159,10 +96154,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6823) + p.SetState(6825) p.Qualified_name() } - p.SetState(6825) + p.SetState(6827) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96171,13 +96166,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6824) + p.SetState(6826) p.Opt_no() } } { - p.SetState(6827) + p.SetState(6829) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96185,7 +96180,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6828) + p.SetState(6830) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96193,7 +96188,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6829) + p.SetState(6831) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96201,14 +96196,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6830) + p.SetState(6832) p.Name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6832) + p.SetState(6834) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96216,7 +96211,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6833) + p.SetState(6835) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -96224,7 +96219,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6834) + p.SetState(6836) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -96232,10 +96227,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6835) + p.SetState(6837) p.Qualified_name() } - p.SetState(6837) + p.SetState(6839) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96244,13 +96239,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6836) + p.SetState(6838) p.Opt_no() } } { - p.SetState(6839) + p.SetState(6841) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96258,7 +96253,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6840) + p.SetState(6842) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96266,7 +96261,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6841) + p.SetState(6843) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96274,14 +96269,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6842) + p.SetState(6844) p.Name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6844) + p.SetState(6846) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96289,7 +96284,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6845) + p.SetState(6847) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -96297,10 +96292,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6846) + p.SetState(6848) p.Qualified_name() } - p.SetState(6848) + p.SetState(6850) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96309,13 +96304,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6847) + p.SetState(6849) p.Opt_no() } } { - p.SetState(6850) + p.SetState(6852) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96323,7 +96318,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6851) + p.SetState(6853) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96331,7 +96326,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6852) + p.SetState(6854) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96339,7 +96334,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6853) + p.SetState(6855) p.Name() } @@ -96445,7 +96440,7 @@ func (p *PostgreSQLParser) Opt_no() (localctx IOpt_noContext) { p.EnterRule(localctx, 736, PostgreSQLParserRULE_opt_no) p.EnterOuterAlt(localctx, 1) { - p.SetState(6857) + p.SetState(6859) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -96839,7 +96834,7 @@ func (s *AlterobjectschemastmtContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemastmtContext) { localctx = NewAlterobjectschemastmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 738, PostgreSQLParserRULE_alterobjectschemastmt) - p.SetState(7076) + p.SetState(7078) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96849,7 +96844,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6859) + p.SetState(6861) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96857,7 +96852,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6860) + p.SetState(6862) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -96865,11 +96860,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6861) + p.SetState(6863) p.Aggregate_with_argtypes() } { - p.SetState(6862) + p.SetState(6864) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -96877,7 +96872,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6863) + p.SetState(6865) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -96885,14 +96880,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6864) + p.SetState(6866) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6866) + p.SetState(6868) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96900,7 +96895,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6867) + p.SetState(6869) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -96908,11 +96903,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6868) + p.SetState(6870) p.Any_name() } { - p.SetState(6869) + p.SetState(6871) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -96920,7 +96915,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6870) + p.SetState(6872) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -96928,14 +96923,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6871) + p.SetState(6873) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6873) + p.SetState(6875) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96943,7 +96938,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6874) + p.SetState(6876) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -96951,11 +96946,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6875) + p.SetState(6877) p.Any_name() } { - p.SetState(6876) + p.SetState(6878) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -96963,7 +96958,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6877) + p.SetState(6879) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -96971,14 +96966,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6878) + p.SetState(6880) p.Name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6880) + p.SetState(6882) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96986,7 +96981,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6881) + p.SetState(6883) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -96994,11 +96989,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6882) + p.SetState(6884) p.Any_name() } { - p.SetState(6883) + p.SetState(6885) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97006,7 +97001,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6884) + p.SetState(6886) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97014,14 +97009,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6885) + p.SetState(6887) p.Name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6887) + p.SetState(6889) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97029,7 +97024,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6888) + p.SetState(6890) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -97037,11 +97032,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6889) + p.SetState(6891) p.Name() } { - p.SetState(6890) + p.SetState(6892) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97049,7 +97044,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6891) + p.SetState(6893) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97057,14 +97052,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6892) + p.SetState(6894) p.Name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6894) + p.SetState(6896) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97072,7 +97067,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6895) + p.SetState(6897) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -97080,11 +97075,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6896) + p.SetState(6898) p.Function_with_argtypes() } { - p.SetState(6897) + p.SetState(6899) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97092,7 +97087,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6898) + p.SetState(6900) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97100,14 +97095,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6899) + p.SetState(6901) p.Name() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(6901) + p.SetState(6903) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97115,7 +97110,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6902) + p.SetState(6904) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -97123,11 +97118,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6903) + p.SetState(6905) p.Operator_with_argtypes() } { - p.SetState(6904) + p.SetState(6906) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97135,7 +97130,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6905) + p.SetState(6907) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97143,14 +97138,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6906) + p.SetState(6908) p.Name() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(6908) + p.SetState(6910) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97158,7 +97153,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6909) + p.SetState(6911) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -97166,7 +97161,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6910) + p.SetState(6912) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -97174,11 +97169,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6911) + p.SetState(6913) p.Any_name() } { - p.SetState(6912) + p.SetState(6914) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -97186,11 +97181,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6913) + p.SetState(6915) p.Name() } { - p.SetState(6914) + p.SetState(6916) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97198,7 +97193,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6915) + p.SetState(6917) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97206,14 +97201,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6916) + p.SetState(6918) p.Name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(6918) + p.SetState(6920) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97221,7 +97216,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6919) + p.SetState(6921) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -97229,7 +97224,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6920) + p.SetState(6922) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -97237,11 +97232,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6921) + p.SetState(6923) p.Any_name() } { - p.SetState(6922) + p.SetState(6924) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -97249,11 +97244,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6923) + p.SetState(6925) p.Name() } { - p.SetState(6924) + p.SetState(6926) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97261,7 +97256,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6925) + p.SetState(6927) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97269,14 +97264,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6926) + p.SetState(6928) p.Name() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(6928) + p.SetState(6930) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97284,7 +97279,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6929) + p.SetState(6931) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -97292,11 +97287,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6930) + p.SetState(6932) p.Function_with_argtypes() } { - p.SetState(6931) + p.SetState(6933) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97304,7 +97299,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6932) + p.SetState(6934) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97312,14 +97307,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6933) + p.SetState(6935) p.Name() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(6935) + p.SetState(6937) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97327,7 +97322,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6936) + p.SetState(6938) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -97335,11 +97330,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6937) + p.SetState(6939) p.Function_with_argtypes() } { - p.SetState(6938) + p.SetState(6940) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97347,7 +97342,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6939) + p.SetState(6941) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97355,14 +97350,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6940) + p.SetState(6942) p.Name() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(6942) + p.SetState(6944) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97370,7 +97365,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6943) + p.SetState(6945) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -97378,11 +97373,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6944) + p.SetState(6946) p.Relation_expr() } { - p.SetState(6945) + p.SetState(6947) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97390,7 +97385,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6946) + p.SetState(6948) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97398,14 +97393,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6947) + p.SetState(6949) p.Name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(6949) + p.SetState(6951) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97413,7 +97408,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6950) + p.SetState(6952) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -97421,7 +97416,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6951) + p.SetState(6953) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -97429,7 +97424,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6952) + p.SetState(6954) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -97437,11 +97432,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6953) + p.SetState(6955) p.Relation_expr() } { - p.SetState(6954) + p.SetState(6956) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97449,7 +97444,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6955) + p.SetState(6957) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97457,14 +97452,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6956) + p.SetState(6958) p.Name() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(6958) + p.SetState(6960) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97472,7 +97467,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6959) + p.SetState(6961) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -97480,11 +97475,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6960) + p.SetState(6962) p.Any_name() } { - p.SetState(6961) + p.SetState(6963) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97492,7 +97487,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6962) + p.SetState(6964) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97500,14 +97495,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6963) + p.SetState(6965) p.Name() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(6965) + p.SetState(6967) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97515,7 +97510,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6966) + p.SetState(6968) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97523,7 +97518,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6967) + p.SetState(6969) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97531,7 +97526,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6968) + p.SetState(6970) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -97539,11 +97534,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6969) + p.SetState(6971) p.Any_name() } { - p.SetState(6970) + p.SetState(6972) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97551,7 +97546,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6971) + p.SetState(6973) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97559,14 +97554,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6972) + p.SetState(6974) p.Name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(6974) + p.SetState(6976) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97574,7 +97569,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6975) + p.SetState(6977) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97582,7 +97577,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6976) + p.SetState(6978) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97590,7 +97585,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6977) + p.SetState(6979) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -97598,11 +97593,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6978) + p.SetState(6980) p.Any_name() } { - p.SetState(6979) + p.SetState(6981) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97610,7 +97605,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6980) + p.SetState(6982) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97618,14 +97613,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6981) + p.SetState(6983) p.Name() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(6983) + p.SetState(6985) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97633,7 +97628,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6984) + p.SetState(6986) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97641,7 +97636,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6985) + p.SetState(6987) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97649,7 +97644,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6986) + p.SetState(6988) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -97657,11 +97652,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6987) + p.SetState(6989) p.Any_name() } { - p.SetState(6988) + p.SetState(6990) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97669,7 +97664,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6989) + p.SetState(6991) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97677,14 +97672,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6990) + p.SetState(6992) p.Name() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(6992) + p.SetState(6994) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97692,7 +97687,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6993) + p.SetState(6995) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97700,7 +97695,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6994) + p.SetState(6996) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97708,7 +97703,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6995) + p.SetState(6997) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -97716,11 +97711,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6996) + p.SetState(6998) p.Any_name() } { - p.SetState(6997) + p.SetState(6999) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97728,7 +97723,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6998) + p.SetState(7000) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97736,14 +97731,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6999) + p.SetState(7001) p.Name() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(7001) + p.SetState(7003) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97751,7 +97746,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7002) + p.SetState(7004) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -97759,11 +97754,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7003) + p.SetState(7005) p.Qualified_name() } { - p.SetState(7004) + p.SetState(7006) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97771,7 +97766,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7005) + p.SetState(7007) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97779,14 +97774,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7006) + p.SetState(7008) p.Name() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(7008) + p.SetState(7010) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97794,7 +97789,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7009) + p.SetState(7011) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -97802,7 +97797,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7010) + p.SetState(7012) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -97810,7 +97805,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7011) + p.SetState(7013) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -97818,11 +97813,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7012) + p.SetState(7014) p.Qualified_name() } { - p.SetState(7013) + p.SetState(7015) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97830,7 +97825,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7014) + p.SetState(7016) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97838,14 +97833,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7015) + p.SetState(7017) p.Name() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(7017) + p.SetState(7019) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97853,7 +97848,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7018) + p.SetState(7020) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -97861,11 +97856,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7019) + p.SetState(7021) p.Qualified_name() } { - p.SetState(7020) + p.SetState(7022) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97873,7 +97868,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7021) + p.SetState(7023) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97881,14 +97876,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7022) + p.SetState(7024) p.Name() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(7024) + p.SetState(7026) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97896,7 +97891,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7025) + p.SetState(7027) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -97904,7 +97899,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7026) + p.SetState(7028) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -97912,7 +97907,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7027) + p.SetState(7029) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -97920,11 +97915,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7028) + p.SetState(7030) p.Qualified_name() } { - p.SetState(7029) + p.SetState(7031) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97932,7 +97927,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7030) + p.SetState(7032) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97940,14 +97935,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7031) + p.SetState(7033) p.Name() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(7033) + p.SetState(7035) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97955,7 +97950,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7034) + p.SetState(7036) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -97963,7 +97958,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7035) + p.SetState(7037) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -97971,11 +97966,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7036) + p.SetState(7038) p.Qualified_name() } { - p.SetState(7037) + p.SetState(7039) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97983,7 +97978,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7038) + p.SetState(7040) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97991,14 +97986,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7039) + p.SetState(7041) p.Name() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(7041) + p.SetState(7043) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98006,7 +98001,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7042) + p.SetState(7044) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -98014,7 +98009,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7043) + p.SetState(7045) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -98022,7 +98017,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7044) + p.SetState(7046) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -98030,7 +98025,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7045) + p.SetState(7047) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -98038,11 +98033,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7046) + p.SetState(7048) p.Qualified_name() } { - p.SetState(7047) + p.SetState(7049) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98050,7 +98045,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7048) + p.SetState(7050) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98058,14 +98053,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7049) + p.SetState(7051) p.Name() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(7051) + p.SetState(7053) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98073,7 +98068,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7052) + p.SetState(7054) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -98081,7 +98076,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7053) + p.SetState(7055) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -98089,11 +98084,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7054) + p.SetState(7056) p.Relation_expr() } { - p.SetState(7055) + p.SetState(7057) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98101,7 +98096,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7056) + p.SetState(7058) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98109,14 +98104,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7057) + p.SetState(7059) p.Name() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(7059) + p.SetState(7061) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98124,7 +98119,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7060) + p.SetState(7062) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -98132,7 +98127,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7061) + p.SetState(7063) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -98140,7 +98135,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7062) + p.SetState(7064) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -98148,7 +98143,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7063) + p.SetState(7065) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -98156,11 +98151,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7064) + p.SetState(7066) p.Relation_expr() } { - p.SetState(7065) + p.SetState(7067) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98168,7 +98163,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7066) + p.SetState(7068) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98176,14 +98171,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7067) + p.SetState(7069) p.Name() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(7069) + p.SetState(7071) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98191,7 +98186,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7070) + p.SetState(7072) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -98199,11 +98194,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7071) + p.SetState(7073) p.Any_name() } { - p.SetState(7072) + p.SetState(7074) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98211,7 +98206,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7073) + p.SetState(7075) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98219,7 +98214,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7074) + p.SetState(7076) p.Name() } @@ -98379,7 +98374,7 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte p.EnterRule(localctx, 740, PostgreSQLParserRULE_alteroperatorstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7078) + p.SetState(7080) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98387,7 +98382,7 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7079) + p.SetState(7081) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -98395,11 +98390,11 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7080) + p.SetState(7082) p.Operator_with_argtypes() } { - p.SetState(7081) + p.SetState(7083) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98407,7 +98402,7 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7082) + p.SetState(7084) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -98415,11 +98410,11 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7083) + p.SetState(7085) p.Operator_def_list() } { - p.SetState(7084) + p.SetState(7086) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -98575,10 +98570,10 @@ func (p *PostgreSQLParser) Operator_def_list() (localctx IOperator_def_listConte p.EnterOuterAlt(localctx, 1) { - p.SetState(7086) + p.SetState(7088) p.Operator_def_elem() } - p.SetState(7091) + p.SetState(7093) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98587,7 +98582,7 @@ func (p *PostgreSQLParser) Operator_def_list() (localctx IOperator_def_listConte for _la == PostgreSQLParserCOMMA { { - p.SetState(7087) + p.SetState(7089) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -98595,11 +98590,11 @@ func (p *PostgreSQLParser) Operator_def_list() (localctx IOperator_def_listConte } } { - p.SetState(7088) + p.SetState(7090) p.Operator_def_elem() } - p.SetState(7093) + p.SetState(7095) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98742,7 +98737,7 @@ func (s *Operator_def_elemContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemContext) { localctx = NewOperator_def_elemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 744, PostgreSQLParserRULE_operator_def_elem) - p.SetState(7102) + p.SetState(7104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98752,11 +98747,11 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7094) + p.SetState(7096) p.Collabel() } { - p.SetState(7095) + p.SetState(7097) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -98764,7 +98759,7 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte } } { - p.SetState(7096) + p.SetState(7098) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -98775,11 +98770,11 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7098) + p.SetState(7100) p.Collabel() } { - p.SetState(7099) + p.SetState(7101) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -98787,7 +98782,7 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte } } { - p.SetState(7100) + p.SetState(7102) p.Operator_def_arg() } @@ -98971,7 +98966,7 @@ func (s *Operator_def_argContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Operator_def_arg() (localctx IOperator_def_argContext) { localctx = NewOperator_def_argContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 746, PostgreSQLParserRULE_operator_def_arg) - p.SetState(7109) + p.SetState(7111) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98981,35 +98976,35 @@ func (p *PostgreSQLParser) Operator_def_arg() (localctx IOperator_def_argContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7104) + p.SetState(7106) p.Func_type() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7105) + p.SetState(7107) p.Reserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7106) + p.SetState(7108) p.Qual_all_op() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7107) + p.SetState(7109) p.Numericonly() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7108) + p.SetState(7110) p.Sconst() } @@ -99169,7 +99164,7 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { p.EnterRule(localctx, 748, PostgreSQLParserRULE_altertypestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7111) + p.SetState(7113) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99177,7 +99172,7 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7112) + p.SetState(7114) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -99185,11 +99180,11 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7113) + p.SetState(7115) p.Any_name() } { - p.SetState(7114) + p.SetState(7116) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -99197,7 +99192,7 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7115) + p.SetState(7117) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -99205,11 +99200,11 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7116) + p.SetState(7118) p.Operator_def_list() } { - p.SetState(7117) + p.SetState(7119) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -99616,7 +99611,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { p.EnterRule(localctx, 750, PostgreSQLParserRULE_alterownerstmt) var _la int - p.SetState(7304) + p.SetState(7306) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -99626,7 +99621,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7119) + p.SetState(7121) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99634,7 +99629,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7120) + p.SetState(7122) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -99642,11 +99637,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7121) + p.SetState(7123) p.Aggregate_with_argtypes() } { - p.SetState(7122) + p.SetState(7124) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99654,7 +99649,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7123) + p.SetState(7125) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99662,14 +99657,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7124) + p.SetState(7126) p.Rolespec() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7126) + p.SetState(7128) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99677,7 +99672,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7127) + p.SetState(7129) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -99685,11 +99680,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7128) + p.SetState(7130) p.Any_name() } { - p.SetState(7129) + p.SetState(7131) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99697,7 +99692,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7130) + p.SetState(7132) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99705,14 +99700,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7131) + p.SetState(7133) p.Rolespec() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7133) + p.SetState(7135) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99720,7 +99715,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7134) + p.SetState(7136) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -99728,11 +99723,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7135) + p.SetState(7137) p.Any_name() } { - p.SetState(7136) + p.SetState(7138) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99740,7 +99735,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7137) + p.SetState(7139) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99748,14 +99743,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7138) + p.SetState(7140) p.Rolespec() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7140) + p.SetState(7142) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99763,7 +99758,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7141) + p.SetState(7143) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -99771,11 +99766,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7142) + p.SetState(7144) p.Name() } { - p.SetState(7143) + p.SetState(7145) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99783,7 +99778,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7144) + p.SetState(7146) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99791,14 +99786,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7145) + p.SetState(7147) p.Rolespec() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7147) + p.SetState(7149) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99806,7 +99801,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7148) + p.SetState(7150) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -99814,11 +99809,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7149) + p.SetState(7151) p.Any_name() } { - p.SetState(7150) + p.SetState(7152) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99826,7 +99821,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7151) + p.SetState(7153) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99834,14 +99829,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7152) + p.SetState(7154) p.Rolespec() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7154) + p.SetState(7156) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99849,7 +99844,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7155) + p.SetState(7157) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -99857,11 +99852,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7156) + p.SetState(7158) p.Function_with_argtypes() } { - p.SetState(7157) + p.SetState(7159) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99869,7 +99864,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7158) + p.SetState(7160) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99877,21 +99872,21 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7159) + p.SetState(7161) p.Rolespec() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(7161) + p.SetState(7163) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7163) + p.SetState(7165) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -99900,13 +99895,13 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(7162) + p.SetState(7164) p.Opt_procedural() } } { - p.SetState(7165) + p.SetState(7167) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -99914,11 +99909,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7166) + p.SetState(7168) p.Name() } { - p.SetState(7167) + p.SetState(7169) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99926,7 +99921,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7168) + p.SetState(7170) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99934,14 +99929,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7169) + p.SetState(7171) p.Rolespec() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(7171) + p.SetState(7173) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99949,7 +99944,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7172) + p.SetState(7174) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -99957,7 +99952,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7173) + p.SetState(7175) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -99965,11 +99960,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7174) + p.SetState(7176) p.Numericonly() } { - p.SetState(7175) + p.SetState(7177) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99977,7 +99972,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7176) + p.SetState(7178) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99985,14 +99980,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7177) + p.SetState(7179) p.Rolespec() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(7179) + p.SetState(7181) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100000,7 +99995,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7180) + p.SetState(7182) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -100008,11 +100003,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7181) + p.SetState(7183) p.Operator_with_argtypes() } { - p.SetState(7182) + p.SetState(7184) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100020,7 +100015,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7183) + p.SetState(7185) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100028,14 +100023,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7184) + p.SetState(7186) p.Rolespec() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(7186) + p.SetState(7188) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100043,7 +100038,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7187) + p.SetState(7189) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -100051,7 +100046,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7188) + p.SetState(7190) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -100059,11 +100054,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7189) + p.SetState(7191) p.Any_name() } { - p.SetState(7190) + p.SetState(7192) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -100071,11 +100066,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7191) + p.SetState(7193) p.Name() } { - p.SetState(7192) + p.SetState(7194) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100083,7 +100078,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7193) + p.SetState(7195) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100091,14 +100086,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7194) + p.SetState(7196) p.Rolespec() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(7196) + p.SetState(7198) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100106,7 +100101,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7197) + p.SetState(7199) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -100114,7 +100109,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7198) + p.SetState(7200) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -100122,11 +100117,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7199) + p.SetState(7201) p.Any_name() } { - p.SetState(7200) + p.SetState(7202) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -100134,11 +100129,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7201) + p.SetState(7203) p.Name() } { - p.SetState(7202) + p.SetState(7204) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100146,7 +100141,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7203) + p.SetState(7205) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100154,14 +100149,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7204) + p.SetState(7206) p.Rolespec() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(7206) + p.SetState(7208) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100169,7 +100164,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7207) + p.SetState(7209) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -100177,11 +100172,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7208) + p.SetState(7210) p.Function_with_argtypes() } { - p.SetState(7209) + p.SetState(7211) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100189,7 +100184,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7210) + p.SetState(7212) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100197,14 +100192,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7211) + p.SetState(7213) p.Rolespec() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(7213) + p.SetState(7215) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100212,7 +100207,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7214) + p.SetState(7216) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -100220,11 +100215,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7215) + p.SetState(7217) p.Function_with_argtypes() } { - p.SetState(7216) + p.SetState(7218) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100232,7 +100227,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7217) + p.SetState(7219) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100240,14 +100235,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7218) + p.SetState(7220) p.Rolespec() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(7220) + p.SetState(7222) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100255,7 +100250,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7221) + p.SetState(7223) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -100263,11 +100258,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7222) + p.SetState(7224) p.Name() } { - p.SetState(7223) + p.SetState(7225) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100275,7 +100270,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7224) + p.SetState(7226) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100283,14 +100278,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7225) + p.SetState(7227) p.Rolespec() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(7227) + p.SetState(7229) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100298,7 +100293,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7228) + p.SetState(7230) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -100306,11 +100301,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7229) + p.SetState(7231) p.Any_name() } { - p.SetState(7230) + p.SetState(7232) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100318,7 +100313,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7231) + p.SetState(7233) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100326,14 +100321,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7232) + p.SetState(7234) p.Rolespec() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(7234) + p.SetState(7236) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100341,7 +100336,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7235) + p.SetState(7237) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -100349,11 +100344,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7236) + p.SetState(7238) p.Name() } { - p.SetState(7237) + p.SetState(7239) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100361,7 +100356,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7238) + p.SetState(7240) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100369,14 +100364,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7239) + p.SetState(7241) p.Rolespec() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(7241) + p.SetState(7243) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100384,7 +100379,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7242) + p.SetState(7244) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -100392,11 +100387,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7243) + p.SetState(7245) p.Any_name() } { - p.SetState(7244) + p.SetState(7246) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100404,7 +100399,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7245) + p.SetState(7247) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100412,14 +100407,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7246) + p.SetState(7248) p.Rolespec() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(7248) + p.SetState(7250) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100427,7 +100422,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7249) + p.SetState(7251) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -100435,7 +100430,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7250) + p.SetState(7252) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -100443,7 +100438,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7251) + p.SetState(7253) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -100451,11 +100446,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7252) + p.SetState(7254) p.Any_name() } { - p.SetState(7253) + p.SetState(7255) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100463,7 +100458,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7254) + p.SetState(7256) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100471,14 +100466,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7255) + p.SetState(7257) p.Rolespec() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(7257) + p.SetState(7259) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100486,7 +100481,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7258) + p.SetState(7260) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -100494,7 +100489,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7259) + p.SetState(7261) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -100502,7 +100497,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7260) + p.SetState(7262) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -100510,11 +100505,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7261) + p.SetState(7263) p.Any_name() } { - p.SetState(7262) + p.SetState(7264) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100522,7 +100517,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7263) + p.SetState(7265) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100530,14 +100525,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7264) + p.SetState(7266) p.Rolespec() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(7266) + p.SetState(7268) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100545,7 +100540,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7267) + p.SetState(7269) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -100553,7 +100548,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7268) + p.SetState(7270) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -100561,7 +100556,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7269) + p.SetState(7271) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -100569,11 +100564,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7270) + p.SetState(7272) p.Name() } { - p.SetState(7271) + p.SetState(7273) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100581,7 +100576,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7272) + p.SetState(7274) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100589,14 +100584,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7273) + p.SetState(7275) p.Rolespec() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(7275) + p.SetState(7277) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100604,7 +100599,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7276) + p.SetState(7278) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -100612,11 +100607,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7277) + p.SetState(7279) p.Name() } { - p.SetState(7278) + p.SetState(7280) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100624,7 +100619,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7279) + p.SetState(7281) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100632,14 +100627,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7280) + p.SetState(7282) p.Rolespec() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(7282) + p.SetState(7284) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100647,7 +100642,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7283) + p.SetState(7285) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -100655,7 +100650,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7284) + p.SetState(7286) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -100663,11 +100658,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7285) + p.SetState(7287) p.Name() } { - p.SetState(7286) + p.SetState(7288) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100675,7 +100670,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7287) + p.SetState(7289) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100683,14 +100678,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7288) + p.SetState(7290) p.Rolespec() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(7290) + p.SetState(7292) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100698,7 +100693,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7291) + p.SetState(7293) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -100706,11 +100701,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7292) + p.SetState(7294) p.Name() } { - p.SetState(7293) + p.SetState(7295) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100718,7 +100713,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7294) + p.SetState(7296) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100726,14 +100721,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7295) + p.SetState(7297) p.Rolespec() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(7297) + p.SetState(7299) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100741,7 +100736,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7298) + p.SetState(7300) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -100749,11 +100744,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7299) + p.SetState(7301) p.Name() } { - p.SetState(7300) + p.SetState(7302) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100761,7 +100756,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7301) + p.SetState(7303) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100769,7 +100764,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7302) + p.SetState(7304) p.Rolespec() } @@ -100944,7 +100939,7 @@ func (s *CreatepublicationstmtContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublicationstmtContext) { localctx = NewCreatepublicationstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 752, PostgreSQLParserRULE_createpublicationstmt) - p.SetState(7329) + p.SetState(7331) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -100954,7 +100949,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7306) + p.SetState(7308) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -100962,7 +100957,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7307) + p.SetState(7309) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -100970,15 +100965,15 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7308) + p.SetState(7310) p.Name() } - p.SetState(7310) + p.SetState(7312) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 556, p.GetParserRuleContext()) == 1 { { - p.SetState(7309) + p.SetState(7311) p.Opt_definition() } @@ -100989,7 +100984,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7312) + p.SetState(7314) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -100997,7 +100992,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7313) + p.SetState(7315) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -101005,11 +101000,11 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7314) + p.SetState(7316) p.Name() } { - p.SetState(7315) + p.SetState(7317) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -101017,7 +101012,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7316) + p.SetState(7318) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -101025,19 +101020,19 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7317) + p.SetState(7319) p.Match(PostgreSQLParserTABLES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7319) + p.SetState(7321) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 557, p.GetParserRuleContext()) == 1 { { - p.SetState(7318) + p.SetState(7320) p.Opt_definition() } @@ -101048,7 +101043,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7321) + p.SetState(7323) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -101056,7 +101051,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7322) + p.SetState(7324) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -101064,11 +101059,11 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7323) + p.SetState(7325) p.Name() } { - p.SetState(7324) + p.SetState(7326) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -101076,15 +101071,15 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7325) + p.SetState(7327) p.Pub_obj_list() } - p.SetState(7327) + p.SetState(7329) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 558, p.GetParserRuleContext()) == 1 { { - p.SetState(7326) + p.SetState(7328) p.Opt_definition() } @@ -101244,10 +101239,10 @@ func (p *PostgreSQLParser) Pub_obj_list() (localctx IPub_obj_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7331) + p.SetState(7333) p.Publication_obj_spec() } - p.SetState(7336) + p.SetState(7338) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101256,7 +101251,7 @@ func (p *PostgreSQLParser) Pub_obj_list() (localctx IPub_obj_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(7332) + p.SetState(7334) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -101264,11 +101259,11 @@ func (p *PostgreSQLParser) Pub_obj_list() (localctx IPub_obj_listContext) { } } { - p.SetState(7333) + p.SetState(7335) p.Publication_obj_spec() } - p.SetState(7338) + p.SetState(7340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101474,7 +101469,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe p.EnterRule(localctx, 756, PostgreSQLParserRULE_publication_obj_spec) var _la int - p.SetState(7377) + p.SetState(7379) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101484,7 +101479,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7339) + p.SetState(7341) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -101492,22 +101487,22 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe } } { - p.SetState(7340) + p.SetState(7342) p.Relation_expr() } - p.SetState(7342) + p.SetState(7344) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 561, p.GetParserRuleContext()) == 1 { { - p.SetState(7341) + p.SetState(7343) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7345) + p.SetState(7347) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101516,7 +101511,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7344) + p.SetState(7346) p.Opt_where_clause() } @@ -101525,7 +101520,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7347) + p.SetState(7349) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -101533,7 +101528,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe } } { - p.SetState(7348) + p.SetState(7350) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -101541,14 +101536,14 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe } } { - p.SetState(7349) + p.SetState(7351) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7352) + p.SetState(7354) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101557,13 +101552,13 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe switch p.GetTokenStream().LA(1) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(7350) + p.SetState(7352) p.Colid() } case PostgreSQLParserCURRENT_SCHEMA: { - p.SetState(7351) + p.SetState(7353) p.Match(PostgreSQLParserCURRENT_SCHEMA) if p.HasError() { // Recognition error - abort rule @@ -101579,22 +101574,22 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7354) + p.SetState(7356) p.Colid() } - p.SetState(7356) + p.SetState(7358) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 564, p.GetParserRuleContext()) == 1 { { - p.SetState(7355) + p.SetState(7357) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7359) + p.SetState(7361) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101603,7 +101598,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7358) + p.SetState(7360) p.Opt_where_clause() } @@ -101612,26 +101607,26 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7361) + p.SetState(7363) p.Colid() } { - p.SetState(7362) + p.SetState(7364) p.Indirection() } - p.SetState(7364) + p.SetState(7366) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 566, p.GetParserRuleContext()) == 1 { { - p.SetState(7363) + p.SetState(7365) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7367) + p.SetState(7369) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101640,7 +101635,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7366) + p.SetState(7368) p.Opt_where_clause() } @@ -101649,22 +101644,22 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7369) + p.SetState(7371) p.Relation_expr() } - p.SetState(7371) + p.SetState(7373) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 568, p.GetParserRuleContext()) == 1 { { - p.SetState(7370) + p.SetState(7372) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7374) + p.SetState(7376) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101673,7 +101668,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7373) + p.SetState(7375) p.Opt_where_clause() } @@ -101682,7 +101677,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7376) + p.SetState(7378) p.Match(PostgreSQLParserCURRENT_SCHEMA) if p.HasError() { // Recognition error - abort rule @@ -101819,7 +101814,7 @@ func (p *PostgreSQLParser) Opt_where_clause() (localctx IOpt_where_clauseContext p.EnterRule(localctx, 758, PostgreSQLParserRULE_opt_where_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(7379) + p.SetState(7381) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -101827,7 +101822,7 @@ func (p *PostgreSQLParser) Opt_where_clause() (localctx IOpt_where_clauseContext } } { - p.SetState(7380) + p.SetState(7382) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -101835,11 +101830,11 @@ func (p *PostgreSQLParser) Opt_where_clause() (localctx IOpt_where_clauseContext } } { - p.SetState(7381) + p.SetState(7383) p.A_expr() } { - p.SetState(7382) + p.SetState(7384) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -102014,7 +102009,7 @@ func (s *AlterpublicationstmtContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstmtContext) { localctx = NewAlterpublicationstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 760, PostgreSQLParserRULE_alterpublicationstmt) - p.SetState(7408) + p.SetState(7410) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102024,7 +102019,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7384) + p.SetState(7386) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102032,7 +102027,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7385) + p.SetState(7387) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102040,11 +102035,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7386) + p.SetState(7388) p.Name() } { - p.SetState(7387) + p.SetState(7389) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -102052,14 +102047,14 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7388) + p.SetState(7390) p.Definition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7390) + p.SetState(7392) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102067,7 +102062,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7391) + p.SetState(7393) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102075,11 +102070,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7392) + p.SetState(7394) p.Name() } { - p.SetState(7393) + p.SetState(7395) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -102087,14 +102082,14 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7394) + p.SetState(7396) p.Pub_obj_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7396) + p.SetState(7398) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102102,7 +102097,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7397) + p.SetState(7399) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102110,11 +102105,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7398) + p.SetState(7400) p.Name() } { - p.SetState(7399) + p.SetState(7401) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -102122,14 +102117,14 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7400) + p.SetState(7402) p.Pub_obj_list() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7402) + p.SetState(7404) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102137,7 +102132,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7403) + p.SetState(7405) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102145,11 +102140,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7404) + p.SetState(7406) p.Name() } { - p.SetState(7405) + p.SetState(7407) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -102157,7 +102152,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7406) + p.SetState(7408) p.Pub_obj_list() } @@ -102346,7 +102341,7 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio p.EnterRule(localctx, 762, PostgreSQLParserRULE_createsubscriptionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7410) + p.SetState(7412) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -102354,7 +102349,7 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7411) + p.SetState(7413) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -102362,11 +102357,11 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7412) + p.SetState(7414) p.Name() } { - p.SetState(7413) + p.SetState(7415) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -102374,11 +102369,11 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7414) + p.SetState(7416) p.Sconst() } { - p.SetState(7415) + p.SetState(7417) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102386,15 +102381,15 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7416) + p.SetState(7418) p.Publication_name_list() } - p.SetState(7418) + p.SetState(7420) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 572, p.GetParserRuleContext()) == 1 { { - p.SetState(7417) + p.SetState(7419) p.Opt_definition() } @@ -102550,10 +102545,10 @@ func (p *PostgreSQLParser) Publication_name_list() (localctx IPublication_name_l p.EnterOuterAlt(localctx, 1) { - p.SetState(7420) + p.SetState(7422) p.Publication_name_item() } - p.SetState(7425) + p.SetState(7427) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102562,7 +102557,7 @@ func (p *PostgreSQLParser) Publication_name_list() (localctx IPublication_name_l for _la == PostgreSQLParserCOMMA { { - p.SetState(7421) + p.SetState(7423) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -102570,11 +102565,11 @@ func (p *PostgreSQLParser) Publication_name_list() (localctx IPublication_name_l } } { - p.SetState(7422) + p.SetState(7424) p.Publication_name_item() } - p.SetState(7427) + p.SetState(7429) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102692,7 +102687,7 @@ func (p *PostgreSQLParser) Publication_name_item() (localctx IPublication_name_i p.EnterRule(localctx, 766, PostgreSQLParserRULE_publication_name_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(7428) + p.SetState(7430) p.Collabel() } @@ -102917,7 +102912,7 @@ func (s *AltersubscriptionstmtContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptionstmtContext) { localctx = NewAltersubscriptionstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 768, PostgreSQLParserRULE_altersubscriptionstmt) - p.SetState(7475) + p.SetState(7477) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102927,7 +102922,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7430) + p.SetState(7432) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102935,7 +102930,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7431) + p.SetState(7433) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -102943,11 +102938,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7432) + p.SetState(7434) p.Name() } { - p.SetState(7433) + p.SetState(7435) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -102955,14 +102950,14 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7434) + p.SetState(7436) p.Definition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7436) + p.SetState(7438) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102970,7 +102965,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7437) + p.SetState(7439) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -102978,11 +102973,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7438) + p.SetState(7440) p.Name() } { - p.SetState(7439) + p.SetState(7441) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -102990,14 +102985,14 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7440) + p.SetState(7442) p.Sconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7442) + p.SetState(7444) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103005,7 +103000,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7443) + p.SetState(7445) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103013,11 +103008,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7444) + p.SetState(7446) p.Name() } { - p.SetState(7445) + p.SetState(7447) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -103025,19 +103020,19 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7446) + p.SetState(7448) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7448) + p.SetState(7450) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 574, p.GetParserRuleContext()) == 1 { { - p.SetState(7447) + p.SetState(7449) p.Opt_definition() } @@ -103048,7 +103043,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7450) + p.SetState(7452) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103056,7 +103051,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7451) + p.SetState(7453) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103064,11 +103059,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7452) + p.SetState(7454) p.Name() } { - p.SetState(7453) + p.SetState(7455) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -103076,7 +103071,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7454) + p.SetState(7456) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -103084,15 +103079,15 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7455) + p.SetState(7457) p.Publication_name_list() } - p.SetState(7457) + p.SetState(7459) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 575, p.GetParserRuleContext()) == 1 { { - p.SetState(7456) + p.SetState(7458) p.Opt_definition() } @@ -103103,7 +103098,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7459) + p.SetState(7461) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103111,7 +103106,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7460) + p.SetState(7462) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103119,11 +103114,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7461) + p.SetState(7463) p.Name() } { - p.SetState(7462) + p.SetState(7464) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -103134,7 +103129,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7464) + p.SetState(7466) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103142,7 +103137,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7465) + p.SetState(7467) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103150,11 +103145,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7466) + p.SetState(7468) p.Name() } { - p.SetState(7467) + p.SetState(7469) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -103165,7 +103160,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(7469) + p.SetState(7471) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103173,7 +103168,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7470) + p.SetState(7472) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103181,11 +103176,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7471) + p.SetState(7473) p.Name() } { - p.SetState(7472) + p.SetState(7474) p.Match(PostgreSQLParserSKIP_P) if p.HasError() { // Recognition error - abort rule @@ -103193,7 +103188,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7473) + p.SetState(7475) p.Definition() } @@ -103348,7 +103343,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm p.EnterRule(localctx, 770, PostgreSQLParserRULE_dropsubscriptionstmt) var _la int - p.SetState(7491) + p.SetState(7493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103358,7 +103353,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7477) + p.SetState(7479) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -103366,7 +103361,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7478) + p.SetState(7480) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103374,10 +103369,10 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7479) + p.SetState(7481) p.Name() } - p.SetState(7481) + p.SetState(7483) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103386,7 +103381,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(7480) + p.SetState(7482) p.Opt_drop_behavior() } @@ -103395,7 +103390,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7483) + p.SetState(7485) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -103403,7 +103398,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7484) + p.SetState(7486) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103411,7 +103406,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7485) + p.SetState(7487) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -103419,7 +103414,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7486) + p.SetState(7488) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -103427,10 +103422,10 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7487) + p.SetState(7489) p.Name() } - p.SetState(7489) + p.SetState(7491) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103439,7 +103434,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(7488) + p.SetState(7490) p.Opt_drop_behavior() } @@ -103693,14 +103688,14 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7493) + p.SetState(7495) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7495) + p.SetState(7497) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103709,13 +103704,13 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(7494) + p.SetState(7496) p.Opt_or_replace() } } { - p.SetState(7497) + p.SetState(7499) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -103723,11 +103718,11 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7498) + p.SetState(7500) p.Name() } { - p.SetState(7499) + p.SetState(7501) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -103735,7 +103730,7 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7500) + p.SetState(7502) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -103743,11 +103738,11 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7501) + p.SetState(7503) p.Event() } { - p.SetState(7502) + p.SetState(7504) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -103755,10 +103750,10 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7503) + p.SetState(7505) p.Qualified_name() } - p.SetState(7505) + p.SetState(7507) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103767,20 +103762,20 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(7504) + p.SetState(7506) p.Where_clause() } } { - p.SetState(7507) + p.SetState(7509) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7509) + p.SetState(7511) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103789,13 +103784,13 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { if _la == PostgreSQLParserALSO || _la == PostgreSQLParserINSTEAD { { - p.SetState(7508) + p.SetState(7510) p.Opt_instead() } } { - p.SetState(7511) + p.SetState(7513) p.Ruleactionlist() } @@ -103939,7 +103934,7 @@ func (s *RuleactionlistContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { localctx = NewRuleactionlistContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 774, PostgreSQLParserRULE_ruleactionlist) - p.SetState(7519) + p.SetState(7521) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103949,7 +103944,7 @@ func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7513) + p.SetState(7515) p.Match(PostgreSQLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -103960,14 +103955,14 @@ func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7514) + p.SetState(7516) p.Ruleactionstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7515) + p.SetState(7517) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -103975,11 +103970,11 @@ func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { } } { - p.SetState(7516) + p.SetState(7518) p.Ruleactionmulti() } { - p.SetState(7517) + p.SetState(7519) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -104138,7 +104133,7 @@ func (p *PostgreSQLParser) Ruleactionmulti() (localctx IRuleactionmultiContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(7522) + p.SetState(7524) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104147,12 +104142,12 @@ func (p *PostgreSQLParser) Ruleactionmulti() (localctx IRuleactionmultiContext) if _la == PostgreSQLParserOPEN_PAREN || ((int64((_la-88)) & ^0x3f) == 0 && ((int64(1)<<(_la-88))&131089) != 0) || _la == PostgreSQLParserDELETE_P || _la == PostgreSQLParserINSERT || _la == PostgreSQLParserNOTIFY || _la == PostgreSQLParserUPDATE || _la == PostgreSQLParserVALUES { { - p.SetState(7521) + p.SetState(7523) p.RuleactionstmtOrEmpty() } } - p.SetState(7530) + p.SetState(7532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104161,14 +104156,14 @@ func (p *PostgreSQLParser) Ruleactionmulti() (localctx IRuleactionmultiContext) for _la == PostgreSQLParserSEMI { { - p.SetState(7524) + p.SetState(7526) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7526) + p.SetState(7528) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104177,13 +104172,13 @@ func (p *PostgreSQLParser) Ruleactionmulti() (localctx IRuleactionmultiContext) if _la == PostgreSQLParserOPEN_PAREN || ((int64((_la-88)) & ^0x3f) == 0 && ((int64(1)<<(_la-88))&131089) != 0) || _la == PostgreSQLParserDELETE_P || _la == PostgreSQLParserINSERT || _la == PostgreSQLParserNOTIFY || _la == PostgreSQLParserUPDATE || _la == PostgreSQLParserVALUES { { - p.SetState(7525) + p.SetState(7527) p.RuleactionstmtOrEmpty() } } - p.SetState(7532) + p.SetState(7534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104367,7 +104362,7 @@ func (s *RuleactionstmtContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Ruleactionstmt() (localctx IRuleactionstmtContext) { localctx = NewRuleactionstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 778, PostgreSQLParserRULE_ruleactionstmt) - p.SetState(7538) + p.SetState(7540) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104377,35 +104372,35 @@ func (p *PostgreSQLParser) Ruleactionstmt() (localctx IRuleactionstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7533) + p.SetState(7535) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7534) + p.SetState(7536) p.Insertstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7535) + p.SetState(7537) p.Updatestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7536) + p.SetState(7538) p.Deletestmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7537) + p.SetState(7539) p.Notifystmt() } @@ -104523,7 +104518,7 @@ func (p *PostgreSQLParser) RuleactionstmtOrEmpty() (localctx IRuleactionstmtOrEm p.EnterRule(localctx, 780, PostgreSQLParserRULE_ruleactionstmtOrEmpty) p.EnterOuterAlt(localctx, 1) { - p.SetState(7540) + p.SetState(7542) p.Ruleactionstmt() } @@ -104642,7 +104637,7 @@ func (p *PostgreSQLParser) Event() (localctx IEventContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7542) + p.SetState(7544) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserSELECT || _la == PostgreSQLParserDELETE_P || _la == PostgreSQLParserINSERT || _la == PostgreSQLParserUPDATE) { @@ -104758,7 +104753,7 @@ func (p *PostgreSQLParser) Opt_instead() (localctx IOpt_insteadContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7544) + p.SetState(7546) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALSO || _la == PostgreSQLParserINSTEAD) { @@ -104903,7 +104898,7 @@ func (p *PostgreSQLParser) Notifystmt() (localctx INotifystmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7546) + p.SetState(7548) p.Match(PostgreSQLParserNOTIFY) if p.HasError() { // Recognition error - abort rule @@ -104911,10 +104906,10 @@ func (p *PostgreSQLParser) Notifystmt() (localctx INotifystmtContext) { } } { - p.SetState(7547) + p.SetState(7549) p.Colid() } - p.SetState(7549) + p.SetState(7551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104923,7 +104918,7 @@ func (p *PostgreSQLParser) Notifystmt() (localctx INotifystmtContext) { if _la == PostgreSQLParserCOMMA { { - p.SetState(7548) + p.SetState(7550) p.Notify_payload() } @@ -105044,7 +105039,7 @@ func (p *PostgreSQLParser) Notify_payload() (localctx INotify_payloadContext) { p.EnterRule(localctx, 788, PostgreSQLParserRULE_notify_payload) p.EnterOuterAlt(localctx, 1) { - p.SetState(7551) + p.SetState(7553) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -105052,7 +105047,7 @@ func (p *PostgreSQLParser) Notify_payload() (localctx INotify_payloadContext) { } } { - p.SetState(7552) + p.SetState(7554) p.Sconst() } @@ -105171,7 +105166,7 @@ func (p *PostgreSQLParser) Listenstmt() (localctx IListenstmtContext) { p.EnterRule(localctx, 790, PostgreSQLParserRULE_listenstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7554) + p.SetState(7556) p.Match(PostgreSQLParserLISTEN) if p.HasError() { // Recognition error - abort rule @@ -105179,7 +105174,7 @@ func (p *PostgreSQLParser) Listenstmt() (localctx IListenstmtContext) { } } { - p.SetState(7555) + p.SetState(7557) p.Colid() } @@ -105301,7 +105296,7 @@ func (s *UnlistenstmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { localctx = NewUnlistenstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 792, PostgreSQLParserRULE_unlistenstmt) - p.SetState(7561) + p.SetState(7563) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105311,7 +105306,7 @@ func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7557) + p.SetState(7559) p.Match(PostgreSQLParserUNLISTEN) if p.HasError() { // Recognition error - abort rule @@ -105319,14 +105314,14 @@ func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { } } { - p.SetState(7558) + p.SetState(7560) p.Colid() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7559) + p.SetState(7561) p.Match(PostgreSQLParserUNLISTEN) if p.HasError() { // Recognition error - abort rule @@ -105334,7 +105329,7 @@ func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { } } { - p.SetState(7560) + p.SetState(7562) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -105584,7 +105579,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) p.EnterRule(localctx, 794, PostgreSQLParserRULE_transactionstmt) var _la int - p.SetState(7632) + p.SetState(7634) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105594,14 +105589,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7563) + p.SetState(7565) p.Match(PostgreSQLParserABORT_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7565) + p.SetState(7567) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105610,12 +105605,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7564) + p.SetState(7566) p.Opt_transaction() } } - p.SetState(7568) + p.SetState(7570) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105624,7 +105619,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7567) + p.SetState(7569) p.Opt_transaction_chain() } @@ -105633,14 +105628,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7570) + p.SetState(7572) p.Match(PostgreSQLParserBEGIN_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7572) + p.SetState(7574) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105649,12 +105644,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7571) + p.SetState(7573) p.Opt_transaction() } } - p.SetState(7575) + p.SetState(7577) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105663,7 +105658,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserDEFERRABLE || _la == PostgreSQLParserNOT || _la == PostgreSQLParserISOLATION || _la == PostgreSQLParserREAD { { - p.SetState(7574) + p.SetState(7576) p.Transaction_mode_list_or_empty() } @@ -105672,7 +105667,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7577) + p.SetState(7579) p.Match(PostgreSQLParserSTART) if p.HasError() { // Recognition error - abort rule @@ -105680,14 +105675,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7578) + p.SetState(7580) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7580) + p.SetState(7582) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105696,7 +105691,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserDEFERRABLE || _la == PostgreSQLParserNOT || _la == PostgreSQLParserISOLATION || _la == PostgreSQLParserREAD { { - p.SetState(7579) + p.SetState(7581) p.Transaction_mode_list_or_empty() } @@ -105705,14 +105700,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7582) + p.SetState(7584) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7584) + p.SetState(7586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105721,12 +105716,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7583) + p.SetState(7585) p.Opt_transaction() } } - p.SetState(7587) + p.SetState(7589) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105735,7 +105730,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7586) + p.SetState(7588) p.Opt_transaction_chain() } @@ -105744,14 +105739,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7589) + p.SetState(7591) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7591) + p.SetState(7593) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105760,12 +105755,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7590) + p.SetState(7592) p.Opt_transaction() } } - p.SetState(7594) + p.SetState(7596) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105774,7 +105769,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7593) + p.SetState(7595) p.Opt_transaction_chain() } @@ -105783,14 +105778,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7596) + p.SetState(7598) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7598) + p.SetState(7600) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105799,12 +105794,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7597) + p.SetState(7599) p.Opt_transaction() } } - p.SetState(7601) + p.SetState(7603) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105813,7 +105808,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7600) + p.SetState(7602) p.Opt_transaction_chain() } @@ -105822,7 +105817,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(7603) + p.SetState(7605) p.Match(PostgreSQLParserSAVEPOINT) if p.HasError() { // Recognition error - abort rule @@ -105830,14 +105825,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7604) + p.SetState(7606) p.Colid() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(7605) + p.SetState(7607) p.Match(PostgreSQLParserRELEASE) if p.HasError() { // Recognition error - abort rule @@ -105845,7 +105840,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7606) + p.SetState(7608) p.Match(PostgreSQLParserSAVEPOINT) if p.HasError() { // Recognition error - abort rule @@ -105853,14 +105848,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7607) + p.SetState(7609) p.Colid() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(7608) + p.SetState(7610) p.Match(PostgreSQLParserRELEASE) if p.HasError() { // Recognition error - abort rule @@ -105868,21 +105863,21 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7609) + p.SetState(7611) p.Colid() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(7610) + p.SetState(7612) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7612) + p.SetState(7614) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105891,13 +105886,13 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7611) + p.SetState(7613) p.Opt_transaction() } } { - p.SetState(7614) + p.SetState(7616) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -105905,7 +105900,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7615) + p.SetState(7617) p.Match(PostgreSQLParserSAVEPOINT) if p.HasError() { // Recognition error - abort rule @@ -105913,21 +105908,21 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7616) + p.SetState(7618) p.Colid() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(7617) + p.SetState(7619) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7619) + p.SetState(7621) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105936,13 +105931,13 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7618) + p.SetState(7620) p.Opt_transaction() } } { - p.SetState(7621) + p.SetState(7623) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -105950,14 +105945,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7622) + p.SetState(7624) p.Colid() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(7623) + p.SetState(7625) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -105965,7 +105960,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7624) + p.SetState(7626) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -105973,14 +105968,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7625) + p.SetState(7627) p.Sconst() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(7626) + p.SetState(7628) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule @@ -105988,7 +105983,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7627) + p.SetState(7629) p.Match(PostgreSQLParserPREPARED) if p.HasError() { // Recognition error - abort rule @@ -105996,14 +105991,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7628) + p.SetState(7630) p.Sconst() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(7629) + p.SetState(7631) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule @@ -106011,7 +106006,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7630) + p.SetState(7632) p.Match(PostgreSQLParserPREPARED) if p.HasError() { // Recognition error - abort rule @@ -106019,7 +106014,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7631) + p.SetState(7633) p.Sconst() } @@ -106132,7 +106127,7 @@ func (p *PostgreSQLParser) Opt_transaction() (localctx IOpt_transactionContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(7634) + p.SetState(7636) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK) { @@ -106286,7 +106281,7 @@ func (s *Transaction_mode_itemContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_itemContext) { localctx = NewTransaction_mode_itemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 798, PostgreSQLParserRULE_transaction_mode_item) - p.SetState(7646) + p.SetState(7648) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106296,7 +106291,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7636) + p.SetState(7638) p.Match(PostgreSQLParserISOLATION) if p.HasError() { // Recognition error - abort rule @@ -106304,7 +106299,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7637) + p.SetState(7639) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -106312,14 +106307,14 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7638) + p.SetState(7640) p.Iso_level() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7639) + p.SetState(7641) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -106327,7 +106322,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7640) + p.SetState(7642) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -106338,7 +106333,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7641) + p.SetState(7643) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -106346,7 +106341,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7642) + p.SetState(7644) p.Match(PostgreSQLParserWRITE) if p.HasError() { // Recognition error - abort rule @@ -106357,7 +106352,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7643) + p.SetState(7645) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -106368,7 +106363,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7644) + p.SetState(7646) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -106376,7 +106371,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7645) + p.SetState(7647) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -106536,10 +106531,10 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l p.EnterOuterAlt(localctx, 1) { - p.SetState(7648) + p.SetState(7650) p.Transaction_mode_item() } - p.SetState(7655) + p.SetState(7657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106547,7 +106542,7 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l _la = p.GetTokenStream().LA(1) for _la == PostgreSQLParserCOMMA || _la == PostgreSQLParserDEFERRABLE || _la == PostgreSQLParserNOT || _la == PostgreSQLParserISOLATION || _la == PostgreSQLParserREAD { - p.SetState(7650) + p.SetState(7652) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106556,7 +106551,7 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l if _la == PostgreSQLParserCOMMA { { - p.SetState(7649) + p.SetState(7651) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -106566,11 +106561,11 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l } { - p.SetState(7652) + p.SetState(7654) p.Transaction_mode_item() } - p.SetState(7657) + p.SetState(7659) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106688,7 +106683,7 @@ func (p *PostgreSQLParser) Transaction_mode_list_or_empty() (localctx ITransacti p.EnterRule(localctx, 802, PostgreSQLParserRULE_transaction_mode_list_or_empty) p.EnterOuterAlt(localctx, 1) { - p.SetState(7658) + p.SetState(7660) p.Transaction_mode_list() } @@ -106802,14 +106797,14 @@ func (p *PostgreSQLParser) Opt_transaction_chain() (localctx IOpt_transaction_ch p.EnterOuterAlt(localctx, 1) { - p.SetState(7660) + p.SetState(7662) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7662) + p.SetState(7664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106818,7 +106813,7 @@ func (p *PostgreSQLParser) Opt_transaction_chain() (localctx IOpt_transaction_ch if _la == PostgreSQLParserNO { { - p.SetState(7661) + p.SetState(7663) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -106828,7 +106823,7 @@ func (p *PostgreSQLParser) Opt_transaction_chain() (localctx IOpt_transaction_ch } { - p.SetState(7664) + p.SetState(7666) p.Match(PostgreSQLParserCHAIN) if p.HasError() { // Recognition error - abort rule @@ -107090,14 +107085,14 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7666) + p.SetState(7668) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7669) + p.SetState(7671) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107106,7 +107101,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(7667) + p.SetState(7669) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -107114,7 +107109,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7668) + p.SetState(7670) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -107123,7 +107118,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } - p.SetState(7672) + p.SetState(7674) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107132,12 +107127,12 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&32773) != 0) { { - p.SetState(7671) + p.SetState(7673) p.Opttemp() } } - p.SetState(7691) + p.SetState(7693) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107146,7 +107141,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserVIEW: { - p.SetState(7674) + p.SetState(7676) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -107154,10 +107149,10 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7675) + p.SetState(7677) p.Qualified_name() } - p.SetState(7677) + p.SetState(7679) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107166,12 +107161,12 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(7676) + p.SetState(7678) p.Opt_column_list() } } - p.SetState(7680) + p.SetState(7682) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107180,7 +107175,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(7679) + p.SetState(7681) p.Opt_reloptions() } @@ -107188,7 +107183,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { case PostgreSQLParserRECURSIVE: { - p.SetState(7682) + p.SetState(7684) p.Match(PostgreSQLParserRECURSIVE) if p.HasError() { // Recognition error - abort rule @@ -107196,7 +107191,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7683) + p.SetState(7685) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -107204,11 +107199,11 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7684) + p.SetState(7686) p.Qualified_name() } { - p.SetState(7685) + p.SetState(7687) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -107216,18 +107211,18 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7686) + p.SetState(7688) p.Columnlist() } { - p.SetState(7687) + p.SetState(7689) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7689) + p.SetState(7691) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107236,7 +107231,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(7688) + p.SetState(7690) p.Opt_reloptions() } @@ -107247,7 +107242,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { goto errorExit } { - p.SetState(7693) + p.SetState(7695) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -107255,15 +107250,15 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7694) + p.SetState(7696) p.Selectstmt() } - p.SetState(7696) + p.SetState(7698) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 614, p.GetParserRuleContext()) == 1 { { - p.SetState(7695) + p.SetState(7697) p.Opt_check_option() } @@ -107391,14 +107386,14 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext p.EnterOuterAlt(localctx, 1) { - p.SetState(7698) + p.SetState(7700) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7700) + p.SetState(7702) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107407,7 +107402,7 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext if _la == PostgreSQLParserCASCADED || _la == PostgreSQLParserLOCAL { { - p.SetState(7699) + p.SetState(7701) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCASCADED || _la == PostgreSQLParserLOCAL) { @@ -107420,7 +107415,7 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext } { - p.SetState(7702) + p.SetState(7704) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -107428,7 +107423,7 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext } } { - p.SetState(7703) + p.SetState(7705) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -107551,7 +107546,7 @@ func (p *PostgreSQLParser) Loadstmt() (localctx ILoadstmtContext) { p.EnterRule(localctx, 810, PostgreSQLParserRULE_loadstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7705) + p.SetState(7707) p.Match(PostgreSQLParserLOAD) if p.HasError() { // Recognition error - abort rule @@ -107559,7 +107554,7 @@ func (p *PostgreSQLParser) Loadstmt() (localctx ILoadstmtContext) { } } { - p.SetState(7706) + p.SetState(7708) p.File_name() } @@ -107717,7 +107712,7 @@ func (p *PostgreSQLParser) Createdbstmt() (localctx ICreatedbstmtContext) { p.EnterRule(localctx, 812, PostgreSQLParserRULE_createdbstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7708) + p.SetState(7710) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -107725,7 +107720,7 @@ func (p *PostgreSQLParser) Createdbstmt() (localctx ICreatedbstmtContext) { } } { - p.SetState(7709) + p.SetState(7711) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -107733,27 +107728,27 @@ func (p *PostgreSQLParser) Createdbstmt() (localctx ICreatedbstmtContext) { } } { - p.SetState(7710) + p.SetState(7712) p.Name() } - p.SetState(7712) + p.SetState(7714) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 616, p.GetParserRuleContext()) == 1 { { - p.SetState(7711) + p.SetState(7713) p.Opt_with() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7715) + p.SetState(7717) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 617, p.GetParserRuleContext()) == 1 { { - p.SetState(7714) + p.SetState(7716) p.Createdb_opt_list() } @@ -107871,7 +107866,7 @@ func (p *PostgreSQLParser) Createdb_opt_list() (localctx ICreatedb_opt_listConte p.EnterRule(localctx, 814, PostgreSQLParserRULE_createdb_opt_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(7717) + p.SetState(7719) p.Createdb_opt_items() } @@ -108012,7 +108007,7 @@ func (p *PostgreSQLParser) Createdb_opt_items() (localctx ICreatedb_opt_itemsCon var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(7720) + p.SetState(7722) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108022,7 +108017,7 @@ func (p *PostgreSQLParser) Createdb_opt_items() (localctx ICreatedb_opt_itemsCon switch _alt { case 1: { - p.SetState(7719) + p.SetState(7721) p.Createdb_opt_item() } @@ -108031,7 +108026,7 @@ func (p *PostgreSQLParser) Createdb_opt_items() (localctx ICreatedb_opt_itemsCon goto errorExit } - p.SetState(7722) + p.SetState(7724) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 618, p.GetParserRuleContext()) if p.HasError() { @@ -108207,10 +108202,10 @@ func (p *PostgreSQLParser) Createdb_opt_item() (localctx ICreatedb_opt_itemConte p.EnterOuterAlt(localctx, 1) { - p.SetState(7724) + p.SetState(7726) p.Createdb_opt_name() } - p.SetState(7726) + p.SetState(7728) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108219,12 +108214,12 @@ func (p *PostgreSQLParser) Createdb_opt_item() (localctx ICreatedb_opt_itemConte if _la == PostgreSQLParserEQUAL { { - p.SetState(7725) + p.SetState(7727) p.Opt_equal() } } - p.SetState(7731) + p.SetState(7733) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108233,19 +108228,19 @@ func (p *PostgreSQLParser) Createdb_opt_item() (localctx ICreatedb_opt_itemConte switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 620, p.GetParserRuleContext()) { case 1: { - p.SetState(7728) + p.SetState(7730) p.Signediconst() } case 2: { - p.SetState(7729) + p.SetState(7731) p.Opt_boolean_or_string() } case 3: { - p.SetState(7730) + p.SetState(7732) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -108400,7 +108395,7 @@ func (s *Createdb_opt_nameContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameContext) { localctx = NewCreatedb_opt_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 820, PostgreSQLParserRULE_createdb_opt_name) - p.SetState(7741) + p.SetState(7743) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108410,14 +108405,14 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserIS, PostgreSQLParserOUTER_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserBACKWARD, PostgreSQLParserCHAIN, PostgreSQLParserCLOSE, PostgreSQLParserCOMMIT, PostgreSQLParserCONTINUE_P, PostgreSQLParserCURSOR, PostgreSQLParserFIRST_P, PostgreSQLParserFORWARD, PostgreSQLParserINSERT, PostgreSQLParserLAST_P, PostgreSQLParserMOVE, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserOPTION, PostgreSQLParserPRIOR, PostgreSQLParserRELATIVE_P, PostgreSQLParserRESET, PostgreSQLParserROLLBACK, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSET, PostgreSQLParserTYPE_P, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserROWTYPE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(7733) + p.SetState(7735) p.Identifier() } case PostgreSQLParserCONNECTION: p.EnterOuterAlt(localctx, 2) { - p.SetState(7734) + p.SetState(7736) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -108425,7 +108420,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte } } { - p.SetState(7735) + p.SetState(7737) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -108436,7 +108431,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserENCODING: p.EnterOuterAlt(localctx, 3) { - p.SetState(7736) + p.SetState(7738) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -108447,7 +108442,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserLOCATION: p.EnterOuterAlt(localctx, 4) { - p.SetState(7737) + p.SetState(7739) p.Match(PostgreSQLParserLOCATION) if p.HasError() { // Recognition error - abort rule @@ -108458,7 +108453,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserOWNER: p.EnterOuterAlt(localctx, 5) { - p.SetState(7738) + p.SetState(7740) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -108469,7 +108464,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserTABLESPACE: p.EnterOuterAlt(localctx, 6) { - p.SetState(7739) + p.SetState(7741) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -108480,7 +108475,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserTEMPLATE: p.EnterOuterAlt(localctx, 7) { - p.SetState(7740) + p.SetState(7742) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -108591,7 +108586,7 @@ func (p *PostgreSQLParser) Opt_equal() (localctx IOpt_equalContext) { p.EnterRule(localctx, 822, PostgreSQLParserRULE_opt_equal) p.EnterOuterAlt(localctx, 1) { - p.SetState(7743) + p.SetState(7745) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -108792,7 +108787,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte p.EnterRule(localctx, 824, PostgreSQLParserRULE_alterdatabasestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7745) + p.SetState(7747) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -108800,7 +108795,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7746) + p.SetState(7748) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -108808,10 +108803,10 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7747) + p.SetState(7749) p.Name() } - p.SetState(7761) + p.SetState(7763) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108820,19 +108815,19 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 624, p.GetParserRuleContext()) { case 1: { - p.SetState(7748) + p.SetState(7750) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7750) + p.SetState(7752) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 622, p.GetParserRuleContext()) == 1 { { - p.SetState(7749) + p.SetState(7751) p.Createdb_opt_list() } @@ -108841,12 +108836,12 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } case 2: - p.SetState(7753) + p.SetState(7755) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 623, p.GetParserRuleContext()) == 1 { { - p.SetState(7752) + p.SetState(7754) p.Createdb_opt_list() } @@ -108856,7 +108851,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte case 3: { - p.SetState(7755) + p.SetState(7757) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -108864,7 +108859,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7756) + p.SetState(7758) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -108872,13 +108867,13 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7757) + p.SetState(7759) p.Name() } case 4: { - p.SetState(7758) + p.SetState(7760) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -108886,7 +108881,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7759) + p.SetState(7761) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -108894,7 +108889,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7760) + p.SetState(7762) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -109043,7 +109038,7 @@ func (p *PostgreSQLParser) Alterdatabasesetstmt() (localctx IAlterdatabasesetstm p.EnterRule(localctx, 826, PostgreSQLParserRULE_alterdatabasesetstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7763) + p.SetState(7765) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -109051,7 +109046,7 @@ func (p *PostgreSQLParser) Alterdatabasesetstmt() (localctx IAlterdatabasesetstm } } { - p.SetState(7764) + p.SetState(7766) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -109059,11 +109054,11 @@ func (p *PostgreSQLParser) Alterdatabasesetstmt() (localctx IAlterdatabasesetstm } } { - p.SetState(7765) + p.SetState(7767) p.Name() } { - p.SetState(7766) + p.SetState(7768) p.Setresetclause() } @@ -109243,7 +109238,7 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7768) + p.SetState(7770) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -109251,19 +109246,19 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { } } { - p.SetState(7769) + p.SetState(7771) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7772) + p.SetState(7774) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 625, p.GetParserRuleContext()) == 1 { { - p.SetState(7770) + p.SetState(7772) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -109271,7 +109266,7 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { } } { - p.SetState(7771) + p.SetState(7773) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -109283,14 +109278,14 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { goto errorExit } { - p.SetState(7774) + p.SetState(7776) p.Name() } - p.SetState(7782) + p.SetState(7784) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 627, p.GetParserRuleContext()) == 1 { - p.SetState(7776) + p.SetState(7778) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -109299,13 +109294,13 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(7775) + p.SetState(7777) p.Opt_with() } } { - p.SetState(7778) + p.SetState(7780) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -109313,11 +109308,11 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { } } { - p.SetState(7779) + p.SetState(7781) p.Drop_option_list() } { - p.SetState(7780) + p.SetState(7782) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -109477,10 +109472,10 @@ func (p *PostgreSQLParser) Drop_option_list() (localctx IDrop_option_listContext p.EnterOuterAlt(localctx, 1) { - p.SetState(7784) + p.SetState(7786) p.Drop_option() } - p.SetState(7789) + p.SetState(7791) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -109489,7 +109484,7 @@ func (p *PostgreSQLParser) Drop_option_list() (localctx IDrop_option_listContext for _la == PostgreSQLParserCOMMA { { - p.SetState(7785) + p.SetState(7787) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -109497,11 +109492,11 @@ func (p *PostgreSQLParser) Drop_option_list() (localctx IDrop_option_listContext } } { - p.SetState(7786) + p.SetState(7788) p.Drop_option() } - p.SetState(7791) + p.SetState(7793) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -109607,7 +109602,7 @@ func (p *PostgreSQLParser) Drop_option() (localctx IDrop_optionContext) { p.EnterRule(localctx, 832, PostgreSQLParserRULE_drop_option) p.EnterOuterAlt(localctx, 1) { - p.SetState(7792) + p.SetState(7794) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -109745,7 +109740,7 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon p.EnterRule(localctx, 834, PostgreSQLParserRULE_altercollationstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7794) + p.SetState(7796) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -109753,7 +109748,7 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon } } { - p.SetState(7795) + p.SetState(7797) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -109761,11 +109756,11 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon } } { - p.SetState(7796) + p.SetState(7798) p.Any_name() } { - p.SetState(7797) + p.SetState(7799) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -109773,7 +109768,7 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon } } { - p.SetState(7798) + p.SetState(7800) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -109913,7 +109908,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(7800) + p.SetState(7802) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -109921,7 +109916,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) } } { - p.SetState(7801) + p.SetState(7803) p.Match(PostgreSQLParserSYSTEM_P) if p.HasError() { // Recognition error - abort rule @@ -109929,7 +109924,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) } } { - p.SetState(7802) + p.SetState(7804) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserRESET || _la == PostgreSQLParserSET) { @@ -109940,7 +109935,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) } } { - p.SetState(7803) + p.SetState(7805) p.Generic_set() } @@ -110117,7 +110112,7 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(7805) + p.SetState(7807) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -110125,7 +110120,7 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext } } { - p.SetState(7806) + p.SetState(7808) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -110133,10 +110128,10 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext } } { - p.SetState(7807) + p.SetState(7809) p.Any_name() } - p.SetState(7809) + p.SetState(7811) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -110145,17 +110140,17 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext if _la == PostgreSQLParserAS { { - p.SetState(7808) + p.SetState(7810) p.Opt_as() } } { - p.SetState(7811) + p.SetState(7813) p.Typename() } { - p.SetState(7812) + p.SetState(7814) p.Colquallist() } @@ -110394,7 +110389,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(7814) + p.SetState(7816) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -110402,7 +110397,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7815) + p.SetState(7817) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -110410,10 +110405,10 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7816) + p.SetState(7818) p.Any_name() } - p.SetState(7839) + p.SetState(7841) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -110422,13 +110417,13 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 632, p.GetParserRuleContext()) { case 1: { - p.SetState(7817) + p.SetState(7819) p.Alter_column_default() } case 2: { - p.SetState(7818) + p.SetState(7820) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -110436,7 +110431,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7819) + p.SetState(7821) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -110444,7 +110439,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7820) + p.SetState(7822) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -110454,7 +110449,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) case 3: { - p.SetState(7821) + p.SetState(7823) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -110462,7 +110457,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7822) + p.SetState(7824) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -110470,7 +110465,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7823) + p.SetState(7825) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -110480,7 +110475,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) case 4: { - p.SetState(7824) + p.SetState(7826) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -110488,13 +110483,13 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7825) + p.SetState(7827) p.Tableconstraint() } case 5: { - p.SetState(7826) + p.SetState(7828) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -110502,19 +110497,19 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7827) + p.SetState(7829) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7830) + p.SetState(7832) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 630, p.GetParserRuleContext()) == 1 { { - p.SetState(7828) + p.SetState(7830) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -110522,7 +110517,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7829) + p.SetState(7831) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -110534,10 +110529,10 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) goto errorExit } { - p.SetState(7832) + p.SetState(7834) p.Name() } - p.SetState(7834) + p.SetState(7836) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -110546,7 +110541,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(7833) + p.SetState(7835) p.Opt_drop_behavior() } @@ -110554,7 +110549,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) case 6: { - p.SetState(7836) + p.SetState(7838) p.Match(PostgreSQLParserVALIDATE) if p.HasError() { // Recognition error - abort rule @@ -110562,7 +110557,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7837) + p.SetState(7839) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -110570,7 +110565,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7838) + p.SetState(7840) p.Name() } @@ -110676,7 +110671,7 @@ func (p *PostgreSQLParser) Opt_as() (localctx IOpt_asContext) { p.EnterRule(localctx, 842, PostgreSQLParserRULE_opt_as) p.EnterOuterAlt(localctx, 1) { - p.SetState(7841) + p.SetState(7843) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -110831,7 +110826,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys p.EnterRule(localctx, 844, PostgreSQLParserRULE_altertsdictionarystmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7843) + p.SetState(7845) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -110839,7 +110834,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7844) + p.SetState(7846) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -110847,7 +110842,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7845) + p.SetState(7847) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -110855,7 +110850,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7846) + p.SetState(7848) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -110863,11 +110858,11 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7847) + p.SetState(7849) p.Any_name() } { - p.SetState(7848) + p.SetState(7850) p.Definition() } @@ -111116,7 +111111,7 @@ func (s *AltertsconfigurationstmtContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigurationstmtContext) { localctx = NewAltertsconfigurationstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 846, PostgreSQLParserRULE_altertsconfigurationstmt) - p.SetState(7922) + p.SetState(7924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -111126,7 +111121,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7850) + p.SetState(7852) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111134,7 +111129,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7851) + p.SetState(7853) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111142,7 +111137,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7852) + p.SetState(7854) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111150,7 +111145,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7853) + p.SetState(7855) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111158,11 +111153,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7854) + p.SetState(7856) p.Any_name() } { - p.SetState(7855) + p.SetState(7857) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -111170,7 +111165,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7856) + p.SetState(7858) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111178,7 +111173,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7857) + p.SetState(7859) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111186,22 +111181,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7858) + p.SetState(7860) p.Name_list() } { - p.SetState(7859) + p.SetState(7861) p.Any_with() } { - p.SetState(7860) + p.SetState(7862) p.Any_name_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7862) + p.SetState(7864) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111209,7 +111204,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7863) + p.SetState(7865) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111217,7 +111212,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7864) + p.SetState(7866) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111225,7 +111220,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7865) + p.SetState(7867) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111233,11 +111228,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7866) + p.SetState(7868) p.Any_name() } { - p.SetState(7867) + p.SetState(7869) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111245,7 +111240,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7868) + p.SetState(7870) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111253,7 +111248,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7869) + p.SetState(7871) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111261,22 +111256,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7870) + p.SetState(7872) p.Name_list() } { - p.SetState(7871) + p.SetState(7873) p.Any_with() } { - p.SetState(7872) + p.SetState(7874) p.Any_name_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7874) + p.SetState(7876) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111284,7 +111279,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7875) + p.SetState(7877) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111292,7 +111287,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7876) + p.SetState(7878) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111300,7 +111295,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7877) + p.SetState(7879) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111308,11 +111303,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7878) + p.SetState(7880) p.Any_name() } { - p.SetState(7879) + p.SetState(7881) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111320,7 +111315,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7880) + p.SetState(7882) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111328,7 +111323,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7881) + p.SetState(7883) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -111336,22 +111331,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7882) + p.SetState(7884) p.Any_name() } { - p.SetState(7883) + p.SetState(7885) p.Any_with() } { - p.SetState(7884) + p.SetState(7886) p.Any_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7886) + p.SetState(7888) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111359,7 +111354,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7887) + p.SetState(7889) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111367,7 +111362,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7888) + p.SetState(7890) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111375,7 +111370,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7889) + p.SetState(7891) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111383,11 +111378,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7890) + p.SetState(7892) p.Any_name() } { - p.SetState(7891) + p.SetState(7893) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111395,7 +111390,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7892) + p.SetState(7894) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111403,7 +111398,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7893) + p.SetState(7895) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111411,11 +111406,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7894) + p.SetState(7896) p.Name_list() } { - p.SetState(7895) + p.SetState(7897) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -111423,22 +111418,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7896) + p.SetState(7898) p.Any_name() } { - p.SetState(7897) + p.SetState(7899) p.Any_with() } { - p.SetState(7898) + p.SetState(7900) p.Any_name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7900) + p.SetState(7902) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111446,7 +111441,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7901) + p.SetState(7903) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111454,7 +111449,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7902) + p.SetState(7904) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111462,7 +111457,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7903) + p.SetState(7905) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111470,11 +111465,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7904) + p.SetState(7906) p.Any_name() } { - p.SetState(7905) + p.SetState(7907) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -111482,7 +111477,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7906) + p.SetState(7908) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111490,7 +111485,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7907) + p.SetState(7909) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111498,14 +111493,14 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7908) + p.SetState(7910) p.Name_list() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7910) + p.SetState(7912) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111513,7 +111508,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7911) + p.SetState(7913) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111521,7 +111516,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7912) + p.SetState(7914) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111529,7 +111524,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7913) + p.SetState(7915) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111537,11 +111532,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7914) + p.SetState(7916) p.Any_name() } { - p.SetState(7915) + p.SetState(7917) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -111549,7 +111544,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7916) + p.SetState(7918) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111557,7 +111552,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7917) + p.SetState(7919) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -111565,7 +111560,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7918) + p.SetState(7920) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -111573,7 +111568,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7919) + p.SetState(7921) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111581,7 +111576,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7920) + p.SetState(7922) p.Name_list() } @@ -111687,7 +111682,7 @@ func (p *PostgreSQLParser) Any_with() (localctx IAny_withContext) { p.EnterRule(localctx, 848, PostgreSQLParserRULE_any_with) p.EnterOuterAlt(localctx, 1) { - p.SetState(7924) + p.SetState(7926) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -111918,14 +111913,14 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm p.EnterOuterAlt(localctx, 1) { - p.SetState(7926) + p.SetState(7928) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7928) + p.SetState(7930) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -111934,13 +111929,13 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm if _la == PostgreSQLParserDEFAULT { { - p.SetState(7927) + p.SetState(7929) p.Opt_default() } } { - p.SetState(7930) + p.SetState(7932) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -111948,11 +111943,11 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7931) + p.SetState(7933) p.Any_name() } { - p.SetState(7932) + p.SetState(7934) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111960,11 +111955,11 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7933) + p.SetState(7935) p.Sconst() } { - p.SetState(7934) + p.SetState(7936) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -111972,11 +111967,11 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7935) + p.SetState(7937) p.Sconst() } { - p.SetState(7936) + p.SetState(7938) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -111984,7 +111979,7 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7937) + p.SetState(7939) p.Any_name() } @@ -112159,7 +112154,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { p.EnterRule(localctx, 852, PostgreSQLParserRULE_clusterstmt) var _la int - p.SetState(7959) + p.SetState(7961) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112169,14 +112164,14 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7939) + p.SetState(7941) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7941) + p.SetState(7943) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112185,16 +112180,16 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7940) + p.SetState(7942) p.Opt_verbose() } } { - p.SetState(7943) + p.SetState(7945) p.Qualified_name() } - p.SetState(7945) + p.SetState(7947) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112203,7 +112198,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(7944) + p.SetState(7946) p.Cluster_index_specification() } @@ -112212,14 +112207,14 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7947) + p.SetState(7949) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7949) + p.SetState(7951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112228,7 +112223,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7948) + p.SetState(7950) p.Opt_verbose() } @@ -112237,14 +112232,14 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7951) + p.SetState(7953) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7953) + p.SetState(7955) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112253,17 +112248,17 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7952) + p.SetState(7954) p.Opt_verbose() } } { - p.SetState(7955) + p.SetState(7957) p.Name() } { - p.SetState(7956) + p.SetState(7958) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -112271,7 +112266,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { } } { - p.SetState(7957) + p.SetState(7959) p.Qualified_name() } @@ -112394,7 +112389,7 @@ func (p *PostgreSQLParser) Cluster_index_specification() (localctx ICluster_inde p.EnterRule(localctx, 854, PostgreSQLParserRULE_cluster_index_specification) p.EnterOuterAlt(localctx, 1) { - p.SetState(7961) + p.SetState(7963) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -112402,7 +112397,7 @@ func (p *PostgreSQLParser) Cluster_index_specification() (localctx ICluster_inde } } { - p.SetState(7962) + p.SetState(7964) p.Name() } @@ -112616,7 +112611,7 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { p.EnterRule(localctx, 856, PostgreSQLParserRULE_vacuumstmt) var _la int - p.SetState(7987) + p.SetState(7989) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112626,14 +112621,14 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7964) + p.SetState(7966) p.Match(PostgreSQLParserVACUUM) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7966) + p.SetState(7968) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112642,12 +112637,12 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { if _la == PostgreSQLParserFULL { { - p.SetState(7965) + p.SetState(7967) p.Opt_full() } } - p.SetState(7969) + p.SetState(7971) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112656,12 +112651,12 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { if _la == PostgreSQLParserFREEZE { { - p.SetState(7968) + p.SetState(7970) p.Opt_freeze() } } - p.SetState(7972) + p.SetState(7974) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112670,29 +112665,29 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7971) + p.SetState(7973) p.Opt_verbose() } } - p.SetState(7975) + p.SetState(7977) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 643, p.GetParserRuleContext()) == 1 { { - p.SetState(7974) + p.SetState(7976) p.Opt_analyze() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7978) + p.SetState(7980) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 644, p.GetParserRuleContext()) == 1 { { - p.SetState(7977) + p.SetState(7979) p.Opt_vacuum_relation_list() } @@ -112703,7 +112698,7 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7980) + p.SetState(7982) p.Match(PostgreSQLParserVACUUM) if p.HasError() { // Recognition error - abort rule @@ -112711,7 +112706,7 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { } } { - p.SetState(7981) + p.SetState(7983) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -112719,23 +112714,23 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { } } { - p.SetState(7982) + p.SetState(7984) p.Vac_analyze_option_list() } { - p.SetState(7983) + p.SetState(7985) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7985) + p.SetState(7987) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 645, p.GetParserRuleContext()) == 1 { { - p.SetState(7984) + p.SetState(7986) p.Opt_vacuum_relation_list() } @@ -112918,7 +112913,7 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { p.EnterRule(localctx, 858, PostgreSQLParserRULE_analyzestmt) var _la int - p.SetState(8003) + p.SetState(8005) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112928,10 +112923,10 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7989) + p.SetState(7991) p.Analyze_keyword() } - p.SetState(7991) + p.SetState(7993) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112940,17 +112935,17 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7990) + p.SetState(7992) p.Opt_verbose() } } - p.SetState(7994) + p.SetState(7996) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 648, p.GetParserRuleContext()) == 1 { { - p.SetState(7993) + p.SetState(7995) p.Opt_vacuum_relation_list() } @@ -112961,11 +112956,11 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7996) + p.SetState(7998) p.Analyze_keyword() } { - p.SetState(7997) + p.SetState(7999) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -112973,23 +112968,23 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { } } { - p.SetState(7998) + p.SetState(8000) p.Vac_analyze_option_list() } { - p.SetState(7999) + p.SetState(8001) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8001) + p.SetState(8003) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 649, p.GetParserRuleContext()) == 1 { { - p.SetState(8000) + p.SetState(8002) p.Opt_vacuum_relation_list() } @@ -113149,10 +113144,10 @@ func (p *PostgreSQLParser) Vac_analyze_option_list() (localctx IVac_analyze_opti p.EnterOuterAlt(localctx, 1) { - p.SetState(8005) + p.SetState(8007) p.Vac_analyze_option_elem() } - p.SetState(8010) + p.SetState(8012) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113161,7 +113156,7 @@ func (p *PostgreSQLParser) Vac_analyze_option_list() (localctx IVac_analyze_opti for _la == PostgreSQLParserCOMMA { { - p.SetState(8006) + p.SetState(8008) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -113169,11 +113164,11 @@ func (p *PostgreSQLParser) Vac_analyze_option_list() (localctx IVac_analyze_opti } } { - p.SetState(8007) + p.SetState(8009) p.Vac_analyze_option_elem() } - p.SetState(8012) + p.SetState(8014) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113286,7 +113281,7 @@ func (p *PostgreSQLParser) Analyze_keyword() (localctx IAnalyze_keywordContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8013) + p.SetState(8015) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserANALYSE || _la == PostgreSQLParserANALYZE) { @@ -113426,10 +113421,10 @@ func (p *PostgreSQLParser) Vac_analyze_option_elem() (localctx IVac_analyze_opti p.EnterOuterAlt(localctx, 1) { - p.SetState(8015) + p.SetState(8017) p.Vac_analyze_option_name() } - p.SetState(8017) + p.SetState(8019) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113438,7 +113433,7 @@ func (p *PostgreSQLParser) Vac_analyze_option_elem() (localctx IVac_analyze_opti if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3611948516751978496) != 0) || ((int64((_la-80)) & ^0x3f) == 0 && ((int64(1)<<(_la-80))&-288251816158621695) != 0) || ((int64((_la-144)) & ^0x3f) == 0 && ((int64(1)<<(_la-144))&-3) != 0) || ((int64((_la-208)) & ^0x3f) == 0 && ((int64(1)<<(_la-208))&-2305843009213693953) != 0) || ((int64((_la-273)) & ^0x3f) == 0 && ((int64(1)<<(_la-273))&-1) != 0) || ((int64((_la-337)) & ^0x3f) == 0 && ((int64(1)<<(_la-337))&-1) != 0) || ((int64((_la-401)) & ^0x3f) == 0 && ((int64(1)<<(_la-401))&-1) != 0) || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&-2882303761517118465) != 0) || ((int64((_la-529)) & ^0x3f) == 0 && ((int64(1)<<(_la-529))&-2049) != 0) || ((int64((_la-593)) & ^0x3f) == 0 && ((int64(1)<<(_la-593))&-1) != 0) || ((int64((_la-657)) & ^0x3f) == 0 && ((int64(1)<<(_la-657))&4413617148385) != 0) { { - p.SetState(8016) + p.SetState(8018) p.Vac_analyze_option_arg() } @@ -113569,7 +113564,7 @@ func (s *Vac_analyze_option_nameContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Vac_analyze_option_name() (localctx IVac_analyze_option_nameContext) { localctx = NewVac_analyze_option_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 866, PostgreSQLParserRULE_vac_analyze_option_name) - p.SetState(8021) + p.SetState(8023) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113579,14 +113574,14 @@ func (p *PostgreSQLParser) Vac_analyze_option_name() (localctx IVac_analyze_opti case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(8019) + p.SetState(8021) p.Nonreservedword() } case PostgreSQLParserANALYSE, PostgreSQLParserANALYZE: p.EnterOuterAlt(localctx, 2) { - p.SetState(8020) + p.SetState(8022) p.Analyze_keyword() } @@ -113720,7 +113715,7 @@ func (s *Vac_analyze_option_argContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Vac_analyze_option_arg() (localctx IVac_analyze_option_argContext) { localctx = NewVac_analyze_option_argContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 868, PostgreSQLParserRULE_vac_analyze_option_arg) - p.SetState(8025) + p.SetState(8027) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113730,14 +113725,14 @@ func (p *PostgreSQLParser) Vac_analyze_option_arg() (localctx IVac_analyze_optio case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserON, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(8023) + p.SetState(8025) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(8024) + p.SetState(8026) p.Numericonly() } @@ -113856,7 +113851,7 @@ func (p *PostgreSQLParser) Opt_analyze() (localctx IOpt_analyzeContext) { p.EnterRule(localctx, 870, PostgreSQLParserRULE_opt_analyze) p.EnterOuterAlt(localctx, 1) { - p.SetState(8027) + p.SetState(8029) p.Analyze_keyword() } @@ -113958,7 +113953,7 @@ func (p *PostgreSQLParser) Opt_verbose() (localctx IOpt_verboseContext) { p.EnterRule(localctx, 872, PostgreSQLParserRULE_opt_verbose) p.EnterOuterAlt(localctx, 1) { - p.SetState(8029) + p.SetState(8031) p.Match(PostgreSQLParserVERBOSE) if p.HasError() { // Recognition error - abort rule @@ -114064,7 +114059,7 @@ func (p *PostgreSQLParser) Opt_full() (localctx IOpt_fullContext) { p.EnterRule(localctx, 874, PostgreSQLParserRULE_opt_full) p.EnterOuterAlt(localctx, 1) { - p.SetState(8031) + p.SetState(8033) p.Match(PostgreSQLParserFULL) if p.HasError() { // Recognition error - abort rule @@ -114170,7 +114165,7 @@ func (p *PostgreSQLParser) Opt_freeze() (localctx IOpt_freezeContext) { p.EnterRule(localctx, 876, PostgreSQLParserRULE_opt_freeze) p.EnterOuterAlt(localctx, 1) { - p.SetState(8033) + p.SetState(8035) p.Match(PostgreSQLParserFREEZE) if p.HasError() { // Recognition error - abort rule @@ -114298,7 +114293,7 @@ func (p *PostgreSQLParser) Opt_name_list() (localctx IOpt_name_listContext) { p.EnterRule(localctx, 878, PostgreSQLParserRULE_opt_name_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(8035) + p.SetState(8037) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -114306,11 +114301,11 @@ func (p *PostgreSQLParser) Opt_name_list() (localctx IOpt_name_listContext) { } } { - p.SetState(8036) + p.SetState(8038) p.Name_list() } { - p.SetState(8037) + p.SetState(8039) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -114445,15 +114440,15 @@ func (p *PostgreSQLParser) Vacuum_relation() (localctx IVacuum_relationContext) p.EnterRule(localctx, 880, PostgreSQLParserRULE_vacuum_relation) p.EnterOuterAlt(localctx, 1) { - p.SetState(8039) + p.SetState(8041) p.Qualified_name() } - p.SetState(8041) + p.SetState(8043) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 655, p.GetParserRuleContext()) == 1 { { - p.SetState(8040) + p.SetState(8042) p.Opt_name_list() } @@ -114609,10 +114604,10 @@ func (p *PostgreSQLParser) Vacuum_relation_list() (localctx IVacuum_relation_lis p.EnterOuterAlt(localctx, 1) { - p.SetState(8043) + p.SetState(8045) p.Vacuum_relation() } - p.SetState(8048) + p.SetState(8050) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114621,7 +114616,7 @@ func (p *PostgreSQLParser) Vacuum_relation_list() (localctx IVacuum_relation_lis for _la == PostgreSQLParserCOMMA { { - p.SetState(8044) + p.SetState(8046) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -114629,11 +114624,11 @@ func (p *PostgreSQLParser) Vacuum_relation_list() (localctx IVacuum_relation_lis } } { - p.SetState(8045) + p.SetState(8047) p.Vacuum_relation() } - p.SetState(8050) + p.SetState(8052) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114751,7 +114746,7 @@ func (p *PostgreSQLParser) Opt_vacuum_relation_list() (localctx IOpt_vacuum_rela p.EnterRule(localctx, 884, PostgreSQLParserRULE_opt_vacuum_relation_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(8051) + p.SetState(8053) p.Vacuum_relation_list() } @@ -114936,7 +114931,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { p.EnterRule(localctx, 886, PostgreSQLParserRULE_explainstmt) var _la int - p.SetState(8071) + p.SetState(8073) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114946,7 +114941,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8053) + p.SetState(8055) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -114954,14 +114949,14 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8054) + p.SetState(8056) p.Explainablestmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8055) + p.SetState(8057) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -114969,10 +114964,10 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8056) + p.SetState(8058) p.Analyze_keyword() } - p.SetState(8058) + p.SetState(8060) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114981,20 +114976,20 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(8057) + p.SetState(8059) p.Opt_verbose() } } { - p.SetState(8060) + p.SetState(8062) p.Explainablestmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8062) + p.SetState(8064) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -115002,7 +114997,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8063) + p.SetState(8065) p.Match(PostgreSQLParserVERBOSE) if p.HasError() { // Recognition error - abort rule @@ -115010,14 +115005,14 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8064) + p.SetState(8066) p.Explainablestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8065) + p.SetState(8067) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -115025,7 +115020,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8066) + p.SetState(8068) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -115033,11 +115028,11 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8067) + p.SetState(8069) p.Explain_option_list() } { - p.SetState(8068) + p.SetState(8070) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -115045,7 +115040,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8069) + p.SetState(8071) p.Explainablestmt() } @@ -115297,7 +115292,7 @@ func (s *ExplainablestmtContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Explainablestmt() (localctx IExplainablestmtContext) { localctx = NewExplainablestmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 888, PostgreSQLParserRULE_explainablestmt) - p.SetState(8082) + p.SetState(8084) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115307,63 +115302,63 @@ func (p *PostgreSQLParser) Explainablestmt() (localctx IExplainablestmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8073) + p.SetState(8075) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8074) + p.SetState(8076) p.Insertstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8075) + p.SetState(8077) p.Updatestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8076) + p.SetState(8078) p.Deletestmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(8077) + p.SetState(8079) p.Declarecursorstmt() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(8078) + p.SetState(8080) p.Createasstmt() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(8079) + p.SetState(8081) p.Creatematviewstmt() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(8080) + p.SetState(8082) p.Refreshmatviewstmt() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(8081) + p.SetState(8083) p.Executestmt() } @@ -115519,10 +115514,10 @@ func (p *PostgreSQLParser) Explain_option_list() (localctx IExplain_option_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(8084) + p.SetState(8086) p.Explain_option_elem() } - p.SetState(8089) + p.SetState(8091) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115531,7 +115526,7 @@ func (p *PostgreSQLParser) Explain_option_list() (localctx IExplain_option_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(8085) + p.SetState(8087) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -115539,11 +115534,11 @@ func (p *PostgreSQLParser) Explain_option_list() (localctx IExplain_option_listC } } { - p.SetState(8086) + p.SetState(8088) p.Explain_option_elem() } - p.SetState(8091) + p.SetState(8093) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115680,10 +115675,10 @@ func (p *PostgreSQLParser) Explain_option_elem() (localctx IExplain_option_elemC p.EnterOuterAlt(localctx, 1) { - p.SetState(8092) + p.SetState(8094) p.Explain_option_name() } - p.SetState(8094) + p.SetState(8096) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115692,7 +115687,7 @@ func (p *PostgreSQLParser) Explain_option_elem() (localctx IExplain_option_elemC if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3611948516751978496) != 0) || ((int64((_la-80)) & ^0x3f) == 0 && ((int64(1)<<(_la-80))&-288251816158621695) != 0) || ((int64((_la-144)) & ^0x3f) == 0 && ((int64(1)<<(_la-144))&-3) != 0) || ((int64((_la-208)) & ^0x3f) == 0 && ((int64(1)<<(_la-208))&-2305843009213693953) != 0) || ((int64((_la-273)) & ^0x3f) == 0 && ((int64(1)<<(_la-273))&-1) != 0) || ((int64((_la-337)) & ^0x3f) == 0 && ((int64(1)<<(_la-337))&-1) != 0) || ((int64((_la-401)) & ^0x3f) == 0 && ((int64(1)<<(_la-401))&-1) != 0) || ((int64((_la-465)) & ^0x3f) == 0 && ((int64(1)<<(_la-465))&-2882303761517118465) != 0) || ((int64((_la-529)) & ^0x3f) == 0 && ((int64(1)<<(_la-529))&-2049) != 0) || ((int64((_la-593)) & ^0x3f) == 0 && ((int64(1)<<(_la-593))&-1) != 0) || ((int64((_la-657)) & ^0x3f) == 0 && ((int64(1)<<(_la-657))&4413617148385) != 0) { { - p.SetState(8093) + p.SetState(8095) p.Explain_option_arg() } @@ -115823,7 +115818,7 @@ func (s *Explain_option_nameContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Explain_option_name() (localctx IExplain_option_nameContext) { localctx = NewExplain_option_nameContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 894, PostgreSQLParserRULE_explain_option_name) - p.SetState(8098) + p.SetState(8100) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115833,14 +115828,14 @@ func (p *PostgreSQLParser) Explain_option_name() (localctx IExplain_option_nameC case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(8096) + p.SetState(8098) p.Nonreservedword() } case PostgreSQLParserANALYSE, PostgreSQLParserANALYZE: p.EnterOuterAlt(localctx, 2) { - p.SetState(8097) + p.SetState(8099) p.Analyze_keyword() } @@ -115974,7 +115969,7 @@ func (s *Explain_option_argContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Explain_option_arg() (localctx IExplain_option_argContext) { localctx = NewExplain_option_argContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 896, PostgreSQLParserRULE_explain_option_arg) - p.SetState(8102) + p.SetState(8104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115984,14 +115979,14 @@ func (p *PostgreSQLParser) Explain_option_arg() (localctx IExplain_option_argCon case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserON, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(8100) + p.SetState(8102) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(8101) + p.SetState(8103) p.Numericonly() } @@ -116156,7 +116151,7 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8104) + p.SetState(8106) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -116164,10 +116159,10 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { } } { - p.SetState(8105) + p.SetState(8107) p.Name() } - p.SetState(8107) + p.SetState(8109) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116176,13 +116171,13 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(8106) + p.SetState(8108) p.Prep_type_clause() } } { - p.SetState(8109) + p.SetState(8111) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -116190,7 +116185,7 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { } } { - p.SetState(8110) + p.SetState(8112) p.Preparablestmt() } @@ -116314,7 +116309,7 @@ func (p *PostgreSQLParser) Prep_type_clause() (localctx IPrep_type_clauseContext p.EnterRule(localctx, 900, PostgreSQLParserRULE_prep_type_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8112) + p.SetState(8114) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -116322,11 +116317,11 @@ func (p *PostgreSQLParser) Prep_type_clause() (localctx IPrep_type_clauseContext } } { - p.SetState(8113) + p.SetState(8115) p.Type_list() } { - p.SetState(8114) + p.SetState(8116) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -116510,7 +116505,7 @@ func (s *PreparablestmtContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Preparablestmt() (localctx IPreparablestmtContext) { localctx = NewPreparablestmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 902, PostgreSQLParserRULE_preparablestmt) - p.SetState(8121) + p.SetState(8123) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116520,35 +116515,35 @@ func (p *PostgreSQLParser) Preparablestmt() (localctx IPreparablestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8116) + p.SetState(8118) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8117) + p.SetState(8119) p.Insertstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8118) + p.SetState(8120) p.Updatestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8119) + p.SetState(8121) p.Deletestmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(8120) + p.SetState(8122) p.Mergestmt() } @@ -116769,7 +116764,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { p.EnterRule(localctx, 904, PostgreSQLParserRULE_executestmt) var _la int - p.SetState(8161) + p.SetState(8163) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116779,7 +116774,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8123) + p.SetState(8125) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -116787,15 +116782,15 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8124) + p.SetState(8126) p.Name() } - p.SetState(8126) + p.SetState(8128) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 666, p.GetParserRuleContext()) == 1 { { - p.SetState(8125) + p.SetState(8127) p.Execute_param_clause() } @@ -116806,14 +116801,14 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8128) + p.SetState(8130) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8130) + p.SetState(8132) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116822,13 +116817,13 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&32773) != 0) { { - p.SetState(8129) + p.SetState(8131) p.Opttemp() } } { - p.SetState(8132) + p.SetState(8134) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -116836,11 +116831,11 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8133) + p.SetState(8135) p.Create_as_target() } { - p.SetState(8134) + p.SetState(8136) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -116848,7 +116843,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8135) + p.SetState(8137) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -116856,27 +116851,27 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8136) + p.SetState(8138) p.Name() } - p.SetState(8138) + p.SetState(8140) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 668, p.GetParserRuleContext()) == 1 { { - p.SetState(8137) + p.SetState(8139) p.Execute_param_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8141) + p.SetState(8143) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 669, p.GetParserRuleContext()) == 1 { { - p.SetState(8140) + p.SetState(8142) p.Opt_with_data() } @@ -116887,14 +116882,14 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8143) + p.SetState(8145) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8145) + p.SetState(8147) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116903,13 +116898,13 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&32773) != 0) { { - p.SetState(8144) + p.SetState(8146) p.Opttemp() } } { - p.SetState(8147) + p.SetState(8149) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -116917,7 +116912,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8148) + p.SetState(8150) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -116925,7 +116920,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8149) + p.SetState(8151) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -116933,7 +116928,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8150) + p.SetState(8152) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -116941,11 +116936,11 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8151) + p.SetState(8153) p.Create_as_target() } { - p.SetState(8152) + p.SetState(8154) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -116953,7 +116948,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8153) + p.SetState(8155) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -116961,27 +116956,27 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8154) + p.SetState(8156) p.Name() } - p.SetState(8156) + p.SetState(8158) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 671, p.GetParserRuleContext()) == 1 { { - p.SetState(8155) + p.SetState(8157) p.Execute_param_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8159) + p.SetState(8161) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 672, p.GetParserRuleContext()) == 1 { { - p.SetState(8158) + p.SetState(8160) p.Opt_with_data() } @@ -117113,7 +117108,7 @@ func (p *PostgreSQLParser) Execute_param_clause() (localctx IExecute_param_claus p.EnterRule(localctx, 906, PostgreSQLParserRULE_execute_param_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8163) + p.SetState(8165) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -117121,11 +117116,11 @@ func (p *PostgreSQLParser) Execute_param_clause() (localctx IExecute_param_claus } } { - p.SetState(8164) + p.SetState(8166) p.Expr_list() } { - p.SetState(8165) + p.SetState(8167) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -117256,7 +117251,7 @@ func (s *DeallocatestmtContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { localctx = NewDeallocatestmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 908, PostgreSQLParserRULE_deallocatestmt) - p.SetState(8177) + p.SetState(8179) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117266,7 +117261,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8167) + p.SetState(8169) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117274,14 +117269,14 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8168) + p.SetState(8170) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8169) + p.SetState(8171) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117289,7 +117284,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8170) + p.SetState(8172) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -117297,14 +117292,14 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8171) + p.SetState(8173) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8172) + p.SetState(8174) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117312,7 +117307,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8173) + p.SetState(8175) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -117323,7 +117318,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8174) + p.SetState(8176) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117331,7 +117326,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8175) + p.SetState(8177) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -117339,7 +117334,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8176) + p.SetState(8178) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -117540,7 +117535,7 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8180) + p.SetState(8182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117549,13 +117544,13 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8179) + p.SetState(8181) p.Opt_with_clause() } } { - p.SetState(8182) + p.SetState(8184) p.Match(PostgreSQLParserINSERT) if p.HasError() { // Recognition error - abort rule @@ -117563,7 +117558,7 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { } } { - p.SetState(8183) + p.SetState(8185) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -117571,14 +117566,14 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { } } { - p.SetState(8184) + p.SetState(8186) p.Insert_target() } { - p.SetState(8185) + p.SetState(8187) p.Insert_rest() } - p.SetState(8187) + p.SetState(8189) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117587,12 +117582,12 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { if _la == PostgreSQLParserON { { - p.SetState(8186) + p.SetState(8188) p.Opt_on_conflict() } } - p.SetState(8190) + p.SetState(8192) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117601,7 +117596,7 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { if _la == PostgreSQLParserRETURNING { { - p.SetState(8189) + p.SetState(8191) p.Returning_clause() } @@ -117741,10 +117736,10 @@ func (p *PostgreSQLParser) Insert_target() (localctx IInsert_targetContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8192) + p.SetState(8194) p.Qualified_name() } - p.SetState(8195) + p.SetState(8197) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117753,7 +117748,7 @@ func (p *PostgreSQLParser) Insert_target() (localctx IInsert_targetContext) { if _la == PostgreSQLParserAS { { - p.SetState(8193) + p.SetState(8195) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -117761,7 +117756,7 @@ func (p *PostgreSQLParser) Insert_target() (localctx IInsert_targetContext) { } } { - p.SetState(8194) + p.SetState(8196) p.Colid() } @@ -117941,7 +117936,7 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { p.EnterRule(localctx, 914, PostgreSQLParserRULE_insert_rest) var _la int - p.SetState(8216) + p.SetState(8218) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117951,14 +117946,14 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8197) + p.SetState(8199) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8198) + p.SetState(8200) p.Match(PostgreSQLParserOVERRIDING) if p.HasError() { // Recognition error - abort rule @@ -117966,11 +117961,11 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8199) + p.SetState(8201) p.Override_kind() } { - p.SetState(8200) + p.SetState(8202) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -117978,14 +117973,14 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8201) + p.SetState(8203) p.Selectstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8203) + p.SetState(8205) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -117993,18 +117988,18 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8204) + p.SetState(8206) p.Insert_column_list() } { - p.SetState(8205) + p.SetState(8207) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8210) + p.SetState(8212) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118013,7 +118008,7 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { if _la == PostgreSQLParserOVERRIDING { { - p.SetState(8206) + p.SetState(8208) p.Match(PostgreSQLParserOVERRIDING) if p.HasError() { // Recognition error - abort rule @@ -118021,11 +118016,11 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8207) + p.SetState(8209) p.Override_kind() } { - p.SetState(8208) + p.SetState(8210) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -118035,14 +118030,14 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } { - p.SetState(8212) + p.SetState(8214) p.Selectstmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8214) + p.SetState(8216) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -118050,7 +118045,7 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8215) + p.SetState(8217) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -118167,7 +118162,7 @@ func (p *PostgreSQLParser) Override_kind() (localctx IOverride_kindContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8218) + p.SetState(8220) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserUSER || _la == PostgreSQLParserSYSTEM_P) { @@ -118326,10 +118321,10 @@ func (p *PostgreSQLParser) Insert_column_list() (localctx IInsert_column_listCon p.EnterOuterAlt(localctx, 1) { - p.SetState(8220) + p.SetState(8222) p.Insert_column_item() } - p.SetState(8225) + p.SetState(8227) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118338,7 +118333,7 @@ func (p *PostgreSQLParser) Insert_column_list() (localctx IInsert_column_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(8221) + p.SetState(8223) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -118346,11 +118341,11 @@ func (p *PostgreSQLParser) Insert_column_list() (localctx IInsert_column_listCon } } { - p.SetState(8222) + p.SetState(8224) p.Insert_column_item() } - p.SetState(8227) + p.SetState(8229) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118485,11 +118480,11 @@ func (p *PostgreSQLParser) Insert_column_item() (localctx IInsert_column_itemCon p.EnterRule(localctx, 920, PostgreSQLParserRULE_insert_column_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(8228) + p.SetState(8230) p.Colid() } { - p.SetState(8229) + p.SetState(8231) p.Opt_indirection() } @@ -118669,7 +118664,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8231) + p.SetState(8233) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -118677,14 +118672,14 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) } } { - p.SetState(8232) + p.SetState(8234) p.Match(PostgreSQLParserCONFLICT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8234) + p.SetState(8236) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118693,20 +118688,20 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) if _la == PostgreSQLParserOPEN_PAREN || _la == PostgreSQLParserON { { - p.SetState(8233) + p.SetState(8235) p.Opt_conf_expr() } } { - p.SetState(8236) + p.SetState(8238) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8244) + p.SetState(8246) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118715,7 +118710,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) switch p.GetTokenStream().LA(1) { case PostgreSQLParserUPDATE: { - p.SetState(8237) + p.SetState(8239) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -118723,7 +118718,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) } } { - p.SetState(8238) + p.SetState(8240) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -118731,10 +118726,10 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) } } { - p.SetState(8239) + p.SetState(8241) p.Set_clause_list() } - p.SetState(8241) + p.SetState(8243) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118743,7 +118738,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) if _la == PostgreSQLParserWHERE { { - p.SetState(8240) + p.SetState(8242) p.Where_clause() } @@ -118751,7 +118746,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) case PostgreSQLParserNOTHING: { - p.SetState(8243) + p.SetState(8245) p.Match(PostgreSQLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -118928,7 +118923,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { p.EnterRule(localctx, 924, PostgreSQLParserRULE_opt_conf_expr) var _la int - p.SetState(8255) + p.SetState(8257) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118938,7 +118933,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 1) { - p.SetState(8246) + p.SetState(8248) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -118946,18 +118941,18 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { } } { - p.SetState(8247) + p.SetState(8249) p.Index_params() } { - p.SetState(8248) + p.SetState(8250) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8250) + p.SetState(8252) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118966,7 +118961,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(8249) + p.SetState(8251) p.Where_clause() } @@ -118975,7 +118970,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { case PostgreSQLParserON: p.EnterOuterAlt(localctx, 2) { - p.SetState(8252) + p.SetState(8254) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -118983,7 +118978,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { } } { - p.SetState(8253) + p.SetState(8255) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -118991,7 +118986,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { } } { - p.SetState(8254) + p.SetState(8256) p.Name() } @@ -119115,7 +119110,7 @@ func (p *PostgreSQLParser) Returning_clause() (localctx IReturning_clauseContext p.EnterRule(localctx, 926, PostgreSQLParserRULE_returning_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8257) + p.SetState(8259) p.Match(PostgreSQLParserRETURNING) if p.HasError() { // Recognition error - abort rule @@ -119123,7 +119118,7 @@ func (p *PostgreSQLParser) Returning_clause() (localctx IReturning_clauseContext } } { - p.SetState(8258) + p.SetState(8260) p.Target_list() } @@ -119434,7 +119429,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8261) + p.SetState(8263) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119443,13 +119438,13 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8260) + p.SetState(8262) p.With_clause() } } { - p.SetState(8263) + p.SetState(8265) p.Match(PostgreSQLParserMERGE) if p.HasError() { // Recognition error - abort rule @@ -119457,14 +119452,14 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { } } { - p.SetState(8264) + p.SetState(8266) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8266) + p.SetState(8268) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119473,7 +119468,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if _la == PostgreSQLParserONLY { { - p.SetState(8265) + p.SetState(8267) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -119483,10 +119478,10 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { } { - p.SetState(8268) + p.SetState(8270) p.Qualified_name() } - p.SetState(8270) + p.SetState(8272) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119495,20 +119490,20 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027080864595968) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(8269) + p.SetState(8271) p.Alias_clause() } } { - p.SetState(8272) + p.SetState(8274) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8275) + p.SetState(8277) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119517,13 +119512,13 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(8273) + p.SetState(8275) p.Select_with_parens() } case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(8274) + p.SetState(8276) p.Qualified_name() } @@ -119531,7 +119526,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(8278) + p.SetState(8280) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119540,13 +119535,13 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027080864595968) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(8277) + p.SetState(8279) p.Alias_clause() } } { - p.SetState(8280) + p.SetState(8282) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -119554,10 +119549,10 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { } } { - p.SetState(8281) + p.SetState(8283) p.A_expr() } - p.SetState(8290) + p.SetState(8292) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119566,15 +119561,15 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 694, p.GetParserRuleContext()) { case 1: { - p.SetState(8282) + p.SetState(8284) p.Merge_insert_clause() } - p.SetState(8284) + p.SetState(8286) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 692, p.GetParserRuleContext()) == 1 { { - p.SetState(8283) + p.SetState(8285) p.Merge_update_clause() } @@ -119584,15 +119579,15 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { case 2: { - p.SetState(8286) + p.SetState(8288) p.Merge_update_clause() } - p.SetState(8288) + p.SetState(8290) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 693, p.GetParserRuleContext()) == 1 { { - p.SetState(8287) + p.SetState(8289) p.Merge_insert_clause() } @@ -119603,7 +119598,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(8293) + p.SetState(8295) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119612,7 +119607,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(8292) + p.SetState(8294) p.Merge_delete_clause() } @@ -119804,7 +119799,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC p.EnterOuterAlt(localctx, 1) { - p.SetState(8295) + p.SetState(8297) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -119812,7 +119807,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8296) + p.SetState(8298) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -119820,14 +119815,14 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8297) + p.SetState(8299) p.Match(PostgreSQLParserMATCHED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8300) + p.SetState(8302) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119836,7 +119831,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC if _la == PostgreSQLParserAND { { - p.SetState(8298) + p.SetState(8300) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -119844,12 +119839,12 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8299) + p.SetState(8301) p.A_expr() } } - p.SetState(8303) + p.SetState(8305) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119858,7 +119853,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC if _la == PostgreSQLParserTHEN { { - p.SetState(8302) + p.SetState(8304) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -119868,14 +119863,14 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } { - p.SetState(8305) + p.SetState(8307) p.Match(PostgreSQLParserINSERT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8310) + p.SetState(8312) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119884,7 +119879,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(8306) + p.SetState(8308) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -119892,11 +119887,11 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8307) + p.SetState(8309) p.Insert_column_list() } { - p.SetState(8308) + p.SetState(8310) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -119906,7 +119901,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } { - p.SetState(8312) + p.SetState(8314) p.Values_clause() } @@ -120069,7 +120064,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC p.EnterOuterAlt(localctx, 1) { - p.SetState(8314) + p.SetState(8316) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -120077,14 +120072,14 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8315) + p.SetState(8317) p.Match(PostgreSQLParserMATCHED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8318) + p.SetState(8320) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120093,7 +120088,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC if _la == PostgreSQLParserAND { { - p.SetState(8316) + p.SetState(8318) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -120101,12 +120096,12 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8317) + p.SetState(8319) p.A_expr() } } - p.SetState(8321) + p.SetState(8323) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120115,7 +120110,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC if _la == PostgreSQLParserTHEN { { - p.SetState(8320) + p.SetState(8322) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -120125,7 +120120,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } { - p.SetState(8323) + p.SetState(8325) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -120133,7 +120128,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8324) + p.SetState(8326) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -120141,7 +120136,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8325) + p.SetState(8327) p.Set_clause_list() } @@ -120260,7 +120255,7 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC p.EnterOuterAlt(localctx, 1) { - p.SetState(8327) + p.SetState(8329) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -120268,14 +120263,14 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC } } { - p.SetState(8328) + p.SetState(8330) p.Match(PostgreSQLParserMATCHED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8330) + p.SetState(8332) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120284,7 +120279,7 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC if _la == PostgreSQLParserTHEN { { - p.SetState(8329) + p.SetState(8331) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -120294,7 +120289,7 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC } { - p.SetState(8332) + p.SetState(8334) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -120491,7 +120486,7 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8335) + p.SetState(8337) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120500,13 +120495,13 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8334) + p.SetState(8336) p.Opt_with_clause() } } { - p.SetState(8337) + p.SetState(8339) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -120514,7 +120509,7 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { } } { - p.SetState(8338) + p.SetState(8340) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -120522,10 +120517,10 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { } } { - p.SetState(8339) + p.SetState(8341) p.Relation_expr_opt_alias() } - p.SetState(8341) + p.SetState(8343) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120534,12 +120529,12 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(8340) + p.SetState(8342) p.Using_clause() } } - p.SetState(8344) + p.SetState(8346) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120548,12 +120543,12 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(8343) + p.SetState(8345) p.Where_or_current_clause() } } - p.SetState(8347) + p.SetState(8349) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120562,7 +120557,7 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserRETURNING { { - p.SetState(8346) + p.SetState(8348) p.Returning_clause() } @@ -120683,7 +120678,7 @@ func (p *PostgreSQLParser) Using_clause() (localctx IUsing_clauseContext) { p.EnterRule(localctx, 938, PostgreSQLParserRULE_using_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8349) + p.SetState(8351) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -120691,7 +120686,7 @@ func (p *PostgreSQLParser) Using_clause() (localctx IUsing_clauseContext) { } } { - p.SetState(8350) + p.SetState(8352) p.From_list() } @@ -120863,19 +120858,19 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8352) + p.SetState(8354) p.Match(PostgreSQLParserLOCK_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8354) + p.SetState(8356) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 706, p.GetParserRuleContext()) == 1 { { - p.SetState(8353) + p.SetState(8355) p.Opt_table() } @@ -120883,10 +120878,10 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { goto errorExit } { - p.SetState(8356) + p.SetState(8358) p.Relation_expr_list() } - p.SetState(8358) + p.SetState(8360) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120895,12 +120890,12 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { if _la == PostgreSQLParserIN_P { { - p.SetState(8357) + p.SetState(8359) p.Opt_lock() } } - p.SetState(8361) + p.SetState(8363) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120909,7 +120904,7 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(8360) + p.SetState(8362) p.Opt_nowait() } @@ -121035,7 +121030,7 @@ func (p *PostgreSQLParser) Opt_lock() (localctx IOpt_lockContext) { p.EnterRule(localctx, 942, PostgreSQLParserRULE_opt_lock) p.EnterOuterAlt(localctx, 1) { - p.SetState(8363) + p.SetState(8365) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -121043,11 +121038,11 @@ func (p *PostgreSQLParser) Opt_lock() (localctx IOpt_lockContext) { } } { - p.SetState(8364) + p.SetState(8366) p.Lock_type() } { - p.SetState(8365) + p.SetState(8367) p.Match(PostgreSQLParserMODE) if p.HasError() { // Recognition error - abort rule @@ -121173,7 +121168,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { p.EnterRule(localctx, 944, PostgreSQLParserRULE_lock_type) var _la int - p.SetState(8379) + p.SetState(8381) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121183,7 +121178,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserACCESS: p.EnterOuterAlt(localctx, 1) { - p.SetState(8367) + p.SetState(8369) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -121191,7 +121186,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8368) + p.SetState(8370) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCLUSIVE || _la == PostgreSQLParserSHARE) { @@ -121205,7 +121200,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserROW: p.EnterOuterAlt(localctx, 2) { - p.SetState(8369) + p.SetState(8371) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -121213,7 +121208,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8370) + p.SetState(8372) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCLUSIVE || _la == PostgreSQLParserSHARE) { @@ -121227,14 +121222,14 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserSHARE: p.EnterOuterAlt(localctx, 3) { - p.SetState(8371) + p.SetState(8373) p.Match(PostgreSQLParserSHARE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8376) + p.SetState(8378) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121242,7 +121237,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserUPDATE: { - p.SetState(8372) + p.SetState(8374) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -121250,7 +121245,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8373) + p.SetState(8375) p.Match(PostgreSQLParserEXCLUSIVE) if p.HasError() { // Recognition error - abort rule @@ -121260,7 +121255,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserROW: { - p.SetState(8374) + p.SetState(8376) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -121268,7 +121263,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8375) + p.SetState(8377) p.Match(PostgreSQLParserEXCLUSIVE) if p.HasError() { // Recognition error - abort rule @@ -121284,7 +121279,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserEXCLUSIVE: p.EnterOuterAlt(localctx, 4) { - p.SetState(8378) + p.SetState(8380) p.Match(PostgreSQLParserEXCLUSIVE) if p.HasError() { // Recognition error - abort rule @@ -121395,7 +121390,7 @@ func (p *PostgreSQLParser) Opt_nowait() (localctx IOpt_nowaitContext) { p.EnterRule(localctx, 946, PostgreSQLParserRULE_opt_nowait) p.EnterOuterAlt(localctx, 1) { - p.SetState(8381) + p.SetState(8383) p.Match(PostgreSQLParserNOWAIT) if p.HasError() { // Recognition error - abort rule @@ -121509,7 +121504,7 @@ func (s *Opt_nowait_or_skipContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipContext) { localctx = NewOpt_nowait_or_skipContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 948, PostgreSQLParserRULE_opt_nowait_or_skip) - p.SetState(8386) + p.SetState(8388) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121519,7 +121514,7 @@ func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipCon case PostgreSQLParserNOWAIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8383) + p.SetState(8385) p.Match(PostgreSQLParserNOWAIT) if p.HasError() { // Recognition error - abort rule @@ -121530,7 +121525,7 @@ func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipCon case PostgreSQLParserSKIP_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(8384) + p.SetState(8386) p.Match(PostgreSQLParserSKIP_P) if p.HasError() { // Recognition error - abort rule @@ -121538,7 +121533,7 @@ func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipCon } } { - p.SetState(8385) + p.SetState(8387) p.Match(PostgreSQLParserLOCKED) if p.HasError() { // Recognition error - abort rule @@ -121757,7 +121752,7 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8389) + p.SetState(8391) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121766,13 +121761,13 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8388) + p.SetState(8390) p.Opt_with_clause() } } { - p.SetState(8391) + p.SetState(8393) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -121780,11 +121775,11 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { } } { - p.SetState(8392) + p.SetState(8394) p.Relation_expr_opt_alias() } { - p.SetState(8393) + p.SetState(8395) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -121792,10 +121787,10 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { } } { - p.SetState(8394) + p.SetState(8396) p.Set_clause_list() } - p.SetState(8396) + p.SetState(8398) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121804,12 +121799,12 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserFROM { { - p.SetState(8395) + p.SetState(8397) p.From_clause() } } - p.SetState(8399) + p.SetState(8401) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121818,12 +121813,12 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(8398) + p.SetState(8400) p.Where_or_current_clause() } } - p.SetState(8402) + p.SetState(8404) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121832,7 +121827,7 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserRETURNING { { - p.SetState(8401) + p.SetState(8403) p.Returning_clause() } @@ -121986,10 +121981,10 @@ func (p *PostgreSQLParser) Set_clause_list() (localctx ISet_clause_listContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8404) + p.SetState(8406) p.Set_clause() } - p.SetState(8409) + p.SetState(8411) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121998,7 +121993,7 @@ func (p *PostgreSQLParser) Set_clause_list() (localctx ISet_clause_listContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(8405) + p.SetState(8407) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -122006,11 +122001,11 @@ func (p *PostgreSQLParser) Set_clause_list() (localctx ISet_clause_listContext) } } { - p.SetState(8406) + p.SetState(8408) p.Set_clause() } - p.SetState(8411) + p.SetState(8413) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122175,7 +122170,7 @@ func (s *Set_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { localctx = NewSet_clauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 954, PostgreSQLParserRULE_set_clause) - p.SetState(8422) + p.SetState(8424) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122185,11 +122180,11 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(8412) + p.SetState(8414) p.Set_target() } { - p.SetState(8413) + p.SetState(8415) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -122197,14 +122192,14 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8414) + p.SetState(8416) p.A_expr() } case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 2) { - p.SetState(8416) + p.SetState(8418) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -122212,11 +122207,11 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8417) + p.SetState(8419) p.Set_target_list() } { - p.SetState(8418) + p.SetState(8420) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -122224,7 +122219,7 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8419) + p.SetState(8421) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -122232,7 +122227,7 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8420) + p.SetState(8422) p.A_expr() } @@ -122368,11 +122363,11 @@ func (p *PostgreSQLParser) Set_target() (localctx ISet_targetContext) { p.EnterRule(localctx, 956, PostgreSQLParserRULE_set_target) p.EnterOuterAlt(localctx, 1) { - p.SetState(8424) + p.SetState(8426) p.Colid() } { - p.SetState(8425) + p.SetState(8427) p.Opt_indirection() } @@ -122524,10 +122519,10 @@ func (p *PostgreSQLParser) Set_target_list() (localctx ISet_target_listContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8427) + p.SetState(8429) p.Set_target() } - p.SetState(8432) + p.SetState(8434) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122536,7 +122531,7 @@ func (p *PostgreSQLParser) Set_target_list() (localctx ISet_target_listContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(8428) + p.SetState(8430) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -122544,11 +122539,11 @@ func (p *PostgreSQLParser) Set_target_list() (localctx ISet_target_listContext) } } { - p.SetState(8429) + p.SetState(8431) p.Set_target() } - p.SetState(8434) + p.SetState(8436) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122734,7 +122729,7 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(8435) + p.SetState(8437) p.Match(PostgreSQLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -122742,22 +122737,22 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte } } { - p.SetState(8436) + p.SetState(8438) p.Cursor_name() } { - p.SetState(8437) + p.SetState(8439) p.Cursor_options() } { - p.SetState(8438) + p.SetState(8440) p.Match(PostgreSQLParserCURSOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8440) + p.SetState(8442) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122766,13 +122761,13 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(8439) + p.SetState(8441) p.Opt_hold() } } { - p.SetState(8442) + p.SetState(8444) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -122780,7 +122775,7 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte } } { - p.SetState(8443) + p.SetState(8445) p.Selectstmt() } @@ -122894,7 +122889,7 @@ func (p *PostgreSQLParser) Cursor_name() (localctx ICursor_nameContext) { p.EnterRule(localctx, 962, PostgreSQLParserRULE_cursor_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(8445) + p.SetState(8447) p.Name() } @@ -123032,7 +123027,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8454) + p.SetState(8456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123040,7 +123035,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { _la = p.GetTokenStream().LA(1) for _la == PostgreSQLParserBINARY || _la == PostgreSQLParserINSENSITIVE || _la == PostgreSQLParserNO || _la == PostgreSQLParserSCROLL { - p.SetState(8452) + p.SetState(8454) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123049,7 +123044,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserNO: { - p.SetState(8447) + p.SetState(8449) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -123057,7 +123052,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { } } { - p.SetState(8448) + p.SetState(8450) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -123067,7 +123062,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { case PostgreSQLParserSCROLL: { - p.SetState(8449) + p.SetState(8451) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -123077,7 +123072,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { case PostgreSQLParserBINARY: { - p.SetState(8450) + p.SetState(8452) p.Match(PostgreSQLParserBINARY) if p.HasError() { // Recognition error - abort rule @@ -123087,7 +123082,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { case PostgreSQLParserINSENSITIVE: { - p.SetState(8451) + p.SetState(8453) p.Match(PostgreSQLParserINSENSITIVE) if p.HasError() { // Recognition error - abort rule @@ -123100,7 +123095,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { goto errorExit } - p.SetState(8456) + p.SetState(8458) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123214,7 +123209,7 @@ func (s *Opt_holdContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { localctx = NewOpt_holdContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 966, PostgreSQLParserRULE_opt_hold) - p.SetState(8461) + p.SetState(8463) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123224,7 +123219,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(8457) + p.SetState(8459) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -123232,7 +123227,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { } } { - p.SetState(8458) + p.SetState(8460) p.Match(PostgreSQLParserHOLD) if p.HasError() { // Recognition error - abort rule @@ -123243,7 +123238,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(8459) + p.SetState(8461) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -123251,7 +123246,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { } } { - p.SetState(8460) + p.SetState(8462) p.Match(PostgreSQLParserHOLD) if p.HasError() { // Recognition error - abort rule @@ -123389,7 +123384,7 @@ func (s *SelectstmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Selectstmt() (localctx ISelectstmtContext) { localctx = NewSelectstmtContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 968, PostgreSQLParserRULE_selectstmt) - p.SetState(8465) + p.SetState(8467) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123399,14 +123394,14 @@ func (p *PostgreSQLParser) Selectstmt() (localctx ISelectstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8463) + p.SetState(8465) p.Select_no_parens() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8464) + p.SetState(8466) p.Select_with_parens() } @@ -123549,7 +123544,7 @@ func (s *Select_with_parensContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensContext) { localctx = NewSelect_with_parensContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 970, PostgreSQLParserRULE_select_with_parens) - p.SetState(8475) + p.SetState(8477) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123559,7 +123554,7 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8467) + p.SetState(8469) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123567,11 +123562,11 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon } } { - p.SetState(8468) + p.SetState(8470) p.Select_no_parens() } { - p.SetState(8469) + p.SetState(8471) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123582,7 +123577,7 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8471) + p.SetState(8473) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123590,11 +123585,11 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon } } { - p.SetState(8472) + p.SetState(8474) p.Select_with_parens() } { - p.SetState(8473) + p.SetState(8475) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123818,7 +123813,7 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext p.EnterRule(localctx, 972, PostgreSQLParserRULE_select_no_parens) var _la int - p.SetState(8506) + p.SetState(8508) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123828,10 +123823,10 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext case PostgreSQLParserOPEN_PAREN, PostgreSQLParserSELECT, PostgreSQLParserTABLE, PostgreSQLParserVALUES: p.EnterOuterAlt(localctx, 1) { - p.SetState(8477) + p.SetState(8479) p.Select_clause() } - p.SetState(8479) + p.SetState(8481) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123840,25 +123835,25 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserORDER { { - p.SetState(8478) + p.SetState(8480) p.Opt_sort_clause() } } - p.SetState(8489) + p.SetState(8491) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 728, p.GetParserRuleContext()) == 1 { { - p.SetState(8481) + p.SetState(8483) p.For_locking_clause() } - p.SetState(8483) + p.SetState(8485) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 726, p.GetParserRuleContext()) == 1 { { - p.SetState(8482) + p.SetState(8484) p.Opt_select_limit() } @@ -123870,10 +123865,10 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext goto errorExit } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 728, p.GetParserRuleContext()) == 2 { { - p.SetState(8485) + p.SetState(8487) p.Select_limit() } - p.SetState(8487) + p.SetState(8489) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123882,7 +123877,7 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserFOR { { - p.SetState(8486) + p.SetState(8488) p.Opt_for_locking_clause() } @@ -123895,14 +123890,14 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 2) { - p.SetState(8491) + p.SetState(8493) p.With_clause() } { - p.SetState(8492) + p.SetState(8494) p.Select_clause() } - p.SetState(8494) + p.SetState(8496) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123911,25 +123906,25 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserORDER { { - p.SetState(8493) + p.SetState(8495) p.Opt_sort_clause() } } - p.SetState(8504) + p.SetState(8506) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 732, p.GetParserRuleContext()) == 1 { { - p.SetState(8496) + p.SetState(8498) p.For_locking_clause() } - p.SetState(8498) + p.SetState(8500) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 730, p.GetParserRuleContext()) == 1 { { - p.SetState(8497) + p.SetState(8499) p.Opt_select_limit() } @@ -123941,10 +123936,10 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext goto errorExit } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 732, p.GetParserRuleContext()) == 2 { { - p.SetState(8500) + p.SetState(8502) p.Select_limit() } - p.SetState(8502) + p.SetState(8504) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123953,7 +123948,7 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserFOR { { - p.SetState(8501) + p.SetState(8503) p.Opt_for_locking_clause() } @@ -124169,10 +124164,10 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8508) + p.SetState(8510) p.Simple_select_intersect() } - p.SetState(8516) + p.SetState(8518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124181,7 +124176,7 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { for _la == PostgreSQLParserEXCEPT || _la == PostgreSQLParserUNION { { - p.SetState(8509) + p.SetState(8511) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCEPT || _la == PostgreSQLParserUNION) { @@ -124191,7 +124186,7 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { p.Consume() } } - p.SetState(8511) + p.SetState(8513) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124200,17 +124195,17 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { if _la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT { { - p.SetState(8510) + p.SetState(8512) p.All_or_distinct() } } { - p.SetState(8513) + p.SetState(8515) p.Simple_select_intersect() } - p.SetState(8518) + p.SetState(8520) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124409,10 +124404,10 @@ func (p *PostgreSQLParser) Simple_select_intersect() (localctx ISimple_select_in p.EnterOuterAlt(localctx, 1) { - p.SetState(8519) + p.SetState(8521) p.Simple_select_pramary() } - p.SetState(8527) + p.SetState(8529) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124421,14 +124416,14 @@ func (p *PostgreSQLParser) Simple_select_intersect() (localctx ISimple_select_in for _la == PostgreSQLParserINTERSECT { { - p.SetState(8520) + p.SetState(8522) p.Match(PostgreSQLParserINTERSECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8522) + p.SetState(8524) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124437,17 +124432,17 @@ func (p *PostgreSQLParser) Simple_select_intersect() (localctx ISimple_select_in if _la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT { { - p.SetState(8521) + p.SetState(8523) p.All_or_distinct() } } { - p.SetState(8524) + p.SetState(8526) p.Simple_select_pramary() } - p.SetState(8529) + p.SetState(8531) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124805,7 +124800,7 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram p.EnterRule(localctx, 978, PostgreSQLParserRULE_simple_select_pramary) var _la int - p.SetState(8567) + p.SetState(8569) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124815,14 +124810,14 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram case PostgreSQLParserSELECT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8530) + p.SetState(8532) p.Match(PostgreSQLParserSELECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8543) + p.SetState(8545) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124830,7 +124825,7 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram switch p.GetTokenStream().LA(1) { case PostgreSQLParserEOF, PostgreSQLParserOPEN_PAREN, PostgreSQLParserCLOSE_PAREN, PostgreSQLParserSEMI, PostgreSQLParserSTAR, PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserPARAM, PostgreSQLParserOperator, PostgreSQLParserALL, PostgreSQLParserANALYSE, PostgreSQLParserANALYZE, PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCREATE, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserEXCEPT, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserFOR, PostgreSQLParserFROM, PostgreSQLParserGRANT, PostgreSQLParserGROUP_P, PostgreSQLParserHAVING, PostgreSQLParserINTERSECT, PostgreSQLParserINTO, PostgreSQLParserLIMIT, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserOFFSET, PostgreSQLParserON, PostgreSQLParserORDER, PostgreSQLParserRETURNING, PostgreSQLParserSELECT, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserUNION, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserWHERE, PostgreSQLParserWINDOW, PostgreSQLParserWITH, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserJSON_SCALAR, PostgreSQLParserJSON_SERIALIZE, PostgreSQLParserMERGE_ACTION, PostgreSQLParserJSON_QUERY, PostgreSQLParserJSON_EXISTS, PostgreSQLParserJSON_VALUE, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserRIGHT, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMERGE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserEND_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserLOOP, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserBinaryStringConstant, PostgreSQLParserHexadecimalStringConstant, PostgreSQLParserIntegral, PostgreSQLParserNumeric, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserMetaCommand, PostgreSQLParserEscapeStringConstant: - p.SetState(8532) + p.SetState(8534) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124839,29 +124834,29 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserALL { { - p.SetState(8531) + p.SetState(8533) p.Opt_all_clause() } } - p.SetState(8535) + p.SetState(8537) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 739, p.GetParserRuleContext()) == 1 { { - p.SetState(8534) + p.SetState(8536) p.Into_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8538) + p.SetState(8540) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 740, p.GetParserRuleContext()) == 1 { { - p.SetState(8537) + p.SetState(8539) p.Opt_target_list() } @@ -124871,11 +124866,11 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram case PostgreSQLParserDISTINCT: { - p.SetState(8540) + p.SetState(8542) p.Distinct_clause() } { - p.SetState(8541) + p.SetState(8543) p.Target_list() } @@ -124883,19 +124878,19 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(8546) + p.SetState(8548) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 742, p.GetParserRuleContext()) == 1 { { - p.SetState(8545) + p.SetState(8547) p.Into_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8549) + p.SetState(8551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124904,12 +124899,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserFROM { { - p.SetState(8548) + p.SetState(8550) p.From_clause() } } - p.SetState(8552) + p.SetState(8554) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124918,12 +124913,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserWHERE { { - p.SetState(8551) + p.SetState(8553) p.Where_clause() } } - p.SetState(8555) + p.SetState(8557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124932,12 +124927,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserGROUP_P { { - p.SetState(8554) + p.SetState(8556) p.Group_clause() } } - p.SetState(8558) + p.SetState(8560) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124946,12 +124941,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserHAVING { { - p.SetState(8557) + p.SetState(8559) p.Having_clause() } } - p.SetState(8561) + p.SetState(8563) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124960,7 +124955,7 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserWINDOW { { - p.SetState(8560) + p.SetState(8562) p.Window_clause() } @@ -124969,14 +124964,14 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram case PostgreSQLParserVALUES: p.EnterOuterAlt(localctx, 2) { - p.SetState(8563) + p.SetState(8565) p.Values_clause() } case PostgreSQLParserTABLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(8564) + p.SetState(8566) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -124984,14 +124979,14 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram } } { - p.SetState(8565) + p.SetState(8567) p.Relation_expr() } case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 4) { - p.SetState(8566) + p.SetState(8568) p.Select_with_parens() } @@ -125120,19 +125115,19 @@ func (p *PostgreSQLParser) With_clause() (localctx IWith_clauseContext) { p.EnterRule(localctx, 980, PostgreSQLParserRULE_with_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8569) + p.SetState(8571) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8571) + p.SetState(8573) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 749, p.GetParserRuleContext()) == 1 { { - p.SetState(8570) + p.SetState(8572) p.Match(PostgreSQLParserRECURSIVE) if p.HasError() { // Recognition error - abort rule @@ -125144,7 +125139,7 @@ func (p *PostgreSQLParser) With_clause() (localctx IWith_clauseContext) { goto errorExit } { - p.SetState(8573) + p.SetState(8575) p.Cte_list() } @@ -125296,10 +125291,10 @@ func (p *PostgreSQLParser) Cte_list() (localctx ICte_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8575) + p.SetState(8577) p.Common_table_expr() } - p.SetState(8580) + p.SetState(8582) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125308,7 +125303,7 @@ func (p *PostgreSQLParser) Cte_list() (localctx ICte_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(8576) + p.SetState(8578) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -125316,11 +125311,11 @@ func (p *PostgreSQLParser) Cte_list() (localctx ICte_listContext) { } } { - p.SetState(8577) + p.SetState(8579) p.Common_table_expr() } - p.SetState(8582) + p.SetState(8584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125506,10 +125501,10 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte p.EnterOuterAlt(localctx, 1) { - p.SetState(8583) + p.SetState(8585) p.Name() } - p.SetState(8585) + p.SetState(8587) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125518,20 +125513,20 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(8584) + p.SetState(8586) p.Opt_name_list() } } { - p.SetState(8587) + p.SetState(8589) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8589) + p.SetState(8591) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125540,13 +125535,13 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte if _la == PostgreSQLParserNOT || _la == PostgreSQLParserMATERIALIZED { { - p.SetState(8588) + p.SetState(8590) p.Opt_materialized() } } { - p.SetState(8591) + p.SetState(8593) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -125554,11 +125549,11 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte } } { - p.SetState(8592) + p.SetState(8594) p.Preparablestmt() } { - p.SetState(8593) + p.SetState(8595) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -125667,7 +125662,7 @@ func (s *Opt_materializedContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext) { localctx = NewOpt_materializedContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 986, PostgreSQLParserRULE_opt_materialized) - p.SetState(8598) + p.SetState(8600) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125677,7 +125672,7 @@ func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext case PostgreSQLParserMATERIALIZED: p.EnterOuterAlt(localctx, 1) { - p.SetState(8595) + p.SetState(8597) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -125688,7 +125683,7 @@ func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext case PostgreSQLParserNOT: p.EnterOuterAlt(localctx, 2) { - p.SetState(8596) + p.SetState(8598) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -125696,7 +125691,7 @@ func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext } } { - p.SetState(8597) + p.SetState(8599) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -125819,7 +125814,7 @@ func (p *PostgreSQLParser) Opt_with_clause() (localctx IOpt_with_clauseContext) p.EnterRule(localctx, 988, PostgreSQLParserRULE_opt_with_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8600) + p.SetState(8602) p.With_clause() } @@ -125972,14 +125967,14 @@ func (p *PostgreSQLParser) Into_clause() (localctx IInto_clauseContext) { p.EnterRule(localctx, 990, PostgreSQLParserRULE_into_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8602) + p.SetState(8604) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8608) + p.SetState(8610) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125987,12 +125982,12 @@ func (p *PostgreSQLParser) Into_clause() (localctx IInto_clauseContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 755, p.GetParserRuleContext()) { case 1: - p.SetState(8604) + p.SetState(8606) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 754, p.GetParserRuleContext()) == 1 { { - p.SetState(8603) + p.SetState(8605) p.Opt_strict() } @@ -126000,13 +125995,13 @@ func (p *PostgreSQLParser) Into_clause() (localctx IInto_clauseContext) { goto errorExit } { - p.SetState(8606) + p.SetState(8608) p.OpttempTableName() } case 2: { - p.SetState(8607) + p.SetState(8609) p.Into_target() } @@ -126112,7 +126107,7 @@ func (p *PostgreSQLParser) Opt_strict() (localctx IOpt_strictContext) { p.EnterRule(localctx, 992, PostgreSQLParserRULE_opt_strict) p.EnterOuterAlt(localctx, 1) { - p.SetState(8610) + p.SetState(8612) p.Match(PostgreSQLParserSTRICT_P) if p.HasError() { // Recognition error - abort rule @@ -126277,7 +126272,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext p.EnterRule(localctx, 994, PostgreSQLParserRULE_opttempTableName) var _la int - p.SetState(8628) + p.SetState(8630) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -126286,7 +126281,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 759, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(8613) + p.SetState(8615) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -126295,7 +126290,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL { { - p.SetState(8612) + p.SetState(8614) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL) { @@ -126308,7 +126303,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext } { - p.SetState(8615) + p.SetState(8617) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -126318,12 +126313,12 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext p.Consume() } } - p.SetState(8617) + p.SetState(8619) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 757, p.GetParserRuleContext()) == 1 { { - p.SetState(8616) + p.SetState(8618) p.Opt_table() } @@ -126331,26 +126326,26 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext goto errorExit } { - p.SetState(8619) + p.SetState(8621) p.Qualified_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8620) + p.SetState(8622) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8622) + p.SetState(8624) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 758, p.GetParserRuleContext()) == 1 { { - p.SetState(8621) + p.SetState(8623) p.Opt_table() } @@ -126358,14 +126353,14 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext goto errorExit } { - p.SetState(8624) + p.SetState(8626) p.Qualified_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8625) + p.SetState(8627) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -126373,14 +126368,14 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext } } { - p.SetState(8626) + p.SetState(8628) p.Qualified_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8627) + p.SetState(8629) p.Qualified_name() } @@ -126486,7 +126481,7 @@ func (p *PostgreSQLParser) Opt_table() (localctx IOpt_tableContext) { p.EnterRule(localctx, 996, PostgreSQLParserRULE_opt_table) p.EnterOuterAlt(localctx, 1) { - p.SetState(8630) + p.SetState(8632) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -126599,7 +126594,7 @@ func (p *PostgreSQLParser) All_or_distinct() (localctx IAll_or_distinctContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8632) + p.SetState(8634) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT) { @@ -126742,14 +126737,14 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8634) + p.SetState(8636) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8640) + p.SetState(8642) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -126758,7 +126753,7 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) if _la == PostgreSQLParserON { { - p.SetState(8635) + p.SetState(8637) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -126766,7 +126761,7 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) } } { - p.SetState(8636) + p.SetState(8638) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -126774,11 +126769,11 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) } } { - p.SetState(8637) + p.SetState(8639) p.Expr_list() } { - p.SetState(8638) + p.SetState(8640) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -126886,7 +126881,7 @@ func (p *PostgreSQLParser) Opt_all_clause() (localctx IOpt_all_clauseContext) { p.EnterRule(localctx, 1002, PostgreSQLParserRULE_opt_all_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8642) + p.SetState(8644) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -127004,7 +126999,7 @@ func (p *PostgreSQLParser) Opt_sort_clause() (localctx IOpt_sort_clauseContext) p.EnterRule(localctx, 1004, PostgreSQLParserRULE_opt_sort_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8644) + p.SetState(8646) p.Sort_clause() } @@ -127128,7 +127123,7 @@ func (p *PostgreSQLParser) Sort_clause() (localctx ISort_clauseContext) { p.EnterRule(localctx, 1006, PostgreSQLParserRULE_sort_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8646) + p.SetState(8648) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -127136,7 +127131,7 @@ func (p *PostgreSQLParser) Sort_clause() (localctx ISort_clauseContext) { } } { - p.SetState(8647) + p.SetState(8649) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -127144,7 +127139,7 @@ func (p *PostgreSQLParser) Sort_clause() (localctx ISort_clauseContext) { } } { - p.SetState(8648) + p.SetState(8650) p.Sortby_list() } @@ -127296,10 +127291,10 @@ func (p *PostgreSQLParser) Sortby_list() (localctx ISortby_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8650) + p.SetState(8652) p.Sortby() } - p.SetState(8655) + p.SetState(8657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127311,7 +127306,7 @@ func (p *PostgreSQLParser) Sortby_list() (localctx ISortby_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(8651) + p.SetState(8653) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -127319,12 +127314,12 @@ func (p *PostgreSQLParser) Sortby_list() (localctx ISortby_listContext) { } } { - p.SetState(8652) + p.SetState(8654) p.Sortby() } } - p.SetState(8657) + p.SetState(8659) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127503,10 +127498,10 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8658) + p.SetState(8660) p.A_expr() } - p.SetState(8664) + p.SetState(8666) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127515,7 +127510,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 763, p.GetParserRuleContext()) { case 1: { - p.SetState(8659) + p.SetState(8661) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -127523,12 +127518,12 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { } } { - p.SetState(8660) + p.SetState(8662) p.Qual_all_op() } case 2: - p.SetState(8662) + p.SetState(8664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127537,7 +127532,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { if _la == PostgreSQLParserASC || _la == PostgreSQLParserDESC { { - p.SetState(8661) + p.SetState(8663) p.Opt_asc_desc() } @@ -127546,7 +127541,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(8667) + p.SetState(8669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127555,7 +127550,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { if _la == PostgreSQLParserNULLS_P { { - p.SetState(8666) + p.SetState(8668) p.Opt_nulls_order() } @@ -127688,7 +127683,7 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { p.EnterRule(localctx, 1012, PostgreSQLParserRULE_select_limit) var _la int - p.SetState(8677) + p.SetState(8679) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127698,10 +127693,10 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { case PostgreSQLParserFETCH, PostgreSQLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8669) + p.SetState(8671) p.Limit_clause() } - p.SetState(8671) + p.SetState(8673) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127710,7 +127705,7 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { if _la == PostgreSQLParserOFFSET { { - p.SetState(8670) + p.SetState(8672) p.Offset_clause() } @@ -127719,15 +127714,15 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { case PostgreSQLParserOFFSET: p.EnterOuterAlt(localctx, 2) { - p.SetState(8673) + p.SetState(8675) p.Offset_clause() } - p.SetState(8675) + p.SetState(8677) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 766, p.GetParserRuleContext()) == 1 { { - p.SetState(8674) + p.SetState(8676) p.Limit_clause() } @@ -127850,7 +127845,7 @@ func (p *PostgreSQLParser) Opt_select_limit() (localctx IOpt_select_limitContext p.EnterRule(localctx, 1014, PostgreSQLParserRULE_opt_select_limit) p.EnterOuterAlt(localctx, 1) { - p.SetState(8679) + p.SetState(8681) p.Select_limit() } @@ -128060,7 +128055,7 @@ func (s *Limit_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { localctx = NewLimit_clauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 1016, PostgreSQLParserRULE_limit_clause) - p.SetState(8704) + p.SetState(8706) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128070,7 +128065,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8681) + p.SetState(8683) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -128078,15 +128073,15 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8682) + p.SetState(8684) p.Select_limit_value() } - p.SetState(8685) + p.SetState(8687) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 768, p.GetParserRuleContext()) == 1 { { - p.SetState(8683) + p.SetState(8685) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -128094,7 +128089,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8684) + p.SetState(8686) p.Select_offset_value() } @@ -128105,7 +128100,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserFETCH: p.EnterOuterAlt(localctx, 2) { - p.SetState(8687) + p.SetState(8689) p.Match(PostgreSQLParserFETCH) if p.HasError() { // Recognition error - abort rule @@ -128113,10 +128108,10 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8688) + p.SetState(8690) p.First_or_next() } - p.SetState(8702) + p.SetState(8704) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128125,14 +128120,14 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 771, p.GetParserRuleContext()) { case 1: { - p.SetState(8689) + p.SetState(8691) p.Select_fetch_first_value() } { - p.SetState(8690) + p.SetState(8692) p.Row_or_rows() } - p.SetState(8694) + p.SetState(8696) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128141,7 +128136,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserONLY: { - p.SetState(8691) + p.SetState(8693) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -128151,7 +128146,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserWITH: { - p.SetState(8692) + p.SetState(8694) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -128159,7 +128154,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8693) + p.SetState(8695) p.Match(PostgreSQLParserTIES) if p.HasError() { // Recognition error - abort rule @@ -128174,10 +128169,10 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case 2: { - p.SetState(8696) + p.SetState(8698) p.Row_or_rows() } - p.SetState(8700) + p.SetState(8702) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128186,7 +128181,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserONLY: { - p.SetState(8697) + p.SetState(8699) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -128196,7 +128191,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserWITH: { - p.SetState(8698) + p.SetState(8700) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -128204,7 +128199,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8699) + p.SetState(8701) p.Match(PostgreSQLParserTIES) if p.HasError() { // Recognition error - abort rule @@ -128375,14 +128370,14 @@ func (p *PostgreSQLParser) Offset_clause() (localctx IOffset_clauseContext) { p.EnterRule(localctx, 1018, PostgreSQLParserRULE_offset_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8706) + p.SetState(8708) p.Match(PostgreSQLParserOFFSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8711) + p.SetState(8713) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128391,17 +128386,17 @@ func (p *PostgreSQLParser) Offset_clause() (localctx IOffset_clauseContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 773, p.GetParserRuleContext()) { case 1: { - p.SetState(8707) + p.SetState(8709) p.Select_offset_value() } case 2: { - p.SetState(8708) + p.SetState(8710) p.Select_fetch_first_value() } { - p.SetState(8709) + p.SetState(8711) p.Row_or_rows() } @@ -128522,7 +128517,7 @@ func (s *Select_limit_valueContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Select_limit_value() (localctx ISelect_limit_valueContext) { localctx = NewSelect_limit_valueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 1020, PostgreSQLParserRULE_select_limit_value) - p.SetState(8715) + p.SetState(8717) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128532,14 +128527,14 @@ func (p *PostgreSQLParser) Select_limit_value() (localctx ISelect_limit_valueCon case PostgreSQLParserOPEN_PAREN, PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserPARAM, PostgreSQLParserOperator, PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserJSON_SCALAR, PostgreSQLParserJSON_SERIALIZE, PostgreSQLParserMERGE_ACTION, PostgreSQLParserJSON_QUERY, PostgreSQLParserJSON_EXISTS, PostgreSQLParserJSON_VALUE, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserRIGHT, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserBinaryStringConstant, PostgreSQLParserHexadecimalStringConstant, PostgreSQLParserIntegral, PostgreSQLParserNumeric, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(8713) + p.SetState(8715) p.A_expr() } case PostgreSQLParserALL: p.EnterOuterAlt(localctx, 2) { - p.SetState(8714) + p.SetState(8716) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -128662,7 +128657,7 @@ func (p *PostgreSQLParser) Select_offset_value() (localctx ISelect_offset_valueC p.EnterRule(localctx, 1022, PostgreSQLParserRULE_select_offset_value) p.EnterOuterAlt(localctx, 1) { - p.SetState(8717) + p.SetState(8719) p.A_expr() } @@ -128801,7 +128796,7 @@ func (s *Select_fetch_first_valueContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Select_fetch_first_value() (localctx ISelect_fetch_first_valueContext) { localctx = NewSelect_fetch_first_valueContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 1024, PostgreSQLParserRULE_select_fetch_first_value) - p.SetState(8724) + p.SetState(8726) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128811,14 +128806,14 @@ func (p *PostgreSQLParser) Select_fetch_first_value() (localctx ISelect_fetch_fi case PostgreSQLParserOPEN_PAREN, PostgreSQLParserPARAM, PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNULL_P, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserJSON_SCALAR, PostgreSQLParserJSON_SERIALIZE, PostgreSQLParserMERGE_ACTION, PostgreSQLParserJSON_QUERY, PostgreSQLParserJSON_EXISTS, PostgreSQLParserJSON_VALUE, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserRIGHT, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserBinaryStringConstant, PostgreSQLParserHexadecimalStringConstant, PostgreSQLParserIntegral, PostgreSQLParserNumeric, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(8719) + p.SetState(8721) p.C_expr() } case PostgreSQLParserPLUS: p.EnterOuterAlt(localctx, 2) { - p.SetState(8720) + p.SetState(8722) p.Match(PostgreSQLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -128826,14 +128821,14 @@ func (p *PostgreSQLParser) Select_fetch_first_value() (localctx ISelect_fetch_fi } } { - p.SetState(8721) + p.SetState(8723) p.I_or_f_const() } case PostgreSQLParserMINUS: p.EnterOuterAlt(localctx, 3) { - p.SetState(8722) + p.SetState(8724) p.Match(PostgreSQLParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -128841,7 +128836,7 @@ func (p *PostgreSQLParser) Select_fetch_first_value() (localctx ISelect_fetch_fi } } { - p.SetState(8723) + p.SetState(8725) p.I_or_f_const() } @@ -128975,7 +128970,7 @@ func (s *I_or_f_constContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) I_or_f_const() (localctx II_or_f_constContext) { localctx = NewI_or_f_constContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 1026, PostgreSQLParserRULE_i_or_f_const) - p.SetState(8728) + p.SetState(8730) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128985,14 +128980,14 @@ func (p *PostgreSQLParser) I_or_f_const() (localctx II_or_f_constContext) { case PostgreSQLParserIntegral: p.EnterOuterAlt(localctx, 1) { - p.SetState(8726) + p.SetState(8728) p.Iconst() } case PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(8727) + p.SetState(8729) p.Fconst() } @@ -129106,7 +129101,7 @@ func (p *PostgreSQLParser) Row_or_rows() (localctx IRow_or_rowsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8730) + p.SetState(8732) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserROWS || _la == PostgreSQLParserROW) { @@ -129222,7 +129217,7 @@ func (p *PostgreSQLParser) First_or_next() (localctx IFirst_or_nextContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8732) + p.SetState(8734) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFIRST_P || _la == PostgreSQLParserNEXT) { @@ -129353,7 +129348,7 @@ func (p *PostgreSQLParser) Group_clause() (localctx IGroup_clauseContext) { p.EnterRule(localctx, 1032, PostgreSQLParserRULE_group_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8734) + p.SetState(8736) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -129361,7 +129356,7 @@ func (p *PostgreSQLParser) Group_clause() (localctx IGroup_clauseContext) { } } { - p.SetState(8735) + p.SetState(8737) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -129369,7 +129364,7 @@ func (p *PostgreSQLParser) Group_clause() (localctx IGroup_clauseContext) { } } { - p.SetState(8736) + p.SetState(8738) p.Group_by_list() } @@ -129521,10 +129516,10 @@ func (p *PostgreSQLParser) Group_by_list() (localctx IGroup_by_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8738) + p.SetState(8740) p.Group_by_item() } - p.SetState(8743) + p.SetState(8745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -129536,7 +129531,7 @@ func (p *PostgreSQLParser) Group_by_list() (localctx IGroup_by_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(8739) + p.SetState(8741) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -129544,12 +129539,12 @@ func (p *PostgreSQLParser) Group_by_list() (localctx IGroup_by_listContext) { } } { - p.SetState(8740) + p.SetState(8742) p.Group_by_item() } } - p.SetState(8745) + p.SetState(8747) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -129736,7 +129731,7 @@ func (s *Group_by_itemContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Group_by_item() (localctx IGroup_by_itemContext) { localctx = NewGroup_by_itemContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 1036, PostgreSQLParserRULE_group_by_item) - p.SetState(8751) + p.SetState(8753) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -129746,35 +129741,35 @@ func (p *PostgreSQLParser) Group_by_item() (localctx IGroup_by_itemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8746) + p.SetState(8748) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8747) + p.SetState(8749) p.Empty_grouping_set() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8748) + p.SetState(8750) p.Cube_clause() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8749) + p.SetState(8751) p.Rollup_clause() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(8750) + p.SetState(8752) p.Grouping_sets_clause() } @@ -129885,7 +129880,7 @@ func (p *PostgreSQLParser) Empty_grouping_set() (localctx IEmpty_grouping_setCon p.EnterRule(localctx, 1038, PostgreSQLParserRULE_empty_grouping_set) p.EnterOuterAlt(localctx, 1) { - p.SetState(8753) + p.SetState(8755) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -129893,7 +129888,7 @@ func (p *PostgreSQLParser) Empty_grouping_set() (localctx IEmpty_grouping_setCon } } { - p.SetState(8754) + p.SetState(8756) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130026,7 +130021,7 @@ func (p *PostgreSQLParser) Rollup_clause() (localctx IRollup_clauseContext) { p.EnterRule(localctx, 1040, PostgreSQLParserRULE_rollup_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8756) + p.SetState(8758) p.Match(PostgreSQLParserROLLUP) if p.HasError() { // Recognition error - abort rule @@ -130034,7 +130029,7 @@ func (p *PostgreSQLParser) Rollup_clause() (localctx IRollup_clauseContext) { } } { - p.SetState(8757) + p.SetState(8759) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130042,11 +130037,11 @@ func (p *PostgreSQLParser) Rollup_clause() (localctx IRollup_clauseContext) { } } { - p.SetState(8758) + p.SetState(8760) p.Expr_list() } { - p.SetState(8759) + p.SetState(8761) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130179,7 +130174,7 @@ func (p *PostgreSQLParser) Cube_clause() (localctx ICube_clauseContext) { p.EnterRule(localctx, 1042, PostgreSQLParserRULE_cube_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8761) + p.SetState(8763) p.Match(PostgreSQLParserCUBE) if p.HasError() { // Recognition error - abort rule @@ -130187,7 +130182,7 @@ func (p *PostgreSQLParser) Cube_clause() (localctx ICube_clauseContext) { } } { - p.SetState(8762) + p.SetState(8764) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130195,11 +130190,11 @@ func (p *PostgreSQLParser) Cube_clause() (localctx ICube_clauseContext) { } } { - p.SetState(8763) + p.SetState(8765) p.Expr_list() } { - p.SetState(8764) + p.SetState(8766) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130337,7 +130332,7 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus p.EnterRule(localctx, 1044, PostgreSQLParserRULE_grouping_sets_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8766) + p.SetState(8768) p.Match(PostgreSQLParserGROUPING) if p.HasError() { // Recognition error - abort rule @@ -130345,7 +130340,7 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus } } { - p.SetState(8767) + p.SetState(8769) p.Match(PostgreSQLParserSETS) if p.HasError() { // Recognition error - abort rule @@ -130353,7 +130348,7 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus } } { - p.SetState(8768) + p.SetState(8770) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130361,11 +130356,11 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus } } { - p.SetState(8769) + p.SetState(8771) p.Group_by_list() } { - p.SetState(8770) + p.SetState(8772) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130488,7 +130483,7 @@ func (p *PostgreSQLParser) Having_clause() (localctx IHaving_clauseContext) { p.EnterRule(localctx, 1046, PostgreSQLParserRULE_having_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8772) + p.SetState(8774) p.Match(PostgreSQLParserHAVING) if p.HasError() { // Recognition error - abort rule @@ -130496,7 +130491,7 @@ func (p *PostgreSQLParser) Having_clause() (localctx IHaving_clauseContext) { } } { - p.SetState(8773) + p.SetState(8775) p.A_expr() } @@ -130623,7 +130618,7 @@ func (s *For_locking_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseContext) { localctx = NewFor_locking_clauseContext(p, p.GetParserRuleContext(), p.GetState()) p.EnterRule(localctx, 1048, PostgreSQLParserRULE_for_locking_clause) - p.SetState(8779) + p.SetState(8781) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -130633,14 +130628,14 @@ func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8775) + p.SetState(8777) p.For_locking_items() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8776) + p.SetState(8778) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -130648,7 +130643,7 @@ func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseCon } } { - p.SetState(8777) + p.SetState(8779) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -130656,7 +130651,7 @@ func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseCon } } { - p.SetState(8778) + p.SetState(8780) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -130778,7 +130773,7 @@ func (p *PostgreSQLParser) Opt_for_locking_clause() (localctx IOpt_for_locking_c p.EnterRule(localctx, 1050, PostgreSQLParserRULE_opt_for_locking_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8781) + p.SetState(8783) p.For_locking_clause() } @@ -130919,7 +130914,7 @@ func (p *PostgreSQLParser) For_locking_items() (localctx IFor_locking_itemsConte var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8784) + p.SetState(8786) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -130928,11 +130923,11 @@ func (p *PostgreSQLParser) For_locking_items() (localctx IFor_locking_itemsConte for ok := true; ok; ok = _la == PostgreSQLParserFOR { { - p.SetState(8783) + p.SetState(8785) p.For_locking_item() } - p.SetState(8786) + p.SetState(8788) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131086,10 +131081,10 @@ func (p *PostgreSQLParser) For_locking_item() (localctx IFor_locking_itemContext p.EnterOuterAlt(localctx, 1) { - p.SetState(8788) + p.SetState(8790) p.For_locking_strength() } - p.SetState(8790) + p.SetState(8792) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131098,12 +131093,12 @@ func (p *PostgreSQLParser) For_locking_item() (localctx IFor_locking_itemContext if _la == PostgreSQLParserOF { { - p.SetState(8789) + p.SetState(8791) p.Locked_rels_list() } } - p.SetState(8793) + p.SetState(8795) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131112,7 +131107,7 @@ func (p *PostgreSQLParser) For_locking_item() (localctx IFor_locking_itemContext if _la == PostgreSQLParserNOWAIT || _la == PostgreSQLParserSKIP_P { { - p.SetState(8792) + p.SetState(8794) p.Opt_nowait_or_skip() } @@ -131238,14 +131233,14 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt p.EnterOuterAlt(localctx, 1) { - p.SetState(8795) + p.SetState(8797) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8805) + p.SetState(8807) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131253,7 +131248,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt switch p.GetTokenStream().LA(1) { case PostgreSQLParserNO, PostgreSQLParserUPDATE: - p.SetState(8798) + p.SetState(8800) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131262,7 +131257,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt if _la == PostgreSQLParserNO { { - p.SetState(8796) + p.SetState(8798) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -131270,7 +131265,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } } { - p.SetState(8797) + p.SetState(8799) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule @@ -131280,7 +131275,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } { - p.SetState(8800) + p.SetState(8802) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -131289,7 +131284,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } case PostgreSQLParserKEY, PostgreSQLParserSHARE: - p.SetState(8802) + p.SetState(8804) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131298,7 +131293,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt if _la == PostgreSQLParserKEY { { - p.SetState(8801) + p.SetState(8803) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule @@ -131308,7 +131303,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } { - p.SetState(8804) + p.SetState(8806) p.Match(PostgreSQLParserSHARE) if p.HasError() { // Recognition error - abort rule @@ -131436,7 +131431,7 @@ func (p *PostgreSQLParser) Locked_rels_list() (localctx ILocked_rels_listContext p.EnterRule(localctx, 1058, PostgreSQLParserRULE_locked_rels_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(8807) + p.SetState(8809) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -131444,7 +131439,7 @@ func (p *PostgreSQLParser) Locked_rels_list() (localctx ILocked_rels_listContext } } { - p.SetState(8808) + p.SetState(8810) p.Qualified_name_list() } @@ -131621,7 +131616,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8810) + p.SetState(8812) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -131629,7 +131624,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8811) + p.SetState(8813) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -131637,18 +131632,18 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8812) + p.SetState(8814) p.Expr_list() } { - p.SetState(8813) + p.SetState(8815) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8821) + p.SetState(8823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131657,7 +131652,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(8814) + p.SetState(8816) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -131665,7 +131660,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8815) + p.SetState(8817) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -131673,11 +131668,11 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8816) + p.SetState(8818) p.Expr_list() } { - p.SetState(8817) + p.SetState(8819) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -131685,7 +131680,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } - p.SetState(8823) + p.SetState(8825) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131808,7 +131803,7 @@ func (p *PostgreSQLParser) From_clause() (localctx IFrom_clauseContext) { p.EnterRule(localctx, 1062, PostgreSQLParserRULE_from_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8824) + p.SetState(8826) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -131816,7 +131811,7 @@ func (p *PostgreSQLParser) From_clause() (localctx IFrom_clauseContext) { } } { - p.SetState(8825) + p.SetState(8827) p.From_list() } @@ -131968,10 +131963,10 @@ func (p *PostgreSQLParser) From_list() (localctx IFrom_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8827) + p.SetState(8829) p.Table_ref() } - p.SetState(8832) + p.SetState(8834) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131983,7 +131978,7 @@ func (p *PostgreSQLParser) From_list() (localctx IFrom_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(8828) + p.SetState(8830) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -131991,12 +131986,12 @@ func (p *PostgreSQLParser) From_list() (localctx IFrom_listContext) { } } { - p.SetState(8829) + p.SetState(8831) p.Table_ref() } } - p.SetState(8834) + p.SetState(8836) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132034,22 +132029,13 @@ type ITable_refContext interface { Select_with_parens() ISelect_with_parensContext LATERAL_P() antlr.TerminalNode OPEN_PAREN() antlr.TerminalNode - AllTable_ref() []ITable_refContext - Table_ref(i int) ITable_refContext + Table_ref() ITable_refContext CLOSE_PAREN() antlr.TerminalNode - AllCROSS() []antlr.TerminalNode - CROSS(i int) antlr.TerminalNode - AllJOIN() []antlr.TerminalNode - JOIN(i int) antlr.TerminalNode - AllNATURAL() []antlr.TerminalNode - NATURAL(i int) antlr.TerminalNode - AllJoin_qual() []IJoin_qualContext - Join_qual(i int) IJoin_qualContext + AllJoined_table() []IJoined_tableContext + Joined_table(i int) IJoined_tableContext Opt_alias_clause() IOpt_alias_clauseContext Tablesample_clause() ITablesample_clauseContext Func_alias_clause() IFunc_alias_clauseContext - AllJoin_type() []IJoin_typeContext - Join_type(i int) IJoin_typeContext // IsTable_refContext differentiates from other interfaces. IsTable_refContext() @@ -132159,37 +132145,12 @@ func (s *Table_refContext) OPEN_PAREN() antlr.TerminalNode { return s.GetToken(PostgreSQLParserOPEN_PAREN, 0) } -func (s *Table_refContext) AllTable_ref() []ITable_refContext { - children := s.GetChildren() - len := 0 - for _, ctx := range children { - if _, ok := ctx.(ITable_refContext); ok { - len++ - } - } - - tst := make([]ITable_refContext, len) - i := 0 - for _, ctx := range children { - if t, ok := ctx.(ITable_refContext); ok { - tst[i] = t.(ITable_refContext) - i++ - } - } - - return tst -} - -func (s *Table_refContext) Table_ref(i int) ITable_refContext { +func (s *Table_refContext) Table_ref() ITable_refContext { var t antlr.RuleContext - j := 0 for _, ctx := range s.GetChildren() { if _, ok := ctx.(ITable_refContext); ok { - if j == i { - t = ctx.(antlr.RuleContext) - break - } - j++ + t = ctx.(antlr.RuleContext) + break } } @@ -132204,44 +132165,20 @@ func (s *Table_refContext) CLOSE_PAREN() antlr.TerminalNode { return s.GetToken(PostgreSQLParserCLOSE_PAREN, 0) } -func (s *Table_refContext) AllCROSS() []antlr.TerminalNode { - return s.GetTokens(PostgreSQLParserCROSS) -} - -func (s *Table_refContext) CROSS(i int) antlr.TerminalNode { - return s.GetToken(PostgreSQLParserCROSS, i) -} - -func (s *Table_refContext) AllJOIN() []antlr.TerminalNode { - return s.GetTokens(PostgreSQLParserJOIN) -} - -func (s *Table_refContext) JOIN(i int) antlr.TerminalNode { - return s.GetToken(PostgreSQLParserJOIN, i) -} - -func (s *Table_refContext) AllNATURAL() []antlr.TerminalNode { - return s.GetTokens(PostgreSQLParserNATURAL) -} - -func (s *Table_refContext) NATURAL(i int) antlr.TerminalNode { - return s.GetToken(PostgreSQLParserNATURAL, i) -} - -func (s *Table_refContext) AllJoin_qual() []IJoin_qualContext { +func (s *Table_refContext) AllJoined_table() []IJoined_tableContext { children := s.GetChildren() len := 0 for _, ctx := range children { - if _, ok := ctx.(IJoin_qualContext); ok { + if _, ok := ctx.(IJoined_tableContext); ok { len++ } } - tst := make([]IJoin_qualContext, len) + tst := make([]IJoined_tableContext, len) i := 0 for _, ctx := range children { - if t, ok := ctx.(IJoin_qualContext); ok { - tst[i] = t.(IJoin_qualContext) + if t, ok := ctx.(IJoined_tableContext); ok { + tst[i] = t.(IJoined_tableContext) i++ } } @@ -132249,11 +132186,11 @@ func (s *Table_refContext) AllJoin_qual() []IJoin_qualContext { return tst } -func (s *Table_refContext) Join_qual(i int) IJoin_qualContext { +func (s *Table_refContext) Joined_table(i int) IJoined_tableContext { var t antlr.RuleContext j := 0 for _, ctx := range s.GetChildren() { - if _, ok := ctx.(IJoin_qualContext); ok { + if _, ok := ctx.(IJoined_tableContext); ok { if j == i { t = ctx.(antlr.RuleContext) break @@ -132266,7 +132203,7 @@ func (s *Table_refContext) Join_qual(i int) IJoin_qualContext { return nil } - return t.(IJoin_qualContext) + return t.(IJoined_tableContext) } func (s *Table_refContext) Opt_alias_clause() IOpt_alias_clauseContext { @@ -132317,47 +132254,6 @@ func (s *Table_refContext) Func_alias_clause() IFunc_alias_clauseContext { return t.(IFunc_alias_clauseContext) } -func (s *Table_refContext) AllJoin_type() []IJoin_typeContext { - children := s.GetChildren() - len := 0 - for _, ctx := range children { - if _, ok := ctx.(IJoin_typeContext); ok { - len++ - } - } - - tst := make([]IJoin_typeContext, len) - i := 0 - for _, ctx := range children { - if t, ok := ctx.(IJoin_typeContext); ok { - tst[i] = t.(IJoin_typeContext) - i++ - } - } - - return tst -} - -func (s *Table_refContext) Join_type(i int) IJoin_typeContext { - var t antlr.RuleContext - j := 0 - for _, ctx := range s.GetChildren() { - if _, ok := ctx.(IJoin_typeContext); ok { - if j == i { - t = ctx.(antlr.RuleContext) - break - } - j++ - } - } - - if t == nil { - return nil - } - - return t.(IJoin_typeContext) -} - func (s *Table_refContext) GetRuleContext() antlr.RuleContext { return s } @@ -132396,31 +132292,31 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(8893) + p.SetState(8880) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 801, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 799, p.GetParserRuleContext()) { case 1: { - p.SetState(8835) + p.SetState(8837) p.Relation_expr() } - p.SetState(8837) + p.SetState(8839) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 788, p.GetParserRuleContext()) == 1 { { - p.SetState(8836) + p.SetState(8838) p.Opt_alias_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8840) + p.SetState(8842) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132429,7 +132325,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { if _la == PostgreSQLParserTABLESAMPLE { { - p.SetState(8839) + p.SetState(8841) p.Tablesample_clause() } @@ -132437,15 +132333,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 2: { - p.SetState(8842) + p.SetState(8844) p.Func_table() } - p.SetState(8844) + p.SetState(8846) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 790, p.GetParserRuleContext()) == 1 { { - p.SetState(8843) + p.SetState(8845) p.Func_alias_clause() } @@ -132455,15 +132351,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 3: { - p.SetState(8846) + p.SetState(8848) p.Xmltable() } - p.SetState(8848) + p.SetState(8850) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 791, p.GetParserRuleContext()) == 1 { { - p.SetState(8847) + p.SetState(8849) p.Opt_alias_clause() } @@ -132473,15 +132369,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 4: { - p.SetState(8850) + p.SetState(8852) p.Select_with_parens() } - p.SetState(8852) + p.SetState(8854) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 792, p.GetParserRuleContext()) == 1 { { - p.SetState(8851) + p.SetState(8853) p.Opt_alias_clause() } @@ -132491,14 +132387,14 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 5: { - p.SetState(8854) + p.SetState(8856) p.Match(PostgreSQLParserLATERAL_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8867) + p.SetState(8869) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132507,15 +132403,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 796, p.GetParserRuleContext()) { case 1: { - p.SetState(8855) + p.SetState(8857) p.Xmltable() } - p.SetState(8857) + p.SetState(8859) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 793, p.GetParserRuleContext()) == 1 { { - p.SetState(8856) + p.SetState(8858) p.Opt_alias_clause() } @@ -132525,15 +132421,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 2: { - p.SetState(8859) + p.SetState(8861) p.Func_table() } - p.SetState(8861) + p.SetState(8863) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 794, p.GetParserRuleContext()) == 1 { { - p.SetState(8860) + p.SetState(8862) p.Func_alias_clause() } @@ -132543,15 +132439,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 3: { - p.SetState(8863) + p.SetState(8865) p.Select_with_parens() } - p.SetState(8865) + p.SetState(8867) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 795, p.GetParserRuleContext()) == 1 { { - p.SetState(8864) + p.SetState(8866) p.Opt_alias_clause() } @@ -132565,7 +132461,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 6: { - p.SetState(8869) + p.SetState(8871) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -132573,123 +132469,37 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { } } { - p.SetState(8870) + p.SetState(8872) p.Table_ref() } - p.SetState(8887) + p.SetState(8874) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetTokenStream().LA(1) { - case PostgreSQLParserCROSS: - { - p.SetState(8871) - p.Match(PostgreSQLParserCROSS) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8872) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8873) - p.Table_ref() - } - - case PostgreSQLParserNATURAL: - { - p.SetState(8874) - p.Match(PostgreSQLParserNATURAL) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - p.SetState(8876) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) - - if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { - { - p.SetState(8875) - p.Join_type() - } - - } - { - p.SetState(8878) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8879) - p.Table_ref() - } - - case PostgreSQLParserFULL, PostgreSQLParserINNER_P, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserRIGHT: - p.SetState(8881) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) - - if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { - { - p.SetState(8880) - p.Join_type() - } + _la = p.GetTokenStream().LA(1) - } - { - p.SetState(8883) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } + if (int64((_la-129)) & ^0x3f) == 0 && ((int64(1)<<(_la-129))&68393) != 0 { { - p.SetState(8884) - p.Table_ref() - } - { - p.SetState(8885) - p.Join_qual() + p.SetState(8873) + p.Joined_table() } - case PostgreSQLParserCLOSE_PAREN: - - default: } { - p.SetState(8889) + p.SetState(8876) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8891) + p.SetState(8878) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 800, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 798, p.GetParserRuleContext()) == 1 { { - p.SetState(8890) + p.SetState(8877) p.Opt_alias_clause() } @@ -132700,129 +132510,296 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(8913) + p.SetState(8885) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 805, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 800, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { - p.SetState(8911) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit + { + p.SetState(8882) + p.Joined_table() } - switch p.GetTokenStream().LA(1) { - case PostgreSQLParserCROSS: - { - p.SetState(8895) - p.Match(PostgreSQLParserCROSS) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8896) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8897) - p.Table_ref() - } + } + p.SetState(8887) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 800, p.GetParserRuleContext()) + if p.HasError() { + goto errorExit + } + } - case PostgreSQLParserNATURAL: - { - p.SetState(8898) - p.Match(PostgreSQLParserNATURAL) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - p.SetState(8900) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) +errorExit: + if p.HasError() { + v := p.GetError() + localctx.SetException(v) + p.GetErrorHandler().ReportError(p, v) + p.GetErrorHandler().Recover(p, v) + p.SetError(nil) + } + p.ExitRule() + return localctx + goto errorExit // Trick to prevent compiler error if the label is not used +} - if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { - { - p.SetState(8899) - p.Join_type() - } +// IJoined_tableContext is an interface to support dynamic dispatch. +type IJoined_tableContext interface { + antlr.ParserRuleContext - } - { - p.SetState(8902) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8903) - p.Table_ref() - } + // GetParser returns the parser. + GetParser() antlr.Parser - case PostgreSQLParserFULL, PostgreSQLParserINNER_P, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserRIGHT: - p.SetState(8905) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) + // Getter signatures + CROSS() antlr.TerminalNode + JOIN() antlr.TerminalNode + Table_ref() ITable_refContext + NATURAL() antlr.TerminalNode + Join_type() IJoin_typeContext + Join_qual() IJoin_qualContext - if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { - { - p.SetState(8904) - p.Join_type() - } + // IsJoined_tableContext differentiates from other interfaces. + IsJoined_tableContext() +} - } - { - p.SetState(8907) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8908) - p.Table_ref() - } - { - p.SetState(8909) - p.Join_qual() - } +type Joined_tableContext struct { + antlr.BaseParserRuleContext + parser antlr.Parser +} - default: - p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) +func NewEmptyJoined_tableContext() *Joined_tableContext { + var p = new(Joined_tableContext) + antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1) + p.RuleIndex = PostgreSQLParserRULE_joined_table + return p +} + +func InitEmptyJoined_tableContext(p *Joined_tableContext) { + antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, nil, -1) + p.RuleIndex = PostgreSQLParserRULE_joined_table +} + +func (*Joined_tableContext) IsJoined_tableContext() {} + +func NewJoined_tableContext(parser antlr.Parser, parent antlr.ParserRuleContext, invokingState int) *Joined_tableContext { + var p = new(Joined_tableContext) + + antlr.InitBaseParserRuleContext(&p.BaseParserRuleContext, parent, invokingState) + + p.parser = parser + p.RuleIndex = PostgreSQLParserRULE_joined_table + + return p +} + +func (s *Joined_tableContext) GetParser() antlr.Parser { return s.parser } + +func (s *Joined_tableContext) CROSS() antlr.TerminalNode { + return s.GetToken(PostgreSQLParserCROSS, 0) +} + +func (s *Joined_tableContext) JOIN() antlr.TerminalNode { + return s.GetToken(PostgreSQLParserJOIN, 0) +} + +func (s *Joined_tableContext) Table_ref() ITable_refContext { + var t antlr.RuleContext + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(ITable_refContext); ok { + t = ctx.(antlr.RuleContext) + break + } + } + + if t == nil { + return nil + } + + return t.(ITable_refContext) +} + +func (s *Joined_tableContext) NATURAL() antlr.TerminalNode { + return s.GetToken(PostgreSQLParserNATURAL, 0) +} + +func (s *Joined_tableContext) Join_type() IJoin_typeContext { + var t antlr.RuleContext + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(IJoin_typeContext); ok { + t = ctx.(antlr.RuleContext) + break + } + } + + if t == nil { + return nil + } + + return t.(IJoin_typeContext) +} + +func (s *Joined_tableContext) Join_qual() IJoin_qualContext { + var t antlr.RuleContext + for _, ctx := range s.GetChildren() { + if _, ok := ctx.(IJoin_qualContext); ok { + t = ctx.(antlr.RuleContext) + break + } + } + + if t == nil { + return nil + } + + return t.(IJoin_qualContext) +} + +func (s *Joined_tableContext) GetRuleContext() antlr.RuleContext { + return s +} + +func (s *Joined_tableContext) ToStringTree(ruleNames []string, recog antlr.Recognizer) string { + return antlr.TreesStringTree(s, ruleNames, recog) +} + +func (s *Joined_tableContext) EnterRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(PostgreSQLParserListener); ok { + listenerT.EnterJoined_table(s) + } +} + +func (s *Joined_tableContext) ExitRule(listener antlr.ParseTreeListener) { + if listenerT, ok := listener.(PostgreSQLParserListener); ok { + listenerT.ExitJoined_table(s) + } +} + +func (s *Joined_tableContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { + switch t := visitor.(type) { + case PostgreSQLParserVisitor: + return t.VisitJoined_table(s) + + default: + return t.VisitChildren(s) + } +} + +func (p *PostgreSQLParser) Joined_table() (localctx IJoined_tableContext) { + localctx = NewJoined_tableContext(p, p.GetParserRuleContext(), p.GetState()) + p.EnterRule(localctx, 1068, PostgreSQLParserRULE_joined_table) + var _la int + + p.SetState(8904) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit + } + + switch p.GetTokenStream().LA(1) { + case PostgreSQLParserCROSS: + p.EnterOuterAlt(localctx, 1) + { + p.SetState(8888) + p.Match(PostgreSQLParserCROSS) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(8889) + p.Match(PostgreSQLParserJOIN) + if p.HasError() { + // Recognition error - abort rule goto errorExit } + } + { + p.SetState(8890) + p.Table_ref() + } + case PostgreSQLParserNATURAL: + p.EnterOuterAlt(localctx, 2) + { + p.SetState(8891) + p.Match(PostgreSQLParserNATURAL) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } } - p.SetState(8915) + p.SetState(8893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 805, p.GetParserRuleContext()) + _la = p.GetTokenStream().LA(1) + + if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { + { + p.SetState(8892) + p.Join_type() + } + + } + { + p.SetState(8895) + p.Match(PostgreSQLParserJOIN) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(8896) + p.Table_ref() + } + + case PostgreSQLParserFULL, PostgreSQLParserINNER_P, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserRIGHT: + p.EnterOuterAlt(localctx, 3) + p.SetState(8898) + p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } + _la = p.GetTokenStream().LA(1) + + if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { + { + p.SetState(8897) + p.Join_type() + } + + } + { + p.SetState(8900) + p.Match(PostgreSQLParserJOIN) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(8901) + p.Table_ref() + } + { + p.SetState(8902) + p.Join_qual() + } + + default: + p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) + goto errorExit } errorExit: @@ -132964,11 +132941,11 @@ func (s *Alias_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { localctx = NewAlias_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1068, PostgreSQLParserRULE_alias_clause) + p.EnterRule(localctx, 1070, PostgreSQLParserRULE_alias_clause) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8917) + p.SetState(8907) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132977,7 +132954,7 @@ func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { if _la == PostgreSQLParserAS { { - p.SetState(8916) + p.SetState(8906) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -132987,15 +132964,15 @@ func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { } { - p.SetState(8919) + p.SetState(8909) p.Colid() } - p.SetState(8924) + p.SetState(8914) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 807, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 805, p.GetParserRuleContext()) == 1 { { - p.SetState(8920) + p.SetState(8910) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133003,11 +132980,11 @@ func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { } } { - p.SetState(8921) + p.SetState(8911) p.Name_list() } { - p.SetState(8922) + p.SetState(8912) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133126,10 +133103,10 @@ func (s *Opt_alias_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_alias_clause() (localctx IOpt_alias_clauseContext) { localctx = NewOpt_alias_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1070, PostgreSQLParserRULE_opt_alias_clause) + p.EnterRule(localctx, 1072, PostgreSQLParserRULE_opt_alias_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8926) + p.SetState(8916) p.Table_alias_clause() } @@ -133272,11 +133249,11 @@ func (s *Table_alias_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseContext) { localctx = NewTable_alias_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1072, PostgreSQLParserRULE_table_alias_clause) + p.EnterRule(localctx, 1074, PostgreSQLParserRULE_table_alias_clause) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8929) + p.SetState(8919) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133285,7 +133262,7 @@ func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseCon if _la == PostgreSQLParserAS { { - p.SetState(8928) + p.SetState(8918) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -133295,15 +133272,15 @@ func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseCon } { - p.SetState(8931) + p.SetState(8921) p.Table_alias() } - p.SetState(8936) + p.SetState(8926) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 809, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 807, p.GetParserRuleContext()) == 1 { { - p.SetState(8932) + p.SetState(8922) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133311,11 +133288,11 @@ func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseCon } } { - p.SetState(8933) + p.SetState(8923) p.Name_list() } { - p.SetState(8934) + p.SetState(8924) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133483,26 +133460,26 @@ func (s *Func_alias_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseContext) { localctx = NewFunc_alias_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1074, PostgreSQLParserRULE_func_alias_clause) + p.EnterRule(localctx, 1076, PostgreSQLParserRULE_func_alias_clause) var _la int - p.SetState(8950) + p.SetState(8940) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 812, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 810, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8938) + p.SetState(8928) p.Alias_clause() } case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(8944) + p.SetState(8934) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133511,14 +133488,14 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte switch p.GetTokenStream().LA(1) { case PostgreSQLParserAS: { - p.SetState(8939) + p.SetState(8929) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8941) + p.SetState(8931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133527,7 +133504,7 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(8940) + p.SetState(8930) p.Colid() } @@ -133535,7 +133512,7 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(8943) + p.SetState(8933) p.Colid() } @@ -133544,7 +133521,7 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte goto errorExit } { - p.SetState(8946) + p.SetState(8936) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133552,11 +133529,11 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte } } { - p.SetState(8947) + p.SetState(8937) p.Tablefuncelementlist() } { - p.SetState(8948) + p.SetState(8938) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133683,12 +133660,12 @@ func (s *Join_typeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Join_type() (localctx IJoin_typeContext) { localctx = NewJoin_typeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1076, PostgreSQLParserRULE_join_type) + p.EnterRule(localctx, 1078, PostgreSQLParserRULE_join_type) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8952) + p.SetState(8942) _la = p.GetTokenStream().LA(1) if !((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0) { @@ -133698,7 +133675,7 @@ func (p *PostgreSQLParser) Join_type() (localctx IJoin_typeContext) { p.Consume() } } - p.SetState(8954) + p.SetState(8944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133707,7 +133684,7 @@ func (p *PostgreSQLParser) Join_type() (localctx IJoin_typeContext) { if _la == PostgreSQLParserOUTER_P { { - p.SetState(8953) + p.SetState(8943) p.Match(PostgreSQLParserOUTER_P) if p.HasError() { // Recognition error - abort rule @@ -133861,8 +133838,8 @@ func (s *Join_qualContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { localctx = NewJoin_qualContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1078, PostgreSQLParserRULE_join_qual) - p.SetState(8963) + p.EnterRule(localctx, 1080, PostgreSQLParserRULE_join_qual) + p.SetState(8953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133872,7 +133849,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { case PostgreSQLParserUSING: p.EnterOuterAlt(localctx, 1) { - p.SetState(8956) + p.SetState(8946) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -133880,7 +133857,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { } } { - p.SetState(8957) + p.SetState(8947) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133888,11 +133865,11 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { } } { - p.SetState(8958) + p.SetState(8948) p.Name_list() } { - p.SetState(8959) + p.SetState(8949) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133903,7 +133880,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { case PostgreSQLParserON: p.EnterOuterAlt(localctx, 2) { - p.SetState(8961) + p.SetState(8951) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -133911,7 +133888,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { } } { - p.SetState(8962) + p.SetState(8952) p.A_expr() } @@ -134047,10 +134024,10 @@ func (s *Relation_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { localctx = NewRelation_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1080, PostgreSQLParserRULE_relation_expr) + p.EnterRule(localctx, 1082, PostgreSQLParserRULE_relation_expr) var _la int - p.SetState(8977) + p.SetState(8967) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134060,10 +134037,10 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(8965) + p.SetState(8955) p.Qualified_name() } - p.SetState(8967) + p.SetState(8957) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134072,7 +134049,7 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { if _la == PostgreSQLParserSTAR { { - p.SetState(8966) + p.SetState(8956) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -134085,14 +134062,14 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { case PostgreSQLParserONLY: p.EnterOuterAlt(localctx, 2) { - p.SetState(8969) + p.SetState(8959) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8975) + p.SetState(8965) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134101,13 +134078,13 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(8970) + p.SetState(8960) p.Qualified_name() } case PostgreSQLParserOPEN_PAREN: { - p.SetState(8971) + p.SetState(8961) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134115,11 +134092,11 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { } } { - p.SetState(8972) + p.SetState(8962) p.Qualified_name() } { - p.SetState(8973) + p.SetState(8963) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134280,15 +134257,15 @@ func (s *Relation_expr_listContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Relation_expr_list() (localctx IRelation_expr_listContext) { localctx = NewRelation_expr_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1082, PostgreSQLParserRULE_relation_expr_list) + p.EnterRule(localctx, 1084, PostgreSQLParserRULE_relation_expr_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8979) + p.SetState(8969) p.Relation_expr() } - p.SetState(8984) + p.SetState(8974) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134297,7 +134274,7 @@ func (p *PostgreSQLParser) Relation_expr_list() (localctx IRelation_expr_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(8980) + p.SetState(8970) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -134305,11 +134282,11 @@ func (p *PostgreSQLParser) Relation_expr_list() (localctx IRelation_expr_listCon } } { - p.SetState(8981) + p.SetState(8971) p.Relation_expr() } - p.SetState(8986) + p.SetState(8976) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134446,19 +134423,19 @@ func (s *Relation_expr_opt_aliasContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Relation_expr_opt_alias() (localctx IRelation_expr_opt_aliasContext) { localctx = NewRelation_expr_opt_aliasContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1084, PostgreSQLParserRULE_relation_expr_opt_alias) + p.EnterRule(localctx, 1086, PostgreSQLParserRULE_relation_expr_opt_alias) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8987) + p.SetState(8977) p.Relation_expr() } - p.SetState(8992) + p.SetState(8982) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 820, p.GetParserRuleContext()) == 1 { - p.SetState(8989) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 818, p.GetParserRuleContext()) == 1 { + p.SetState(8979) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134467,7 +134444,7 @@ func (p *PostgreSQLParser) Relation_expr_opt_alias() (localctx IRelation_expr_op if _la == PostgreSQLParserAS { { - p.SetState(8988) + p.SetState(8978) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -134477,7 +134454,7 @@ func (p *PostgreSQLParser) Relation_expr_opt_alias() (localctx IRelation_expr_op } { - p.SetState(8991) + p.SetState(8981) p.Colid() } @@ -134641,12 +134618,12 @@ func (s *Tablesample_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseContext) { localctx = NewTablesample_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1086, PostgreSQLParserRULE_tablesample_clause) + p.EnterRule(localctx, 1088, PostgreSQLParserRULE_tablesample_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8994) + p.SetState(8984) p.Match(PostgreSQLParserTABLESAMPLE) if p.HasError() { // Recognition error - abort rule @@ -134654,11 +134631,11 @@ func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseCon } } { - p.SetState(8995) + p.SetState(8985) p.Func_name() } { - p.SetState(8996) + p.SetState(8986) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134666,18 +134643,18 @@ func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseCon } } { - p.SetState(8997) + p.SetState(8987) p.Expr_list() } { - p.SetState(8998) + p.SetState(8988) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9000) + p.SetState(8990) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134686,7 +134663,7 @@ func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseCon if _la == PostgreSQLParserREPEATABLE { { - p.SetState(8999) + p.SetState(8989) p.Opt_repeatable_clause() } @@ -134814,10 +134791,10 @@ func (s *Opt_repeatable_clauseContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Opt_repeatable_clause() (localctx IOpt_repeatable_clauseContext) { localctx = NewOpt_repeatable_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1088, PostgreSQLParserRULE_opt_repeatable_clause) + p.EnterRule(localctx, 1090, PostgreSQLParserRULE_opt_repeatable_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9002) + p.SetState(8992) p.Match(PostgreSQLParserREPEATABLE) if p.HasError() { // Recognition error - abort rule @@ -134825,7 +134802,7 @@ func (p *PostgreSQLParser) Opt_repeatable_clause() (localctx IOpt_repeatable_cla } } { - p.SetState(9003) + p.SetState(8993) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134833,11 +134810,11 @@ func (p *PostgreSQLParser) Opt_repeatable_clause() (localctx IOpt_repeatable_cla } } { - p.SetState(9004) + p.SetState(8994) p.A_expr() } { - p.SetState(9005) + p.SetState(8995) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135006,26 +134983,26 @@ func (s *Func_tableContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { localctx = NewFunc_tableContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1090, PostgreSQLParserRULE_func_table) - p.SetState(9019) + p.EnterRule(localctx, 1092, PostgreSQLParserRULE_func_table) + p.SetState(9009) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 824, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 822, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9007) + p.SetState(8997) p.Func_expr_windowless() } - p.SetState(9009) + p.SetState(8999) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 822, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 820, p.GetParserRuleContext()) == 1 { { - p.SetState(9008) + p.SetState(8998) p.Opt_ordinality() } @@ -135036,7 +135013,7 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9011) + p.SetState(9001) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -135044,7 +135021,7 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { } } { - p.SetState(9012) + p.SetState(9002) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -135052,7 +135029,7 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { } } { - p.SetState(9013) + p.SetState(9003) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135060,23 +135037,23 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { } } { - p.SetState(9014) + p.SetState(9004) p.Rowsfrom_list() } { - p.SetState(9015) + p.SetState(9005) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9017) + p.SetState(9007) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 823, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 821, p.GetParserRuleContext()) == 1 { { - p.SetState(9016) + p.SetState(9006) p.Opt_ordinality() } @@ -135212,15 +135189,15 @@ func (s *Rowsfrom_itemContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Rowsfrom_item() (localctx IRowsfrom_itemContext) { localctx = NewRowsfrom_itemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1092, PostgreSQLParserRULE_rowsfrom_item) + p.EnterRule(localctx, 1094, PostgreSQLParserRULE_rowsfrom_item) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9021) + p.SetState(9011) p.Func_expr_windowless() } - p.SetState(9023) + p.SetState(9013) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135229,7 +135206,7 @@ func (p *PostgreSQLParser) Rowsfrom_item() (localctx IRowsfrom_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(9022) + p.SetState(9012) p.Opt_col_def_list() } @@ -135378,15 +135355,15 @@ func (s *Rowsfrom_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Rowsfrom_list() (localctx IRowsfrom_listContext) { localctx = NewRowsfrom_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1094, PostgreSQLParserRULE_rowsfrom_list) + p.EnterRule(localctx, 1096, PostgreSQLParserRULE_rowsfrom_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9025) + p.SetState(9015) p.Rowsfrom_item() } - p.SetState(9030) + p.SetState(9020) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135395,7 +135372,7 @@ func (p *PostgreSQLParser) Rowsfrom_list() (localctx IRowsfrom_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(9026) + p.SetState(9016) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -135403,11 +135380,11 @@ func (p *PostgreSQLParser) Rowsfrom_list() (localctx IRowsfrom_listContext) { } } { - p.SetState(9027) + p.SetState(9017) p.Rowsfrom_item() } - p.SetState(9032) + p.SetState(9022) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135537,10 +135514,10 @@ func (s *Opt_col_def_listContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_col_def_list() (localctx IOpt_col_def_listContext) { localctx = NewOpt_col_def_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1096, PostgreSQLParserRULE_opt_col_def_list) + p.EnterRule(localctx, 1098, PostgreSQLParserRULE_opt_col_def_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(9033) + p.SetState(9023) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -135548,7 +135525,7 @@ func (p *PostgreSQLParser) Opt_col_def_list() (localctx IOpt_col_def_listContext } } { - p.SetState(9034) + p.SetState(9024) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135556,11 +135533,11 @@ func (p *PostgreSQLParser) Opt_col_def_list() (localctx IOpt_col_def_listContext } } { - p.SetState(9035) + p.SetState(9025) p.Tablefuncelementlist() } { - p.SetState(9036) + p.SetState(9026) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135668,10 +135645,10 @@ func (s *Opt_ordinalityContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Opt_ordinality() (localctx IOpt_ordinalityContext) { localctx = NewOpt_ordinalityContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1098, PostgreSQLParserRULE_opt_ordinality) + p.EnterRule(localctx, 1100, PostgreSQLParserRULE_opt_ordinality) p.EnterOuterAlt(localctx, 1) { - p.SetState(9038) + p.SetState(9028) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -135679,7 +135656,7 @@ func (p *PostgreSQLParser) Opt_ordinality() (localctx IOpt_ordinalityContext) { } } { - p.SetState(9039) + p.SetState(9029) p.Match(PostgreSQLParserORDINALITY) if p.HasError() { // Recognition error - abort rule @@ -135799,10 +135776,10 @@ func (s *Where_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Where_clause() (localctx IWhere_clauseContext) { localctx = NewWhere_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1100, PostgreSQLParserRULE_where_clause) + p.EnterRule(localctx, 1102, PostgreSQLParserRULE_where_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9041) + p.SetState(9031) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -135810,7 +135787,7 @@ func (p *PostgreSQLParser) Where_clause() (localctx IWhere_clauseContext) { } } { - p.SetState(9042) + p.SetState(9032) p.A_expr() } @@ -135953,26 +135930,26 @@ func (s *Where_or_current_clauseContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Where_or_current_clause() (localctx IWhere_or_current_clauseContext) { localctx = NewWhere_or_current_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1102, PostgreSQLParserRULE_where_or_current_clause) + p.EnterRule(localctx, 1104, PostgreSQLParserRULE_where_or_current_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9044) + p.SetState(9034) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9049) + p.SetState(9039) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 827, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 825, p.GetParserRuleContext()) { case 1: { - p.SetState(9045) + p.SetState(9035) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -135980,7 +135957,7 @@ func (p *PostgreSQLParser) Where_or_current_clause() (localctx IWhere_or_current } } { - p.SetState(9046) + p.SetState(9036) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -135988,13 +135965,13 @@ func (p *PostgreSQLParser) Where_or_current_clause() (localctx IWhere_or_current } } { - p.SetState(9047) + p.SetState(9037) p.Cursor_name() } case 2: { - p.SetState(9048) + p.SetState(9038) p.A_expr() } @@ -136109,10 +136086,10 @@ func (s *OpttablefuncelementlistContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opttablefuncelementlist() (localctx IOpttablefuncelementlistContext) { localctx = NewOpttablefuncelementlistContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1104, PostgreSQLParserRULE_opttablefuncelementlist) + p.EnterRule(localctx, 1106, PostgreSQLParserRULE_opttablefuncelementlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(9051) + p.SetState(9041) p.Tablefuncelementlist() } @@ -136259,15 +136236,15 @@ func (s *TablefuncelementlistContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Tablefuncelementlist() (localctx ITablefuncelementlistContext) { localctx = NewTablefuncelementlistContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1106, PostgreSQLParserRULE_tablefuncelementlist) + p.EnterRule(localctx, 1108, PostgreSQLParserRULE_tablefuncelementlist) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9053) + p.SetState(9043) p.Tablefuncelement() } - p.SetState(9058) + p.SetState(9048) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136276,7 +136253,7 @@ func (p *PostgreSQLParser) Tablefuncelementlist() (localctx ITablefuncelementlis for _la == PostgreSQLParserCOMMA { { - p.SetState(9054) + p.SetState(9044) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -136284,11 +136261,11 @@ func (p *PostgreSQLParser) Tablefuncelementlist() (localctx ITablefuncelementlis } } { - p.SetState(9055) + p.SetState(9045) p.Tablefuncelement() } - p.SetState(9060) + p.SetState(9050) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136437,19 +136414,19 @@ func (s *TablefuncelementContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Tablefuncelement() (localctx ITablefuncelementContext) { localctx = NewTablefuncelementContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1108, PostgreSQLParserRULE_tablefuncelement) + p.EnterRule(localctx, 1110, PostgreSQLParserRULE_tablefuncelement) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9061) + p.SetState(9051) p.Colid() } { - p.SetState(9062) + p.SetState(9052) p.Typename() } - p.SetState(9064) + p.SetState(9054) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136458,7 +136435,7 @@ func (p *PostgreSQLParser) Tablefuncelement() (localctx ITablefuncelementContext if _la == PostgreSQLParserCOLLATE { { - p.SetState(9063) + p.SetState(9053) p.Opt_collate_clause() } @@ -136662,10 +136639,10 @@ func (s *XmltableContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { localctx = NewXmltableContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1110, PostgreSQLParserRULE_xmltable) + p.EnterRule(localctx, 1112, PostgreSQLParserRULE_xmltable) p.EnterOuterAlt(localctx, 1) { - p.SetState(9066) + p.SetState(9056) p.Match(PostgreSQLParserXMLTABLE) if p.HasError() { // Recognition error - abort rule @@ -136673,31 +136650,31 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9067) + p.SetState(9057) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9083) + p.SetState(9073) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 830, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 828, p.GetParserRuleContext()) { case 1: { - p.SetState(9068) + p.SetState(9058) p.C_expr() } { - p.SetState(9069) + p.SetState(9059) p.Xmlexists_argument() } { - p.SetState(9070) + p.SetState(9060) p.Match(PostgreSQLParserCOLUMNS) if p.HasError() { // Recognition error - abort rule @@ -136705,13 +136682,13 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9071) + p.SetState(9061) p.Xmltable_column_list() } case 2: { - p.SetState(9073) + p.SetState(9063) p.Match(PostgreSQLParserXMLNAMESPACES) if p.HasError() { // Recognition error - abort rule @@ -136719,7 +136696,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9074) + p.SetState(9064) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -136727,11 +136704,11 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9075) + p.SetState(9065) p.Xml_namespace_list() } { - p.SetState(9076) + p.SetState(9066) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -136739,7 +136716,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9077) + p.SetState(9067) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -136747,15 +136724,15 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9078) + p.SetState(9068) p.C_expr() } { - p.SetState(9079) + p.SetState(9069) p.Xmlexists_argument() } { - p.SetState(9080) + p.SetState(9070) p.Match(PostgreSQLParserCOLUMNS) if p.HasError() { // Recognition error - abort rule @@ -136763,7 +136740,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9081) + p.SetState(9071) p.Xmltable_column_list() } @@ -136771,7 +136748,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { goto errorExit } { - p.SetState(9085) + p.SetState(9075) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -136922,15 +136899,15 @@ func (s *Xmltable_column_listContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Xmltable_column_list() (localctx IXmltable_column_listContext) { localctx = NewXmltable_column_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1112, PostgreSQLParserRULE_xmltable_column_list) + p.EnterRule(localctx, 1114, PostgreSQLParserRULE_xmltable_column_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9087) + p.SetState(9077) p.Xmltable_column_el() } - p.SetState(9092) + p.SetState(9082) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136939,7 +136916,7 @@ func (p *PostgreSQLParser) Xmltable_column_list() (localctx IXmltable_column_lis for _la == PostgreSQLParserCOMMA { { - p.SetState(9088) + p.SetState(9078) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -136947,11 +136924,11 @@ func (p *PostgreSQLParser) Xmltable_column_list() (localctx IXmltable_column_lis } } { - p.SetState(9089) + p.SetState(9079) p.Xmltable_column_el() } - p.SetState(9094) + p.SetState(9084) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137110,15 +137087,15 @@ func (s *Xmltable_column_elContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elContext) { localctx = NewXmltable_column_elContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1114, PostgreSQLParserRULE_xmltable_column_el) + p.EnterRule(localctx, 1116, PostgreSQLParserRULE_xmltable_column_el) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9095) + p.SetState(9085) p.Colid() } - p.SetState(9102) + p.SetState(9092) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137127,10 +137104,10 @@ func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elCon switch p.GetTokenStream().LA(1) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserRIGHT, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(9096) + p.SetState(9086) p.Typename() } - p.SetState(9098) + p.SetState(9088) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137139,7 +137116,7 @@ func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elCon if ((int64((_la-33)) & ^0x3f) == 0 && ((int64(1)<<(_la-33))&576513529147825157) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&74346914954363009) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&56295003965620233) != 0) || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&18068292027564033) != 0) || _la == PostgreSQLParserTYPE_P || ((int64((_la-454)) & ^0x3f) == 0 && ((int64(1)<<(_la-454))&-144097595889811453) != 0) || ((int64((_la-518)) & ^0x3f) == 0 && ((int64(1)<<(_la-518))&12516927) != 0) || ((int64((_la-664)) & ^0x3f) == 0 && ((int64(1)<<(_la-664))&100663331) != 0) { { - p.SetState(9097) + p.SetState(9087) p.Xmltable_column_option_list() } @@ -137147,7 +137124,7 @@ func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elCon case PostgreSQLParserFOR: { - p.SetState(9100) + p.SetState(9090) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -137155,7 +137132,7 @@ func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elCon } } { - p.SetState(9101) + p.SetState(9091) p.Match(PostgreSQLParserORDINALITY) if p.HasError() { // Recognition error - abort rule @@ -137301,11 +137278,11 @@ func (s *Xmltable_column_option_listContext) Accept(visitor antlr.ParseTreeVisit func (p *PostgreSQLParser) Xmltable_column_option_list() (localctx IXmltable_column_option_listContext) { localctx = NewXmltable_column_option_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1116, PostgreSQLParserRULE_xmltable_column_option_list) + p.EnterRule(localctx, 1118, PostgreSQLParserRULE_xmltable_column_option_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(9105) + p.SetState(9095) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137314,11 +137291,11 @@ func (p *PostgreSQLParser) Xmltable_column_option_list() (localctx IXmltable_col for ok := true; ok; ok = ((int64((_la-33)) & ^0x3f) == 0 && ((int64(1)<<(_la-33))&576513529147825157) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&74346914954363009) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&56295003965620233) != 0) || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&18068292027564033) != 0) || _la == PostgreSQLParserTYPE_P || ((int64((_la-454)) & ^0x3f) == 0 && ((int64(1)<<(_la-454))&-144097595889811453) != 0) || ((int64((_la-518)) & ^0x3f) == 0 && ((int64(1)<<(_la-518))&12516927) != 0) || ((int64((_la-664)) & ^0x3f) == 0 && ((int64(1)<<(_la-664))&100663331) != 0) { { - p.SetState(9104) + p.SetState(9094) p.Xmltable_column_option_el() } - p.SetState(9107) + p.SetState(9097) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137465,18 +137442,18 @@ func (s *Xmltable_column_option_elContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_column_option_elContext) { localctx = NewXmltable_column_option_elContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1118, PostgreSQLParserRULE_xmltable_column_option_el) - p.SetState(9117) + p.EnterRule(localctx, 1120, PostgreSQLParserRULE_xmltable_column_option_el) + p.SetState(9107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 835, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 833, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9109) + p.SetState(9099) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -137484,25 +137461,25 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum } } { - p.SetState(9110) + p.SetState(9100) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9111) + p.SetState(9101) p.Identifier() } { - p.SetState(9112) + p.SetState(9102) p.A_expr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9114) + p.SetState(9104) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -137510,7 +137487,7 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum } } { - p.SetState(9115) + p.SetState(9105) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -137521,7 +137498,7 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9116) + p.SetState(9106) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -137676,15 +137653,15 @@ func (s *Xml_namespace_listContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Xml_namespace_list() (localctx IXml_namespace_listContext) { localctx = NewXml_namespace_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1120, PostgreSQLParserRULE_xml_namespace_list) + p.EnterRule(localctx, 1122, PostgreSQLParserRULE_xml_namespace_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9119) + p.SetState(9109) p.Xml_namespace_el() } - p.SetState(9124) + p.SetState(9114) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137693,7 +137670,7 @@ func (p *PostgreSQLParser) Xml_namespace_list() (localctx IXml_namespace_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(9120) + p.SetState(9110) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -137701,11 +137678,11 @@ func (p *PostgreSQLParser) Xml_namespace_list() (localctx IXml_namespace_listCon } } { - p.SetState(9121) + p.SetState(9111) p.Xml_namespace_el() } - p.SetState(9126) + p.SetState(9116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137847,22 +137824,22 @@ func (s *Xml_namespace_elContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Xml_namespace_el() (localctx IXml_namespace_elContext) { localctx = NewXml_namespace_elContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1122, PostgreSQLParserRULE_xml_namespace_el) - p.SetState(9133) + p.EnterRule(localctx, 1124, PostgreSQLParserRULE_xml_namespace_el) + p.SetState(9123) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 837, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 835, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9127) + p.SetState(9117) p.b_expr(0) } { - p.SetState(9128) + p.SetState(9118) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -137870,14 +137847,14 @@ func (p *PostgreSQLParser) Xml_namespace_el() (localctx IXml_namespace_elContext } } { - p.SetState(9129) + p.SetState(9119) p.Collabel() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9131) + p.SetState(9121) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -137885,7 +137862,7 @@ func (p *PostgreSQLParser) Xml_namespace_el() (localctx IXml_namespace_elContext } } { - p.SetState(9132) + p.SetState(9122) p.b_expr(0) } @@ -138086,19 +138063,19 @@ func (s *TypenameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { localctx = NewTypenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1124, PostgreSQLParserRULE_typename) + p.EnterRule(localctx, 1126, PostgreSQLParserRULE_typename) var _la int - p.SetState(9153) + p.SetState(9143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 841, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 839, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(9136) + p.SetState(9126) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138107,7 +138084,7 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { if _la == PostgreSQLParserSETOF { { - p.SetState(9135) + p.SetState(9125) p.Match(PostgreSQLParserSETOF) if p.HasError() { // Recognition error - abort rule @@ -138117,37 +138094,37 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { } { - p.SetState(9138) + p.SetState(9128) p.Simpletypename() } - p.SetState(9147) + p.SetState(9137) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 840, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 838, p.GetParserRuleContext()) { case 1: { - p.SetState(9139) + p.SetState(9129) p.Opt_array_bounds() } case 2: { - p.SetState(9140) + p.SetState(9130) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9145) + p.SetState(9135) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 839, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 837, p.GetParserRuleContext()) == 1 { { - p.SetState(9141) + p.SetState(9131) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -138155,11 +138132,11 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { } } { - p.SetState(9142) + p.SetState(9132) p.Iconst() } { - p.SetState(9143) + p.SetState(9133) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -138178,11 +138155,11 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9149) + p.SetState(9139) p.Qualified_name() } { - p.SetState(9150) + p.SetState(9140) p.Match(PostgreSQLParserPERCENT) if p.HasError() { // Recognition error - abort rule @@ -138190,7 +138167,7 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { } } { - p.SetState(9151) + p.SetState(9141) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTYPE_P || _la == PostgreSQLParserROWTYPE) { @@ -138358,32 +138335,32 @@ func (s *Opt_array_boundsContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_array_bounds() (localctx IOpt_array_boundsContext) { localctx = NewOpt_array_boundsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1126, PostgreSQLParserRULE_opt_array_bounds) + p.EnterRule(localctx, 1128, PostgreSQLParserRULE_opt_array_bounds) var _la int var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(9162) + p.SetState(9152) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 843, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 841, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9155) + p.SetState(9145) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9157) + p.SetState(9147) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138392,13 +138369,13 @@ func (p *PostgreSQLParser) Opt_array_bounds() (localctx IOpt_array_boundsContext if _la == PostgreSQLParserIntegral { { - p.SetState(9156) + p.SetState(9146) p.Iconst() } } { - p.SetState(9159) + p.SetState(9149) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -138407,12 +138384,12 @@ func (p *PostgreSQLParser) Opt_array_bounds() (localctx IOpt_array_boundsContext } } - p.SetState(9164) + p.SetState(9154) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 843, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 841, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -138654,69 +138631,69 @@ func (s *SimpletypenameContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { localctx = NewSimpletypenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1128, PostgreSQLParserRULE_simpletypename) - p.SetState(9180) + p.EnterRule(localctx, 1130, PostgreSQLParserRULE_simpletypename) + p.SetState(9170) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 846, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 844, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9165) + p.SetState(9155) p.Generictype() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9166) + p.SetState(9156) p.Numeric() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9167) + p.SetState(9157) p.Bit() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9168) + p.SetState(9158) p.Character() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(9169) + p.SetState(9159) p.Constdatetime() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(9170) + p.SetState(9160) p.Constinterval() } - p.SetState(9178) + p.SetState(9168) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 845, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 843, p.GetParserRuleContext()) { case 1: - p.SetState(9172) + p.SetState(9162) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 844, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 842, p.GetParserRuleContext()) == 1 { { - p.SetState(9171) + p.SetState(9161) p.Opt_interval() } @@ -138726,7 +138703,7 @@ func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { case 2: { - p.SetState(9174) + p.SetState(9164) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -138734,11 +138711,11 @@ func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { } } { - p.SetState(9175) + p.SetState(9165) p.Iconst() } { - p.SetState(9176) + p.SetState(9166) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -138912,8 +138889,8 @@ func (s *ConsttypenameContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Consttypename() (localctx IConsttypenameContext) { localctx = NewConsttypenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1130, PostgreSQLParserRULE_consttypename) - p.SetState(9186) + p.EnterRule(localctx, 1132, PostgreSQLParserRULE_consttypename) + p.SetState(9176) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138923,28 +138900,28 @@ func (p *PostgreSQLParser) Consttypename() (localctx IConsttypenameContext) { case PostgreSQLParserDOUBLE_P, PostgreSQLParserBIGINT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserFLOAT_P, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserNUMERIC, PostgreSQLParserREAL, PostgreSQLParserSMALLINT: p.EnterOuterAlt(localctx, 1) { - p.SetState(9182) + p.SetState(9172) p.Numeric() } case PostgreSQLParserBIT: p.EnterOuterAlt(localctx, 2) { - p.SetState(9183) + p.SetState(9173) p.Constbit() } case PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserVARCHAR: p.EnterOuterAlt(localctx, 3) { - p.SetState(9184) + p.SetState(9174) p.Constcharacter() } case PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP: p.EnterOuterAlt(localctx, 4) { - p.SetState(9185) + p.SetState(9175) p.Constdatetime() } @@ -139121,30 +139098,30 @@ func (s *GenerictypeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { localctx = NewGenerictypeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1132, PostgreSQLParserRULE_generictype) + p.EnterRule(localctx, 1134, PostgreSQLParserRULE_generictype) p.EnterOuterAlt(localctx, 1) - p.SetState(9192) + p.SetState(9182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 848, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 846, p.GetParserRuleContext()) { case 1: { - p.SetState(9188) + p.SetState(9178) p.Builtin_function_name() } case 2: { - p.SetState(9189) + p.SetState(9179) p.Type_function_name() } case 3: { - p.SetState(9190) + p.SetState(9180) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -139154,7 +139131,7 @@ func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { case 4: { - p.SetState(9191) + p.SetState(9181) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -139165,24 +139142,24 @@ func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(9195) + p.SetState(9185) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 849, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 847, p.GetParserRuleContext()) == 1 { { - p.SetState(9194) + p.SetState(9184) p.Attrs() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9198) + p.SetState(9188) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 850, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 848, p.GetParserRuleContext()) == 1 { { - p.SetState(9197) + p.SetState(9187) p.Opt_type_modifiers() } @@ -139307,10 +139284,10 @@ func (s *Opt_type_modifiersContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Opt_type_modifiers() (localctx IOpt_type_modifiersContext) { localctx = NewOpt_type_modifiersContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1134, PostgreSQLParserRULE_opt_type_modifiers) + p.EnterRule(localctx, 1136, PostgreSQLParserRULE_opt_type_modifiers) p.EnterOuterAlt(localctx, 1) { - p.SetState(9200) + p.SetState(9190) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139318,11 +139295,11 @@ func (p *PostgreSQLParser) Opt_type_modifiers() (localctx IOpt_type_modifiersCon } } { - p.SetState(9201) + p.SetState(9191) p.Expr_list() } { - p.SetState(9202) + p.SetState(9192) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139514,8 +139491,8 @@ func (s *NumericContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { localctx = NewNumericContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1136, PostgreSQLParserRULE_numeric) - p.SetState(9228) + p.EnterRule(localctx, 1138, PostgreSQLParserRULE_numeric) + p.SetState(9218) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -139525,7 +139502,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserINT_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(9204) + p.SetState(9194) p.Match(PostgreSQLParserINT_P) if p.HasError() { // Recognition error - abort rule @@ -139536,7 +139513,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserINTEGER: p.EnterOuterAlt(localctx, 2) { - p.SetState(9205) + p.SetState(9195) p.Match(PostgreSQLParserINTEGER) if p.HasError() { // Recognition error - abort rule @@ -139547,7 +139524,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserSMALLINT: p.EnterOuterAlt(localctx, 3) { - p.SetState(9206) + p.SetState(9196) p.Match(PostgreSQLParserSMALLINT) if p.HasError() { // Recognition error - abort rule @@ -139558,7 +139535,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserBIGINT: p.EnterOuterAlt(localctx, 4) { - p.SetState(9207) + p.SetState(9197) p.Match(PostgreSQLParserBIGINT) if p.HasError() { // Recognition error - abort rule @@ -139569,7 +139546,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserREAL: p.EnterOuterAlt(localctx, 5) { - p.SetState(9208) + p.SetState(9198) p.Match(PostgreSQLParserREAL) if p.HasError() { // Recognition error - abort rule @@ -139580,19 +139557,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserFLOAT_P: p.EnterOuterAlt(localctx, 6) { - p.SetState(9209) + p.SetState(9199) p.Match(PostgreSQLParserFLOAT_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9211) + p.SetState(9201) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 851, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 849, p.GetParserRuleContext()) == 1 { { - p.SetState(9210) + p.SetState(9200) p.Opt_float() } @@ -139603,7 +139580,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserDOUBLE_P: p.EnterOuterAlt(localctx, 7) { - p.SetState(9213) + p.SetState(9203) p.Match(PostgreSQLParserDOUBLE_P) if p.HasError() { // Recognition error - abort rule @@ -139611,7 +139588,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { } } { - p.SetState(9214) + p.SetState(9204) p.Match(PostgreSQLParserPRECISION) if p.HasError() { // Recognition error - abort rule @@ -139622,19 +139599,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserDECIMAL_P: p.EnterOuterAlt(localctx, 8) { - p.SetState(9215) + p.SetState(9205) p.Match(PostgreSQLParserDECIMAL_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9217) + p.SetState(9207) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 852, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 850, p.GetParserRuleContext()) == 1 { { - p.SetState(9216) + p.SetState(9206) p.Opt_type_modifiers() } @@ -139645,19 +139622,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserDEC: p.EnterOuterAlt(localctx, 9) { - p.SetState(9219) + p.SetState(9209) p.Match(PostgreSQLParserDEC) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9221) + p.SetState(9211) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 853, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 851, p.GetParserRuleContext()) == 1 { { - p.SetState(9220) + p.SetState(9210) p.Opt_type_modifiers() } @@ -139668,19 +139645,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserNUMERIC: p.EnterOuterAlt(localctx, 10) { - p.SetState(9223) + p.SetState(9213) p.Match(PostgreSQLParserNUMERIC) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9225) + p.SetState(9215) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 854, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 852, p.GetParserRuleContext()) == 1 { { - p.SetState(9224) + p.SetState(9214) p.Opt_type_modifiers() } @@ -139691,7 +139668,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserBOOLEAN_P: p.EnterOuterAlt(localctx, 11) { - p.SetState(9227) + p.SetState(9217) p.Match(PostgreSQLParserBOOLEAN_P) if p.HasError() { // Recognition error - abort rule @@ -139821,10 +139798,10 @@ func (s *Opt_floatContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Opt_float() (localctx IOpt_floatContext) { localctx = NewOpt_floatContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1138, PostgreSQLParserRULE_opt_float) + p.EnterRule(localctx, 1140, PostgreSQLParserRULE_opt_float) p.EnterOuterAlt(localctx, 1) { - p.SetState(9230) + p.SetState(9220) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139832,11 +139809,11 @@ func (p *PostgreSQLParser) Opt_float() (localctx IOpt_floatContext) { } } { - p.SetState(9231) + p.SetState(9221) p.Iconst() } { - p.SetState(9232) + p.SetState(9222) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139968,25 +139945,25 @@ func (s *BitContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Bit() (localctx IBitContext) { localctx = NewBitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1140, PostgreSQLParserRULE_bit) - p.SetState(9236) + p.EnterRule(localctx, 1142, PostgreSQLParserRULE_bit) + p.SetState(9226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 856, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 854, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9234) + p.SetState(9224) p.Bitwithlength() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9235) + p.SetState(9225) p.Bitwithoutlength() } @@ -140118,25 +140095,25 @@ func (s *ConstbitContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Constbit() (localctx IConstbitContext) { localctx = NewConstbitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1142, PostgreSQLParserRULE_constbit) - p.SetState(9240) + p.EnterRule(localctx, 1144, PostgreSQLParserRULE_constbit) + p.SetState(9230) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 857, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 855, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9238) + p.SetState(9228) p.Bitwithlength() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9239) + p.SetState(9229) p.Bitwithoutlength() } @@ -140283,19 +140260,19 @@ func (s *BitwithlengthContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Bitwithlength() (localctx IBitwithlengthContext) { localctx = NewBitwithlengthContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1144, PostgreSQLParserRULE_bitwithlength) + p.EnterRule(localctx, 1146, PostgreSQLParserRULE_bitwithlength) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9242) + p.SetState(9232) p.Match(PostgreSQLParserBIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9244) + p.SetState(9234) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140304,13 +140281,13 @@ func (p *PostgreSQLParser) Bitwithlength() (localctx IBitwithlengthContext) { if _la == PostgreSQLParserVARYING { { - p.SetState(9243) + p.SetState(9233) p.Opt_varying() } } { - p.SetState(9246) + p.SetState(9236) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140318,11 +140295,11 @@ func (p *PostgreSQLParser) Bitwithlength() (localctx IBitwithlengthContext) { } } { - p.SetState(9247) + p.SetState(9237) p.Expr_list() } { - p.SetState(9248) + p.SetState(9238) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140442,22 +140419,22 @@ func (s *BitwithoutlengthContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Bitwithoutlength() (localctx IBitwithoutlengthContext) { localctx = NewBitwithoutlengthContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1146, PostgreSQLParserRULE_bitwithoutlength) + p.EnterRule(localctx, 1148, PostgreSQLParserRULE_bitwithoutlength) p.EnterOuterAlt(localctx, 1) { - p.SetState(9250) + p.SetState(9240) p.Match(PostgreSQLParserBIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9252) + p.SetState(9242) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 859, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 857, p.GetParserRuleContext()) == 1 { { - p.SetState(9251) + p.SetState(9241) p.Opt_varying() } @@ -140599,18 +140576,18 @@ func (s *CharacterContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Character() (localctx ICharacterContext) { localctx = NewCharacterContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1148, PostgreSQLParserRULE_character) + p.EnterRule(localctx, 1150, PostgreSQLParserRULE_character) p.EnterOuterAlt(localctx, 1) { - p.SetState(9254) + p.SetState(9244) p.Character_c() } - p.SetState(9259) + p.SetState(9249) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 860, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 858, p.GetParserRuleContext()) == 1 { { - p.SetState(9255) + p.SetState(9245) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140618,11 +140595,11 @@ func (p *PostgreSQLParser) Character() (localctx ICharacterContext) { } } { - p.SetState(9256) + p.SetState(9246) p.Iconst() } { - p.SetState(9257) + p.SetState(9247) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140768,15 +140745,15 @@ func (s *ConstcharacterContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Constcharacter() (localctx IConstcharacterContext) { localctx = NewConstcharacterContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1150, PostgreSQLParserRULE_constcharacter) + p.EnterRule(localctx, 1152, PostgreSQLParserRULE_constcharacter) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9261) + p.SetState(9251) p.Character_c() } - p.SetState(9266) + p.SetState(9256) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140785,7 +140762,7 @@ func (p *PostgreSQLParser) Constcharacter() (localctx IConstcharacterContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(9262) + p.SetState(9252) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140793,11 +140770,11 @@ func (p *PostgreSQLParser) Constcharacter() (localctx IConstcharacterContext) { } } { - p.SetState(9263) + p.SetState(9253) p.Iconst() } { - p.SetState(9264) + p.SetState(9254) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140939,10 +140916,10 @@ func (s *Character_cContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { localctx = NewCharacter_cContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1152, PostgreSQLParserRULE_character_c) + p.EnterRule(localctx, 1154, PostgreSQLParserRULE_character_c) var _la int - p.SetState(9278) + p.SetState(9268) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140952,7 +140929,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { case PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserNCHAR: p.EnterOuterAlt(localctx, 1) { - p.SetState(9268) + p.SetState(9258) _la = p.GetTokenStream().LA(1) if !((int64((_la-404)) & ^0x3f) == 0 && ((int64(1)<<(_la-404))&32771) != 0) { @@ -140962,12 +140939,12 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { p.Consume() } } - p.SetState(9270) + p.SetState(9260) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 862, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 860, p.GetParserRuleContext()) == 1 { { - p.SetState(9269) + p.SetState(9259) p.Opt_varying() } @@ -140978,7 +140955,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { case PostgreSQLParserVARCHAR: p.EnterOuterAlt(localctx, 2) { - p.SetState(9272) + p.SetState(9262) p.Match(PostgreSQLParserVARCHAR) if p.HasError() { // Recognition error - abort rule @@ -140989,7 +140966,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { case PostgreSQLParserNATIONAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(9273) + p.SetState(9263) p.Match(PostgreSQLParserNATIONAL) if p.HasError() { // Recognition error - abort rule @@ -140997,7 +140974,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { } } { - p.SetState(9274) + p.SetState(9264) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCHAR_P || _la == PostgreSQLParserCHARACTER) { @@ -141007,12 +140984,12 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { p.Consume() } } - p.SetState(9276) + p.SetState(9266) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 863, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 861, p.GetParserRuleContext()) == 1 { { - p.SetState(9275) + p.SetState(9265) p.Opt_varying() } @@ -141120,10 +141097,10 @@ func (s *Opt_varyingContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_varying() (localctx IOpt_varyingContext) { localctx = NewOpt_varyingContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1154, PostgreSQLParserRULE_opt_varying) + p.EnterRule(localctx, 1156, PostgreSQLParserRULE_opt_varying) p.EnterOuterAlt(localctx, 1) { - p.SetState(9280) + p.SetState(9270) p.Match(PostgreSQLParserVARYING) if p.HasError() { // Recognition error - abort rule @@ -141275,12 +141252,12 @@ func (s *ConstdatetimeContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { localctx = NewConstdatetimeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1156, PostgreSQLParserRULE_constdatetime) + p.EnterRule(localctx, 1158, PostgreSQLParserRULE_constdatetime) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9282) + p.SetState(9272) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTIME || _la == PostgreSQLParserTIMESTAMP) { @@ -141290,12 +141267,12 @@ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { p.Consume() } } - p.SetState(9287) + p.SetState(9277) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 865, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 863, p.GetParserRuleContext()) == 1 { { - p.SetState(9283) + p.SetState(9273) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -141303,11 +141280,11 @@ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { } } { - p.SetState(9284) + p.SetState(9274) p.Iconst() } { - p.SetState(9285) + p.SetState(9275) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -141318,12 +141295,12 @@ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(9290) + p.SetState(9280) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 866, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 864, p.GetParserRuleContext()) == 1 { { - p.SetState(9289) + p.SetState(9279) p.Opt_timezone() } @@ -141426,10 +141403,10 @@ func (s *ConstintervalContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Constinterval() (localctx IConstintervalContext) { localctx = NewConstintervalContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1158, PostgreSQLParserRULE_constinterval) + p.EnterRule(localctx, 1160, PostgreSQLParserRULE_constinterval) p.EnterOuterAlt(localctx, 1) { - p.SetState(9292) + p.SetState(9282) p.Match(PostgreSQLParserINTERVAL) if p.HasError() { // Recognition error - abort rule @@ -141547,8 +141524,8 @@ func (s *Opt_timezoneContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { localctx = NewOpt_timezoneContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1160, PostgreSQLParserRULE_opt_timezone) - p.SetState(9300) + p.EnterRule(localctx, 1162, PostgreSQLParserRULE_opt_timezone) + p.SetState(9290) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -141558,7 +141535,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(9294) + p.SetState(9284) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -141566,7 +141543,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9295) + p.SetState(9285) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -141574,7 +141551,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9296) + p.SetState(9286) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -141585,7 +141562,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(9297) + p.SetState(9287) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -141593,7 +141570,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9298) + p.SetState(9288) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -141601,7 +141578,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9299) + p.SetState(9289) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -141751,18 +141728,18 @@ func (s *Opt_intervalContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { localctx = NewOpt_intervalContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1162, PostgreSQLParserRULE_opt_interval) - p.SetState(9327) + p.EnterRule(localctx, 1164, PostgreSQLParserRULE_opt_interval) + p.SetState(9317) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 870, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 868, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9302) + p.SetState(9292) p.Match(PostgreSQLParserYEAR_P) if p.HasError() { // Recognition error - abort rule @@ -141773,7 +141750,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9303) + p.SetState(9293) p.Match(PostgreSQLParserMONTH_P) if p.HasError() { // Recognition error - abort rule @@ -141784,7 +141761,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9304) + p.SetState(9294) p.Match(PostgreSQLParserDAY_P) if p.HasError() { // Recognition error - abort rule @@ -141795,7 +141772,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9305) + p.SetState(9295) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -141806,7 +141783,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(9306) + p.SetState(9296) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -141817,14 +141794,14 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(9307) + p.SetState(9297) p.Interval_second() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(9308) + p.SetState(9298) p.Match(PostgreSQLParserYEAR_P) if p.HasError() { // Recognition error - abort rule @@ -141832,7 +141809,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9309) + p.SetState(9299) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -141840,7 +141817,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9310) + p.SetState(9300) p.Match(PostgreSQLParserMONTH_P) if p.HasError() { // Recognition error - abort rule @@ -141851,7 +141828,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(9311) + p.SetState(9301) p.Match(PostgreSQLParserDAY_P) if p.HasError() { // Recognition error - abort rule @@ -141859,14 +141836,14 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9312) + p.SetState(9302) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9316) + p.SetState(9306) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -141875,7 +141852,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserHOUR_P: { - p.SetState(9313) + p.SetState(9303) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -141885,7 +141862,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case PostgreSQLParserMINUTE_P: { - p.SetState(9314) + p.SetState(9304) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -141895,7 +141872,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case PostgreSQLParserSECOND_P: { - p.SetState(9315) + p.SetState(9305) p.Interval_second() } @@ -141907,7 +141884,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(9318) + p.SetState(9308) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -141915,14 +141892,14 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9319) + p.SetState(9309) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9322) + p.SetState(9312) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -141931,7 +141908,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserMINUTE_P: { - p.SetState(9320) + p.SetState(9310) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -141941,7 +141918,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case PostgreSQLParserSECOND_P: { - p.SetState(9321) + p.SetState(9311) p.Interval_second() } @@ -141953,7 +141930,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(9324) + p.SetState(9314) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -141961,7 +141938,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9325) + p.SetState(9315) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -141969,7 +141946,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9326) + p.SetState(9316) p.Interval_second() } @@ -142099,22 +142076,22 @@ func (s *Interval_secondContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Interval_second() (localctx IInterval_secondContext) { localctx = NewInterval_secondContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1164, PostgreSQLParserRULE_interval_second) + p.EnterRule(localctx, 1166, PostgreSQLParserRULE_interval_second) p.EnterOuterAlt(localctx, 1) { - p.SetState(9329) + p.SetState(9319) p.Match(PostgreSQLParserSECOND_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9334) + p.SetState(9324) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 871, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 869, p.GetParserRuleContext()) == 1 { { - p.SetState(9330) + p.SetState(9320) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -142122,11 +142099,11 @@ func (p *PostgreSQLParser) Interval_second() (localctx IInterval_secondContext) } } { - p.SetState(9331) + p.SetState(9321) p.Iconst() } { - p.SetState(9332) + p.SetState(9322) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -142250,10 +142227,10 @@ func (s *Opt_escapeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Opt_escape() (localctx IOpt_escapeContext) { localctx = NewOpt_escapeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1166, PostgreSQLParserRULE_opt_escape) + p.EnterRule(localctx, 1168, PostgreSQLParserRULE_opt_escape) p.EnterOuterAlt(localctx, 1) { - p.SetState(9336) + p.SetState(9326) p.Match(PostgreSQLParserESCAPE) if p.HasError() { // Recognition error - abort rule @@ -142261,7 +142238,7 @@ func (p *PostgreSQLParser) Opt_escape() (localctx IOpt_escapeContext) { } } { - p.SetState(9337) + p.SetState(9327) p.A_expr() } @@ -142372,10 +142349,10 @@ func (s *A_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) A_expr() (localctx IA_exprContext) { localctx = NewA_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1168, PostgreSQLParserRULE_a_expr) + p.EnterRule(localctx, 1170, PostgreSQLParserRULE_a_expr) p.EnterOuterAlt(localctx, 1) { - p.SetState(9339) + p.SetState(9329) p.A_expr_qual() } @@ -142503,18 +142480,18 @@ func (s *A_expr_qualContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) A_expr_qual() (localctx IA_expr_qualContext) { localctx = NewA_expr_qualContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1170, PostgreSQLParserRULE_a_expr_qual) + p.EnterRule(localctx, 1172, PostgreSQLParserRULE_a_expr_qual) p.EnterOuterAlt(localctx, 1) { - p.SetState(9341) + p.SetState(9331) p.A_expr_lessless() } - p.SetState(9343) + p.SetState(9333) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 872, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 870, p.GetParserRuleContext()) == 1 { { - p.SetState(9342) + p.SetState(9332) p.Qual_op() } @@ -142675,29 +142652,29 @@ func (s *A_expr_lesslessContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) A_expr_lessless() (localctx IA_expr_lesslessContext) { localctx = NewA_expr_lesslessContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1172, PostgreSQLParserRULE_a_expr_lessless) + p.EnterRule(localctx, 1174, PostgreSQLParserRULE_a_expr_lessless) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9345) + p.SetState(9335) p.A_expr_or() } - p.SetState(9350) + p.SetState(9340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 873, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 871, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9346) + p.SetState(9336) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserLESS_LESS || _la == PostgreSQLParserGREATER_GREATER) { @@ -142708,17 +142685,17 @@ func (p *PostgreSQLParser) A_expr_lessless() (localctx IA_expr_lesslessContext) } } { - p.SetState(9347) + p.SetState(9337) p.A_expr_or() } } - p.SetState(9352) + p.SetState(9342) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 873, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 871, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -142867,27 +142844,27 @@ func (s *A_expr_orContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) A_expr_or() (localctx IA_expr_orContext) { localctx = NewA_expr_orContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1174, PostgreSQLParserRULE_a_expr_or) + p.EnterRule(localctx, 1176, PostgreSQLParserRULE_a_expr_or) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9353) + p.SetState(9343) p.A_expr_and() } - p.SetState(9358) + p.SetState(9348) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 874, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 872, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9354) + p.SetState(9344) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -142895,17 +142872,17 @@ func (p *PostgreSQLParser) A_expr_or() (localctx IA_expr_orContext) { } } { - p.SetState(9355) + p.SetState(9345) p.A_expr_and() } } - p.SetState(9360) + p.SetState(9350) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 874, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 872, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -143054,27 +143031,27 @@ func (s *A_expr_andContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) A_expr_and() (localctx IA_expr_andContext) { localctx = NewA_expr_andContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1176, PostgreSQLParserRULE_a_expr_and) + p.EnterRule(localctx, 1178, PostgreSQLParserRULE_a_expr_and) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9361) + p.SetState(9351) p.A_expr_between() } - p.SetState(9366) + p.SetState(9356) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 875, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 873, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9362) + p.SetState(9352) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -143082,17 +143059,17 @@ func (p *PostgreSQLParser) A_expr_and() (localctx IA_expr_andContext) { } } { - p.SetState(9363) + p.SetState(9353) p.A_expr_between() } } - p.SetState(9368) + p.SetState(9358) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 875, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 873, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -143251,19 +143228,19 @@ func (s *A_expr_betweenContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { localctx = NewA_expr_betweenContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1178, PostgreSQLParserRULE_a_expr_between) + p.EnterRule(localctx, 1180, PostgreSQLParserRULE_a_expr_between) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9369) + p.SetState(9359) p.A_expr_in() } - p.SetState(9381) + p.SetState(9371) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 878, p.GetParserRuleContext()) == 1 { - p.SetState(9371) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 876, p.GetParserRuleContext()) == 1 { + p.SetState(9361) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143272,7 +143249,7 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9370) + p.SetState(9360) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -143282,14 +143259,14 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { } { - p.SetState(9373) + p.SetState(9363) p.Match(PostgreSQLParserBETWEEN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9375) + p.SetState(9365) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143298,7 +143275,7 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { if _la == PostgreSQLParserSYMMETRIC { { - p.SetState(9374) + p.SetState(9364) p.Match(PostgreSQLParserSYMMETRIC) if p.HasError() { // Recognition error - abort rule @@ -143308,11 +143285,11 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { } { - p.SetState(9377) + p.SetState(9367) p.A_expr_in() } { - p.SetState(9378) + p.SetState(9368) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -143320,7 +143297,7 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { } } { - p.SetState(9379) + p.SetState(9369) p.A_expr_in() } @@ -143462,19 +143439,19 @@ func (s *A_expr_inContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { localctx = NewA_expr_inContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1180, PostgreSQLParserRULE_a_expr_in) + p.EnterRule(localctx, 1182, PostgreSQLParserRULE_a_expr_in) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9383) + p.SetState(9373) p.A_expr_unary_not() } - p.SetState(9389) + p.SetState(9379) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 880, p.GetParserRuleContext()) == 1 { - p.SetState(9385) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 878, p.GetParserRuleContext()) == 1 { + p.SetState(9375) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143483,7 +143460,7 @@ func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9384) + p.SetState(9374) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -143493,7 +143470,7 @@ func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { } { - p.SetState(9387) + p.SetState(9377) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -143501,7 +143478,7 @@ func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { } } { - p.SetState(9388) + p.SetState(9378) p.In_expr() } @@ -143621,11 +143598,11 @@ func (s *A_expr_unary_notContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) A_expr_unary_not() (localctx IA_expr_unary_notContext) { localctx = NewA_expr_unary_notContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1182, PostgreSQLParserRULE_a_expr_unary_not) + p.EnterRule(localctx, 1184, PostgreSQLParserRULE_a_expr_unary_not) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(9392) + p.SetState(9382) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143634,7 +143611,7 @@ func (p *PostgreSQLParser) A_expr_unary_not() (localctx IA_expr_unary_notContext if _la == PostgreSQLParserNOT { { - p.SetState(9391) + p.SetState(9381) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -143644,7 +143621,7 @@ func (p *PostgreSQLParser) A_expr_unary_not() (localctx IA_expr_unary_notContext } { - p.SetState(9394) + p.SetState(9384) p.A_expr_isnull() } @@ -143765,20 +143742,20 @@ func (s *A_expr_isnullContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) A_expr_isnull() (localctx IA_expr_isnullContext) { localctx = NewA_expr_isnullContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1184, PostgreSQLParserRULE_a_expr_isnull) + p.EnterRule(localctx, 1186, PostgreSQLParserRULE_a_expr_isnull) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9396) + p.SetState(9386) p.A_expr_is_not() } - p.SetState(9398) + p.SetState(9388) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 882, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 880, p.GetParserRuleContext()) == 1 { { - p.SetState(9397) + p.SetState(9387) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserISNULL || _la == PostgreSQLParserNOTNULL) { @@ -144016,27 +143993,27 @@ func (s *A_expr_is_notContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { localctx = NewA_expr_is_notContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1186, PostgreSQLParserRULE_a_expr_is_not) + p.EnterRule(localctx, 1188, PostgreSQLParserRULE_a_expr_is_not) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9400) + p.SetState(9390) p.A_expr_compare() } - p.SetState(9424) + p.SetState(9414) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 886, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 884, p.GetParserRuleContext()) == 1 { { - p.SetState(9401) + p.SetState(9391) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9403) + p.SetState(9393) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144045,7 +144022,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9402) + p.SetState(9392) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -144054,7 +144031,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } - p.SetState(9422) + p.SetState(9412) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144063,7 +144040,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserNULL_P: { - p.SetState(9405) + p.SetState(9395) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -144073,7 +144050,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserTRUE_P: { - p.SetState(9406) + p.SetState(9396) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -144083,7 +144060,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserFALSE_P: { - p.SetState(9407) + p.SetState(9397) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -144093,7 +144070,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserUNKNOWN: { - p.SetState(9408) + p.SetState(9398) p.Match(PostgreSQLParserUNKNOWN) if p.HasError() { // Recognition error - abort rule @@ -144103,7 +144080,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserDISTINCT: { - p.SetState(9409) + p.SetState(9399) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -144111,7 +144088,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9410) + p.SetState(9400) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -144119,13 +144096,13 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9411) + p.SetState(9401) p.A_expr() } case PostgreSQLParserOF: { - p.SetState(9412) + p.SetState(9402) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -144133,7 +144110,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9413) + p.SetState(9403) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144141,11 +144118,11 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9414) + p.SetState(9404) p.Type_list() } { - p.SetState(9415) + p.SetState(9405) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144155,7 +144132,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserDOCUMENT_P: { - p.SetState(9417) + p.SetState(9407) p.Match(PostgreSQLParserDOCUMENT_P) if p.HasError() { // Recognition error - abort rule @@ -144164,7 +144141,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } case PostgreSQLParserNORMALIZED, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD: - p.SetState(9419) + p.SetState(9409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144173,13 +144150,13 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { if (int64((_la-504)) & ^0x3f) == 0 && ((int64(1)<<(_la-504))&15) != 0 { { - p.SetState(9418) + p.SetState(9408) p.Unicode_normal_form() } } { - p.SetState(9421) + p.SetState(9411) p.Match(PostgreSQLParserNORMALIZED) if p.HasError() { // Recognition error - abort rule @@ -144437,20 +144414,20 @@ func (s *A_expr_compareContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { localctx = NewA_expr_compareContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1188, PostgreSQLParserRULE_a_expr_compare) + p.EnterRule(localctx, 1190, PostgreSQLParserRULE_a_expr_compare) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9426) + p.SetState(9416) p.A_expr_like() } - p.SetState(9438) + p.SetState(9428) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 888, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 886, p.GetParserRuleContext()) == 1 { { - p.SetState(9427) + p.SetState(9417) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&44237824) != 0) { @@ -144461,37 +144438,37 @@ func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { } } { - p.SetState(9428) + p.SetState(9418) p.A_expr_like() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 888, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 886, p.GetParserRuleContext()) == 2 { { - p.SetState(9429) + p.SetState(9419) p.Subquery_Op() } { - p.SetState(9430) + p.SetState(9420) p.Sub_type() } - p.SetState(9436) + p.SetState(9426) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 887, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 885, p.GetParserRuleContext()) { case 1: { - p.SetState(9431) + p.SetState(9421) p.Select_with_parens() } case 2: { - p.SetState(9432) + p.SetState(9422) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144499,11 +144476,11 @@ func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { } } { - p.SetState(9433) + p.SetState(9423) p.A_expr() } { - p.SetState(9434) + p.SetState(9424) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144694,19 +144671,19 @@ func (s *A_expr_likeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { localctx = NewA_expr_likeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1190, PostgreSQLParserRULE_a_expr_like) + p.EnterRule(localctx, 1192, PostgreSQLParserRULE_a_expr_like) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9440) + p.SetState(9430) p.A_expr_qual_op() } - p.SetState(9454) + p.SetState(9444) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 892, p.GetParserRuleContext()) == 1 { - p.SetState(9442) + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 890, p.GetParserRuleContext()) == 1 { + p.SetState(9432) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144715,7 +144692,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9441) + p.SetState(9431) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -144724,7 +144701,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { } } - p.SetState(9448) + p.SetState(9438) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144733,7 +144710,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserLIKE: { - p.SetState(9444) + p.SetState(9434) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -144743,7 +144720,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { case PostgreSQLParserILIKE: { - p.SetState(9445) + p.SetState(9435) p.Match(PostgreSQLParserILIKE) if p.HasError() { // Recognition error - abort rule @@ -144753,7 +144730,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { case PostgreSQLParserSIMILAR: { - p.SetState(9446) + p.SetState(9436) p.Match(PostgreSQLParserSIMILAR) if p.HasError() { // Recognition error - abort rule @@ -144761,7 +144738,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { } } { - p.SetState(9447) + p.SetState(9437) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -144774,15 +144751,15 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { goto errorExit } { - p.SetState(9450) + p.SetState(9440) p.A_expr_qual_op() } - p.SetState(9452) + p.SetState(9442) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 891, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 889, p.GetParserRuleContext()) == 1 { { - p.SetState(9451) + p.SetState(9441) p.Opt_escape() } @@ -144970,41 +144947,41 @@ func (s *A_expr_qual_opContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) A_expr_qual_op() (localctx IA_expr_qual_opContext) { localctx = NewA_expr_qual_opContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1192, PostgreSQLParserRULE_a_expr_qual_op) + p.EnterRule(localctx, 1194, PostgreSQLParserRULE_a_expr_qual_op) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9456) + p.SetState(9446) p.A_expr_unary_qualop() } - p.SetState(9462) + p.SetState(9452) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 893, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 891, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9457) + p.SetState(9447) p.Qual_op() } { - p.SetState(9458) + p.SetState(9448) p.A_expr_unary_qualop() } } - p.SetState(9464) + p.SetState(9454) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 893, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 891, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -145134,14 +145111,14 @@ func (s *A_expr_unary_qualopContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) A_expr_unary_qualop() (localctx IA_expr_unary_qualopContext) { localctx = NewA_expr_unary_qualopContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1194, PostgreSQLParserRULE_a_expr_unary_qualop) + p.EnterRule(localctx, 1196, PostgreSQLParserRULE_a_expr_unary_qualop) p.EnterOuterAlt(localctx, 1) - p.SetState(9466) + p.SetState(9456) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 894, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 892, p.GetParserRuleContext()) == 1 { { - p.SetState(9465) + p.SetState(9455) p.Qual_op() } @@ -145149,7 +145126,7 @@ func (p *PostgreSQLParser) A_expr_unary_qualop() (localctx IA_expr_unary_qualopC goto errorExit } { - p.SetState(9468) + p.SetState(9458) p.A_expr_add() } @@ -145306,29 +145283,29 @@ func (s *A_expr_addContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) A_expr_add() (localctx IA_expr_addContext) { localctx = NewA_expr_addContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1196, PostgreSQLParserRULE_a_expr_add) + p.EnterRule(localctx, 1198, PostgreSQLParserRULE_a_expr_add) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9470) + p.SetState(9460) p.A_expr_mul() } - p.SetState(9475) + p.SetState(9465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 895, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 893, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9471) + p.SetState(9461) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -145339,17 +145316,17 @@ func (p *PostgreSQLParser) A_expr_add() (localctx IA_expr_addContext) { } } { - p.SetState(9472) + p.SetState(9462) p.A_expr_mul() } } - p.SetState(9477) + p.SetState(9467) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 895, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 893, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -145518,29 +145495,29 @@ func (s *A_expr_mulContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) A_expr_mul() (localctx IA_expr_mulContext) { localctx = NewA_expr_mulContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1198, PostgreSQLParserRULE_a_expr_mul) + p.EnterRule(localctx, 1200, PostgreSQLParserRULE_a_expr_mul) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9478) + p.SetState(9468) p.A_expr_caret() } - p.SetState(9483) + p.SetState(9473) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 896, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 894, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9479) + p.SetState(9469) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&134234624) != 0) { @@ -145551,17 +145528,17 @@ func (p *PostgreSQLParser) A_expr_mul() (localctx IA_expr_mulContext) { } } { - p.SetState(9480) + p.SetState(9470) p.A_expr_caret() } } - p.SetState(9485) + p.SetState(9475) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 896, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 894, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -145696,18 +145673,18 @@ func (s *A_expr_caretContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) A_expr_caret() (localctx IA_expr_caretContext) { localctx = NewA_expr_caretContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1200, PostgreSQLParserRULE_a_expr_caret) + p.EnterRule(localctx, 1202, PostgreSQLParserRULE_a_expr_caret) p.EnterOuterAlt(localctx, 1) { - p.SetState(9486) + p.SetState(9476) p.A_expr_unary_sign() } - p.SetState(9489) + p.SetState(9479) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 897, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 895, p.GetParserRuleContext()) == 1 { { - p.SetState(9487) + p.SetState(9477) p.Match(PostgreSQLParserCARET) if p.HasError() { // Recognition error - abort rule @@ -145715,7 +145692,7 @@ func (p *PostgreSQLParser) A_expr_caret() (localctx IA_expr_caretContext) { } } { - p.SetState(9488) + p.SetState(9478) p.A_expr() } @@ -145840,11 +145817,11 @@ func (s *A_expr_unary_signContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) A_expr_unary_sign() (localctx IA_expr_unary_signContext) { localctx = NewA_expr_unary_signContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1202, PostgreSQLParserRULE_a_expr_unary_sign) + p.EnterRule(localctx, 1204, PostgreSQLParserRULE_a_expr_unary_sign) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(9492) + p.SetState(9482) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145853,7 +145830,7 @@ func (p *PostgreSQLParser) A_expr_unary_sign() (localctx IA_expr_unary_signConte if _la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS { { - p.SetState(9491) + p.SetState(9481) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -145866,7 +145843,7 @@ func (p *PostgreSQLParser) A_expr_unary_sign() (localctx IA_expr_unary_signConte } { - p.SetState(9494) + p.SetState(9484) p.A_expr_at_time_zone() } @@ -146009,18 +145986,18 @@ func (s *A_expr_at_time_zoneContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneContext) { localctx = NewA_expr_at_time_zoneContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1204, PostgreSQLParserRULE_a_expr_at_time_zone) + p.EnterRule(localctx, 1206, PostgreSQLParserRULE_a_expr_at_time_zone) p.EnterOuterAlt(localctx, 1) { - p.SetState(9496) + p.SetState(9486) p.A_expr_collate() } - p.SetState(9501) + p.SetState(9491) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 899, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 897, p.GetParserRuleContext()) == 1 { { - p.SetState(9497) + p.SetState(9487) p.Match(PostgreSQLParserAT) if p.HasError() { // Recognition error - abort rule @@ -146028,7 +146005,7 @@ func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneC } } { - p.SetState(9498) + p.SetState(9488) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -146036,7 +146013,7 @@ func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneC } } { - p.SetState(9499) + p.SetState(9489) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -146044,7 +146021,7 @@ func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneC } } { - p.SetState(9500) + p.SetState(9490) p.A_expr() } @@ -146181,18 +146158,18 @@ func (s *A_expr_collateContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) A_expr_collate() (localctx IA_expr_collateContext) { localctx = NewA_expr_collateContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1206, PostgreSQLParserRULE_a_expr_collate) + p.EnterRule(localctx, 1208, PostgreSQLParserRULE_a_expr_collate) p.EnterOuterAlt(localctx, 1) { - p.SetState(9503) + p.SetState(9493) p.A_expr_typecast() } - p.SetState(9506) + p.SetState(9496) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 900, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 898, p.GetParserRuleContext()) == 1 { { - p.SetState(9504) + p.SetState(9494) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -146200,7 +146177,7 @@ func (p *PostgreSQLParser) A_expr_collate() (localctx IA_expr_collateContext) { } } { - p.SetState(9505) + p.SetState(9495) p.Any_name() } @@ -146368,15 +146345,15 @@ func (s *A_expr_typecastContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) A_expr_typecast() (localctx IA_expr_typecastContext) { localctx = NewA_expr_typecastContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1208, PostgreSQLParserRULE_a_expr_typecast) + p.EnterRule(localctx, 1210, PostgreSQLParserRULE_a_expr_typecast) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9508) + p.SetState(9498) p.C_expr() } - p.SetState(9513) + p.SetState(9503) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146385,7 +146362,7 @@ func (p *PostgreSQLParser) A_expr_typecast() (localctx IA_expr_typecastContext) for _la == PostgreSQLParserTYPECAST { { - p.SetState(9509) + p.SetState(9499) p.Match(PostgreSQLParserTYPECAST) if p.HasError() { // Recognition error - abort rule @@ -146393,11 +146370,11 @@ func (p *PostgreSQLParser) A_expr_typecast() (localctx IA_expr_typecastContext) } } { - p.SetState(9510) + p.SetState(9500) p.Typename() } - p.SetState(9515) + p.SetState(9505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146720,29 +146697,29 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { localctx = NewB_exprContext(p, p.GetParserRuleContext(), _parentState) var _prevctx IB_exprContext = localctx var _ antlr.ParserRuleContext = _prevctx // TODO: To prevent unused variable warning. - _startState := 1210 - p.EnterRecursionRule(localctx, 1210, PostgreSQLParserRULE_b_expr, _p) + _startState := 1212 + p.EnterRecursionRule(localctx, 1212, PostgreSQLParserRULE_b_expr, _p) var _la int var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(9523) + p.SetState(9513) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 902, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 900, p.GetParserRuleContext()) { case 1: { - p.SetState(9517) + p.SetState(9507) p.C_expr() } case 2: { - p.SetState(9518) + p.SetState(9508) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -146753,17 +146730,17 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9519) + p.SetState(9509) p.b_expr(9) } case 3: { - p.SetState(9520) + p.SetState(9510) p.Qual_op() } { - p.SetState(9521) + p.SetState(9511) p.b_expr(3) } @@ -146771,12 +146748,12 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { goto errorExit } p.GetParserRuleContext().SetStop(p.GetTokenStream().LT(-1)) - p.SetState(9564) + p.SetState(9554) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 906, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 904, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -146786,24 +146763,24 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { p.TriggerExitRuleEvent() } _prevctx = localctx - p.SetState(9562) + p.SetState(9552) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 905, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 903, p.GetParserRuleContext()) { case 1: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9525) + p.SetState(9515) if !(p.Precpred(p.GetParserRuleContext(), 8)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 8)", "")) goto errorExit } { - p.SetState(9526) + p.SetState(9516) p.Match(PostgreSQLParserCARET) if p.HasError() { // Recognition error - abort rule @@ -146811,21 +146788,21 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9527) + p.SetState(9517) p.b_expr(9) } case 2: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9528) + p.SetState(9518) if !(p.Precpred(p.GetParserRuleContext(), 7)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 7)", "")) goto errorExit } { - p.SetState(9529) + p.SetState(9519) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&134234624) != 0) { @@ -146836,21 +146813,21 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9530) + p.SetState(9520) p.b_expr(8) } case 3: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9531) + p.SetState(9521) if !(p.Precpred(p.GetParserRuleContext(), 6)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 6)", "")) goto errorExit } { - p.SetState(9532) + p.SetState(9522) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -146861,39 +146838,39 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9533) + p.SetState(9523) p.b_expr(7) } case 4: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9534) + p.SetState(9524) if !(p.Precpred(p.GetParserRuleContext(), 5)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 5)", "")) goto errorExit } { - p.SetState(9535) + p.SetState(9525) p.Qual_op() } { - p.SetState(9536) + p.SetState(9526) p.b_expr(6) } case 5: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9538) + p.SetState(9528) if !(p.Precpred(p.GetParserRuleContext(), 4)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 4)", "")) goto errorExit } { - p.SetState(9539) + p.SetState(9529) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&44237824) != 0) { @@ -146904,21 +146881,21 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9540) + p.SetState(9530) p.b_expr(5) } case 6: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9541) + p.SetState(9531) if !(p.Precpred(p.GetParserRuleContext(), 10)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 10)", "")) goto errorExit } { - p.SetState(9542) + p.SetState(9532) p.Match(PostgreSQLParserTYPECAST) if p.HasError() { // Recognition error - abort rule @@ -146926,42 +146903,42 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9543) + p.SetState(9533) p.Typename() } case 7: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9544) + p.SetState(9534) if !(p.Precpred(p.GetParserRuleContext(), 2)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 2)", "")) goto errorExit } { - p.SetState(9545) + p.SetState(9535) p.Qual_op() } case 8: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9546) + p.SetState(9536) if !(p.Precpred(p.GetParserRuleContext(), 1)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 1)", "")) goto errorExit } { - p.SetState(9547) + p.SetState(9537) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9549) + p.SetState(9539) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146970,7 +146947,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9548) + p.SetState(9538) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -146979,7 +146956,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } - p.SetState(9560) + p.SetState(9550) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146988,7 +146965,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserDISTINCT: { - p.SetState(9551) + p.SetState(9541) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -146996,7 +146973,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9552) + p.SetState(9542) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -147004,13 +146981,13 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9553) + p.SetState(9543) p.b_expr(0) } case PostgreSQLParserOF: { - p.SetState(9554) + p.SetState(9544) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -147018,7 +146995,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9555) + p.SetState(9545) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147026,11 +147003,11 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9556) + p.SetState(9546) p.Type_list() } { - p.SetState(9557) + p.SetState(9547) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147040,7 +147017,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { case PostgreSQLParserDOCUMENT_P: { - p.SetState(9559) + p.SetState(9549) p.Match(PostgreSQLParserDOCUMENT_P) if p.HasError() { // Recognition error - abort rule @@ -147058,12 +147035,12 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } - p.SetState(9566) + p.SetState(9556) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 906, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 904, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -147560,19 +147537,19 @@ func (s *C_expr_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1212, PostgreSQLParserRULE_c_expr) - p.SetState(9603) + p.EnterRule(localctx, 1214, PostgreSQLParserRULE_c_expr) + p.SetState(9593) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 909, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 907, p.GetParserRuleContext()) { case 1: localctx = NewC_expr_existsContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(9567) + p.SetState(9557) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -147580,7 +147557,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9568) + p.SetState(9558) p.Select_with_parens() } @@ -147588,14 +147565,14 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(9569) + p.SetState(9559) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9572) + p.SetState(9562) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -147604,13 +147581,13 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(9570) + p.SetState(9560) p.Select_with_parens() } case PostgreSQLParserOPEN_BRACKET: { - p.SetState(9571) + p.SetState(9561) p.Array_expr() } @@ -147623,7 +147600,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 3) { - p.SetState(9574) + p.SetState(9564) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -147631,7 +147608,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9575) + p.SetState(9565) p.Opt_indirection() } @@ -147639,7 +147616,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 4) { - p.SetState(9576) + p.SetState(9566) p.Match(PostgreSQLParserGROUPING) if p.HasError() { // Recognition error - abort rule @@ -147647,7 +147624,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9577) + p.SetState(9567) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147655,11 +147632,11 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9578) + p.SetState(9568) p.Expr_list() } { - p.SetState(9579) + p.SetState(9569) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147671,7 +147648,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 5) { - p.SetState(9581) + p.SetState(9571) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule @@ -147679,7 +147656,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9582) + p.SetState(9572) p.Select_with_parens() } @@ -147687,7 +147664,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 6) { - p.SetState(9583) + p.SetState(9573) p.Columnref() } @@ -147695,7 +147672,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 7) { - p.SetState(9584) + p.SetState(9574) p.Aexprconst() } @@ -147703,7 +147680,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 8) { - p.SetState(9585) + p.SetState(9575) p.Plsqlvariablename() } @@ -147711,7 +147688,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 9) { - p.SetState(9586) + p.SetState(9576) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147719,14 +147696,14 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9587) + p.SetState(9577) var _x = p.A_expr() localctx.(*C_expr_exprContext).a_expr_in_parens = _x } { - p.SetState(9588) + p.SetState(9578) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147734,7 +147711,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9589) + p.SetState(9579) p.Opt_indirection() } @@ -147742,7 +147719,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_caseContext(p, localctx) p.EnterOuterAlt(localctx, 10) { - p.SetState(9591) + p.SetState(9581) p.Case_expr() } @@ -147750,7 +147727,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 11) { - p.SetState(9592) + p.SetState(9582) p.Func_expr() } @@ -147758,15 +147735,15 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 12) { - p.SetState(9593) + p.SetState(9583) p.Select_with_parens() } - p.SetState(9595) + p.SetState(9585) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 908, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 906, p.GetParserRuleContext()) == 1 { { - p.SetState(9594) + p.SetState(9584) p.Indirection() } @@ -147778,7 +147755,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 13) { - p.SetState(9597) + p.SetState(9587) p.Explicit_row() } @@ -147786,7 +147763,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 14) { - p.SetState(9598) + p.SetState(9588) p.Implicit_row() } @@ -147794,11 +147771,11 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 15) { - p.SetState(9599) + p.SetState(9589) p.Row() } { - p.SetState(9600) + p.SetState(9590) p.Match(PostgreSQLParserOVERLAPS) if p.HasError() { // Recognition error - abort rule @@ -147806,7 +147783,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9601) + p.SetState(9591) p.Row() } @@ -147909,10 +147886,10 @@ func (s *PlsqlvariablenameContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Plsqlvariablename() (localctx IPlsqlvariablenameContext) { localctx = NewPlsqlvariablenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1214, PostgreSQLParserRULE_plsqlvariablename) + p.EnterRule(localctx, 1216, PostgreSQLParserRULE_plsqlvariablename) p.EnterOuterAlt(localctx, 1) { - p.SetState(9605) + p.SetState(9595) p.Match(PostgreSQLParserPLSQLVARIABLENAME) if p.HasError() { // Recognition error - abort rule @@ -148113,23 +148090,23 @@ func (s *Func_applicationContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext) { localctx = NewFunc_applicationContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1216, PostgreSQLParserRULE_func_application) + p.EnterRule(localctx, 1218, PostgreSQLParserRULE_func_application) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9607) + p.SetState(9597) p.Func_name() } { - p.SetState(9608) + p.SetState(9598) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9630) + p.SetState(9620) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148138,10 +148115,10 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN, PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserPARAM, PostgreSQLParserOperator, PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserJSON_SCALAR, PostgreSQLParserJSON_SERIALIZE, PostgreSQLParserMERGE_ACTION, PostgreSQLParserJSON_QUERY, PostgreSQLParserJSON_EXISTS, PostgreSQLParserJSON_VALUE, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserRIGHT, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserBinaryStringConstant, PostgreSQLParserHexadecimalStringConstant, PostgreSQLParserIntegral, PostgreSQLParserNumeric, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: { - p.SetState(9609) + p.SetState(9599) p.Func_arg_list() } - p.SetState(9613) + p.SetState(9603) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148150,7 +148127,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserCOMMA { { - p.SetState(9610) + p.SetState(9600) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -148158,7 +148135,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9611) + p.SetState(9601) p.Match(PostgreSQLParserVARIADIC) if p.HasError() { // Recognition error - abort rule @@ -148166,12 +148143,12 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9612) + p.SetState(9602) p.Func_arg_expr() } } - p.SetState(9616) + p.SetState(9606) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148180,7 +148157,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserORDER { { - p.SetState(9615) + p.SetState(9605) p.Opt_sort_clause() } @@ -148188,7 +148165,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext case PostgreSQLParserVARIADIC: { - p.SetState(9618) + p.SetState(9608) p.Match(PostgreSQLParserVARIADIC) if p.HasError() { // Recognition error - abort rule @@ -148196,10 +148173,10 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9619) + p.SetState(9609) p.Func_arg_expr() } - p.SetState(9621) + p.SetState(9611) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148208,7 +148185,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserORDER { { - p.SetState(9620) + p.SetState(9610) p.Opt_sort_clause() } @@ -148216,7 +148193,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext case PostgreSQLParserALL, PostgreSQLParserDISTINCT: { - p.SetState(9623) + p.SetState(9613) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT) { @@ -148227,10 +148204,10 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9624) + p.SetState(9614) p.Func_arg_list() } - p.SetState(9626) + p.SetState(9616) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148239,7 +148216,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserORDER { { - p.SetState(9625) + p.SetState(9615) p.Opt_sort_clause() } @@ -148247,7 +148224,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext case PostgreSQLParserSTAR: { - p.SetState(9628) + p.SetState(9618) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -148262,7 +148239,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext goto errorExit } { - p.SetState(9632) + p.SetState(9622) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -148462,50 +148439,50 @@ func (s *Func_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Func_expr() (localctx IFunc_exprContext) { localctx = NewFunc_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1218, PostgreSQLParserRULE_func_expr) - p.SetState(9652) + p.EnterRule(localctx, 1220, PostgreSQLParserRULE_func_expr) + p.SetState(9642) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 920, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 918, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9634) + p.SetState(9624) p.Func_application() } - p.SetState(9636) + p.SetState(9626) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 915, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 913, p.GetParserRuleContext()) == 1 { { - p.SetState(9635) + p.SetState(9625) p.Within_group_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9639) + p.SetState(9629) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 916, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 914, p.GetParserRuleContext()) == 1 { { - p.SetState(9638) + p.SetState(9628) p.Filter_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9642) + p.SetState(9632) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 917, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 915, p.GetParserRuleContext()) == 1 { { - p.SetState(9641) + p.SetState(9631) p.Over_clause() } @@ -148516,27 +148493,27 @@ func (p *PostgreSQLParser) Func_expr() (localctx IFunc_exprContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9644) + p.SetState(9634) p.Json_aggregate_func() } - p.SetState(9646) + p.SetState(9636) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 918, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 916, p.GetParserRuleContext()) == 1 { { - p.SetState(9645) + p.SetState(9635) p.Filter_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9649) + p.SetState(9639) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 919, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 917, p.GetParserRuleContext()) == 1 { { - p.SetState(9648) + p.SetState(9638) p.Over_clause() } @@ -148547,7 +148524,7 @@ func (p *PostgreSQLParser) Func_expr() (localctx IFunc_exprContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9651) + p.SetState(9641) p.Func_expr_common_subexpr() } @@ -148696,32 +148673,32 @@ func (s *Func_expr_windowlessContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Func_expr_windowless() (localctx IFunc_expr_windowlessContext) { localctx = NewFunc_expr_windowlessContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1220, PostgreSQLParserRULE_func_expr_windowless) - p.SetState(9657) + p.EnterRule(localctx, 1222, PostgreSQLParserRULE_func_expr_windowless) + p.SetState(9647) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 921, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 919, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9654) + p.SetState(9644) p.Func_application() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9655) + p.SetState(9645) p.Func_expr_common_subexpr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9656) + p.SetState(9646) p.Json_aggregate_func() } @@ -148958,10 +148935,10 @@ func (s *Json_aggregate_funcContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcContext) { localctx = NewJson_aggregate_funcContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1222, PostgreSQLParserRULE_json_aggregate_func) + p.EnterRule(localctx, 1224, PostgreSQLParserRULE_json_aggregate_func) var _la int - p.SetState(9687) + p.SetState(9677) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148971,7 +148948,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC case PostgreSQLParserJSON_OBJECTAGG: p.EnterOuterAlt(localctx, 1) { - p.SetState(9659) + p.SetState(9649) p.Match(PostgreSQLParserJSON_OBJECTAGG) if p.HasError() { // Recognition error - abort rule @@ -148979,7 +148956,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9660) + p.SetState(9650) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -148987,10 +148964,10 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9661) + p.SetState(9651) p.Json_name_and_value() } - p.SetState(9663) + p.SetState(9653) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148999,12 +148976,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9662) + p.SetState(9652) p.Json_object_constructor_null_clause() } } - p.SetState(9666) + p.SetState(9656) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149013,12 +148990,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(9665) + p.SetState(9655) p.Json_key_uniqueness_constraint() } } - p.SetState(9669) + p.SetState(9659) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149027,13 +149004,13 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserRETURNING { { - p.SetState(9668) + p.SetState(9658) p.Json_output_clause() } } { - p.SetState(9671) + p.SetState(9661) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149044,7 +149021,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC case PostgreSQLParserJSON_ARRAYAGG: p.EnterOuterAlt(localctx, 2) { - p.SetState(9673) + p.SetState(9663) p.Match(PostgreSQLParserJSON_ARRAYAGG) if p.HasError() { // Recognition error - abort rule @@ -149052,7 +149029,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9674) + p.SetState(9664) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149060,10 +149037,10 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9675) + p.SetState(9665) p.Json_value_expr() } - p.SetState(9677) + p.SetState(9667) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149072,12 +149049,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserORDER { { - p.SetState(9676) + p.SetState(9666) p.Json_array_aggregate_order_by_clause() } } - p.SetState(9680) + p.SetState(9670) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149086,12 +149063,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9679) + p.SetState(9669) p.Json_array_constructor_null_clause() } } - p.SetState(9683) + p.SetState(9673) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149100,13 +149077,13 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserRETURNING { { - p.SetState(9682) + p.SetState(9672) p.Json_output_clause() } } { - p.SetState(9685) + p.SetState(9675) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149248,12 +149225,12 @@ func (s *Json_output_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Json_output_clause() (localctx IJson_output_clauseContext) { localctx = NewJson_output_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1224, PostgreSQLParserRULE_json_output_clause) + p.EnterRule(localctx, 1226, PostgreSQLParserRULE_json_output_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9689) + p.SetState(9679) p.Match(PostgreSQLParserRETURNING) if p.HasError() { // Recognition error - abort rule @@ -149261,10 +149238,10 @@ func (p *PostgreSQLParser) Json_output_clause() (localctx IJson_output_clauseCon } } { - p.SetState(9690) + p.SetState(9680) p.Typename() } - p.SetState(9692) + p.SetState(9682) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149273,7 +149250,7 @@ func (p *PostgreSQLParser) Json_output_clause() (localctx IJson_output_clauseCon if _la == PostgreSQLParserFORMAT { { - p.SetState(9691) + p.SetState(9681) p.Json_format_clause() } @@ -149396,10 +149373,10 @@ func (s *Json_array_aggregate_order_by_clauseContext) Accept(visitor antlr.Parse func (p *PostgreSQLParser) Json_array_aggregate_order_by_clause() (localctx IJson_array_aggregate_order_by_clauseContext) { localctx = NewJson_array_aggregate_order_by_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1226, PostgreSQLParserRULE_json_array_aggregate_order_by_clause) + p.EnterRule(localctx, 1228, PostgreSQLParserRULE_json_array_aggregate_order_by_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9694) + p.SetState(9684) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -149407,7 +149384,7 @@ func (p *PostgreSQLParser) Json_array_aggregate_order_by_clause() (localctx IJso } } { - p.SetState(9695) + p.SetState(9685) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -149415,7 +149392,7 @@ func (p *PostgreSQLParser) Json_array_aggregate_order_by_clause() (localctx IJso } } { - p.SetState(9696) + p.SetState(9686) p.Sortby_list() } @@ -150385,20 +150362,20 @@ func (s *Func_expr_common_subexprContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_common_subexprContext) { localctx = NewFunc_expr_common_subexprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1228, PostgreSQLParserRULE_func_expr_common_subexpr) + p.EnterRule(localctx, 1230, PostgreSQLParserRULE_func_expr_common_subexpr) var _la int - p.SetState(10007) + p.SetState(9997) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 963, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 961, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9698) + p.SetState(9688) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -150406,7 +150383,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9699) + p.SetState(9689) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -150414,7 +150391,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9700) + p.SetState(9690) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150422,11 +150399,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9701) + p.SetState(9691) p.A_expr() } { - p.SetState(9702) + p.SetState(9692) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150437,7 +150414,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9704) + p.SetState(9694) p.Match(PostgreSQLParserCURRENT_DATE) if p.HasError() { // Recognition error - abort rule @@ -150448,19 +150425,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9705) + p.SetState(9695) p.Match(PostgreSQLParserCURRENT_TIME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9710) + p.SetState(9700) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 930, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 928, p.GetParserRuleContext()) == 1 { { - p.SetState(9706) + p.SetState(9696) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150468,11 +150445,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9707) + p.SetState(9697) p.Iconst() } { - p.SetState(9708) + p.SetState(9698) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150487,19 +150464,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9712) + p.SetState(9702) p.Match(PostgreSQLParserCURRENT_TIMESTAMP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9717) + p.SetState(9707) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 931, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 929, p.GetParserRuleContext()) == 1 { { - p.SetState(9713) + p.SetState(9703) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150507,11 +150484,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9714) + p.SetState(9704) p.Iconst() } { - p.SetState(9715) + p.SetState(9705) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150526,19 +150503,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(9719) + p.SetState(9709) p.Match(PostgreSQLParserLOCALTIME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9724) + p.SetState(9714) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 932, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 930, p.GetParserRuleContext()) == 1 { { - p.SetState(9720) + p.SetState(9710) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150546,11 +150523,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9721) + p.SetState(9711) p.Iconst() } { - p.SetState(9722) + p.SetState(9712) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150565,19 +150542,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(9726) + p.SetState(9716) p.Match(PostgreSQLParserLOCALTIMESTAMP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9731) + p.SetState(9721) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 933, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 931, p.GetParserRuleContext()) == 1 { { - p.SetState(9727) + p.SetState(9717) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150585,11 +150562,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9728) + p.SetState(9718) p.Iconst() } { - p.SetState(9729) + p.SetState(9719) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150604,7 +150581,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(9733) + p.SetState(9723) p.Match(PostgreSQLParserCURRENT_ROLE) if p.HasError() { // Recognition error - abort rule @@ -150615,7 +150592,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(9734) + p.SetState(9724) p.Match(PostgreSQLParserCURRENT_USER) if p.HasError() { // Recognition error - abort rule @@ -150626,7 +150603,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(9735) + p.SetState(9725) p.Match(PostgreSQLParserSESSION_USER) if p.HasError() { // Recognition error - abort rule @@ -150637,7 +150614,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(9736) + p.SetState(9726) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -150648,7 +150625,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(9737) + p.SetState(9727) p.Match(PostgreSQLParserCURRENT_CATALOG) if p.HasError() { // Recognition error - abort rule @@ -150659,7 +150636,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(9738) + p.SetState(9728) p.Match(PostgreSQLParserCURRENT_SCHEMA) if p.HasError() { // Recognition error - abort rule @@ -150670,7 +150647,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(9739) + p.SetState(9729) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -150678,7 +150655,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9740) + p.SetState(9730) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150686,11 +150663,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9741) + p.SetState(9731) p.A_expr() } { - p.SetState(9742) + p.SetState(9732) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -150698,11 +150675,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9743) + p.SetState(9733) p.Typename() } { - p.SetState(9744) + p.SetState(9734) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150713,7 +150690,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(9746) + p.SetState(9736) p.Match(PostgreSQLParserEXTRACT) if p.HasError() { // Recognition error - abort rule @@ -150721,14 +150698,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9747) + p.SetState(9737) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9749) + p.SetState(9739) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150737,13 +150714,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if ((int64((_la-33)) & ^0x3f) == 0 && ((int64(1)<<(_la-33))&576460752589691909) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&1227268419561209985) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&57561641360820233) != 0) || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&18209029515919361) != 0) || _la == PostgreSQLParserTYPE_P || _la == PostgreSQLParserYEAR_P || ((int64((_la-454)) & ^0x3f) == 0 && ((int64(1)<<(_la-454))&-144097595889811453) != 0) || ((int64((_la-518)) & ^0x3f) == 0 && ((int64(1)<<(_la-518))&12516927) != 0) || ((int64((_la-664)) & ^0x3f) == 0 && ((int64(1)<<(_la-664))&34460412451) != 0) { { - p.SetState(9748) + p.SetState(9738) p.Extract_list() } } { - p.SetState(9751) + p.SetState(9741) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150754,7 +150731,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(9752) + p.SetState(9742) p.Match(PostgreSQLParserNORMALIZE) if p.HasError() { // Recognition error - abort rule @@ -150762,7 +150739,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9753) + p.SetState(9743) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150770,10 +150747,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9754) + p.SetState(9744) p.A_expr() } - p.SetState(9757) + p.SetState(9747) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150782,7 +150759,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9755) + p.SetState(9745) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -150790,13 +150767,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9756) + p.SetState(9746) p.Unicode_normal_form() } } { - p.SetState(9759) + p.SetState(9749) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150807,7 +150784,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(9761) + p.SetState(9751) p.Match(PostgreSQLParserOVERLAY) if p.HasError() { // Recognition error - abort rule @@ -150815,7 +150792,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9762) + p.SetState(9752) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150823,11 +150800,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9763) + p.SetState(9753) p.Overlay_list() } { - p.SetState(9764) + p.SetState(9754) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150838,7 +150815,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(9766) + p.SetState(9756) p.Match(PostgreSQLParserPOSITION) if p.HasError() { // Recognition error - abort rule @@ -150846,14 +150823,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9767) + p.SetState(9757) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9769) + p.SetState(9759) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150862,13 +150839,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177653) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(9768) + p.SetState(9758) p.Position_list() } } { - p.SetState(9771) + p.SetState(9761) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150879,7 +150856,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(9772) + p.SetState(9762) p.Match(PostgreSQLParserSUBSTRING) if p.HasError() { // Recognition error - abort rule @@ -150887,7 +150864,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9773) + p.SetState(9763) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150895,11 +150872,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9774) + p.SetState(9764) p.Substr_list() } { - p.SetState(9775) + p.SetState(9765) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150910,7 +150887,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(9777) + p.SetState(9767) p.Match(PostgreSQLParserTREAT) if p.HasError() { // Recognition error - abort rule @@ -150918,7 +150895,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9778) + p.SetState(9768) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150926,11 +150903,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9779) + p.SetState(9769) p.A_expr() } { - p.SetState(9780) + p.SetState(9770) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -150938,11 +150915,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9781) + p.SetState(9771) p.Typename() } { - p.SetState(9782) + p.SetState(9772) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150953,7 +150930,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(9784) + p.SetState(9774) p.Match(PostgreSQLParserTRIM) if p.HasError() { // Recognition error - abort rule @@ -150961,14 +150938,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9785) + p.SetState(9775) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9787) + p.SetState(9777) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150977,7 +150954,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if (int64((_la-39)) & ^0x3f) == 0 && ((int64(1)<<(_la-39))&72057611217797121) != 0 { { - p.SetState(9786) + p.SetState(9776) _la = p.GetTokenStream().LA(1) if !((int64((_la-39)) & ^0x3f) == 0 && ((int64(1)<<(_la-39))&72057611217797121) != 0) { @@ -150990,11 +150967,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } { - p.SetState(9789) + p.SetState(9779) p.Trim_list() } { - p.SetState(9790) + p.SetState(9780) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151005,7 +150982,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(9792) + p.SetState(9782) p.Match(PostgreSQLParserNULLIF) if p.HasError() { // Recognition error - abort rule @@ -151013,7 +150990,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9793) + p.SetState(9783) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151021,11 +150998,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9794) + p.SetState(9784) p.A_expr() } { - p.SetState(9795) + p.SetState(9785) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -151033,11 +151010,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9796) + p.SetState(9786) p.A_expr() } { - p.SetState(9797) + p.SetState(9787) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151048,7 +151025,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(9799) + p.SetState(9789) p.Match(PostgreSQLParserCOALESCE) if p.HasError() { // Recognition error - abort rule @@ -151056,7 +151033,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9800) + p.SetState(9790) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151064,11 +151041,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9801) + p.SetState(9791) p.Expr_list() } { - p.SetState(9802) + p.SetState(9792) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151079,7 +151056,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(9804) + p.SetState(9794) p.Match(PostgreSQLParserGREATEST) if p.HasError() { // Recognition error - abort rule @@ -151087,7 +151064,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9805) + p.SetState(9795) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151095,11 +151072,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9806) + p.SetState(9796) p.Expr_list() } { - p.SetState(9807) + p.SetState(9797) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151110,7 +151087,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(9809) + p.SetState(9799) p.Match(PostgreSQLParserLEAST) if p.HasError() { // Recognition error - abort rule @@ -151118,7 +151095,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9810) + p.SetState(9800) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151126,11 +151103,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9811) + p.SetState(9801) p.Expr_list() } { - p.SetState(9812) + p.SetState(9802) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151141,7 +151118,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(9814) + p.SetState(9804) p.Match(PostgreSQLParserXMLCONCAT) if p.HasError() { // Recognition error - abort rule @@ -151149,7 +151126,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9815) + p.SetState(9805) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151157,11 +151134,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9816) + p.SetState(9806) p.Expr_list() } { - p.SetState(9817) + p.SetState(9807) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151172,7 +151149,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(9819) + p.SetState(9809) p.Match(PostgreSQLParserXMLELEMENT) if p.HasError() { // Recognition error - abort rule @@ -151180,7 +151157,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9820) + p.SetState(9810) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151188,7 +151165,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9821) + p.SetState(9811) p.Match(PostgreSQLParserNAME_P) if p.HasError() { // Recognition error - abort rule @@ -151196,10 +151173,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9822) + p.SetState(9812) p.Collabel() } - p.SetState(9828) + p.SetState(9818) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151208,29 +151185,29 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9823) + p.SetState(9813) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9826) + p.SetState(9816) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 938, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 936, p.GetParserRuleContext()) { case 1: { - p.SetState(9824) + p.SetState(9814) p.Xml_attributes() } case 2: { - p.SetState(9825) + p.SetState(9815) p.Expr_list() } @@ -151240,7 +151217,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } { - p.SetState(9830) + p.SetState(9820) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151251,7 +151228,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(9832) + p.SetState(9822) p.Match(PostgreSQLParserXMLEXISTS) if p.HasError() { // Recognition error - abort rule @@ -151259,7 +151236,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9833) + p.SetState(9823) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151267,15 +151244,15 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9834) + p.SetState(9824) p.C_expr() } { - p.SetState(9835) + p.SetState(9825) p.Xmlexists_argument() } { - p.SetState(9836) + p.SetState(9826) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151286,7 +151263,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(9838) + p.SetState(9828) p.Match(PostgreSQLParserXMLFOREST) if p.HasError() { // Recognition error - abort rule @@ -151294,7 +151271,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9839) + p.SetState(9829) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151302,11 +151279,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9840) + p.SetState(9830) p.Xml_attribute_list() } { - p.SetState(9841) + p.SetState(9831) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151317,7 +151294,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(9843) + p.SetState(9833) p.Match(PostgreSQLParserXMLPARSE) if p.HasError() { // Recognition error - abort rule @@ -151325,7 +151302,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9844) + p.SetState(9834) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151333,14 +151310,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9845) + p.SetState(9835) p.Document_or_content() } { - p.SetState(9846) + p.SetState(9836) p.A_expr() } - p.SetState(9848) + p.SetState(9838) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151349,13 +151326,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPRESERVE || _la == PostgreSQLParserSTRIP_P { { - p.SetState(9847) + p.SetState(9837) p.Xml_whitespace_option() } } { - p.SetState(9850) + p.SetState(9840) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151366,7 +151343,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(9852) + p.SetState(9842) p.Match(PostgreSQLParserXMLPI) if p.HasError() { // Recognition error - abort rule @@ -151374,7 +151351,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9853) + p.SetState(9843) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151382,7 +151359,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9854) + p.SetState(9844) p.Match(PostgreSQLParserNAME_P) if p.HasError() { // Recognition error - abort rule @@ -151390,10 +151367,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9855) + p.SetState(9845) p.Collabel() } - p.SetState(9858) + p.SetState(9848) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151402,7 +151379,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9856) + p.SetState(9846) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -151410,13 +151387,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9857) + p.SetState(9847) p.A_expr() } } { - p.SetState(9860) + p.SetState(9850) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151427,7 +151404,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(9862) + p.SetState(9852) p.Match(PostgreSQLParserXMLROOT) if p.HasError() { // Recognition error - abort rule @@ -151435,7 +151412,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9863) + p.SetState(9853) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151443,7 +151420,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9864) + p.SetState(9854) p.Match(PostgreSQLParserXML_P) if p.HasError() { // Recognition error - abort rule @@ -151451,11 +151428,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9865) + p.SetState(9855) p.A_expr() } { - p.SetState(9866) + p.SetState(9856) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -151463,10 +151440,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9867) + p.SetState(9857) p.Xml_root_version() } - p.SetState(9869) + p.SetState(9859) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151475,13 +151452,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9868) + p.SetState(9858) p.Opt_xml_root_standalone() } } { - p.SetState(9871) + p.SetState(9861) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151492,7 +151469,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(9873) + p.SetState(9863) p.Match(PostgreSQLParserXMLSERIALIZE) if p.HasError() { // Recognition error - abort rule @@ -151500,7 +151477,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9874) + p.SetState(9864) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151508,15 +151485,15 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9875) + p.SetState(9865) p.Document_or_content() } { - p.SetState(9876) + p.SetState(9866) p.A_expr() } { - p.SetState(9877) + p.SetState(9867) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -151524,11 +151501,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9878) + p.SetState(9868) p.Simpletypename() } { - p.SetState(9879) + p.SetState(9869) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151539,7 +151516,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(9881) + p.SetState(9871) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -151547,7 +151524,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9882) + p.SetState(9872) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151555,11 +151532,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9883) + p.SetState(9873) p.Func_arg_list() } { - p.SetState(9884) + p.SetState(9874) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151570,7 +151547,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(9886) + p.SetState(9876) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -151578,7 +151555,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9887) + p.SetState(9877) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151586,10 +151563,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9888) + p.SetState(9878) p.Json_name_and_value_list() } - p.SetState(9890) + p.SetState(9880) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151598,12 +151575,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9889) + p.SetState(9879) p.Json_object_constructor_null_clause() } } - p.SetState(9893) + p.SetState(9883) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151612,12 +151589,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(9892) + p.SetState(9882) p.Json_key_uniqueness_constraint() } } - p.SetState(9896) + p.SetState(9886) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151626,13 +151603,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9895) + p.SetState(9885) p.Json_returning_clause() } } { - p.SetState(9898) + p.SetState(9888) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151643,7 +151620,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(9900) + p.SetState(9890) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -151651,14 +151628,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9901) + p.SetState(9891) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9903) + p.SetState(9893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151667,13 +151644,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9902) + p.SetState(9892) p.Json_returning_clause() } } { - p.SetState(9905) + p.SetState(9895) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151684,7 +151661,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(9906) + p.SetState(9896) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -151692,7 +151669,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9907) + p.SetState(9897) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151700,10 +151677,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9908) + p.SetState(9898) p.Json_value_expr_list() } - p.SetState(9910) + p.SetState(9900) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151712,12 +151689,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9909) + p.SetState(9899) p.Json_array_constructor_null_clause() } } - p.SetState(9913) + p.SetState(9903) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151726,13 +151703,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9912) + p.SetState(9902) p.Json_returning_clause() } } { - p.SetState(9915) + p.SetState(9905) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151743,7 +151720,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(9917) + p.SetState(9907) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -151751,7 +151728,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9918) + p.SetState(9908) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151759,10 +151736,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9919) + p.SetState(9909) p.Select_no_parens() } - p.SetState(9921) + p.SetState(9911) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151771,12 +151748,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserFORMAT { { - p.SetState(9920) + p.SetState(9910) p.Json_format_clause_opt() } } - p.SetState(9924) + p.SetState(9914) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151785,13 +151762,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9923) + p.SetState(9913) p.Json_returning_clause() } } { - p.SetState(9926) + p.SetState(9916) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151802,7 +151779,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(9928) + p.SetState(9918) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -151810,14 +151787,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9929) + p.SetState(9919) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9931) + p.SetState(9921) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151826,13 +151803,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9930) + p.SetState(9920) p.Json_returning_clause() } } { - p.SetState(9933) + p.SetState(9923) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151843,7 +151820,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(9934) + p.SetState(9924) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -151851,7 +151828,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9935) + p.SetState(9925) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151859,10 +151836,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9936) + p.SetState(9926) p.Json_value_expr() } - p.SetState(9938) + p.SetState(9928) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151871,13 +151848,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(9937) + p.SetState(9927) p.Json_key_uniqueness_constraint() } } { - p.SetState(9940) + p.SetState(9930) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151888,7 +151865,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(9942) + p.SetState(9932) p.Match(PostgreSQLParserJSON_SCALAR) if p.HasError() { // Recognition error - abort rule @@ -151896,7 +151873,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9943) + p.SetState(9933) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151904,11 +151881,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9944) + p.SetState(9934) p.A_expr() } { - p.SetState(9945) + p.SetState(9935) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151919,7 +151896,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(9947) + p.SetState(9937) p.Match(PostgreSQLParserJSON_SERIALIZE) if p.HasError() { // Recognition error - abort rule @@ -151927,7 +151904,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9948) + p.SetState(9938) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151935,10 +151912,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9949) + p.SetState(9939) p.Json_value_expr() } - p.SetState(9951) + p.SetState(9941) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151947,13 +151924,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9950) + p.SetState(9940) p.Json_returning_clause() } } { - p.SetState(9953) + p.SetState(9943) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151964,7 +151941,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(9955) + p.SetState(9945) p.Match(PostgreSQLParserMERGE_ACTION) if p.HasError() { // Recognition error - abort rule @@ -151972,7 +151949,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9956) + p.SetState(9946) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151980,7 +151957,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9957) + p.SetState(9947) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151991,7 +151968,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(9958) + p.SetState(9948) p.Match(PostgreSQLParserJSON_QUERY) if p.HasError() { // Recognition error - abort rule @@ -151999,7 +151976,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9959) + p.SetState(9949) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152007,11 +151984,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9960) + p.SetState(9950) p.Json_value_expr() } { - p.SetState(9961) + p.SetState(9951) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -152019,10 +151996,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9962) + p.SetState(9952) p.A_expr() } - p.SetState(9964) + p.SetState(9954) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152031,12 +152008,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPASSING { { - p.SetState(9963) + p.SetState(9953) p.Json_passing_clause() } } - p.SetState(9967) + p.SetState(9957) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152045,16 +152022,16 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9966) + p.SetState(9956) p.Json_returning_clause() } } { - p.SetState(9969) + p.SetState(9959) p.Json_wrapper_behavior() } - p.SetState(9971) + p.SetState(9961) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152063,12 +152040,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserKEEP || _la == PostgreSQLParserOMIT { { - p.SetState(9970) + p.SetState(9960) p.Json_quotes_clause() } } - p.SetState(9974) + p.SetState(9964) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152077,13 +152054,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if ((int64((_la-53)) & ^0x3f) == 0 && ((int64(1)<<(_la-53))&4611694814553964673) != 0) || _la == PostgreSQLParserUNKNOWN || _la == PostgreSQLParserERROR { { - p.SetState(9973) + p.SetState(9963) p.Json_behavior_clause() } } { - p.SetState(9976) + p.SetState(9966) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152094,7 +152071,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(9978) + p.SetState(9968) p.Match(PostgreSQLParserJSON_EXISTS) if p.HasError() { // Recognition error - abort rule @@ -152102,7 +152079,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9979) + p.SetState(9969) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152110,11 +152087,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9980) + p.SetState(9970) p.Json_value_expr() } { - p.SetState(9981) + p.SetState(9971) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -152122,10 +152099,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9982) + p.SetState(9972) p.A_expr() } - p.SetState(9984) + p.SetState(9974) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152134,12 +152111,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPASSING { { - p.SetState(9983) + p.SetState(9973) p.Json_passing_clause() } } - p.SetState(9987) + p.SetState(9977) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152148,13 +152125,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if ((int64((_la-53)) & ^0x3f) == 0 && ((int64(1)<<(_la-53))&4611694814553964673) != 0) || _la == PostgreSQLParserUNKNOWN || _la == PostgreSQLParserERROR { { - p.SetState(9986) + p.SetState(9976) p.Json_on_error_clause() } } { - p.SetState(9989) + p.SetState(9979) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152165,7 +152142,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(9991) + p.SetState(9981) p.Match(PostgreSQLParserJSON_VALUE) if p.HasError() { // Recognition error - abort rule @@ -152173,7 +152150,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9992) + p.SetState(9982) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152181,11 +152158,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9993) + p.SetState(9983) p.Json_value_expr() } { - p.SetState(9994) + p.SetState(9984) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -152193,10 +152170,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9995) + p.SetState(9985) p.A_expr() } - p.SetState(9997) + p.SetState(9987) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152205,12 +152182,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPASSING { { - p.SetState(9996) + p.SetState(9986) p.Json_passing_clause() } } - p.SetState(10000) + p.SetState(9990) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152219,12 +152196,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9999) + p.SetState(9989) p.Json_returning_clause() } } - p.SetState(10003) + p.SetState(9993) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152233,13 +152210,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if ((int64((_la-53)) & ^0x3f) == 0 && ((int64(1)<<(_la-53))&4611694814553964673) != 0) || _la == PostgreSQLParserUNKNOWN || _la == PostgreSQLParserERROR { { - p.SetState(10002) + p.SetState(9992) p.Json_behavior_clause() } } { - p.SetState(10005) + p.SetState(9995) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152368,14 +152345,14 @@ func (s *Json_on_error_clauseContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Json_on_error_clause() (localctx IJson_on_error_clauseContext) { localctx = NewJson_on_error_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1230, PostgreSQLParserRULE_json_on_error_clause) + p.EnterRule(localctx, 1232, PostgreSQLParserRULE_json_on_error_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10009) + p.SetState(9999) p.Json_behavior() } { - p.SetState(10010) + p.SetState(10000) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152383,7 +152360,7 @@ func (p *PostgreSQLParser) Json_on_error_clause() (localctx IJson_on_error_claus } } { - p.SetState(10011) + p.SetState(10001) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152544,22 +152521,22 @@ func (s *Json_behavior_clauseContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_clauseContext) { localctx = NewJson_behavior_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1232, PostgreSQLParserRULE_json_behavior_clause) - p.SetState(10028) + p.EnterRule(localctx, 1234, PostgreSQLParserRULE_json_behavior_clause) + p.SetState(10018) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 964, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 962, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10013) + p.SetState(10003) p.Json_behavior() } { - p.SetState(10014) + p.SetState(10004) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152567,7 +152544,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10015) + p.SetState(10005) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -152578,11 +152555,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10017) + p.SetState(10007) p.Json_behavior() } { - p.SetState(10018) + p.SetState(10008) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152590,7 +152567,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10019) + p.SetState(10009) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152601,11 +152578,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10021) + p.SetState(10011) p.Json_behavior() } { - p.SetState(10022) + p.SetState(10012) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152613,7 +152590,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10023) + p.SetState(10013) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -152621,11 +152598,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10024) + p.SetState(10014) p.Json_behavior() } { - p.SetState(10025) + p.SetState(10015) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152633,7 +152610,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10026) + p.SetState(10016) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152774,8 +152751,8 @@ func (s *Json_behaviorContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Json_behavior() (localctx IJson_behaviorContext) { localctx = NewJson_behaviorContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1234, PostgreSQLParserRULE_json_behavior) - p.SetState(10033) + p.EnterRule(localctx, 1236, PostgreSQLParserRULE_json_behavior) + p.SetState(10023) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152785,7 +152762,7 @@ func (p *PostgreSQLParser) Json_behavior() (localctx IJson_behaviorContext) { case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 1) { - p.SetState(10030) + p.SetState(10020) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -152793,14 +152770,14 @@ func (p *PostgreSQLParser) Json_behavior() (localctx IJson_behaviorContext) { } } { - p.SetState(10031) + p.SetState(10021) p.A_expr() } case PostgreSQLParserFALSE_P, PostgreSQLParserNULL_P, PostgreSQLParserTRUE_P, PostgreSQLParserEMPTY, PostgreSQLParserUNKNOWN, PostgreSQLParserERROR: p.EnterOuterAlt(localctx, 2) { - p.SetState(10032) + p.SetState(10022) p.Json_behavior_type() } @@ -152939,18 +152916,18 @@ func (s *Json_behavior_typeContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeContext) { localctx = NewJson_behavior_typeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1236, PostgreSQLParserRULE_json_behavior_type) - p.SetState(10045) + p.EnterRule(localctx, 1238, PostgreSQLParserRULE_json_behavior_type) + p.SetState(10035) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 966, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 964, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10035) + p.SetState(10025) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152961,7 +152938,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10036) + p.SetState(10026) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -152972,7 +152949,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10037) + p.SetState(10027) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -152983,7 +152960,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10038) + p.SetState(10028) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -152994,7 +152971,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10039) + p.SetState(10029) p.Match(PostgreSQLParserUNKNOWN) if p.HasError() { // Recognition error - abort rule @@ -153005,7 +152982,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10040) + p.SetState(10030) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -153013,7 +152990,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon } } { - p.SetState(10041) + p.SetState(10031) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -153024,7 +153001,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10042) + p.SetState(10032) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -153032,7 +153009,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon } } { - p.SetState(10043) + p.SetState(10033) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -153043,7 +153020,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10044) + p.SetState(10034) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -153175,12 +153152,12 @@ func (s *Json_quotes_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseContext) { localctx = NewJson_quotes_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1238, PostgreSQLParserRULE_json_quotes_clause) + p.EnterRule(localctx, 1240, PostgreSQLParserRULE_json_quotes_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10047) + p.SetState(10037) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserKEEP || _la == PostgreSQLParserOMIT) { @@ -153191,7 +153168,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } } { - p.SetState(10048) + p.SetState(10038) p.Match(PostgreSQLParserQUOTES) if p.HasError() { // Recognition error - abort rule @@ -153200,7 +153177,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } { - p.SetState(10049) + p.SetState(10039) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -153208,7 +153185,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } } { - p.SetState(10050) + p.SetState(10040) p.Match(PostgreSQLParserSCALAR) if p.HasError() { // Recognition error - abort rule @@ -153216,7 +153193,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } } { - p.SetState(10051) + p.SetState(10041) p.Match(PostgreSQLParserSTRING) if p.HasError() { // Recognition error - abort rule @@ -153344,10 +153321,10 @@ func (s *Json_wrapper_behaviorContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behaviorContext) { localctx = NewJson_wrapper_behaviorContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1240, PostgreSQLParserRULE_json_wrapper_behavior) + p.EnterRule(localctx, 1242, PostgreSQLParserRULE_json_wrapper_behavior) var _la int - p.SetState(10066) + p.SetState(10056) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153357,14 +153334,14 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 1) { - p.SetState(10053) + p.SetState(10043) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10055) + p.SetState(10045) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153373,7 +153350,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav if _la == PostgreSQLParserARRAY { { - p.SetState(10054) + p.SetState(10044) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -153383,7 +153360,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav } { - p.SetState(10057) + p.SetState(10047) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -153394,14 +153371,14 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 2) { - p.SetState(10058) + p.SetState(10048) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10060) + p.SetState(10050) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153410,7 +153387,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav if _la == PostgreSQLParserCONDITIONAL || _la == PostgreSQLParserUNCONDITIONAL { { - p.SetState(10059) + p.SetState(10049) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONDITIONAL || _la == PostgreSQLParserUNCONDITIONAL) { @@ -153422,7 +153399,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav } } - p.SetState(10063) + p.SetState(10053) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153431,7 +153408,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav if _la == PostgreSQLParserARRAY { { - p.SetState(10062) + p.SetState(10052) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -153441,7 +153418,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav } { - p.SetState(10065) + p.SetState(10055) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -153566,10 +153543,10 @@ func (s *Json_passing_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Json_passing_clause() (localctx IJson_passing_clauseContext) { localctx = NewJson_passing_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1242, PostgreSQLParserRULE_json_passing_clause) + p.EnterRule(localctx, 1244, PostgreSQLParserRULE_json_passing_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10068) + p.SetState(10058) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -153577,7 +153554,7 @@ func (p *PostgreSQLParser) Json_passing_clause() (localctx IJson_passing_clauseC } } { - p.SetState(10069) + p.SetState(10059) p.Json_arguments() } @@ -153724,15 +153701,15 @@ func (s *Json_argumentsContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Json_arguments() (localctx IJson_argumentsContext) { localctx = NewJson_argumentsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1244, PostgreSQLParserRULE_json_arguments) + p.EnterRule(localctx, 1246, PostgreSQLParserRULE_json_arguments) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10071) + p.SetState(10061) p.Json_argument() } - p.SetState(10076) + p.SetState(10066) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153741,7 +153718,7 @@ func (p *PostgreSQLParser) Json_arguments() (localctx IJson_argumentsContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10072) + p.SetState(10062) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -153749,11 +153726,11 @@ func (p *PostgreSQLParser) Json_arguments() (localctx IJson_argumentsContext) { } } { - p.SetState(10073) + p.SetState(10063) p.Json_argument() } - p.SetState(10078) + p.SetState(10068) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153890,14 +153867,14 @@ func (s *Json_argumentContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Json_argument() (localctx IJson_argumentContext) { localctx = NewJson_argumentContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1246, PostgreSQLParserRULE_json_argument) + p.EnterRule(localctx, 1248, PostgreSQLParserRULE_json_argument) p.EnterOuterAlt(localctx, 1) { - p.SetState(10079) + p.SetState(10069) p.Json_value_expr() } { - p.SetState(10080) + p.SetState(10070) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -153905,7 +153882,7 @@ func (p *PostgreSQLParser) Json_argument() (localctx IJson_argumentContext) { } } { - p.SetState(10081) + p.SetState(10071) p.Collabel() } @@ -154031,18 +154008,18 @@ func (s *Json_format_clause_optContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_clause_optContext) { localctx = NewJson_format_clause_optContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1248, PostgreSQLParserRULE_json_format_clause_opt) - p.SetState(10089) + p.EnterRule(localctx, 1250, PostgreSQLParserRULE_json_format_clause_opt) + p.SetState(10079) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 972, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 970, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10083) + p.SetState(10073) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -154050,7 +154027,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10084) + p.SetState(10074) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -154058,7 +154035,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10085) + p.SetState(10075) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -154066,14 +154043,14 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10086) + p.SetState(10076) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10087) + p.SetState(10077) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -154081,7 +154058,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10088) + p.SetState(10078) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -154236,15 +154213,15 @@ func (s *Json_value_expr_listContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Json_value_expr_list() (localctx IJson_value_expr_listContext) { localctx = NewJson_value_expr_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1250, PostgreSQLParserRULE_json_value_expr_list) + p.EnterRule(localctx, 1252, PostgreSQLParserRULE_json_value_expr_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10091) + p.SetState(10081) p.Json_value_expr() } - p.SetState(10096) + p.SetState(10086) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154253,7 +154230,7 @@ func (p *PostgreSQLParser) Json_value_expr_list() (localctx IJson_value_expr_lis for _la == PostgreSQLParserCOMMA { { - p.SetState(10092) + p.SetState(10082) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -154261,11 +154238,11 @@ func (p *PostgreSQLParser) Json_value_expr_list() (localctx IJson_value_expr_lis } } { - p.SetState(10093) + p.SetState(10083) p.Json_value_expr() } - p.SetState(10098) + p.SetState(10088) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154402,12 +154379,12 @@ func (s *Json_returning_clauseContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Json_returning_clause() (localctx IJson_returning_clauseContext) { localctx = NewJson_returning_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1252, PostgreSQLParserRULE_json_returning_clause) + p.EnterRule(localctx, 1254, PostgreSQLParserRULE_json_returning_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10099) + p.SetState(10089) p.Match(PostgreSQLParserRETURNING) if p.HasError() { // Recognition error - abort rule @@ -154415,10 +154392,10 @@ func (p *PostgreSQLParser) Json_returning_clause() (localctx IJson_returning_cla } } { - p.SetState(10100) + p.SetState(10090) p.Typename() } - p.SetState(10102) + p.SetState(10092) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154427,7 +154404,7 @@ func (p *PostgreSQLParser) Json_returning_clause() (localctx IJson_returning_cla if _la == PostgreSQLParserFORMAT { { - p.SetState(10101) + p.SetState(10091) p.Json_format_clause() } @@ -154543,10 +154520,10 @@ func (s *Json_key_uniqueness_constraintContext) Accept(visitor antlr.ParseTreeVi func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_uniqueness_constraintContext) { localctx = NewJson_key_uniqueness_constraintContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1254, PostgreSQLParserRULE_json_key_uniqueness_constraint) + p.EnterRule(localctx, 1256, PostgreSQLParserRULE_json_key_uniqueness_constraint) var _la int - p.SetState(10114) + p.SetState(10104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154556,7 +154533,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(10104) + p.SetState(10094) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -154564,14 +154541,14 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ } } { - p.SetState(10105) + p.SetState(10095) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10107) + p.SetState(10097) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154580,7 +154557,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ if _la == PostgreSQLParserKEYS { { - p.SetState(10106) + p.SetState(10096) p.Match(PostgreSQLParserKEYS) if p.HasError() { // Recognition error - abort rule @@ -154593,7 +154570,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10109) + p.SetState(10099) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -154601,14 +154578,14 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ } } { - p.SetState(10110) + p.SetState(10100) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10112) + p.SetState(10102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154617,7 +154594,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ if _la == PostgreSQLParserKEYS { { - p.SetState(10111) + p.SetState(10101) p.Match(PostgreSQLParserKEYS) if p.HasError() { // Recognition error - abort rule @@ -154742,8 +154719,8 @@ func (s *Json_array_constructor_null_clauseContext) Accept(visitor antlr.ParseTr func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_array_constructor_null_clauseContext) { localctx = NewJson_array_constructor_null_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1256, PostgreSQLParserRULE_json_array_constructor_null_clause) - p.SetState(10122) + p.EnterRule(localctx, 1258, PostgreSQLParserRULE_json_array_constructor_null_clause) + p.SetState(10112) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154753,7 +154730,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(10116) + p.SetState(10106) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154761,7 +154738,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10117) + p.SetState(10107) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -154769,7 +154746,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10118) + p.SetState(10108) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154780,7 +154757,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ case PostgreSQLParserABSENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10119) + p.SetState(10109) p.Match(PostgreSQLParserABSENT) if p.HasError() { // Recognition error - abort rule @@ -154788,7 +154765,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10120) + p.SetState(10110) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -154796,7 +154773,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10121) + p.SetState(10111) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154919,8 +154896,8 @@ func (s *Json_object_constructor_null_clauseContext) Accept(visitor antlr.ParseT func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson_object_constructor_null_clauseContext) { localctx = NewJson_object_constructor_null_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1258, PostgreSQLParserRULE_json_object_constructor_null_clause) - p.SetState(10130) + p.EnterRule(localctx, 1260, PostgreSQLParserRULE_json_object_constructor_null_clause) + p.SetState(10120) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154930,7 +154907,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(10124) + p.SetState(10114) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154938,7 +154915,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10125) + p.SetState(10115) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -154946,7 +154923,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10126) + p.SetState(10116) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154957,7 +154934,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson case PostgreSQLParserABSENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10127) + p.SetState(10117) p.Match(PostgreSQLParserABSENT) if p.HasError() { // Recognition error - abort rule @@ -154965,7 +154942,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10128) + p.SetState(10118) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -154973,7 +154950,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10129) + p.SetState(10119) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -155129,15 +155106,15 @@ func (s *Json_name_and_value_listContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Json_name_and_value_list() (localctx IJson_name_and_value_listContext) { localctx = NewJson_name_and_value_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1260, PostgreSQLParserRULE_json_name_and_value_list) + p.EnterRule(localctx, 1262, PostgreSQLParserRULE_json_name_and_value_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10132) + p.SetState(10122) p.Json_name_and_value() } - p.SetState(10137) + p.SetState(10127) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155146,7 +155123,7 @@ func (p *PostgreSQLParser) Json_name_and_value_list() (localctx IJson_name_and_v for _la == PostgreSQLParserCOMMA { { - p.SetState(10133) + p.SetState(10123) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -155154,11 +155131,11 @@ func (p *PostgreSQLParser) Json_name_and_value_list() (localctx IJson_name_and_v } } { - p.SetState(10134) + p.SetState(10124) p.Json_name_and_value() } - p.SetState(10139) + p.SetState(10129) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155317,22 +155294,22 @@ func (s *Json_name_and_valueContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Json_name_and_value() (localctx IJson_name_and_valueContext) { localctx = NewJson_name_and_valueContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1262, PostgreSQLParserRULE_json_name_and_value) - p.SetState(10148) + p.EnterRule(localctx, 1264, PostgreSQLParserRULE_json_name_and_value) + p.SetState(10138) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 981, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 979, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10140) + p.SetState(10130) p.C_expr() } { - p.SetState(10141) + p.SetState(10131) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -155340,18 +155317,18 @@ func (p *PostgreSQLParser) Json_name_and_value() (localctx IJson_name_and_valueC } } { - p.SetState(10142) + p.SetState(10132) p.Json_value_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10144) + p.SetState(10134) p.A_expr() } { - p.SetState(10145) + p.SetState(10135) p.Match(PostgreSQLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -155359,7 +155336,7 @@ func (p *PostgreSQLParser) Json_name_and_value() (localctx IJson_name_and_valueC } } { - p.SetState(10146) + p.SetState(10136) p.Json_value_expr() } @@ -155491,15 +155468,15 @@ func (s *Json_value_exprContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Json_value_expr() (localctx IJson_value_exprContext) { localctx = NewJson_value_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1264, PostgreSQLParserRULE_json_value_expr) + p.EnterRule(localctx, 1266, PostgreSQLParserRULE_json_value_expr) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10150) + p.SetState(10140) p.A_expr() } - p.SetState(10152) + p.SetState(10142) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155508,7 +155485,7 @@ func (p *PostgreSQLParser) Json_value_expr() (localctx IJson_value_exprContext) if _la == PostgreSQLParserFORMAT { { - p.SetState(10151) + p.SetState(10141) p.Json_format_clause() } @@ -155636,18 +155613,18 @@ func (s *Json_format_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseContext) { localctx = NewJson_format_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1266, PostgreSQLParserRULE_json_format_clause) - p.SetState(10160) + p.EnterRule(localctx, 1268, PostgreSQLParserRULE_json_format_clause) + p.SetState(10150) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 983, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 981, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10154) + p.SetState(10144) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -155655,7 +155632,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10155) + p.SetState(10145) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -155663,7 +155640,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10156) + p.SetState(10146) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -155671,14 +155648,14 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10157) + p.SetState(10147) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10158) + p.SetState(10148) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -155686,7 +155663,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10159) + p.SetState(10149) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -155820,18 +155797,18 @@ func (s *Xml_root_versionContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext) { localctx = NewXml_root_versionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1268, PostgreSQLParserRULE_xml_root_version) - p.SetState(10167) + p.EnterRule(localctx, 1270, PostgreSQLParserRULE_xml_root_version) + p.SetState(10157) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 984, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 982, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10162) + p.SetState(10152) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -155839,14 +155816,14 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext } } { - p.SetState(10163) + p.SetState(10153) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10164) + p.SetState(10154) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -155854,7 +155831,7 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext } } { - p.SetState(10165) + p.SetState(10155) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -155862,7 +155839,7 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext } } { - p.SetState(10166) + p.SetState(10156) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -155989,18 +155966,18 @@ func (s *Opt_xml_root_standaloneContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_standaloneContext) { localctx = NewOpt_xml_root_standaloneContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1270, PostgreSQLParserRULE_opt_xml_root_standalone) - p.SetState(10179) + p.EnterRule(localctx, 1272, PostgreSQLParserRULE_opt_xml_root_standalone) + p.SetState(10169) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 985, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 983, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10169) + p.SetState(10159) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156008,7 +155985,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10170) + p.SetState(10160) p.Match(PostgreSQLParserSTANDALONE_P) if p.HasError() { // Recognition error - abort rule @@ -156016,7 +155993,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10171) + p.SetState(10161) p.Match(PostgreSQLParserYES_P) if p.HasError() { // Recognition error - abort rule @@ -156027,7 +156004,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10172) + p.SetState(10162) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156035,7 +156012,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10173) + p.SetState(10163) p.Match(PostgreSQLParserSTANDALONE_P) if p.HasError() { // Recognition error - abort rule @@ -156043,7 +156020,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10174) + p.SetState(10164) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -156054,7 +156031,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10175) + p.SetState(10165) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156062,7 +156039,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10176) + p.SetState(10166) p.Match(PostgreSQLParserSTANDALONE_P) if p.HasError() { // Recognition error - abort rule @@ -156070,7 +156047,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10177) + p.SetState(10167) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -156078,7 +156055,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10178) + p.SetState(10168) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -156212,10 +156189,10 @@ func (s *Xml_attributesContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Xml_attributes() (localctx IXml_attributesContext) { localctx = NewXml_attributesContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1272, PostgreSQLParserRULE_xml_attributes) + p.EnterRule(localctx, 1274, PostgreSQLParserRULE_xml_attributes) p.EnterOuterAlt(localctx, 1) { - p.SetState(10181) + p.SetState(10171) p.Match(PostgreSQLParserXMLATTRIBUTES) if p.HasError() { // Recognition error - abort rule @@ -156223,7 +156200,7 @@ func (p *PostgreSQLParser) Xml_attributes() (localctx IXml_attributesContext) { } } { - p.SetState(10182) + p.SetState(10172) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -156231,11 +156208,11 @@ func (p *PostgreSQLParser) Xml_attributes() (localctx IXml_attributesContext) { } } { - p.SetState(10183) + p.SetState(10173) p.Xml_attribute_list() } { - p.SetState(10184) + p.SetState(10174) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -156386,15 +156363,15 @@ func (s *Xml_attribute_listContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Xml_attribute_list() (localctx IXml_attribute_listContext) { localctx = NewXml_attribute_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1274, PostgreSQLParserRULE_xml_attribute_list) + p.EnterRule(localctx, 1276, PostgreSQLParserRULE_xml_attribute_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10186) + p.SetState(10176) p.Xml_attribute_el() } - p.SetState(10191) + p.SetState(10181) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156403,7 +156380,7 @@ func (p *PostgreSQLParser) Xml_attribute_list() (localctx IXml_attribute_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(10187) + p.SetState(10177) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156411,11 +156388,11 @@ func (p *PostgreSQLParser) Xml_attribute_list() (localctx IXml_attribute_listCon } } { - p.SetState(10188) + p.SetState(10178) p.Xml_attribute_el() } - p.SetState(10193) + p.SetState(10183) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156552,15 +156529,15 @@ func (s *Xml_attribute_elContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Xml_attribute_el() (localctx IXml_attribute_elContext) { localctx = NewXml_attribute_elContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1276, PostgreSQLParserRULE_xml_attribute_el) + p.EnterRule(localctx, 1278, PostgreSQLParserRULE_xml_attribute_el) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10194) + p.SetState(10184) p.A_expr() } - p.SetState(10197) + p.SetState(10187) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156569,7 +156546,7 @@ func (p *PostgreSQLParser) Xml_attribute_el() (localctx IXml_attribute_elContext if _la == PostgreSQLParserAS { { - p.SetState(10195) + p.SetState(10185) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -156577,7 +156554,7 @@ func (p *PostgreSQLParser) Xml_attribute_el() (localctx IXml_attribute_elContext } } { - p.SetState(10196) + p.SetState(10186) p.Collabel() } @@ -156683,12 +156660,12 @@ func (s *Document_or_contentContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Document_or_content() (localctx IDocument_or_contentContext) { localctx = NewDocument_or_contentContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1278, PostgreSQLParserRULE_document_or_content) + p.EnterRule(localctx, 1280, PostgreSQLParserRULE_document_or_content) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10199) + p.SetState(10189) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONTENT_P || _la == PostgreSQLParserDOCUMENT_P) { @@ -156804,8 +156781,8 @@ func (s *Xml_whitespace_optionContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_optionContext) { localctx = NewXml_whitespace_optionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1280, PostgreSQLParserRULE_xml_whitespace_option) - p.SetState(10205) + p.EnterRule(localctx, 1282, PostgreSQLParserRULE_xml_whitespace_option) + p.SetState(10195) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156815,7 +156792,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt case PostgreSQLParserPRESERVE: p.EnterOuterAlt(localctx, 1) { - p.SetState(10201) + p.SetState(10191) p.Match(PostgreSQLParserPRESERVE) if p.HasError() { // Recognition error - abort rule @@ -156823,7 +156800,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt } } { - p.SetState(10202) + p.SetState(10192) p.Match(PostgreSQLParserWHITESPACE_P) if p.HasError() { // Recognition error - abort rule @@ -156834,7 +156811,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt case PostgreSQLParserSTRIP_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(10203) + p.SetState(10193) p.Match(PostgreSQLParserSTRIP_P) if p.HasError() { // Recognition error - abort rule @@ -156842,7 +156819,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt } } { - p.SetState(10204) + p.SetState(10194) p.Match(PostgreSQLParserWHITESPACE_P) if p.HasError() { // Recognition error - abort rule @@ -157010,18 +156987,18 @@ func (s *Xmlexists_argumentContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentContext) { localctx = NewXmlexists_argumentContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1282, PostgreSQLParserRULE_xmlexists_argument) - p.SetState(10222) + p.EnterRule(localctx, 1284, PostgreSQLParserRULE_xmlexists_argument) + p.SetState(10212) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 989, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 987, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10207) + p.SetState(10197) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157029,14 +157006,14 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10208) + p.SetState(10198) p.C_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10209) + p.SetState(10199) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157044,18 +157021,18 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10210) + p.SetState(10200) p.C_expr() } { - p.SetState(10211) + p.SetState(10201) p.Xml_passing_mech() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10213) + p.SetState(10203) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157063,18 +157040,18 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10214) + p.SetState(10204) p.Xml_passing_mech() } { - p.SetState(10215) + p.SetState(10205) p.C_expr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10217) + p.SetState(10207) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157082,15 +157059,15 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10218) + p.SetState(10208) p.Xml_passing_mech() } { - p.SetState(10219) + p.SetState(10209) p.C_expr() } { - p.SetState(10220) + p.SetState(10210) p.Xml_passing_mech() } @@ -157203,12 +157180,12 @@ func (s *Xml_passing_mechContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Xml_passing_mech() (localctx IXml_passing_mechContext) { localctx = NewXml_passing_mechContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1284, PostgreSQLParserRULE_xml_passing_mech) + p.EnterRule(localctx, 1286, PostgreSQLParserRULE_xml_passing_mech) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10224) + p.SetState(10214) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -157216,7 +157193,7 @@ func (p *PostgreSQLParser) Xml_passing_mech() (localctx IXml_passing_mechContext } } { - p.SetState(10225) + p.SetState(10215) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserREF || _la == PostgreSQLParserVALUE_P) { @@ -157354,10 +157331,10 @@ func (s *Within_group_clauseContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseContext) { localctx = NewWithin_group_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1286, PostgreSQLParserRULE_within_group_clause) + p.EnterRule(localctx, 1288, PostgreSQLParserRULE_within_group_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10227) + p.SetState(10217) p.Match(PostgreSQLParserWITHIN) if p.HasError() { // Recognition error - abort rule @@ -157365,7 +157342,7 @@ func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseC } } { - p.SetState(10228) + p.SetState(10218) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -157373,7 +157350,7 @@ func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseC } } { - p.SetState(10229) + p.SetState(10219) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157381,11 +157358,11 @@ func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseC } } { - p.SetState(10230) + p.SetState(10220) p.Sort_clause() } { - p.SetState(10231) + p.SetState(10221) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157520,10 +157497,10 @@ func (s *Filter_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { localctx = NewFilter_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1288, PostgreSQLParserRULE_filter_clause) + p.EnterRule(localctx, 1290, PostgreSQLParserRULE_filter_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10233) + p.SetState(10223) p.Match(PostgreSQLParserFILTER) if p.HasError() { // Recognition error - abort rule @@ -157531,7 +157508,7 @@ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { } } { - p.SetState(10234) + p.SetState(10224) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157539,7 +157516,7 @@ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { } } { - p.SetState(10235) + p.SetState(10225) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -157547,11 +157524,11 @@ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { } } { - p.SetState(10236) + p.SetState(10226) p.A_expr() } { - p.SetState(10237) + p.SetState(10227) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157671,10 +157648,10 @@ func (s *Window_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Window_clause() (localctx IWindow_clauseContext) { localctx = NewWindow_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1290, PostgreSQLParserRULE_window_clause) + p.EnterRule(localctx, 1292, PostgreSQLParserRULE_window_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10239) + p.SetState(10229) p.Match(PostgreSQLParserWINDOW) if p.HasError() { // Recognition error - abort rule @@ -157682,7 +157659,7 @@ func (p *PostgreSQLParser) Window_clause() (localctx IWindow_clauseContext) { } } { - p.SetState(10240) + p.SetState(10230) p.Window_definition_list() } @@ -157829,27 +157806,27 @@ func (s *Window_definition_listContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Window_definition_list() (localctx IWindow_definition_listContext) { localctx = NewWindow_definition_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1292, PostgreSQLParserRULE_window_definition_list) + p.EnterRule(localctx, 1294, PostgreSQLParserRULE_window_definition_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10242) + p.SetState(10232) p.Window_definition() } - p.SetState(10247) + p.SetState(10237) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 990, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 988, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10243) + p.SetState(10233) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -157857,17 +157834,17 @@ func (p *PostgreSQLParser) Window_definition_list() (localctx IWindow_definition } } { - p.SetState(10244) + p.SetState(10234) p.Window_definition() } } - p.SetState(10249) + p.SetState(10239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 990, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 988, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -158002,14 +157979,14 @@ func (s *Window_definitionContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Window_definition() (localctx IWindow_definitionContext) { localctx = NewWindow_definitionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1294, PostgreSQLParserRULE_window_definition) + p.EnterRule(localctx, 1296, PostgreSQLParserRULE_window_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(10250) + p.SetState(10240) p.Colid() } { - p.SetState(10251) + p.SetState(10241) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -158017,7 +157994,7 @@ func (p *PostgreSQLParser) Window_definition() (localctx IWindow_definitionConte } } { - p.SetState(10252) + p.SetState(10242) p.Window_specification() } @@ -158150,17 +158127,17 @@ func (s *Over_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Over_clause() (localctx IOver_clauseContext) { localctx = NewOver_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1296, PostgreSQLParserRULE_over_clause) + p.EnterRule(localctx, 1298, PostgreSQLParserRULE_over_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10254) + p.SetState(10244) p.Match(PostgreSQLParserOVER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10257) + p.SetState(10247) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158169,13 +158146,13 @@ func (p *PostgreSQLParser) Over_clause() (localctx IOver_clauseContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(10255) + p.SetState(10245) p.Window_specification() } case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(10256) + p.SetState(10246) p.Colid() } @@ -158352,31 +158329,31 @@ func (s *Window_specificationContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificationContext) { localctx = NewWindow_specificationContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1298, PostgreSQLParserRULE_window_specification) + p.EnterRule(localctx, 1300, PostgreSQLParserRULE_window_specification) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10259) + p.SetState(10249) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10261) + p.SetState(10251) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 992, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 990, p.GetParserRuleContext()) == 1 { { - p.SetState(10260) + p.SetState(10250) p.Opt_existing_window_name() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(10264) + p.SetState(10254) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158385,12 +158362,12 @@ func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificatio if _la == PostgreSQLParserPARTITION { { - p.SetState(10263) + p.SetState(10253) p.Opt_partition_clause() } } - p.SetState(10267) + p.SetState(10257) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158399,12 +158376,12 @@ func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificatio if _la == PostgreSQLParserORDER { { - p.SetState(10266) + p.SetState(10256) p.Opt_sort_clause() } } - p.SetState(10270) + p.SetState(10260) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158413,13 +158390,13 @@ func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificatio if _la == PostgreSQLParserRANGE || _la == PostgreSQLParserROWS || _la == PostgreSQLParserGROUPS { { - p.SetState(10269) + p.SetState(10259) p.Opt_frame_clause() } } { - p.SetState(10272) + p.SetState(10262) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -158534,10 +158511,10 @@ func (s *Opt_existing_window_nameContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opt_existing_window_name() (localctx IOpt_existing_window_nameContext) { localctx = NewOpt_existing_window_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1300, PostgreSQLParserRULE_opt_existing_window_name) + p.EnterRule(localctx, 1302, PostgreSQLParserRULE_opt_existing_window_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10274) + p.SetState(10264) p.Colid() } @@ -158658,10 +158635,10 @@ func (s *Opt_partition_clauseContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Opt_partition_clause() (localctx IOpt_partition_clauseContext) { localctx = NewOpt_partition_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1302, PostgreSQLParserRULE_opt_partition_clause) + p.EnterRule(localctx, 1304, PostgreSQLParserRULE_opt_partition_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10276) + p.SetState(10266) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -158669,7 +158646,7 @@ func (p *PostgreSQLParser) Opt_partition_clause() (localctx IOpt_partition_claus } } { - p.SetState(10277) + p.SetState(10267) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -158677,7 +158654,7 @@ func (p *PostgreSQLParser) Opt_partition_clause() (localctx IOpt_partition_claus } } { - p.SetState(10278) + p.SetState(10268) p.Expr_list() } @@ -158820,10 +158797,10 @@ func (s *Opt_frame_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext) { localctx = NewOpt_frame_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1304, PostgreSQLParserRULE_opt_frame_clause) + p.EnterRule(localctx, 1306, PostgreSQLParserRULE_opt_frame_clause) var _la int - p.SetState(10295) + p.SetState(10285) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158833,7 +158810,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext case PostgreSQLParserRANGE: p.EnterOuterAlt(localctx, 1) { - p.SetState(10280) + p.SetState(10270) p.Match(PostgreSQLParserRANGE) if p.HasError() { // Recognition error - abort rule @@ -158841,10 +158818,10 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext } } { - p.SetState(10281) + p.SetState(10271) p.Frame_extent() } - p.SetState(10283) + p.SetState(10273) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158853,7 +158830,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext if _la == PostgreSQLParserEXCLUDE { { - p.SetState(10282) + p.SetState(10272) p.Opt_window_exclusion_clause() } @@ -158862,7 +158839,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext case PostgreSQLParserROWS: p.EnterOuterAlt(localctx, 2) { - p.SetState(10285) + p.SetState(10275) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -158870,10 +158847,10 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext } } { - p.SetState(10286) + p.SetState(10276) p.Frame_extent() } - p.SetState(10288) + p.SetState(10278) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158882,7 +158859,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext if _la == PostgreSQLParserEXCLUDE { { - p.SetState(10287) + p.SetState(10277) p.Opt_window_exclusion_clause() } @@ -158891,7 +158868,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext case PostgreSQLParserGROUPS: p.EnterOuterAlt(localctx, 3) { - p.SetState(10290) + p.SetState(10280) p.Match(PostgreSQLParserGROUPS) if p.HasError() { // Recognition error - abort rule @@ -158899,10 +158876,10 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext } } { - p.SetState(10291) + p.SetState(10281) p.Frame_extent() } - p.SetState(10293) + p.SetState(10283) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158911,7 +158888,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext if _la == PostgreSQLParserEXCLUDE { { - p.SetState(10292) + p.SetState(10282) p.Opt_window_exclusion_clause() } @@ -159065,25 +159042,25 @@ func (s *Frame_extentContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Frame_extent() (localctx IFrame_extentContext) { localctx = NewFrame_extentContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1306, PostgreSQLParserRULE_frame_extent) - p.SetState(10303) + p.EnterRule(localctx, 1308, PostgreSQLParserRULE_frame_extent) + p.SetState(10293) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1000, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 998, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10297) + p.SetState(10287) p.Frame_bound() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10298) + p.SetState(10288) p.Match(PostgreSQLParserBETWEEN) if p.HasError() { // Recognition error - abort rule @@ -159091,11 +159068,11 @@ func (p *PostgreSQLParser) Frame_extent() (localctx IFrame_extentContext) { } } { - p.SetState(10299) + p.SetState(10289) p.Frame_bound() } { - p.SetState(10300) + p.SetState(10290) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -159103,7 +159080,7 @@ func (p *PostgreSQLParser) Frame_extent() (localctx IFrame_extentContext) { } } { - p.SetState(10301) + p.SetState(10291) p.Frame_bound() } @@ -159243,20 +159220,20 @@ func (s *Frame_boundContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { localctx = NewFrame_boundContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1308, PostgreSQLParserRULE_frame_bound) + p.EnterRule(localctx, 1310, PostgreSQLParserRULE_frame_bound) var _la int - p.SetState(10312) + p.SetState(10302) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1001, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 999, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10305) + p.SetState(10295) p.Match(PostgreSQLParserUNBOUNDED) if p.HasError() { // Recognition error - abort rule @@ -159264,7 +159241,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { } } { - p.SetState(10306) + p.SetState(10296) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFOLLOWING || _la == PostgreSQLParserPRECEDING) { @@ -159278,7 +159255,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10307) + p.SetState(10297) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -159286,7 +159263,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { } } { - p.SetState(10308) + p.SetState(10298) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159297,11 +159274,11 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10309) + p.SetState(10299) p.A_expr() } { - p.SetState(10310) + p.SetState(10300) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFOLLOWING || _la == PostgreSQLParserPRECEDING) { @@ -159441,17 +159418,17 @@ func (s *Opt_window_exclusion_clauseContext) Accept(visitor antlr.ParseTreeVisit func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_exclusion_clauseContext) { localctx = NewOpt_window_exclusion_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1310, PostgreSQLParserRULE_opt_window_exclusion_clause) + p.EnterRule(localctx, 1312, PostgreSQLParserRULE_opt_window_exclusion_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10314) + p.SetState(10304) p.Match(PostgreSQLParserEXCLUDE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10321) + p.SetState(10311) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159460,7 +159437,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e switch p.GetTokenStream().LA(1) { case PostgreSQLParserCURRENT_P: { - p.SetState(10315) + p.SetState(10305) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -159468,7 +159445,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e } } { - p.SetState(10316) + p.SetState(10306) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159478,7 +159455,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e case PostgreSQLParserGROUP_P: { - p.SetState(10317) + p.SetState(10307) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -159488,7 +159465,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e case PostgreSQLParserTIES: { - p.SetState(10318) + p.SetState(10308) p.Match(PostgreSQLParserTIES) if p.HasError() { // Recognition error - abort rule @@ -159498,7 +159475,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e case PostgreSQLParserNO: { - p.SetState(10319) + p.SetState(10309) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -159506,7 +159483,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e } } { - p.SetState(10320) + p.SetState(10310) p.Match(PostgreSQLParserOTHERS) if p.HasError() { // Recognition error - abort rule @@ -159663,10 +159640,10 @@ func (s *RowContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Row() (localctx IRowContext) { localctx = NewRowContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1312, PostgreSQLParserRULE_row) + p.EnterRule(localctx, 1314, PostgreSQLParserRULE_row) var _la int - p.SetState(10335) + p.SetState(10325) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159676,7 +159653,7 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { case PostgreSQLParserROW: p.EnterOuterAlt(localctx, 1) { - p.SetState(10323) + p.SetState(10313) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159684,14 +159661,14 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { } } { - p.SetState(10324) + p.SetState(10314) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10326) + p.SetState(10316) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159700,13 +159677,13 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(10325) + p.SetState(10315) p.Expr_list() } } { - p.SetState(10328) + p.SetState(10318) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -159717,7 +159694,7 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 2) { - p.SetState(10329) + p.SetState(10319) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -159725,11 +159702,11 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { } } { - p.SetState(10330) + p.SetState(10320) p.Expr_list() } { - p.SetState(10331) + p.SetState(10321) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -159737,11 +159714,11 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { } } { - p.SetState(10332) + p.SetState(10322) p.A_expr() } { - p.SetState(10333) + p.SetState(10323) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -159876,12 +159853,12 @@ func (s *Explicit_rowContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Explicit_row() (localctx IExplicit_rowContext) { localctx = NewExplicit_rowContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1314, PostgreSQLParserRULE_explicit_row) + p.EnterRule(localctx, 1316, PostgreSQLParserRULE_explicit_row) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10337) + p.SetState(10327) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159889,14 +159866,14 @@ func (p *PostgreSQLParser) Explicit_row() (localctx IExplicit_rowContext) { } } { - p.SetState(10338) + p.SetState(10328) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10340) + p.SetState(10330) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159905,13 +159882,13 @@ func (p *PostgreSQLParser) Explicit_row() (localctx IExplicit_rowContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(10339) + p.SetState(10329) p.Expr_list() } } { - p.SetState(10342) + p.SetState(10332) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160058,10 +160035,10 @@ func (s *Implicit_rowContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Implicit_row() (localctx IImplicit_rowContext) { localctx = NewImplicit_rowContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1316, PostgreSQLParserRULE_implicit_row) + p.EnterRule(localctx, 1318, PostgreSQLParserRULE_implicit_row) p.EnterOuterAlt(localctx, 1) { - p.SetState(10344) + p.SetState(10334) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160069,11 +160046,11 @@ func (p *PostgreSQLParser) Implicit_row() (localctx IImplicit_rowContext) { } } { - p.SetState(10345) + p.SetState(10335) p.Expr_list() } { - p.SetState(10346) + p.SetState(10336) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -160081,11 +160058,11 @@ func (p *PostgreSQLParser) Implicit_row() (localctx IImplicit_rowContext) { } } { - p.SetState(10347) + p.SetState(10337) p.A_expr() } { - p.SetState(10348) + p.SetState(10338) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160198,12 +160175,12 @@ func (s *Sub_typeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Sub_type() (localctx ISub_typeContext) { localctx = NewSub_typeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1318, PostgreSQLParserRULE_sub_type) + p.EnterRule(localctx, 1320, PostgreSQLParserRULE_sub_type) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10350) + p.SetState(10340) _la = p.GetTokenStream().LA(1) if !((int64((_la-30)) & ^0x3f) == 0 && ((int64(1)<<(_la-30))&1152921504606846993) != 0) { @@ -160326,8 +160303,8 @@ func (s *All_opContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) All_op() (localctx IAll_opContext) { localctx = NewAll_opContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1320, PostgreSQLParserRULE_all_op) - p.SetState(10354) + p.EnterRule(localctx, 1322, PostgreSQLParserRULE_all_op) + p.SetState(10344) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -160337,7 +160314,7 @@ func (p *PostgreSQLParser) All_op() (localctx IAll_opContext) { case PostgreSQLParserOperator: p.EnterOuterAlt(localctx, 1) { - p.SetState(10352) + p.SetState(10342) p.Match(PostgreSQLParserOperator) if p.HasError() { // Recognition error - abort rule @@ -160348,7 +160325,7 @@ func (p *PostgreSQLParser) All_op() (localctx IAll_opContext) { case PostgreSQLParserSTAR, PostgreSQLParserEQUAL, PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserSLASH, PostgreSQLParserCARET, PostgreSQLParserLT, PostgreSQLParserGT, PostgreSQLParserLESS_EQUALS, PostgreSQLParserGREATER_EQUALS, PostgreSQLParserNOT_EQUALS, PostgreSQLParserPERCENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10353) + p.SetState(10343) p.Mathop() } @@ -160507,12 +160484,12 @@ func (s *MathopContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Mathop() (localctx IMathopContext) { localctx = NewMathopContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1322, PostgreSQLParserRULE_mathop) + p.EnterRule(localctx, 1324, PostgreSQLParserRULE_mathop) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10356) + p.SetState(10346) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&178517504) != 0) { @@ -160650,8 +160627,8 @@ func (s *Qual_opContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { localctx = NewQual_opContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1324, PostgreSQLParserRULE_qual_op) - p.SetState(10364) + p.EnterRule(localctx, 1326, PostgreSQLParserRULE_qual_op) + p.SetState(10354) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -160661,7 +160638,7 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { case PostgreSQLParserOperator: p.EnterOuterAlt(localctx, 1) { - p.SetState(10358) + p.SetState(10348) p.Match(PostgreSQLParserOperator) if p.HasError() { // Recognition error - abort rule @@ -160672,7 +160649,7 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { case PostgreSQLParserOPERATOR: p.EnterOuterAlt(localctx, 2) { - p.SetState(10359) + p.SetState(10349) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -160680,7 +160657,7 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { } } { - p.SetState(10360) + p.SetState(10350) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160688,11 +160665,11 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { } } { - p.SetState(10361) + p.SetState(10351) p.Any_operator() } { - p.SetState(10362) + p.SetState(10352) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160844,8 +160821,8 @@ func (s *Qual_all_opContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Qual_all_op() (localctx IQual_all_opContext) { localctx = NewQual_all_opContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1326, PostgreSQLParserRULE_qual_all_op) - p.SetState(10372) + p.EnterRule(localctx, 1328, PostgreSQLParserRULE_qual_all_op) + p.SetState(10362) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -160855,14 +160832,14 @@ func (p *PostgreSQLParser) Qual_all_op() (localctx IQual_all_opContext) { case PostgreSQLParserSTAR, PostgreSQLParserEQUAL, PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserSLASH, PostgreSQLParserCARET, PostgreSQLParserLT, PostgreSQLParserGT, PostgreSQLParserLESS_EQUALS, PostgreSQLParserGREATER_EQUALS, PostgreSQLParserNOT_EQUALS, PostgreSQLParserPERCENT, PostgreSQLParserOperator: p.EnterOuterAlt(localctx, 1) { - p.SetState(10366) + p.SetState(10356) p.All_op() } case PostgreSQLParserOPERATOR: p.EnterOuterAlt(localctx, 2) { - p.SetState(10367) + p.SetState(10357) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -160870,7 +160847,7 @@ func (p *PostgreSQLParser) Qual_all_op() (localctx IQual_all_opContext) { } } { - p.SetState(10368) + p.SetState(10358) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160878,11 +160855,11 @@ func (p *PostgreSQLParser) Qual_all_op() (localctx IQual_all_opContext) { } } { - p.SetState(10369) + p.SetState(10359) p.Any_operator() } { - p.SetState(10370) + p.SetState(10360) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161049,25 +161026,25 @@ func (s *Subquery_OpContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { localctx = NewSubquery_OpContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1328, PostgreSQLParserRULE_subquery_Op) - p.SetState(10386) + p.EnterRule(localctx, 1330, PostgreSQLParserRULE_subquery_Op) + p.SetState(10376) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1009, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1007, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10374) + p.SetState(10364) p.All_op() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10375) + p.SetState(10365) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -161075,7 +161052,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10376) + p.SetState(10366) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161083,11 +161060,11 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10377) + p.SetState(10367) p.Any_operator() } { - p.SetState(10378) + p.SetState(10368) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161098,7 +161075,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10380) + p.SetState(10370) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -161109,7 +161086,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10381) + p.SetState(10371) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -161117,7 +161094,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10382) + p.SetState(10372) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -161128,7 +161105,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10383) + p.SetState(10373) p.Match(PostgreSQLParserILIKE) if p.HasError() { // Recognition error - abort rule @@ -161139,7 +161116,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10384) + p.SetState(10374) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -161147,7 +161124,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10385) + p.SetState(10375) p.Match(PostgreSQLParserILIKE) if p.HasError() { // Recognition error - abort rule @@ -161302,27 +161279,27 @@ func (s *Expr_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Expr_list() (localctx IExpr_listContext) { localctx = NewExpr_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1330, PostgreSQLParserRULE_expr_list) + p.EnterRule(localctx, 1332, PostgreSQLParserRULE_expr_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10388) + p.SetState(10378) p.A_expr() } - p.SetState(10393) + p.SetState(10383) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1010, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1008, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10389) + p.SetState(10379) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -161330,17 +161307,17 @@ func (p *PostgreSQLParser) Expr_list() (localctx IExpr_listContext) { } } { - p.SetState(10390) + p.SetState(10380) p.A_expr() } } - p.SetState(10395) + p.SetState(10385) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1010, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1008, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -161489,27 +161466,27 @@ func (s *Func_arg_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Func_arg_list() (localctx IFunc_arg_listContext) { localctx = NewFunc_arg_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1332, PostgreSQLParserRULE_func_arg_list) + p.EnterRule(localctx, 1334, PostgreSQLParserRULE_func_arg_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10396) + p.SetState(10386) p.Func_arg_expr() } - p.SetState(10401) + p.SetState(10391) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1011, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1009, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10397) + p.SetState(10387) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -161517,17 +161494,17 @@ func (p *PostgreSQLParser) Func_arg_list() (localctx IFunc_arg_listContext) { } } { - p.SetState(10398) + p.SetState(10388) p.Func_arg_expr() } } - p.SetState(10403) + p.SetState(10393) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1011, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1009, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -161667,31 +161644,31 @@ func (s *Func_arg_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Func_arg_expr() (localctx IFunc_arg_exprContext) { localctx = NewFunc_arg_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1334, PostgreSQLParserRULE_func_arg_expr) + p.EnterRule(localctx, 1336, PostgreSQLParserRULE_func_arg_expr) var _la int - p.SetState(10409) + p.SetState(10399) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1012, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1010, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10404) + p.SetState(10394) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10405) + p.SetState(10395) p.Param_name() } { - p.SetState(10406) + p.SetState(10396) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCOLON_EQUALS || _la == PostgreSQLParserEQUALS_GREATER) { @@ -161702,7 +161679,7 @@ func (p *PostgreSQLParser) Func_arg_expr() (localctx IFunc_arg_exprContext) { } } { - p.SetState(10407) + p.SetState(10397) p.A_expr() } @@ -161853,15 +161830,15 @@ func (s *Type_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Type_list() (localctx IType_listContext) { localctx = NewType_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1336, PostgreSQLParserRULE_type_list) + p.EnterRule(localctx, 1338, PostgreSQLParserRULE_type_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10411) + p.SetState(10401) p.Typename() } - p.SetState(10416) + p.SetState(10406) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161870,7 +161847,7 @@ func (p *PostgreSQLParser) Type_list() (localctx IType_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10412) + p.SetState(10402) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -161878,11 +161855,11 @@ func (p *PostgreSQLParser) Type_list() (localctx IType_listContext) { } } { - p.SetState(10413) + p.SetState(10403) p.Typename() } - p.SetState(10418) + p.SetState(10408) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162024,17 +162001,17 @@ func (s *Array_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Array_expr() (localctx IArray_exprContext) { localctx = NewArray_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1338, PostgreSQLParserRULE_array_expr) + p.EnterRule(localctx, 1340, PostgreSQLParserRULE_array_expr) p.EnterOuterAlt(localctx, 1) { - p.SetState(10419) + p.SetState(10409) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10422) + p.SetState(10412) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162042,13 +162019,13 @@ func (p *PostgreSQLParser) Array_expr() (localctx IArray_exprContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN, PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserPARAM, PostgreSQLParserOperator, PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserSESSION_USER, PostgreSQLParserTABLE, PostgreSQLParserTRUE_P, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserJSON_SCALAR, PostgreSQLParserJSON_SERIALIZE, PostgreSQLParserMERGE_ACTION, PostgreSQLParserJSON_QUERY, PostgreSQLParserJSON_EXISTS, PostgreSQLParserJSON_VALUE, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserRIGHT, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserBinaryStringConstant, PostgreSQLParserHexadecimalStringConstant, PostgreSQLParserIntegral, PostgreSQLParserNumeric, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER, PostgreSQLParserEscapeStringConstant: { - p.SetState(10420) + p.SetState(10410) p.Expr_list() } case PostgreSQLParserOPEN_BRACKET: { - p.SetState(10421) + p.SetState(10411) p.Array_expr_list() } @@ -162057,7 +162034,7 @@ func (p *PostgreSQLParser) Array_expr() (localctx IArray_exprContext) { default: } { - p.SetState(10424) + p.SetState(10414) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -162208,15 +162185,15 @@ func (s *Array_expr_listContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Array_expr_list() (localctx IArray_expr_listContext) { localctx = NewArray_expr_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1340, PostgreSQLParserRULE_array_expr_list) + p.EnterRule(localctx, 1342, PostgreSQLParserRULE_array_expr_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10426) + p.SetState(10416) p.Array_expr() } - p.SetState(10431) + p.SetState(10421) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162225,7 +162202,7 @@ func (p *PostgreSQLParser) Array_expr_list() (localctx IArray_expr_listContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(10427) + p.SetState(10417) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -162233,11 +162210,11 @@ func (p *PostgreSQLParser) Array_expr_list() (localctx IArray_expr_listContext) } } { - p.SetState(10428) + p.SetState(10418) p.Array_expr() } - p.SetState(10433) + p.SetState(10423) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162374,14 +162351,14 @@ func (s *Extract_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Extract_list() (localctx IExtract_listContext) { localctx = NewExtract_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1342, PostgreSQLParserRULE_extract_list) + p.EnterRule(localctx, 1344, PostgreSQLParserRULE_extract_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(10434) + p.SetState(10424) p.Extract_arg() } { - p.SetState(10435) + p.SetState(10425) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -162389,7 +162366,7 @@ func (p *PostgreSQLParser) Extract_list() (localctx IExtract_listContext) { } } { - p.SetState(10436) + p.SetState(10426) p.A_expr() } @@ -162547,8 +162524,8 @@ func (s *Extract_argContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { localctx = NewExtract_argContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1344, PostgreSQLParserRULE_extract_arg) - p.SetState(10446) + p.EnterRule(localctx, 1346, PostgreSQLParserRULE_extract_arg) + p.SetState(10436) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162558,14 +162535,14 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserIS, PostgreSQLParserOUTER_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserBACKWARD, PostgreSQLParserCHAIN, PostgreSQLParserCLOSE, PostgreSQLParserCOMMIT, PostgreSQLParserCONTINUE_P, PostgreSQLParserCURSOR, PostgreSQLParserFIRST_P, PostgreSQLParserFORWARD, PostgreSQLParserINSERT, PostgreSQLParserLAST_P, PostgreSQLParserMOVE, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserOPTION, PostgreSQLParserPRIOR, PostgreSQLParserRELATIVE_P, PostgreSQLParserRESET, PostgreSQLParserROLLBACK, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSET, PostgreSQLParserTYPE_P, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserROWTYPE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(10438) + p.SetState(10428) p.Identifier() } case PostgreSQLParserYEAR_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(10439) + p.SetState(10429) p.Match(PostgreSQLParserYEAR_P) if p.HasError() { // Recognition error - abort rule @@ -162576,7 +162553,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserMONTH_P: p.EnterOuterAlt(localctx, 3) { - p.SetState(10440) + p.SetState(10430) p.Match(PostgreSQLParserMONTH_P) if p.HasError() { // Recognition error - abort rule @@ -162587,7 +162564,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserDAY_P: p.EnterOuterAlt(localctx, 4) { - p.SetState(10441) + p.SetState(10431) p.Match(PostgreSQLParserDAY_P) if p.HasError() { // Recognition error - abort rule @@ -162598,7 +162575,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserHOUR_P: p.EnterOuterAlt(localctx, 5) { - p.SetState(10442) + p.SetState(10432) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -162609,7 +162586,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserMINUTE_P: p.EnterOuterAlt(localctx, 6) { - p.SetState(10443) + p.SetState(10433) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -162620,7 +162597,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserSECOND_P: p.EnterOuterAlt(localctx, 7) { - p.SetState(10444) + p.SetState(10434) p.Match(PostgreSQLParserSECOND_P) if p.HasError() { // Recognition error - abort rule @@ -162631,7 +162608,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 8) { - p.SetState(10445) + p.SetState(10435) p.Sconst() } @@ -162750,12 +162727,12 @@ func (s *Unicode_normal_formContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Unicode_normal_form() (localctx IUnicode_normal_formContext) { localctx = NewUnicode_normal_formContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1346, PostgreSQLParserRULE_unicode_normal_form) + p.EnterRule(localctx, 1348, PostgreSQLParserRULE_unicode_normal_form) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10448) + p.SetState(10438) _la = p.GetTokenStream().LA(1) if !((int64((_la-504)) & ^0x3f) == 0 && ((int64(1)<<(_la-504))&15) != 0) { @@ -162914,16 +162891,16 @@ func (s *Overlay_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { localctx = NewOverlay_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1348, PostgreSQLParserRULE_overlay_list) + p.EnterRule(localctx, 1350, PostgreSQLParserRULE_overlay_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10450) + p.SetState(10440) p.A_expr() } { - p.SetState(10451) + p.SetState(10441) p.Match(PostgreSQLParserPLACING) if p.HasError() { // Recognition error - abort rule @@ -162931,11 +162908,11 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { } } { - p.SetState(10452) + p.SetState(10442) p.A_expr() } { - p.SetState(10453) + p.SetState(10443) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -162943,10 +162920,10 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { } } { - p.SetState(10454) + p.SetState(10444) p.A_expr() } - p.SetState(10457) + p.SetState(10447) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162955,7 +162932,7 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { if _la == PostgreSQLParserFOR { { - p.SetState(10455) + p.SetState(10445) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -162963,7 +162940,7 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { } } { - p.SetState(10456) + p.SetState(10446) p.A_expr() } @@ -163107,14 +163084,14 @@ func (s *Position_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Position_list() (localctx IPosition_listContext) { localctx = NewPosition_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1350, PostgreSQLParserRULE_position_list) + p.EnterRule(localctx, 1352, PostgreSQLParserRULE_position_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(10459) + p.SetState(10449) p.b_expr(0) } { - p.SetState(10460) + p.SetState(10450) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -163122,7 +163099,7 @@ func (p *PostgreSQLParser) Position_list() (localctx IPosition_listContext) { } } { - p.SetState(10461) + p.SetState(10451) p.b_expr(0) } @@ -163296,22 +163273,22 @@ func (s *Substr_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { localctx = NewSubstr_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1352, PostgreSQLParserRULE_substr_list) - p.SetState(10490) + p.EnterRule(localctx, 1354, PostgreSQLParserRULE_substr_list) + p.SetState(10480) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1018, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1016, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10463) + p.SetState(10453) p.A_expr() } { - p.SetState(10464) + p.SetState(10454) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163319,11 +163296,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10465) + p.SetState(10455) p.A_expr() } { - p.SetState(10466) + p.SetState(10456) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163331,18 +163308,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10467) + p.SetState(10457) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10469) + p.SetState(10459) p.A_expr() } { - p.SetState(10470) + p.SetState(10460) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163350,11 +163327,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10471) + p.SetState(10461) p.A_expr() } { - p.SetState(10472) + p.SetState(10462) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163362,18 +163339,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10473) + p.SetState(10463) p.A_expr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10475) + p.SetState(10465) p.A_expr() } { - p.SetState(10476) + p.SetState(10466) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163381,18 +163358,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10477) + p.SetState(10467) p.A_expr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10479) + p.SetState(10469) p.A_expr() } { - p.SetState(10480) + p.SetState(10470) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163400,18 +163377,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10481) + p.SetState(10471) p.A_expr() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10483) + p.SetState(10473) p.A_expr() } { - p.SetState(10484) + p.SetState(10474) p.Match(PostgreSQLParserSIMILAR) if p.HasError() { // Recognition error - abort rule @@ -163419,11 +163396,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10485) + p.SetState(10475) p.A_expr() } { - p.SetState(10486) + p.SetState(10476) p.Match(PostgreSQLParserESCAPE) if p.HasError() { // Recognition error - abort rule @@ -163431,14 +163408,14 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10487) + p.SetState(10477) p.A_expr() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10489) + p.SetState(10479) p.Expr_list() } @@ -163575,22 +163552,22 @@ func (s *Trim_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Trim_list() (localctx ITrim_listContext) { localctx = NewTrim_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1354, PostgreSQLParserRULE_trim_list) - p.SetState(10499) + p.EnterRule(localctx, 1356, PostgreSQLParserRULE_trim_list) + p.SetState(10489) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1019, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1017, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10492) + p.SetState(10482) p.A_expr() } { - p.SetState(10493) + p.SetState(10483) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163598,14 +163575,14 @@ func (p *PostgreSQLParser) Trim_list() (localctx ITrim_listContext) { } } { - p.SetState(10494) + p.SetState(10484) p.Expr_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10496) + p.SetState(10486) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163613,14 +163590,14 @@ func (p *PostgreSQLParser) Trim_list() (localctx ITrim_listContext) { } } { - p.SetState(10497) + p.SetState(10487) p.Expr_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10498) + p.SetState(10488) p.Expr_list() } @@ -163817,19 +163794,19 @@ func (s *In_expr_selectContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) In_expr() (localctx IIn_exprContext) { localctx = NewIn_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1356, PostgreSQLParserRULE_in_expr) - p.SetState(10506) + p.EnterRule(localctx, 1358, PostgreSQLParserRULE_in_expr) + p.SetState(10496) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1020, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1018, p.GetParserRuleContext()) { case 1: localctx = NewIn_expr_selectContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(10501) + p.SetState(10491) p.Select_with_parens() } @@ -163837,7 +163814,7 @@ func (p *PostgreSQLParser) In_expr() (localctx IIn_exprContext) { localctx = NewIn_expr_listContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(10502) + p.SetState(10492) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -163845,11 +163822,11 @@ func (p *PostgreSQLParser) In_expr() (localctx IIn_exprContext) { } } { - p.SetState(10503) + p.SetState(10493) p.Expr_list() } { - p.SetState(10504) + p.SetState(10494) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -164012,19 +163989,19 @@ func (s *Case_exprContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Case_expr() (localctx ICase_exprContext) { localctx = NewCase_exprContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1358, PostgreSQLParserRULE_case_expr) + p.EnterRule(localctx, 1360, PostgreSQLParserRULE_case_expr) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10508) + p.SetState(10498) p.Match(PostgreSQLParserCASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10510) + p.SetState(10500) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164033,16 +164010,16 @@ func (p *PostgreSQLParser) Case_expr() (localctx ICase_exprContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(10509) + p.SetState(10499) p.Case_arg() } } { - p.SetState(10512) + p.SetState(10502) p.When_clause_list() } - p.SetState(10514) + p.SetState(10504) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164051,13 +164028,13 @@ func (p *PostgreSQLParser) Case_expr() (localctx ICase_exprContext) { if _la == PostgreSQLParserELSE { { - p.SetState(10513) + p.SetState(10503) p.Case_default() } } { - p.SetState(10516) + p.SetState(10506) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -164198,11 +164175,11 @@ func (s *When_clause_listContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) When_clause_list() (localctx IWhen_clause_listContext) { localctx = NewWhen_clause_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1360, PostgreSQLParserRULE_when_clause_list) + p.EnterRule(localctx, 1362, PostgreSQLParserRULE_when_clause_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(10519) + p.SetState(10509) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164211,11 +164188,11 @@ func (p *PostgreSQLParser) When_clause_list() (localctx IWhen_clause_listContext for ok := true; ok; ok = _la == PostgreSQLParserWHEN { { - p.SetState(10518) + p.SetState(10508) p.When_clause() } - p.SetState(10521) + p.SetState(10511) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164366,10 +164343,10 @@ func (s *When_clauseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) When_clause() (localctx IWhen_clauseContext) { localctx = NewWhen_clauseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1362, PostgreSQLParserRULE_when_clause) + p.EnterRule(localctx, 1364, PostgreSQLParserRULE_when_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10523) + p.SetState(10513) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -164377,11 +164354,11 @@ func (p *PostgreSQLParser) When_clause() (localctx IWhen_clauseContext) { } } { - p.SetState(10524) + p.SetState(10514) p.A_expr() } { - p.SetState(10525) + p.SetState(10515) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -164389,7 +164366,7 @@ func (p *PostgreSQLParser) When_clause() (localctx IWhen_clauseContext) { } } { - p.SetState(10526) + p.SetState(10516) p.A_expr() } @@ -164505,10 +164482,10 @@ func (s *Case_defaultContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Case_default() (localctx ICase_defaultContext) { localctx = NewCase_defaultContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1364, PostgreSQLParserRULE_case_default) + p.EnterRule(localctx, 1366, PostgreSQLParserRULE_case_default) p.EnterOuterAlt(localctx, 1) { - p.SetState(10528) + p.SetState(10518) p.Match(PostgreSQLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -164516,7 +164493,7 @@ func (p *PostgreSQLParser) Case_default() (localctx ICase_defaultContext) { } } { - p.SetState(10529) + p.SetState(10519) p.A_expr() } @@ -164627,10 +164604,10 @@ func (s *Case_argContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Case_arg() (localctx ICase_argContext) { localctx = NewCase_argContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1366, PostgreSQLParserRULE_case_arg) + p.EnterRule(localctx, 1368, PostgreSQLParserRULE_case_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(10531) + p.SetState(10521) p.A_expr() } @@ -164758,18 +164735,18 @@ func (s *ColumnrefContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Columnref() (localctx IColumnrefContext) { localctx = NewColumnrefContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1368, PostgreSQLParserRULE_columnref) + p.EnterRule(localctx, 1370, PostgreSQLParserRULE_columnref) p.EnterOuterAlt(localctx, 1) { - p.SetState(10533) + p.SetState(10523) p.Colid() } - p.SetState(10535) + p.SetState(10525) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1024, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1022, p.GetParserRuleContext()) == 1 { { - p.SetState(10534) + p.SetState(10524) p.Indirection() } @@ -164969,10 +164946,10 @@ func (s *Indirection_elContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { localctx = NewIndirection_elContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1370, PostgreSQLParserRULE_indirection_el) + p.EnterRule(localctx, 1372, PostgreSQLParserRULE_indirection_el) var _la int - p.SetState(10554) + p.SetState(10544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164982,14 +164959,14 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { case PostgreSQLParserDOT: p.EnterOuterAlt(localctx, 1) { - p.SetState(10537) + p.SetState(10527) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10540) + p.SetState(10530) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164998,13 +164975,13 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserALL, PostgreSQLParserANALYSE, PostgreSQLParserANALYZE, PostgreSQLParserAND, PostgreSQLParserANY, PostgreSQLParserARRAY, PostgreSQLParserAS, PostgreSQLParserASC, PostgreSQLParserASYMMETRIC, PostgreSQLParserBOTH, PostgreSQLParserCASE, PostgreSQLParserCAST, PostgreSQLParserCHECK, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserCREATE, PostgreSQLParserCURRENT_CATALOG, PostgreSQLParserCURRENT_DATE, PostgreSQLParserCURRENT_ROLE, PostgreSQLParserCURRENT_TIME, PostgreSQLParserCURRENT_TIMESTAMP, PostgreSQLParserCURRENT_USER, PostgreSQLParserDEFAULT, PostgreSQLParserDEFERRABLE, PostgreSQLParserDESC, PostgreSQLParserDISTINCT, PostgreSQLParserDO, PostgreSQLParserELSE, PostgreSQLParserEXCEPT, PostgreSQLParserFALSE_P, PostgreSQLParserFETCH, PostgreSQLParserFOR, PostgreSQLParserFOREIGN, PostgreSQLParserFROM, PostgreSQLParserGRANT, PostgreSQLParserGROUP_P, PostgreSQLParserHAVING, PostgreSQLParserIN_P, PostgreSQLParserINITIALLY, PostgreSQLParserINTERSECT, PostgreSQLParserLATERAL_P, PostgreSQLParserLEADING, PostgreSQLParserLIMIT, PostgreSQLParserLOCALTIME, PostgreSQLParserLOCALTIMESTAMP, PostgreSQLParserNOT, PostgreSQLParserNULL_P, PostgreSQLParserOFFSET, PostgreSQLParserON, PostgreSQLParserONLY, PostgreSQLParserOR, PostgreSQLParserORDER, PostgreSQLParserPLACING, PostgreSQLParserPRIMARY, PostgreSQLParserREFERENCES, PostgreSQLParserRETURNING, PostgreSQLParserSELECT, PostgreSQLParserSESSION_USER, PostgreSQLParserSOME, PostgreSQLParserSYMMETRIC, PostgreSQLParserTABLE, PostgreSQLParserTHEN, PostgreSQLParserTO, PostgreSQLParserTRAILING, PostgreSQLParserTRUE_P, PostgreSQLParserUNION, PostgreSQLParserUNIQUE, PostgreSQLParserUSER, PostgreSQLParserUSING, PostgreSQLParserVARIADIC, PostgreSQLParserWHEN, PostgreSQLParserWHERE, PostgreSQLParserWINDOW, PostgreSQLParserWITH, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserEND_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(10538) + p.SetState(10528) p.Attr_name() } case PostgreSQLParserSTAR: { - p.SetState(10539) + p.SetState(10529) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -165020,28 +164997,28 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { case PostgreSQLParserOPEN_BRACKET: p.EnterOuterAlt(localctx, 2) { - p.SetState(10542) + p.SetState(10532) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10551) + p.SetState(10541) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1028, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1026, p.GetParserRuleContext()) { case 1: { - p.SetState(10543) + p.SetState(10533) p.A_expr() } case 2: - p.SetState(10545) + p.SetState(10535) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165050,20 +165027,20 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(10544) + p.SetState(10534) p.Opt_slice_bound() } } { - p.SetState(10547) + p.SetState(10537) p.Match(PostgreSQLParserCOLON) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10549) + p.SetState(10539) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165072,7 +165049,7 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(10548) + p.SetState(10538) p.Opt_slice_bound() } @@ -165082,7 +165059,7 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { goto errorExit } { - p.SetState(10553) + p.SetState(10543) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -165202,10 +165179,10 @@ func (s *Opt_slice_boundContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_slice_bound() (localctx IOpt_slice_boundContext) { localctx = NewOpt_slice_boundContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1372, PostgreSQLParserRULE_opt_slice_bound) + p.EnterRule(localctx, 1374, PostgreSQLParserRULE_opt_slice_bound) p.EnterOuterAlt(localctx, 1) { - p.SetState(10556) + p.SetState(10546) p.A_expr() } @@ -165342,11 +165319,11 @@ func (s *IndirectionContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Indirection() (localctx IIndirectionContext) { localctx = NewIndirectionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1374, PostgreSQLParserRULE_indirection) + p.EnterRule(localctx, 1376, PostgreSQLParserRULE_indirection) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10559) + p.SetState(10549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165356,7 +165333,7 @@ func (p *PostgreSQLParser) Indirection() (localctx IIndirectionContext) { switch _alt { case 1: { - p.SetState(10558) + p.SetState(10548) p.Indirection_el() } @@ -165365,9 +165342,9 @@ func (p *PostgreSQLParser) Indirection() (localctx IIndirectionContext) { goto errorExit } - p.SetState(10561) + p.SetState(10551) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1030, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1028, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -165506,33 +165483,33 @@ func (s *Opt_indirectionContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_indirection() (localctx IOpt_indirectionContext) { localctx = NewOpt_indirectionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1376, PostgreSQLParserRULE_opt_indirection) + p.EnterRule(localctx, 1378, PostgreSQLParserRULE_opt_indirection) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10566) + p.SetState(10556) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1031, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1029, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10563) + p.SetState(10553) p.Indirection_el() } } - p.SetState(10568) + p.SetState(10558) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1031, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1029, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -165645,10 +165622,10 @@ func (s *Opt_target_listContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_target_list() (localctx IOpt_target_listContext) { localctx = NewOpt_target_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1378, PostgreSQLParserRULE_opt_target_list) + p.EnterRule(localctx, 1380, PostgreSQLParserRULE_opt_target_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(10569) + p.SetState(10559) p.Target_list() } @@ -165795,27 +165772,27 @@ func (s *Target_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Target_list() (localctx ITarget_listContext) { localctx = NewTarget_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1380, PostgreSQLParserRULE_target_list) + p.EnterRule(localctx, 1382, PostgreSQLParserRULE_target_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10571) + p.SetState(10561) p.Target_el() } - p.SetState(10576) + p.SetState(10566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1032, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1030, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10572) + p.SetState(10562) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -165823,17 +165800,17 @@ func (p *PostgreSQLParser) Target_list() (localctx ITarget_listContext) { } } { - p.SetState(10573) + p.SetState(10563) p.Target_el() } } - p.SetState(10578) + p.SetState(10568) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1032, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1030, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -166024,8 +166001,8 @@ func (s *Target_starContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Target_el() (localctx ITarget_elContext) { localctx = NewTarget_elContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1382, PostgreSQLParserRULE_target_el) - p.SetState(10584) + p.EnterRule(localctx, 1384, PostgreSQLParserRULE_target_el) + p.SetState(10574) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166036,15 +166013,15 @@ func (p *PostgreSQLParser) Target_el() (localctx ITarget_elContext) { localctx = NewTarget_labelContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(10579) + p.SetState(10569) p.A_expr() } - p.SetState(10581) + p.SetState(10571) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1033, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1031, p.GetParserRuleContext()) == 1 { { - p.SetState(10580) + p.SetState(10570) p.Target_alias() } @@ -166056,7 +166033,7 @@ func (p *PostgreSQLParser) Target_el() (localctx ITarget_elContext) { localctx = NewTarget_starContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(10583) + p.SetState(10573) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -166198,8 +166175,8 @@ func (s *Target_aliasContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Target_alias() (localctx ITarget_aliasContext) { localctx = NewTarget_aliasContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1384, PostgreSQLParserRULE_target_alias) - p.SetState(10589) + p.EnterRule(localctx, 1386, PostgreSQLParserRULE_target_alias) + p.SetState(10579) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166209,7 +166186,7 @@ func (p *PostgreSQLParser) Target_alias() (localctx ITarget_aliasContext) { case PostgreSQLParserAS: p.EnterOuterAlt(localctx, 1) { - p.SetState(10586) + p.SetState(10576) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -166217,14 +166194,14 @@ func (p *PostgreSQLParser) Target_alias() (localctx ITarget_aliasContext) { } } { - p.SetState(10587) + p.SetState(10577) p.Collabel() } case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserIS, PostgreSQLParserOUTER_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserBACKWARD, PostgreSQLParserCHAIN, PostgreSQLParserCLOSE, PostgreSQLParserCOMMIT, PostgreSQLParserCONTINUE_P, PostgreSQLParserCURSOR, PostgreSQLParserFIRST_P, PostgreSQLParserFORWARD, PostgreSQLParserINSERT, PostgreSQLParserLAST_P, PostgreSQLParserMOVE, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserOPTION, PostgreSQLParserPRIOR, PostgreSQLParserRELATIVE_P, PostgreSQLParserRESET, PostgreSQLParserROLLBACK, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSET, PostgreSQLParserTYPE_P, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserROWTYPE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(10588) + p.SetState(10578) p.Identifier() } @@ -166376,27 +166353,27 @@ func (s *Qualified_name_listContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Qualified_name_list() (localctx IQualified_name_listContext) { localctx = NewQualified_name_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1386, PostgreSQLParserRULE_qualified_name_list) + p.EnterRule(localctx, 1388, PostgreSQLParserRULE_qualified_name_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10591) + p.SetState(10581) p.Qualified_name() } - p.SetState(10596) + p.SetState(10586) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1036, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1034, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10592) + p.SetState(10582) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -166404,17 +166381,17 @@ func (p *PostgreSQLParser) Qualified_name_list() (localctx IQualified_name_listC } } { - p.SetState(10593) + p.SetState(10583) p.Qualified_name() } } - p.SetState(10598) + p.SetState(10588) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1036, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1034, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -166544,15 +166521,15 @@ func (s *Qualified_nameContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Qualified_name() (localctx IQualified_nameContext) { localctx = NewQualified_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1388, PostgreSQLParserRULE_qualified_name) + p.EnterRule(localctx, 1390, PostgreSQLParserRULE_qualified_name) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10599) + p.SetState(10589) p.Colid() } - p.SetState(10601) + p.SetState(10591) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166561,7 +166538,7 @@ func (p *PostgreSQLParser) Qualified_name() (localctx IQualified_nameContext) { if _la == PostgreSQLParserOPEN_BRACKET || _la == PostgreSQLParserDOT { { - p.SetState(10600) + p.SetState(10590) p.Indirection() } @@ -166710,15 +166687,15 @@ func (s *Name_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Name_list() (localctx IName_listContext) { localctx = NewName_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1390, PostgreSQLParserRULE_name_list) + p.EnterRule(localctx, 1392, PostgreSQLParserRULE_name_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10603) + p.SetState(10593) p.Name() } - p.SetState(10608) + p.SetState(10598) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166727,7 +166704,7 @@ func (p *PostgreSQLParser) Name_list() (localctx IName_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10604) + p.SetState(10594) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -166735,11 +166712,11 @@ func (p *PostgreSQLParser) Name_list() (localctx IName_listContext) { } } { - p.SetState(10605) + p.SetState(10595) p.Name() } - p.SetState(10610) + p.SetState(10600) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166854,10 +166831,10 @@ func (s *NameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Name() (localctx INameContext) { localctx = NewNameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1392, PostgreSQLParserRULE_name) + p.EnterRule(localctx, 1394, PostgreSQLParserRULE_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10611) + p.SetState(10601) p.Colid() } @@ -166968,10 +166945,10 @@ func (s *Attr_nameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Attr_name() (localctx IAttr_nameContext) { localctx = NewAttr_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1394, PostgreSQLParserRULE_attr_name) + p.EnterRule(localctx, 1396, PostgreSQLParserRULE_attr_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10613) + p.SetState(10603) p.Collabel() } @@ -167082,10 +167059,10 @@ func (s *File_nameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) File_name() (localctx IFile_nameContext) { localctx = NewFile_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1396, PostgreSQLParserRULE_file_name) + p.EnterRule(localctx, 1398, PostgreSQLParserRULE_file_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10615) + p.SetState(10605) p.Sconst() } @@ -167257,43 +167234,43 @@ func (s *Func_nameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Func_name() (localctx IFunc_nameContext) { localctx = NewFunc_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1398, PostgreSQLParserRULE_func_name) - p.SetState(10624) + p.EnterRule(localctx, 1400, PostgreSQLParserRULE_func_name) + p.SetState(10614) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1039, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1037, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10617) + p.SetState(10607) p.Builtin_function_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10618) + p.SetState(10608) p.Type_function_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10619) + p.SetState(10609) p.Colid() } { - p.SetState(10620) + p.SetState(10610) p.Indirection() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10622) + p.SetState(10612) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -167304,7 +167281,7 @@ func (p *PostgreSQLParser) Func_name() (localctx IFunc_nameContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10623) + p.SetState(10613) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -167618,58 +167595,58 @@ func (s *AexprconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { localctx = NewAexprconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1400, PostgreSQLParserRULE_aexprconst) + p.EnterRule(localctx, 1402, PostgreSQLParserRULE_aexprconst) var _la int - p.SetState(10661) + p.SetState(10651) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1044, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1042, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10626) + p.SetState(10616) p.Iconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10627) + p.SetState(10617) p.Fconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10628) + p.SetState(10618) p.Sconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10629) + p.SetState(10619) p.Bconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10630) + p.SetState(10620) p.Xconst() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10631) + p.SetState(10621) p.Func_name() } - p.SetState(10641) + p.SetState(10631) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167678,13 +167655,13 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(10632) + p.SetState(10622) p.Sconst() } case PostgreSQLParserOPEN_PAREN: { - p.SetState(10633) + p.SetState(10623) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167692,10 +167669,10 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10634) + p.SetState(10624) p.Func_arg_list() } - p.SetState(10636) + p.SetState(10626) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167704,13 +167681,13 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { if _la == PostgreSQLParserORDER { { - p.SetState(10635) + p.SetState(10625) p.Opt_sort_clause() } } { - p.SetState(10638) + p.SetState(10628) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167718,7 +167695,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10639) + p.SetState(10629) p.Sconst() } @@ -167730,21 +167707,21 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10643) + p.SetState(10633) p.Consttypename() } { - p.SetState(10644) + p.SetState(10634) p.Sconst() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10646) + p.SetState(10636) p.Constinterval() } - p.SetState(10656) + p.SetState(10646) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167753,15 +167730,15 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(10647) + p.SetState(10637) p.Sconst() } - p.SetState(10649) + p.SetState(10639) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1042, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1040, p.GetParserRuleContext()) == 1 { { - p.SetState(10648) + p.SetState(10638) p.Opt_interval() } @@ -167771,7 +167748,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(10651) + p.SetState(10641) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167779,11 +167756,11 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10652) + p.SetState(10642) p.Iconst() } { - p.SetState(10653) + p.SetState(10643) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167791,7 +167768,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10654) + p.SetState(10644) p.Sconst() } @@ -167803,7 +167780,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(10658) + p.SetState(10648) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -167814,7 +167791,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(10659) + p.SetState(10649) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -167825,7 +167802,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(10660) + p.SetState(10650) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -167932,10 +167909,10 @@ func (s *XconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Xconst() (localctx IXconstContext) { localctx = NewXconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1402, PostgreSQLParserRULE_xconst) + p.EnterRule(localctx, 1404, PostgreSQLParserRULE_xconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10663) + p.SetState(10653) p.Match(PostgreSQLParserHexadecimalStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168038,10 +168015,10 @@ func (s *BconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Bconst() (localctx IBconstContext) { localctx = NewBconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1404, PostgreSQLParserRULE_bconst) + p.EnterRule(localctx, 1406, PostgreSQLParserRULE_bconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10665) + p.SetState(10655) p.Match(PostgreSQLParserBinaryStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168144,10 +168121,10 @@ func (s *FconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Fconst() (localctx IFconstContext) { localctx = NewFconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1406, PostgreSQLParserRULE_fconst) + p.EnterRule(localctx, 1408, PostgreSQLParserRULE_fconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10667) + p.SetState(10657) p.Match(PostgreSQLParserNumeric) if p.HasError() { // Recognition error - abort rule @@ -168250,10 +168227,10 @@ func (s *IconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Iconst() (localctx IIconstContext) { localctx = NewIconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1408, PostgreSQLParserRULE_iconst) + p.EnterRule(localctx, 1410, PostgreSQLParserRULE_iconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10669) + p.SetState(10659) p.Match(PostgreSQLParserIntegral) if p.HasError() { // Recognition error - abort rule @@ -168385,18 +168362,18 @@ func (s *SconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Sconst() (localctx ISconstContext) { localctx = NewSconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1410, PostgreSQLParserRULE_sconst) + p.EnterRule(localctx, 1412, PostgreSQLParserRULE_sconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10671) + p.SetState(10661) p.Anysconst() } - p.SetState(10673) + p.SetState(10663) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1045, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1043, p.GetParserRuleContext()) == 1 { { - p.SetState(10672) + p.SetState(10662) p.Opt_uescape() } @@ -168529,10 +168506,10 @@ func (s *AnysconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { localctx = NewAnysconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1412, PostgreSQLParserRULE_anysconst) + p.EnterRule(localctx, 1414, PostgreSQLParserRULE_anysconst) var _la int - p.SetState(10686) + p.SetState(10676) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168542,7 +168519,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(10675) + p.SetState(10665) p.Match(PostgreSQLParserStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168553,7 +168530,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserUnicodeEscapeStringConstant: p.EnterOuterAlt(localctx, 2) { - p.SetState(10676) + p.SetState(10666) p.Match(PostgreSQLParserUnicodeEscapeStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168564,14 +168541,14 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserBeginDollarStringConstant: p.EnterOuterAlt(localctx, 3) { - p.SetState(10677) + p.SetState(10667) p.Match(PostgreSQLParserBeginDollarStringConstant) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10681) + p.SetState(10671) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168580,7 +168557,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { for _la == PostgreSQLParserDollarText { { - p.SetState(10678) + p.SetState(10668) p.Match(PostgreSQLParserDollarText) if p.HasError() { // Recognition error - abort rule @@ -168588,7 +168565,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { } } - p.SetState(10683) + p.SetState(10673) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168596,7 +168573,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(10684) + p.SetState(10674) p.Match(PostgreSQLParserEndDollarStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168607,7 +168584,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 4) { - p.SetState(10685) + p.SetState(10675) p.Match(PostgreSQLParserEscapeStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168732,10 +168709,10 @@ func (s *Opt_uescapeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_uescape() (localctx IOpt_uescapeContext) { localctx = NewOpt_uescapeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1414, PostgreSQLParserRULE_opt_uescape) + p.EnterRule(localctx, 1416, PostgreSQLParserRULE_opt_uescape) p.EnterOuterAlt(localctx, 1) { - p.SetState(10688) + p.SetState(10678) p.Match(PostgreSQLParserUESCAPE) if p.HasError() { // Recognition error - abort rule @@ -168743,7 +168720,7 @@ func (p *PostgreSQLParser) Opt_uescape() (localctx IOpt_uescapeContext) { } } { - p.SetState(10689) + p.SetState(10679) p.Anysconst() } @@ -168864,8 +168841,8 @@ func (s *SignediconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { localctx = NewSignediconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1416, PostgreSQLParserRULE_signediconst) - p.SetState(10696) + p.EnterRule(localctx, 1418, PostgreSQLParserRULE_signediconst) + p.SetState(10686) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168875,14 +168852,14 @@ func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { case PostgreSQLParserIntegral: p.EnterOuterAlt(localctx, 1) { - p.SetState(10691) + p.SetState(10681) p.Iconst() } case PostgreSQLParserPLUS: p.EnterOuterAlt(localctx, 2) { - p.SetState(10692) + p.SetState(10682) p.Match(PostgreSQLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -168890,14 +168867,14 @@ func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { } } { - p.SetState(10693) + p.SetState(10683) p.Iconst() } case PostgreSQLParserMINUS: p.EnterOuterAlt(localctx, 3) { - p.SetState(10694) + p.SetState(10684) p.Match(PostgreSQLParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -168905,7 +168882,7 @@ func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { } } { - p.SetState(10695) + p.SetState(10685) p.Iconst() } @@ -169021,10 +168998,10 @@ func (s *RoleidContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Roleid() (localctx IRoleidContext) { localctx = NewRoleidContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1418, PostgreSQLParserRULE_roleid) + p.EnterRule(localctx, 1420, PostgreSQLParserRULE_roleid) p.EnterOuterAlt(localctx, 1) { - p.SetState(10698) + p.SetState(10688) p.Rolespec() } @@ -169145,8 +169122,8 @@ func (s *RolespecContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Rolespec() (localctx IRolespecContext) { localctx = NewRolespecContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1420, PostgreSQLParserRULE_rolespec) - p.SetState(10703) + p.EnterRule(localctx, 1422, PostgreSQLParserRULE_rolespec) + p.SetState(10693) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169156,14 +169133,14 @@ func (p *PostgreSQLParser) Rolespec() (localctx IRolespecContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserAUTHORIZATION, PostgreSQLParserBINARY, PostgreSQLParserCOLLATION, PostgreSQLParserCONCURRENTLY, PostgreSQLParserCROSS, PostgreSQLParserCURRENT_SCHEMA, PostgreSQLParserFREEZE, PostgreSQLParserFULL, PostgreSQLParserILIKE, PostgreSQLParserINNER_P, PostgreSQLParserIS, PostgreSQLParserISNULL, PostgreSQLParserJOIN, PostgreSQLParserLIKE, PostgreSQLParserNATURAL, PostgreSQLParserNOTNULL, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserOVERLAPS, PostgreSQLParserSIMILAR, PostgreSQLParserVERBOSE, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserTABLESAMPLE, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(10700) + p.SetState(10690) p.Nonreservedword() } case PostgreSQLParserCURRENT_USER: p.EnterOuterAlt(localctx, 2) { - p.SetState(10701) + p.SetState(10691) p.Match(PostgreSQLParserCURRENT_USER) if p.HasError() { // Recognition error - abort rule @@ -169174,7 +169151,7 @@ func (p *PostgreSQLParser) Rolespec() (localctx IRolespecContext) { case PostgreSQLParserSESSION_USER: p.EnterOuterAlt(localctx, 3) { - p.SetState(10702) + p.SetState(10692) p.Match(PostgreSQLParserSESSION_USER) if p.HasError() { // Recognition error - abort rule @@ -169330,15 +169307,15 @@ func (s *Role_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Role_list() (localctx IRole_listContext) { localctx = NewRole_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1422, PostgreSQLParserRULE_role_list) + p.EnterRule(localctx, 1424, PostgreSQLParserRULE_role_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10705) + p.SetState(10695) p.Rolespec() } - p.SetState(10710) + p.SetState(10700) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169347,7 +169324,7 @@ func (p *PostgreSQLParser) Role_list() (localctx IRole_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10706) + p.SetState(10696) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -169355,11 +169332,11 @@ func (p *PostgreSQLParser) Role_list() (localctx IRole_listContext) { } } { - p.SetState(10707) + p.SetState(10697) p.Rolespec() } - p.SetState(10712) + p.SetState(10702) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169535,46 +169512,46 @@ func (s *ColidContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Colid() (localctx IColidContext) { localctx = NewColidContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1424, PostgreSQLParserRULE_colid) - p.SetState(10719) + p.EnterRule(localctx, 1426, PostgreSQLParserRULE_colid) + p.SetState(10709) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1051, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1049, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10713) + p.SetState(10703) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10714) + p.SetState(10704) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10715) + p.SetState(10705) p.Col_name_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10716) + p.SetState(10706) p.Plsql_unreserved_keyword() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10717) + p.SetState(10707) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -169585,7 +169562,7 @@ func (p *PostgreSQLParser) Colid() (localctx IColidContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10718) + p.SetState(10708) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -169755,39 +169732,39 @@ func (s *Table_aliasContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Table_alias() (localctx ITable_aliasContext) { localctx = NewTable_aliasContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1426, PostgreSQLParserRULE_table_alias) - p.SetState(10725) + p.EnterRule(localctx, 1428, PostgreSQLParserRULE_table_alias) + p.SetState(10715) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1052, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1050, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10721) + p.SetState(10711) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10722) + p.SetState(10712) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10723) + p.SetState(10713) p.Col_name_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10724) + p.SetState(10714) p.Plsql_unreserved_keyword() } @@ -169953,39 +169930,39 @@ func (s *Type_function_nameContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Type_function_name() (localctx IType_function_nameContext) { localctx = NewType_function_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1428, PostgreSQLParserRULE_type_function_name) - p.SetState(10731) + p.EnterRule(localctx, 1430, PostgreSQLParserRULE_type_function_name) + p.SetState(10721) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1053, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1051, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10727) + p.SetState(10717) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10728) + p.SetState(10718) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10729) + p.SetState(10719) p.Plsql_unreserved_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10730) + p.SetState(10720) p.Type_func_name_keyword() } @@ -170151,39 +170128,39 @@ func (s *NonreservedwordContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Nonreservedword() (localctx INonreservedwordContext) { localctx = NewNonreservedwordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1430, PostgreSQLParserRULE_nonreservedword) - p.SetState(10737) + p.EnterRule(localctx, 1432, PostgreSQLParserRULE_nonreservedword) + p.SetState(10727) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1054, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1052, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10733) + p.SetState(10723) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10734) + p.SetState(10724) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10735) + p.SetState(10725) p.Col_name_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10736) + p.SetState(10726) p.Type_func_name_keyword() } @@ -170383,53 +170360,53 @@ func (s *CollabelContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Collabel() (localctx ICollabelContext) { localctx = NewCollabelContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1432, PostgreSQLParserRULE_collabel) - p.SetState(10745) + p.EnterRule(localctx, 1434, PostgreSQLParserRULE_collabel) + p.SetState(10735) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1055, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1053, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10739) + p.SetState(10729) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10740) + p.SetState(10730) p.Plsql_unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10741) + p.SetState(10731) p.Unreserved_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10742) + p.SetState(10732) p.Col_name_keyword() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10743) + p.SetState(10733) p.Type_func_name_keyword() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10744) + p.SetState(10734) p.Reserved_keyword() } @@ -170610,8 +170587,8 @@ func (s *IdentifierContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { localctx = NewIdentifierContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1434, PostgreSQLParserRULE_identifier) - p.SetState(10756) + p.EnterRule(localctx, 1436, PostgreSQLParserRULE_identifier) + p.SetState(10746) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -170621,19 +170598,19 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserIdentifier: p.EnterOuterAlt(localctx, 1) { - p.SetState(10747) + p.SetState(10737) p.Match(PostgreSQLParserIdentifier) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10749) + p.SetState(10739) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1056, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1054, p.GetParserRuleContext()) == 1 { { - p.SetState(10748) + p.SetState(10738) p.Opt_uescape() } @@ -170644,7 +170621,7 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserQuotedIdentifier: p.EnterOuterAlt(localctx, 2) { - p.SetState(10751) + p.SetState(10741) p.Match(PostgreSQLParserQuotedIdentifier) if p.HasError() { // Recognition error - abort rule @@ -170655,7 +170632,7 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserUnicodeQuotedIdentifier: p.EnterOuterAlt(localctx, 3) { - p.SetState(10752) + p.SetState(10742) p.Match(PostgreSQLParserUnicodeQuotedIdentifier) if p.HasError() { // Recognition error - abort rule @@ -170666,21 +170643,21 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserPLSQLVARIABLENAME: p.EnterOuterAlt(localctx, 4) { - p.SetState(10753) + p.SetState(10743) p.Plsqlvariablename() } case PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 5) { - p.SetState(10754) + p.SetState(10744) p.Plsqlidentifier() } case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserIS, PostgreSQLParserOUTER_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserBACKWARD, PostgreSQLParserCHAIN, PostgreSQLParserCLOSE, PostgreSQLParserCOMMIT, PostgreSQLParserCONTINUE_P, PostgreSQLParserCURSOR, PostgreSQLParserFIRST_P, PostgreSQLParserFORWARD, PostgreSQLParserINSERT, PostgreSQLParserLAST_P, PostgreSQLParserMOVE, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserOPTION, PostgreSQLParserPRIOR, PostgreSQLParserRELATIVE_P, PostgreSQLParserRESET, PostgreSQLParserROLLBACK, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSET, PostgreSQLParserTYPE_P, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserROWTYPE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN: p.EnterOuterAlt(localctx, 6) { - p.SetState(10755) + p.SetState(10745) p.Plsql_unreserved_keyword() } @@ -170784,10 +170761,10 @@ func (s *PlsqlidentifierContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Plsqlidentifier() (localctx IPlsqlidentifierContext) { localctx = NewPlsqlidentifierContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1436, PostgreSQLParserRULE_plsqlidentifier) + p.EnterRule(localctx, 1438, PostgreSQLParserRULE_plsqlidentifier) p.EnterOuterAlt(localctx, 1) { - p.SetState(10758) + p.SetState(10748) p.Match(PostgreSQLParserPLSQLIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -172410,12 +172387,12 @@ func (s *Unreserved_keywordContext) Accept(visitor antlr.ParseTreeVisitor) inter func (p *PostgreSQLParser) Unreserved_keyword() (localctx IUnreserved_keywordContext) { localctx = NewUnreserved_keywordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1438, PostgreSQLParserRULE_unreserved_keyword) + p.EnterRule(localctx, 1440, PostgreSQLParserRULE_unreserved_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10760) + p.SetState(10750) _la = p.GetTokenStream().LA(1) if !(((int64((_la-108)) & ^0x3f) == 0 && ((int64(1)<<(_la-108))&-1065151838207) != 0) || ((int64((_la-172)) & ^0x3f) == 0 && ((int64(1)<<(_la-172))&-1) != 0) || ((int64((_la-236)) & ^0x3f) == 0 && ((int64(1)<<(_la-236))&-77309411329) != 0) || ((int64((_la-300)) & ^0x3f) == 0 && ((int64(1)<<(_la-300))&-8388609) != 0) || ((int64((_la-364)) & ^0x3f) == 0 && ((int64(1)<<(_la-364))&1152921573326323711) != 0) || ((int64((_la-454)) & ^0x3f) == 0 && ((int64(1)<<(_la-454))&72028319537692671) != 0) || _la == PostgreSQLParserFORMAT) { @@ -172844,18 +172821,18 @@ func (s *Col_name_keywordContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext) { localctx = NewCol_name_keywordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1440, PostgreSQLParserRULE_col_name_keyword) - p.SetState(10818) + p.EnterRule(localctx, 1442, PostgreSQLParserRULE_col_name_keyword) + p.SetState(10808) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1058, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1056, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10762) + p.SetState(10752) p.Match(PostgreSQLParserBETWEEN) if p.HasError() { // Recognition error - abort rule @@ -172866,7 +172843,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10763) + p.SetState(10753) p.Match(PostgreSQLParserBIGINT) if p.HasError() { // Recognition error - abort rule @@ -172877,14 +172854,14 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10764) + p.SetState(10754) p.Bit() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10765) + p.SetState(10755) p.Match(PostgreSQLParserBOOLEAN_P) if p.HasError() { // Recognition error - abort rule @@ -172895,7 +172872,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10766) + p.SetState(10756) p.Match(PostgreSQLParserCHAR_P) if p.HasError() { // Recognition error - abort rule @@ -172906,14 +172883,14 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10767) + p.SetState(10757) p.Character() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10768) + p.SetState(10758) p.Match(PostgreSQLParserCOALESCE) if p.HasError() { // Recognition error - abort rule @@ -172924,7 +172901,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10769) + p.SetState(10759) p.Match(PostgreSQLParserDEC) if p.HasError() { // Recognition error - abort rule @@ -172935,7 +172912,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(10770) + p.SetState(10760) p.Match(PostgreSQLParserDECIMAL_P) if p.HasError() { // Recognition error - abort rule @@ -172946,7 +172923,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(10771) + p.SetState(10761) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -172957,7 +172934,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(10772) + p.SetState(10762) p.Match(PostgreSQLParserEXTRACT) if p.HasError() { // Recognition error - abort rule @@ -172968,7 +172945,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(10773) + p.SetState(10763) p.Match(PostgreSQLParserFLOAT_P) if p.HasError() { // Recognition error - abort rule @@ -172979,7 +172956,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(10774) + p.SetState(10764) p.Match(PostgreSQLParserGREATEST) if p.HasError() { // Recognition error - abort rule @@ -172990,7 +172967,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(10775) + p.SetState(10765) p.Match(PostgreSQLParserGROUPING) if p.HasError() { // Recognition error - abort rule @@ -173001,7 +172978,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(10776) + p.SetState(10766) p.Match(PostgreSQLParserINOUT) if p.HasError() { // Recognition error - abort rule @@ -173012,7 +172989,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(10777) + p.SetState(10767) p.Match(PostgreSQLParserINT_P) if p.HasError() { // Recognition error - abort rule @@ -173023,7 +173000,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(10778) + p.SetState(10768) p.Match(PostgreSQLParserINTEGER) if p.HasError() { // Recognition error - abort rule @@ -173034,7 +173011,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(10779) + p.SetState(10769) p.Match(PostgreSQLParserINTERVAL) if p.HasError() { // Recognition error - abort rule @@ -173045,7 +173022,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(10780) + p.SetState(10770) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -173056,7 +173033,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(10781) + p.SetState(10771) p.Match(PostgreSQLParserJSON_ARRAYAGG) if p.HasError() { // Recognition error - abort rule @@ -173067,7 +173044,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(10782) + p.SetState(10772) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -173078,7 +173055,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(10783) + p.SetState(10773) p.Match(PostgreSQLParserJSON_OBJECTAGG) if p.HasError() { // Recognition error - abort rule @@ -173089,7 +173066,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(10784) + p.SetState(10774) p.Match(PostgreSQLParserLEAST) if p.HasError() { // Recognition error - abort rule @@ -173100,7 +173077,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(10785) + p.SetState(10775) p.Match(PostgreSQLParserNATIONAL) if p.HasError() { // Recognition error - abort rule @@ -173111,7 +173088,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(10786) + p.SetState(10776) p.Match(PostgreSQLParserNCHAR) if p.HasError() { // Recognition error - abort rule @@ -173122,7 +173099,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(10787) + p.SetState(10777) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -173133,7 +173110,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(10788) + p.SetState(10778) p.Match(PostgreSQLParserNORMALIZE) if p.HasError() { // Recognition error - abort rule @@ -173144,7 +173121,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(10789) + p.SetState(10779) p.Match(PostgreSQLParserNULLIF) if p.HasError() { // Recognition error - abort rule @@ -173155,14 +173132,14 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(10790) + p.SetState(10780) p.Numeric() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(10791) + p.SetState(10781) p.Match(PostgreSQLParserOUT_P) if p.HasError() { // Recognition error - abort rule @@ -173173,7 +173150,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(10792) + p.SetState(10782) p.Match(PostgreSQLParserOVERLAY) if p.HasError() { // Recognition error - abort rule @@ -173184,7 +173161,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(10793) + p.SetState(10783) p.Match(PostgreSQLParserPOSITION) if p.HasError() { // Recognition error - abort rule @@ -173195,7 +173172,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(10794) + p.SetState(10784) p.Match(PostgreSQLParserPRECISION) if p.HasError() { // Recognition error - abort rule @@ -173206,7 +173183,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(10795) + p.SetState(10785) p.Match(PostgreSQLParserREAL) if p.HasError() { // Recognition error - abort rule @@ -173217,7 +173194,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(10796) + p.SetState(10786) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -173228,7 +173205,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(10797) + p.SetState(10787) p.Match(PostgreSQLParserSETOF) if p.HasError() { // Recognition error - abort rule @@ -173239,7 +173216,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(10798) + p.SetState(10788) p.Match(PostgreSQLParserSMALLINT) if p.HasError() { // Recognition error - abort rule @@ -173250,7 +173227,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(10799) + p.SetState(10789) p.Match(PostgreSQLParserSUBSTRING) if p.HasError() { // Recognition error - abort rule @@ -173261,7 +173238,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(10800) + p.SetState(10790) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -173272,7 +173249,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(10801) + p.SetState(10791) p.Match(PostgreSQLParserTIMESTAMP) if p.HasError() { // Recognition error - abort rule @@ -173283,7 +173260,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(10802) + p.SetState(10792) p.Match(PostgreSQLParserTREAT) if p.HasError() { // Recognition error - abort rule @@ -173294,7 +173271,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(10803) + p.SetState(10793) p.Match(PostgreSQLParserTRIM) if p.HasError() { // Recognition error - abort rule @@ -173305,7 +173282,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(10804) + p.SetState(10794) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -173316,7 +173293,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(10805) + p.SetState(10795) p.Match(PostgreSQLParserVARCHAR) if p.HasError() { // Recognition error - abort rule @@ -173327,7 +173304,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(10806) + p.SetState(10796) p.Match(PostgreSQLParserXMLATTRIBUTES) if p.HasError() { // Recognition error - abort rule @@ -173338,7 +173315,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(10807) + p.SetState(10797) p.Match(PostgreSQLParserXMLCONCAT) if p.HasError() { // Recognition error - abort rule @@ -173349,7 +173326,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(10808) + p.SetState(10798) p.Match(PostgreSQLParserXMLELEMENT) if p.HasError() { // Recognition error - abort rule @@ -173360,7 +173337,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(10809) + p.SetState(10799) p.Match(PostgreSQLParserXMLEXISTS) if p.HasError() { // Recognition error - abort rule @@ -173371,7 +173348,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(10810) + p.SetState(10800) p.Match(PostgreSQLParserXMLFOREST) if p.HasError() { // Recognition error - abort rule @@ -173382,7 +173359,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(10811) + p.SetState(10801) p.Match(PostgreSQLParserXMLNAMESPACES) if p.HasError() { // Recognition error - abort rule @@ -173393,7 +173370,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(10812) + p.SetState(10802) p.Match(PostgreSQLParserXMLPARSE) if p.HasError() { // Recognition error - abort rule @@ -173404,7 +173381,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(10813) + p.SetState(10803) p.Match(PostgreSQLParserXMLPI) if p.HasError() { // Recognition error - abort rule @@ -173415,7 +173392,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(10814) + p.SetState(10804) p.Match(PostgreSQLParserXMLROOT) if p.HasError() { // Recognition error - abort rule @@ -173426,7 +173403,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(10815) + p.SetState(10805) p.Match(PostgreSQLParserXMLSERIALIZE) if p.HasError() { // Recognition error - abort rule @@ -173437,7 +173414,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(10816) + p.SetState(10806) p.Match(PostgreSQLParserXMLTABLE) if p.HasError() { // Recognition error - abort rule @@ -173448,7 +173425,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(10817) + p.SetState(10807) p.Builtin_function_name() } @@ -173651,12 +173628,12 @@ func (s *Type_func_name_keywordContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Type_func_name_keyword() (localctx IType_func_name_keywordContext) { localctx = NewType_func_name_keywordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1442, PostgreSQLParserRULE_type_func_name_keyword) + p.EnterRule(localctx, 1444, PostgreSQLParserRULE_type_func_name_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10820) + p.SetState(10810) _la = p.GetTokenStream().LA(1) if !(((int64((_la-125)) & ^0x3f) == 0 && ((int64(1)<<(_la-125))&7069695) != 0) || _la == PostgreSQLParserTABLESAMPLE) { @@ -174132,12 +174109,12 @@ func (s *Reserved_keywordContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Reserved_keyword() (localctx IReserved_keywordContext) { localctx = NewReserved_keywordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1444, PostgreSQLParserRULE_reserved_keyword) + p.EnterRule(localctx, 1446, PostgreSQLParserRULE_reserved_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10822) + p.SetState(10812) _la = p.GetTokenStream().LA(1) if !(((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&-9007200328482816) != 0) || ((int64((_la-64)) & ^0x3f) == 0 && ((int64(1)<<(_la-64))&4398046510975) != 0) || _la == PostgreSQLParserEND_P) { @@ -174868,12 +174845,12 @@ func (s *Builtin_function_nameContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Builtin_function_name() (localctx IBuiltin_function_nameContext) { localctx = NewBuiltin_function_nameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1446, PostgreSQLParserRULE_builtin_function_name) + p.EnterRule(localctx, 1448, PostgreSQLParserRULE_builtin_function_name) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10824) + p.SetState(10814) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserREPLACE || ((int64((_la-439)) & ^0x3f) == 0 && ((int64(1)<<(_la-439))&127) != 0) || ((int64((_la-525)) & ^0x3f) == 0 && ((int64(1)<<(_la-525))&-130559) != 0) || ((int64((_la-589)) & ^0x3f) == 0 && ((int64(1)<<(_la-589))&-1) != 0) || ((int64((_la-653)) & ^0x3f) == 0 && ((int64(1)<<(_la-653))&31) != 0)) { @@ -175025,19 +175002,19 @@ func (s *Pl_functionContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Pl_function() (localctx IPl_functionContext) { localctx = NewPl_functionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1448, PostgreSQLParserRULE_pl_function) + p.EnterRule(localctx, 1450, PostgreSQLParserRULE_pl_function) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10826) + p.SetState(10816) p.Comp_options() } { - p.SetState(10827) + p.SetState(10817) p.Pl_block() } - p.SetState(10829) + p.SetState(10819) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175046,7 +175023,7 @@ func (p *PostgreSQLParser) Pl_function() (localctx IPl_functionContext) { if _la == PostgreSQLParserSEMI { { - p.SetState(10828) + p.SetState(10818) p.Opt_semi() } @@ -175185,11 +175162,11 @@ func (s *Comp_optionsContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Comp_options() (localctx IComp_optionsContext) { localctx = NewComp_optionsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1450, PostgreSQLParserRULE_comp_options) + p.EnterRule(localctx, 1452, PostgreSQLParserRULE_comp_options) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(10834) + p.SetState(10824) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175198,11 +175175,11 @@ func (p *PostgreSQLParser) Comp_options() (localctx IComp_optionsContext) { for _la == PostgreSQLParserOperator { { - p.SetState(10831) + p.SetState(10821) p.Comp_option() } - p.SetState(10836) + p.SetState(10826) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175369,22 +175346,22 @@ func (s *Comp_optionContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { localctx = NewComp_optionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1452, PostgreSQLParserRULE_comp_option) - p.SetState(10857) + p.EnterRule(localctx, 1454, PostgreSQLParserRULE_comp_option) + p.SetState(10847) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1061, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1059, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10837) + p.SetState(10827) p.Sharp() } { - p.SetState(10838) + p.SetState(10828) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -175392,7 +175369,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10839) + p.SetState(10829) p.Match(PostgreSQLParserDUMP) if p.HasError() { // Recognition error - abort rule @@ -175403,11 +175380,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10841) + p.SetState(10831) p.Sharp() } { - p.SetState(10842) + p.SetState(10832) p.Match(PostgreSQLParserPRINT_STRICT_PARAMS) if p.HasError() { // Recognition error - abort rule @@ -175415,18 +175392,18 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10843) + p.SetState(10833) p.Option_value() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10845) + p.SetState(10835) p.Sharp() } { - p.SetState(10846) + p.SetState(10836) p.Match(PostgreSQLParserVARIABLE_CONFLICT) if p.HasError() { // Recognition error - abort rule @@ -175434,7 +175411,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10847) + p.SetState(10837) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -175445,11 +175422,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10849) + p.SetState(10839) p.Sharp() } { - p.SetState(10850) + p.SetState(10840) p.Match(PostgreSQLParserVARIABLE_CONFLICT) if p.HasError() { // Recognition error - abort rule @@ -175457,7 +175434,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10851) + p.SetState(10841) p.Match(PostgreSQLParserUSE_VARIABLE) if p.HasError() { // Recognition error - abort rule @@ -175468,11 +175445,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10853) + p.SetState(10843) p.Sharp() } { - p.SetState(10854) + p.SetState(10844) p.Match(PostgreSQLParserVARIABLE_CONFLICT) if p.HasError() { // Recognition error - abort rule @@ -175480,7 +175457,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10855) + p.SetState(10845) p.Match(PostgreSQLParserUSE_COLUMN) if p.HasError() { // Recognition error - abort rule @@ -175587,10 +175564,10 @@ func (s *SharpContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Sharp() (localctx ISharpContext) { localctx = NewSharpContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1454, PostgreSQLParserRULE_sharp) + p.EnterRule(localctx, 1456, PostgreSQLParserRULE_sharp) p.EnterOuterAlt(localctx, 1) { - p.SetState(10859) + p.SetState(10849) p.Match(PostgreSQLParserOperator) if p.HasError() { // Recognition error - abort rule @@ -175756,39 +175733,39 @@ func (s *Option_valueContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Option_value() (localctx IOption_valueContext) { localctx = NewOption_valueContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1456, PostgreSQLParserRULE_option_value) - p.SetState(10865) + p.EnterRule(localctx, 1458, PostgreSQLParserRULE_option_value) + p.SetState(10855) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1062, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1060, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10861) + p.SetState(10851) p.Sconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10862) + p.SetState(10852) p.Reserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10863) + p.SetState(10853) p.Plsql_unreserved_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10864) + p.SetState(10854) p.Unreserved_keyword() } @@ -175891,10 +175868,10 @@ func (s *Opt_semiContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Opt_semi() (localctx IOpt_semiContext) { localctx = NewOpt_semiContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1458, PostgreSQLParserRULE_opt_semi) + p.EnterRule(localctx, 1460, PostgreSQLParserRULE_opt_semi) p.EnterOuterAlt(localctx, 1) { - p.SetState(10867) + p.SetState(10857) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -176070,16 +176047,16 @@ func (s *Pl_blockContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Pl_block() (localctx IPl_blockContext) { localctx = NewPl_blockContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1460, PostgreSQLParserRULE_pl_block) + p.EnterRule(localctx, 1462, PostgreSQLParserRULE_pl_block) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10869) + p.SetState(10859) p.Decl_sect() } { - p.SetState(10870) + p.SetState(10860) p.Match(PostgreSQLParserBEGIN_P) if p.HasError() { // Recognition error - abort rule @@ -176087,10 +176064,10 @@ func (p *PostgreSQLParser) Pl_block() (localctx IPl_blockContext) { } } { - p.SetState(10871) + p.SetState(10861) p.Proc_sect() } - p.SetState(10873) + p.SetState(10863) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176099,20 +176076,20 @@ func (p *PostgreSQLParser) Pl_block() (localctx IPl_blockContext) { if _la == PostgreSQLParserEXCEPTION { { - p.SetState(10872) + p.SetState(10862) p.Exception_sect() } } { - p.SetState(10875) + p.SetState(10865) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10877) + p.SetState(10867) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176121,7 +176098,7 @@ func (p *PostgreSQLParser) Pl_block() (localctx IPl_blockContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(10876) + p.SetState(10866) p.Opt_label() } @@ -176268,11 +176245,11 @@ func (s *Decl_sectContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Decl_sect() (localctx IDecl_sectContext) { localctx = NewDecl_sectContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1462, PostgreSQLParserRULE_decl_sect) + p.EnterRule(localctx, 1464, PostgreSQLParserRULE_decl_sect) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(10880) + p.SetState(10870) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176281,12 +176258,12 @@ func (p *PostgreSQLParser) Decl_sect() (localctx IDecl_sectContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(10879) + p.SetState(10869) p.Opt_block_label() } } - p.SetState(10886) + p.SetState(10876) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176295,15 +176272,15 @@ func (p *PostgreSQLParser) Decl_sect() (localctx IDecl_sectContext) { if _la == PostgreSQLParserDECLARE { { - p.SetState(10882) + p.SetState(10872) p.Decl_start() } - p.SetState(10884) + p.SetState(10874) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1066, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1064, p.GetParserRuleContext()) == 1 { { - p.SetState(10883) + p.SetState(10873) p.Decl_stmts() } @@ -176408,10 +176385,10 @@ func (s *Decl_startContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Decl_start() (localctx IDecl_startContext) { localctx = NewDecl_startContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1464, PostgreSQLParserRULE_decl_start) + p.EnterRule(localctx, 1466, PostgreSQLParserRULE_decl_start) p.EnterOuterAlt(localctx, 1) { - p.SetState(10888) + p.SetState(10878) p.Match(PostgreSQLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -176552,11 +176529,11 @@ func (s *Decl_stmtsContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Decl_stmts() (localctx IDecl_stmtsContext) { localctx = NewDecl_stmtsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1466, PostgreSQLParserRULE_decl_stmts) + p.EnterRule(localctx, 1468, PostgreSQLParserRULE_decl_stmts) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10891) + p.SetState(10881) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176566,7 +176543,7 @@ func (p *PostgreSQLParser) Decl_stmts() (localctx IDecl_stmtsContext) { switch _alt { case 1: { - p.SetState(10890) + p.SetState(10880) p.Decl_stmt() } @@ -176575,9 +176552,9 @@ func (p *PostgreSQLParser) Decl_stmts() (localctx IDecl_stmtsContext) { goto errorExit } - p.SetState(10893) + p.SetState(10883) p.GetErrorHandler().Sync(p) - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1068, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1066, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -176700,10 +176677,10 @@ func (s *Label_declContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Label_decl() (localctx ILabel_declContext) { localctx = NewLabel_declContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1468, PostgreSQLParserRULE_label_decl) + p.EnterRule(localctx, 1470, PostgreSQLParserRULE_label_decl) p.EnterOuterAlt(localctx, 1) { - p.SetState(10895) + p.SetState(10885) p.Match(PostgreSQLParserLESS_LESS) if p.HasError() { // Recognition error - abort rule @@ -176711,11 +176688,11 @@ func (p *PostgreSQLParser) Label_decl() (localctx ILabel_declContext) { } } { - p.SetState(10896) + p.SetState(10886) p.Any_identifier() } { - p.SetState(10897) + p.SetState(10887) p.Match(PostgreSQLParserGREATER_GREATER) if p.HasError() { // Recognition error - abort rule @@ -176852,25 +176829,25 @@ func (s *Decl_stmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Decl_stmt() (localctx IDecl_stmtContext) { localctx = NewDecl_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1470, PostgreSQLParserRULE_decl_stmt) - p.SetState(10902) + p.EnterRule(localctx, 1472, PostgreSQLParserRULE_decl_stmt) + p.SetState(10892) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1069, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1067, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10899) + p.SetState(10889) p.Decl_statement() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10900) + p.SetState(10890) p.Match(PostgreSQLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -176881,7 +176858,7 @@ func (p *PostgreSQLParser) Decl_stmt() (localctx IDecl_stmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10901) + p.SetState(10891) p.Label_decl() } @@ -177186,24 +177163,24 @@ func (s *Decl_statementContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { localctx = NewDecl_statementContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1472, PostgreSQLParserRULE_decl_statement) + p.EnterRule(localctx, 1474, PostgreSQLParserRULE_decl_statement) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10904) + p.SetState(10894) p.Decl_varname() } - p.SetState(10931) + p.SetState(10921) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1076, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1074, p.GetParserRuleContext()) { case 1: { - p.SetState(10905) + p.SetState(10895) p.Match(PostgreSQLParserALIAS) if p.HasError() { // Recognition error - abort rule @@ -177211,7 +177188,7 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { } } { - p.SetState(10906) + p.SetState(10896) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -177219,17 +177196,17 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { } } { - p.SetState(10907) + p.SetState(10897) p.Decl_aliasitem() } case 2: - p.SetState(10909) + p.SetState(10899) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1070, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1068, p.GetParserRuleContext()) == 1 { { - p.SetState(10908) + p.SetState(10898) p.Decl_const() } @@ -177237,10 +177214,10 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { goto errorExit } { - p.SetState(10911) + p.SetState(10901) p.Decl_datatype() } - p.SetState(10913) + p.SetState(10903) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177249,12 +177226,12 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserCOLLATE { { - p.SetState(10912) + p.SetState(10902) p.Decl_collate() } } - p.SetState(10916) + p.SetState(10906) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177263,12 +177240,12 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserNOT { { - p.SetState(10915) + p.SetState(10905) p.Decl_notnull() } } - p.SetState(10919) + p.SetState(10909) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177277,14 +177254,14 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&9007199255790592) != 0 { { - p.SetState(10918) + p.SetState(10908) p.Decl_defval() } } case 3: - p.SetState(10922) + p.SetState(10912) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177293,20 +177270,20 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserNO || _la == PostgreSQLParserSCROLL { { - p.SetState(10921) + p.SetState(10911) p.Opt_scrollable() } } { - p.SetState(10924) + p.SetState(10914) p.Match(PostgreSQLParserCURSOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10926) + p.SetState(10916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177315,17 +177292,17 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(10925) + p.SetState(10915) p.Decl_cursor_args() } } { - p.SetState(10928) + p.SetState(10918) p.Decl_is_for() } { - p.SetState(10929) + p.SetState(10919) p.Decl_cursor_query() } @@ -177333,7 +177310,7 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { goto errorExit } { - p.SetState(10933) + p.SetState(10923) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -177441,8 +177418,8 @@ func (s *Opt_scrollableContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { localctx = NewOpt_scrollableContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1474, PostgreSQLParserRULE_opt_scrollable) - p.SetState(10938) + p.EnterRule(localctx, 1476, PostgreSQLParserRULE_opt_scrollable) + p.SetState(10928) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177452,7 +177429,7 @@ func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 1) { - p.SetState(10935) + p.SetState(10925) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -177460,7 +177437,7 @@ func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { } } { - p.SetState(10936) + p.SetState(10926) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -177471,7 +177448,7 @@ func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { case PostgreSQLParserSCROLL: p.EnterOuterAlt(localctx, 2) { - p.SetState(10937) + p.SetState(10927) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -177591,10 +177568,10 @@ func (s *Decl_cursor_queryContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Decl_cursor_query() (localctx IDecl_cursor_queryContext) { localctx = NewDecl_cursor_queryContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1476, PostgreSQLParserRULE_decl_cursor_query) + p.EnterRule(localctx, 1478, PostgreSQLParserRULE_decl_cursor_query) p.EnterOuterAlt(localctx, 1) { - p.SetState(10940) + p.SetState(10930) p.Selectstmt() } @@ -177715,10 +177692,10 @@ func (s *Decl_cursor_argsContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Decl_cursor_args() (localctx IDecl_cursor_argsContext) { localctx = NewDecl_cursor_argsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1478, PostgreSQLParserRULE_decl_cursor_args) + p.EnterRule(localctx, 1480, PostgreSQLParserRULE_decl_cursor_args) p.EnterOuterAlt(localctx, 1) { - p.SetState(10942) + p.SetState(10932) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -177726,11 +177703,11 @@ func (p *PostgreSQLParser) Decl_cursor_args() (localctx IDecl_cursor_argsContext } } { - p.SetState(10943) + p.SetState(10933) p.Decl_cursor_arglist() } { - p.SetState(10944) + p.SetState(10934) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -177881,15 +177858,15 @@ func (s *Decl_cursor_arglistContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Decl_cursor_arglist() (localctx IDecl_cursor_arglistContext) { localctx = NewDecl_cursor_arglistContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1480, PostgreSQLParserRULE_decl_cursor_arglist) + p.EnterRule(localctx, 1482, PostgreSQLParserRULE_decl_cursor_arglist) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10946) + p.SetState(10936) p.Decl_cursor_arg() } - p.SetState(10951) + p.SetState(10941) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177898,7 +177875,7 @@ func (p *PostgreSQLParser) Decl_cursor_arglist() (localctx IDecl_cursor_arglistC for _la == PostgreSQLParserCOMMA { { - p.SetState(10947) + p.SetState(10937) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -177906,11 +177883,11 @@ func (p *PostgreSQLParser) Decl_cursor_arglist() (localctx IDecl_cursor_arglistC } } { - p.SetState(10948) + p.SetState(10938) p.Decl_cursor_arg() } - p.SetState(10953) + p.SetState(10943) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -178042,14 +178019,14 @@ func (s *Decl_cursor_argContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Decl_cursor_arg() (localctx IDecl_cursor_argContext) { localctx = NewDecl_cursor_argContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1482, PostgreSQLParserRULE_decl_cursor_arg) + p.EnterRule(localctx, 1484, PostgreSQLParserRULE_decl_cursor_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(10954) + p.SetState(10944) p.Decl_varname() } { - p.SetState(10955) + p.SetState(10945) p.Decl_datatype() } @@ -178153,12 +178130,12 @@ func (s *Decl_is_forContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Decl_is_for() (localctx IDecl_is_forContext) { localctx = NewDecl_is_forContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1484, PostgreSQLParserRULE_decl_is_for) + p.EnterRule(localctx, 1486, PostgreSQLParserRULE_decl_is_for) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10957) + p.SetState(10947) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFOR || _la == PostgreSQLParserIS) { @@ -178281,8 +178258,8 @@ func (s *Decl_aliasitemContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Decl_aliasitem() (localctx IDecl_aliasitemContext) { localctx = NewDecl_aliasitemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1486, PostgreSQLParserRULE_decl_aliasitem) - p.SetState(10961) + p.EnterRule(localctx, 1488, PostgreSQLParserRULE_decl_aliasitem) + p.SetState(10951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -178292,7 +178269,7 @@ func (p *PostgreSQLParser) Decl_aliasitem() (localctx IDecl_aliasitemContext) { case PostgreSQLParserPARAM: p.EnterOuterAlt(localctx, 1) { - p.SetState(10959) + p.SetState(10949) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -178303,7 +178280,7 @@ func (p *PostgreSQLParser) Decl_aliasitem() (localctx IDecl_aliasitemContext) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 2) { - p.SetState(10960) + p.SetState(10950) p.Colid() } @@ -178419,10 +178396,10 @@ func (s *Decl_varnameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Decl_varname() (localctx IDecl_varnameContext) { localctx = NewDecl_varnameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1488, PostgreSQLParserRULE_decl_varname) + p.EnterRule(localctx, 1490, PostgreSQLParserRULE_decl_varname) p.EnterOuterAlt(localctx, 1) { - p.SetState(10963) + p.SetState(10953) p.Any_identifier() } @@ -178521,10 +178498,10 @@ func (s *Decl_constContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Decl_const() (localctx IDecl_constContext) { localctx = NewDecl_constContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1490, PostgreSQLParserRULE_decl_const) + p.EnterRule(localctx, 1492, PostgreSQLParserRULE_decl_const) p.EnterOuterAlt(localctx, 1) { - p.SetState(10965) + p.SetState(10955) p.Match(PostgreSQLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -178639,10 +178616,10 @@ func (s *Decl_datatypeContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Decl_datatype() (localctx IDecl_datatypeContext) { localctx = NewDecl_datatypeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1492, PostgreSQLParserRULE_decl_datatype) + p.EnterRule(localctx, 1494, PostgreSQLParserRULE_decl_datatype) p.EnterOuterAlt(localctx, 1) { - p.SetState(10967) + p.SetState(10957) p.Typename() } @@ -178758,10 +178735,10 @@ func (s *Decl_collateContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Decl_collate() (localctx IDecl_collateContext) { localctx = NewDecl_collateContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1494, PostgreSQLParserRULE_decl_collate) + p.EnterRule(localctx, 1496, PostgreSQLParserRULE_decl_collate) p.EnterOuterAlt(localctx, 1) { - p.SetState(10969) + p.SetState(10959) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -178769,7 +178746,7 @@ func (p *PostgreSQLParser) Decl_collate() (localctx IDecl_collateContext) { } } { - p.SetState(10970) + p.SetState(10960) p.Any_name() } @@ -178873,10 +178850,10 @@ func (s *Decl_notnullContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Decl_notnull() (localctx IDecl_notnullContext) { localctx = NewDecl_notnullContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1496, PostgreSQLParserRULE_decl_notnull) + p.EnterRule(localctx, 1498, PostgreSQLParserRULE_decl_notnull) p.EnterOuterAlt(localctx, 1) { - p.SetState(10972) + p.SetState(10962) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -178884,7 +178861,7 @@ func (p *PostgreSQLParser) Decl_notnull() (localctx IDecl_notnullContext) { } } { - p.SetState(10973) + p.SetState(10963) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -179016,14 +178993,14 @@ func (s *Decl_defvalContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Decl_defval() (localctx IDecl_defvalContext) { localctx = NewDecl_defvalContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1498, PostgreSQLParserRULE_decl_defval) + p.EnterRule(localctx, 1500, PostgreSQLParserRULE_decl_defval) p.EnterOuterAlt(localctx, 1) { - p.SetState(10975) + p.SetState(10965) p.Decl_defkey() } { - p.SetState(10976) + p.SetState(10966) p.Sql_expression() } @@ -179139,8 +179116,8 @@ func (s *Decl_defkeyContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Decl_defkey() (localctx IDecl_defkeyContext) { localctx = NewDecl_defkeyContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1500, PostgreSQLParserRULE_decl_defkey) - p.SetState(10980) + p.EnterRule(localctx, 1502, PostgreSQLParserRULE_decl_defkey) + p.SetState(10970) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -179150,14 +179127,14 @@ func (p *PostgreSQLParser) Decl_defkey() (localctx IDecl_defkeyContext) { case PostgreSQLParserEQUAL, PostgreSQLParserCOLON_EQUALS: p.EnterOuterAlt(localctx, 1) { - p.SetState(10978) + p.SetState(10968) p.Assign_operator() } case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10979) + p.SetState(10969) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -179270,12 +179247,12 @@ func (s *Assign_operatorContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Assign_operator() (localctx IAssign_operatorContext) { localctx = NewAssign_operatorContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1502, PostgreSQLParserRULE_assign_operator) + p.EnterRule(localctx, 1504, PostgreSQLParserRULE_assign_operator) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10982) + p.SetState(10972) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEQUAL || _la == PostgreSQLParserCOLON_EQUALS) { @@ -179419,33 +179396,33 @@ func (s *Proc_sectContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Proc_sect() (localctx IProc_sectContext) { localctx = NewProc_sectContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1504, PostgreSQLParserRULE_proc_sect) + p.EnterRule(localctx, 1506, PostgreSQLParserRULE_proc_sect) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10987) + p.SetState(10977) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1081, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1079, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10984) + p.SetState(10974) p.Proc_stmt() } } - p.SetState(10989) + p.SetState(10979) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1081, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1079, p.GetParserRuleContext()) if p.HasError() { goto errorExit } @@ -179971,22 +179948,22 @@ func (s *Proc_stmtContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Proc_stmt() (localctx IProc_stmtContext) { localctx = NewProc_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1506, PostgreSQLParserRULE_proc_stmt) - p.SetState(11017) + p.EnterRule(localctx, 1508, PostgreSQLParserRULE_proc_stmt) + p.SetState(11007) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1082, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1080, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10990) + p.SetState(10980) p.Pl_block() } { - p.SetState(10991) + p.SetState(10981) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -179997,168 +179974,168 @@ func (p *PostgreSQLParser) Proc_stmt() (localctx IProc_stmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10993) + p.SetState(10983) p.Stmt_return() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10994) + p.SetState(10984) p.Stmt_raise() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10995) + p.SetState(10985) p.Stmt_assign() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10996) + p.SetState(10986) p.Stmt_if() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10997) + p.SetState(10987) p.Stmt_case() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10998) + p.SetState(10988) p.Stmt_loop() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10999) + p.SetState(10989) p.Stmt_while() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(11000) + p.SetState(10990) p.Stmt_for() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(11001) + p.SetState(10991) p.Stmt_foreach_a() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(11002) + p.SetState(10992) p.Stmt_exit() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(11003) + p.SetState(10993) p.Stmt_assert() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(11004) + p.SetState(10994) p.Stmt_execsql() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(11005) + p.SetState(10995) p.Stmt_dynexecute() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(11006) + p.SetState(10996) p.Stmt_perform() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(11007) + p.SetState(10997) p.Stmt_call() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(11008) + p.SetState(10998) p.Stmt_getdiag() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(11009) + p.SetState(10999) p.Stmt_open() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(11010) + p.SetState(11000) p.Stmt_fetch() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(11011) + p.SetState(11001) p.Stmt_move() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(11012) + p.SetState(11002) p.Stmt_close() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(11013) + p.SetState(11003) p.Stmt_null() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(11014) + p.SetState(11004) p.Stmt_commit() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(11015) + p.SetState(11005) p.Stmt_rollback() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(11016) + p.SetState(11006) p.Stmt_set() } @@ -180283,10 +180260,10 @@ func (s *Stmt_performContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_perform() (localctx IStmt_performContext) { localctx = NewStmt_performContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1508, PostgreSQLParserRULE_stmt_perform) + p.EnterRule(localctx, 1510, PostgreSQLParserRULE_stmt_perform) p.EnterOuterAlt(localctx, 1) { - p.SetState(11019) + p.SetState(11009) p.Match(PostgreSQLParserPERFORM) if p.HasError() { // Recognition error - abort rule @@ -180294,11 +180271,11 @@ func (p *PostgreSQLParser) Stmt_perform() (localctx IStmt_performContext) { } } { - p.SetState(11020) + p.SetState(11010) p.Expr_until_semi() } { - p.SetState(11021) + p.SetState(11011) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180455,10 +180432,10 @@ func (s *Stmt_callContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { localctx = NewStmt_callContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1510, PostgreSQLParserRULE_stmt_call) + p.EnterRule(localctx, 1512, PostgreSQLParserRULE_stmt_call) var _la int - p.SetState(11041) + p.SetState(11031) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180468,7 +180445,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { case PostgreSQLParserCALL: p.EnterOuterAlt(localctx, 1) { - p.SetState(11023) + p.SetState(11013) p.Match(PostgreSQLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -180476,18 +180453,18 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11024) + p.SetState(11014) p.Any_identifier() } { - p.SetState(11025) + p.SetState(11015) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11027) + p.SetState(11017) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180496,13 +180473,13 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(11026) + p.SetState(11016) p.Opt_expr_list() } } { - p.SetState(11029) + p.SetState(11019) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -180510,7 +180487,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11030) + p.SetState(11020) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180521,7 +180498,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { case PostgreSQLParserDO: p.EnterOuterAlt(localctx, 2) { - p.SetState(11032) + p.SetState(11022) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule @@ -180529,18 +180506,18 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11033) + p.SetState(11023) p.Any_identifier() } { - p.SetState(11034) + p.SetState(11024) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11036) + p.SetState(11026) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180549,13 +180526,13 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3620818277858553860) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(11035) + p.SetState(11025) p.Opt_expr_list() } } { - p.SetState(11038) + p.SetState(11028) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -180563,7 +180540,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11039) + p.SetState(11029) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180683,10 +180660,10 @@ func (s *Opt_expr_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Opt_expr_list() (localctx IOpt_expr_listContext) { localctx = NewOpt_expr_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1512, PostgreSQLParserRULE_opt_expr_list) + p.EnterRule(localctx, 1514, PostgreSQLParserRULE_opt_expr_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(11043) + p.SetState(11033) p.Expr_list() } @@ -180836,22 +180813,22 @@ func (s *Stmt_assignContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_assign() (localctx IStmt_assignContext) { localctx = NewStmt_assignContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1514, PostgreSQLParserRULE_stmt_assign) + p.EnterRule(localctx, 1516, PostgreSQLParserRULE_stmt_assign) p.EnterOuterAlt(localctx, 1) { - p.SetState(11045) + p.SetState(11035) p.Assign_var() } { - p.SetState(11046) + p.SetState(11036) p.Assign_operator() } { - p.SetState(11047) + p.SetState(11037) p.Sql_expression() } { - p.SetState(11048) + p.SetState(11038) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180998,19 +180975,19 @@ func (s *Stmt_getdiagContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_getdiag() (localctx IStmt_getdiagContext) { localctx = NewStmt_getdiagContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1516, PostgreSQLParserRULE_stmt_getdiag) + p.EnterRule(localctx, 1518, PostgreSQLParserRULE_stmt_getdiag) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11050) + p.SetState(11040) p.Match(PostgreSQLParserGET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11052) + p.SetState(11042) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181019,13 +180996,13 @@ func (p *PostgreSQLParser) Stmt_getdiag() (localctx IStmt_getdiagContext) { if _la == PostgreSQLParserCURRENT_P || _la == PostgreSQLParserSTACKED { { - p.SetState(11051) + p.SetState(11041) p.Getdiag_area_opt() } } { - p.SetState(11054) + p.SetState(11044) p.Match(PostgreSQLParserDIAGNOSTICS) if p.HasError() { // Recognition error - abort rule @@ -181033,11 +181010,11 @@ func (p *PostgreSQLParser) Stmt_getdiag() (localctx IStmt_getdiagContext) { } } { - p.SetState(11055) + p.SetState(11045) p.Getdiag_list() } { - p.SetState(11056) + p.SetState(11046) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -181145,12 +181122,12 @@ func (s *Getdiag_area_optContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Getdiag_area_opt() (localctx IGetdiag_area_optContext) { localctx = NewGetdiag_area_optContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1518, PostgreSQLParserRULE_getdiag_area_opt) + p.EnterRule(localctx, 1520, PostgreSQLParserRULE_getdiag_area_opt) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11058) + p.SetState(11048) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCURRENT_P || _la == PostgreSQLParserSTACKED) { @@ -181304,15 +181281,15 @@ func (s *Getdiag_listContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Getdiag_list() (localctx IGetdiag_listContext) { localctx = NewGetdiag_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1520, PostgreSQLParserRULE_getdiag_list) + p.EnterRule(localctx, 1522, PostgreSQLParserRULE_getdiag_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11060) + p.SetState(11050) p.Getdiag_list_item() } - p.SetState(11065) + p.SetState(11055) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181321,7 +181298,7 @@ func (p *PostgreSQLParser) Getdiag_list() (localctx IGetdiag_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(11061) + p.SetState(11051) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -181329,11 +181306,11 @@ func (p *PostgreSQLParser) Getdiag_list() (localctx IGetdiag_listContext) { } } { - p.SetState(11062) + p.SetState(11052) p.Getdiag_list_item() } - p.SetState(11067) + p.SetState(11057) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181482,18 +181459,18 @@ func (s *Getdiag_list_itemContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Getdiag_list_item() (localctx IGetdiag_list_itemContext) { localctx = NewGetdiag_list_itemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1522, PostgreSQLParserRULE_getdiag_list_item) + p.EnterRule(localctx, 1524, PostgreSQLParserRULE_getdiag_list_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(11068) + p.SetState(11058) p.Getdiag_target() } { - p.SetState(11069) + p.SetState(11059) p.Assign_operator() } { - p.SetState(11070) + p.SetState(11060) p.Getdiag_item() } @@ -181604,10 +181581,10 @@ func (s *Getdiag_itemContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Getdiag_item() (localctx IGetdiag_itemContext) { localctx = NewGetdiag_itemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1524, PostgreSQLParserRULE_getdiag_item) + p.EnterRule(localctx, 1526, PostgreSQLParserRULE_getdiag_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(11072) + p.SetState(11062) p.Colid() } @@ -181718,10 +181695,10 @@ func (s *Getdiag_targetContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Getdiag_target() (localctx IGetdiag_targetContext) { localctx = NewGetdiag_targetContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1526, PostgreSQLParserRULE_getdiag_target) + p.EnterRule(localctx, 1528, PostgreSQLParserRULE_getdiag_target) p.EnterOuterAlt(localctx, 1) { - p.SetState(11074) + p.SetState(11064) p.Assign_var() } @@ -181900,11 +181877,11 @@ func (s *Assign_varContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { localctx = NewAssign_varContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1528, PostgreSQLParserRULE_assign_var) + p.EnterRule(localctx, 1530, PostgreSQLParserRULE_assign_var) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11078) + p.SetState(11068) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181913,13 +181890,13 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(11076) + p.SetState(11066) p.Any_name() } case PostgreSQLParserPARAM: { - p.SetState(11077) + p.SetState(11067) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -181931,7 +181908,7 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(11086) + p.SetState(11076) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181940,7 +181917,7 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { for _la == PostgreSQLParserOPEN_BRACKET { { - p.SetState(11080) + p.SetState(11070) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -181948,11 +181925,11 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { } } { - p.SetState(11081) + p.SetState(11071) p.Expr_until_rightbracket() } { - p.SetState(11082) + p.SetState(11072) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -181960,7 +181937,7 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { } } - p.SetState(11088) + p.SetState(11078) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182151,12 +182128,12 @@ func (s *Stmt_ifContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { localctx = NewStmt_ifContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1530, PostgreSQLParserRULE_stmt_if) + p.EnterRule(localctx, 1532, PostgreSQLParserRULE_stmt_if) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11089) + p.SetState(11079) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -182164,11 +182141,11 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11090) + p.SetState(11080) p.Expr_until_then() } { - p.SetState(11091) + p.SetState(11081) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -182176,14 +182153,14 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11092) + p.SetState(11082) p.Proc_sect() } { - p.SetState(11093) + p.SetState(11083) p.Stmt_elsifs() } - p.SetState(11095) + p.SetState(11085) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182192,13 +182169,13 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { if _la == PostgreSQLParserELSE { { - p.SetState(11094) + p.SetState(11084) p.Stmt_else() } } { - p.SetState(11097) + p.SetState(11087) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -182206,7 +182183,7 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11098) + p.SetState(11088) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -182214,7 +182191,7 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11099) + p.SetState(11089) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -182418,11 +182395,11 @@ func (s *Stmt_elsifsContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { localctx = NewStmt_elsifsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1532, PostgreSQLParserRULE_stmt_elsifs) + p.EnterRule(localctx, 1534, PostgreSQLParserRULE_stmt_elsifs) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11108) + p.SetState(11098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182431,7 +182408,7 @@ func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { for _la == PostgreSQLParserELSIF { { - p.SetState(11101) + p.SetState(11091) p.Match(PostgreSQLParserELSIF) if p.HasError() { // Recognition error - abort rule @@ -182439,11 +182416,11 @@ func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { } } { - p.SetState(11102) + p.SetState(11092) p.A_expr() } { - p.SetState(11103) + p.SetState(11093) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -182451,11 +182428,11 @@ func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { } } { - p.SetState(11104) + p.SetState(11094) p.Proc_sect() } - p.SetState(11110) + p.SetState(11100) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182575,10 +182552,10 @@ func (s *Stmt_elseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_else() (localctx IStmt_elseContext) { localctx = NewStmt_elseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1534, PostgreSQLParserRULE_stmt_else) + p.EnterRule(localctx, 1536, PostgreSQLParserRULE_stmt_else) p.EnterOuterAlt(localctx, 1) { - p.SetState(11111) + p.SetState(11101) p.Match(PostgreSQLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -182586,7 +182563,7 @@ func (p *PostgreSQLParser) Stmt_else() (localctx IStmt_elseContext) { } } { - p.SetState(11112) + p.SetState(11102) p.Proc_sect() } @@ -182751,19 +182728,19 @@ func (s *Stmt_caseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { localctx = NewStmt_caseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1536, PostgreSQLParserRULE_stmt_case) + p.EnterRule(localctx, 1538, PostgreSQLParserRULE_stmt_case) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11114) + p.SetState(11104) p.Match(PostgreSQLParserCASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11116) + p.SetState(11106) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182772,16 +182749,16 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3692875871896482308) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(11115) + p.SetState(11105) p.Opt_expr_until_when() } } { - p.SetState(11118) + p.SetState(11108) p.Case_when_list() } - p.SetState(11120) + p.SetState(11110) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182790,13 +182767,13 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { if _la == PostgreSQLParserELSE { { - p.SetState(11119) + p.SetState(11109) p.Opt_case_else() } } { - p.SetState(11122) + p.SetState(11112) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -182804,7 +182781,7 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { } } { - p.SetState(11123) + p.SetState(11113) p.Match(PostgreSQLParserCASE) if p.HasError() { // Recognition error - abort rule @@ -182812,7 +182789,7 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { } } { - p.SetState(11124) + p.SetState(11114) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -182927,10 +182904,10 @@ func (s *Opt_expr_until_whenContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Opt_expr_until_when() (localctx IOpt_expr_until_whenContext) { localctx = NewOpt_expr_until_whenContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1538, PostgreSQLParserRULE_opt_expr_until_when) + p.EnterRule(localctx, 1540, PostgreSQLParserRULE_opt_expr_until_when) p.EnterOuterAlt(localctx, 1) { - p.SetState(11126) + p.SetState(11116) p.Sql_expression() } @@ -183067,11 +183044,11 @@ func (s *Case_when_listContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Case_when_list() (localctx ICase_when_listContext) { localctx = NewCase_when_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1540, PostgreSQLParserRULE_case_when_list) + p.EnterRule(localctx, 1542, PostgreSQLParserRULE_case_when_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11129) + p.SetState(11119) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183080,11 +183057,11 @@ func (p *PostgreSQLParser) Case_when_list() (localctx ICase_when_listContext) { for ok := true; ok; ok = _la == PostgreSQLParserWHEN { { - p.SetState(11128) + p.SetState(11118) p.Case_when() } - p.SetState(11131) + p.SetState(11121) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183226,10 +183203,10 @@ func (s *Case_whenContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Case_when() (localctx ICase_whenContext) { localctx = NewCase_whenContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1542, PostgreSQLParserRULE_case_when) + p.EnterRule(localctx, 1544, PostgreSQLParserRULE_case_when) p.EnterOuterAlt(localctx, 1) { - p.SetState(11133) + p.SetState(11123) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -183237,11 +183214,11 @@ func (p *PostgreSQLParser) Case_when() (localctx ICase_whenContext) { } } { - p.SetState(11134) + p.SetState(11124) p.Expr_list() } { - p.SetState(11135) + p.SetState(11125) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -183249,7 +183226,7 @@ func (p *PostgreSQLParser) Case_when() (localctx ICase_whenContext) { } } { - p.SetState(11136) + p.SetState(11126) p.Proc_sect() } @@ -183365,10 +183342,10 @@ func (s *Opt_case_elseContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Opt_case_else() (localctx IOpt_case_elseContext) { localctx = NewOpt_case_elseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1544, PostgreSQLParserRULE_opt_case_else) + p.EnterRule(localctx, 1546, PostgreSQLParserRULE_opt_case_else) p.EnterOuterAlt(localctx, 1) { - p.SetState(11138) + p.SetState(11128) p.Match(PostgreSQLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -183376,7 +183353,7 @@ func (p *PostgreSQLParser) Opt_case_else() (localctx IOpt_case_elseContext) { } } { - p.SetState(11139) + p.SetState(11129) p.Proc_sect() } @@ -183504,11 +183481,11 @@ func (s *Stmt_loopContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_loop() (localctx IStmt_loopContext) { localctx = NewStmt_loopContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1546, PostgreSQLParserRULE_stmt_loop) + p.EnterRule(localctx, 1548, PostgreSQLParserRULE_stmt_loop) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11142) + p.SetState(11132) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183517,13 +183494,13 @@ func (p *PostgreSQLParser) Stmt_loop() (localctx IStmt_loopContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11141) + p.SetState(11131) p.Opt_loop_label() } } { - p.SetState(11144) + p.SetState(11134) p.Loop_body() } @@ -183673,11 +183650,11 @@ func (s *Stmt_whileContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_while() (localctx IStmt_whileContext) { localctx = NewStmt_whileContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1548, PostgreSQLParserRULE_stmt_while) + p.EnterRule(localctx, 1550, PostgreSQLParserRULE_stmt_while) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11147) + p.SetState(11137) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183686,13 +183663,13 @@ func (p *PostgreSQLParser) Stmt_while() (localctx IStmt_whileContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11146) + p.SetState(11136) p.Opt_loop_label() } } { - p.SetState(11149) + p.SetState(11139) p.Match(PostgreSQLParserWHILE) if p.HasError() { // Recognition error - abort rule @@ -183700,11 +183677,11 @@ func (p *PostgreSQLParser) Stmt_while() (localctx IStmt_whileContext) { } } { - p.SetState(11150) + p.SetState(11140) p.Expr_until_loop() } { - p.SetState(11151) + p.SetState(11141) p.Loop_body() } @@ -183854,11 +183831,11 @@ func (s *Stmt_forContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_for() (localctx IStmt_forContext) { localctx = NewStmt_forContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1550, PostgreSQLParserRULE_stmt_for) + p.EnterRule(localctx, 1552, PostgreSQLParserRULE_stmt_for) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11154) + p.SetState(11144) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183867,13 +183844,13 @@ func (p *PostgreSQLParser) Stmt_for() (localctx IStmt_forContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11153) + p.SetState(11143) p.Opt_loop_label() } } { - p.SetState(11156) + p.SetState(11146) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -183881,11 +183858,11 @@ func (p *PostgreSQLParser) Stmt_for() (localctx IStmt_forContext) { } } { - p.SetState(11157) + p.SetState(11147) p.For_control() } { - p.SetState(11158) + p.SetState(11148) p.Loop_body() } @@ -184173,35 +184150,35 @@ func (s *For_controlContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { localctx = NewFor_controlContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1552, PostgreSQLParserRULE_for_control) + p.EnterRule(localctx, 1554, PostgreSQLParserRULE_for_control) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11160) + p.SetState(11150) p.For_variable() } { - p.SetState(11161) + p.SetState(11151) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11182) + p.SetState(11172) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1102, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1100, p.GetParserRuleContext()) { case 1: { - p.SetState(11162) + p.SetState(11152) p.Cursor_name() } - p.SetState(11164) + p.SetState(11154) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184210,7 +184187,7 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(11163) + p.SetState(11153) p.Opt_cursor_parameters() } @@ -184218,19 +184195,19 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { case 2: { - p.SetState(11166) + p.SetState(11156) p.Selectstmt() } case 3: { - p.SetState(11167) + p.SetState(11157) p.Explainstmt() } case 4: { - p.SetState(11168) + p.SetState(11158) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -184238,10 +184215,10 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { } } { - p.SetState(11169) + p.SetState(11159) p.A_expr() } - p.SetState(11171) + p.SetState(11161) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184250,19 +184227,19 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11170) + p.SetState(11160) p.Opt_for_using_expression() } } case 5: - p.SetState(11174) + p.SetState(11164) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1100, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1098, p.GetParserRuleContext()) == 1 { { - p.SetState(11173) + p.SetState(11163) p.Opt_reverse() } @@ -184270,11 +184247,11 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { goto errorExit } { - p.SetState(11176) + p.SetState(11166) p.A_expr() } { - p.SetState(11177) + p.SetState(11167) p.Match(PostgreSQLParserDOT_DOT) if p.HasError() { // Recognition error - abort rule @@ -184282,10 +184259,10 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { } } { - p.SetState(11178) + p.SetState(11168) p.A_expr() } - p.SetState(11180) + p.SetState(11170) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184294,7 +184271,7 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { if _la == PostgreSQLParserBY { { - p.SetState(11179) + p.SetState(11169) p.Opt_by_expression() } @@ -184416,10 +184393,10 @@ func (s *Opt_for_using_expressionContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opt_for_using_expression() (localctx IOpt_for_using_expressionContext) { localctx = NewOpt_for_using_expressionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1554, PostgreSQLParserRULE_opt_for_using_expression) + p.EnterRule(localctx, 1556, PostgreSQLParserRULE_opt_for_using_expression) p.EnterOuterAlt(localctx, 1) { - p.SetState(11184) + p.SetState(11174) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -184427,7 +184404,7 @@ func (p *PostgreSQLParser) Opt_for_using_expression() (localctx IOpt_for_using_e } } { - p.SetState(11185) + p.SetState(11175) p.Expr_list() } @@ -184584,12 +184561,12 @@ func (s *Opt_cursor_parametersContext) Accept(visitor antlr.ParseTreeVisitor) in func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_parametersContext) { localctx = NewOpt_cursor_parametersContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1556, PostgreSQLParserRULE_opt_cursor_parameters) + p.EnterRule(localctx, 1558, PostgreSQLParserRULE_opt_cursor_parameters) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11187) + p.SetState(11177) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -184597,10 +184574,10 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet } } { - p.SetState(11188) + p.SetState(11178) p.A_expr() } - p.SetState(11193) + p.SetState(11183) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184609,7 +184586,7 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet for _la == PostgreSQLParserCOMMA { { - p.SetState(11189) + p.SetState(11179) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -184617,11 +184594,11 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet } } { - p.SetState(11190) + p.SetState(11180) p.A_expr() } - p.SetState(11195) + p.SetState(11185) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184629,7 +184606,7 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet _la = p.GetTokenStream().LA(1) } { - p.SetState(11196) + p.SetState(11186) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -184732,10 +184709,10 @@ func (s *Opt_reverseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_reverse() (localctx IOpt_reverseContext) { localctx = NewOpt_reverseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1558, PostgreSQLParserRULE_opt_reverse) + p.EnterRule(localctx, 1560, PostgreSQLParserRULE_opt_reverse) p.EnterOuterAlt(localctx, 1) { - p.SetState(11198) + p.SetState(11188) p.Match(PostgreSQLParserREVERSE) if p.HasError() { // Recognition error - abort rule @@ -184855,10 +184832,10 @@ func (s *Opt_by_expressionContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Opt_by_expression() (localctx IOpt_by_expressionContext) { localctx = NewOpt_by_expressionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1560, PostgreSQLParserRULE_opt_by_expression) + p.EnterRule(localctx, 1562, PostgreSQLParserRULE_opt_by_expression) p.EnterOuterAlt(localctx, 1) { - p.SetState(11200) + p.SetState(11190) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -184866,7 +184843,7 @@ func (p *PostgreSQLParser) Opt_by_expression() (localctx IOpt_by_expressionConte } } { - p.SetState(11201) + p.SetState(11191) p.A_expr() } @@ -184977,10 +184954,10 @@ func (s *For_variableContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) For_variable() (localctx IFor_variableContext) { localctx = NewFor_variableContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1562, PostgreSQLParserRULE_for_variable) + p.EnterRule(localctx, 1564, PostgreSQLParserRULE_for_variable) p.EnterOuterAlt(localctx, 1) { - p.SetState(11203) + p.SetState(11193) p.Any_name_list() } @@ -185174,11 +185151,11 @@ func (s *Stmt_foreach_aContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { localctx = NewStmt_foreach_aContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1564, PostgreSQLParserRULE_stmt_foreach_a) + p.EnterRule(localctx, 1566, PostgreSQLParserRULE_stmt_foreach_a) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11206) + p.SetState(11196) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185187,13 +185164,13 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11205) + p.SetState(11195) p.Opt_loop_label() } } { - p.SetState(11208) + p.SetState(11198) p.Match(PostgreSQLParserFOREACH) if p.HasError() { // Recognition error - abort rule @@ -185201,10 +185178,10 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { } } { - p.SetState(11209) + p.SetState(11199) p.For_variable() } - p.SetState(11211) + p.SetState(11201) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185213,13 +185190,13 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { if _la == PostgreSQLParserSLICE { { - p.SetState(11210) + p.SetState(11200) p.Foreach_slice() } } { - p.SetState(11213) + p.SetState(11203) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -185227,7 +185204,7 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { } } { - p.SetState(11214) + p.SetState(11204) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -185235,11 +185212,11 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { } } { - p.SetState(11215) + p.SetState(11205) p.A_expr() } { - p.SetState(11216) + p.SetState(11206) p.Loop_body() } @@ -185355,10 +185332,10 @@ func (s *Foreach_sliceContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Foreach_slice() (localctx IForeach_sliceContext) { localctx = NewForeach_sliceContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1566, PostgreSQLParserRULE_foreach_slice) + p.EnterRule(localctx, 1568, PostgreSQLParserRULE_foreach_slice) p.EnterOuterAlt(localctx, 1) { - p.SetState(11218) + p.SetState(11208) p.Match(PostgreSQLParserSLICE) if p.HasError() { // Recognition error - abort rule @@ -185366,7 +185343,7 @@ func (p *PostgreSQLParser) Foreach_slice() (localctx IForeach_sliceContext) { } } { - p.SetState(11219) + p.SetState(11209) p.Iconst() } @@ -185516,15 +185493,15 @@ func (s *Stmt_exitContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_exit() (localctx IStmt_exitContext) { localctx = NewStmt_exitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1568, PostgreSQLParserRULE_stmt_exit) + p.EnterRule(localctx, 1570, PostgreSQLParserRULE_stmt_exit) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11221) + p.SetState(11211) p.Exit_type() } - p.SetState(11223) + p.SetState(11213) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185533,12 +185510,12 @@ func (p *PostgreSQLParser) Stmt_exit() (localctx IStmt_exitContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(11222) + p.SetState(11212) p.Opt_label() } } - p.SetState(11226) + p.SetState(11216) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185547,13 +185524,13 @@ func (p *PostgreSQLParser) Stmt_exit() (localctx IStmt_exitContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(11225) + p.SetState(11215) p.Opt_exitcond() } } { - p.SetState(11228) + p.SetState(11218) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -185661,12 +185638,12 @@ func (s *Exit_typeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Exit_type() (localctx IExit_typeContext) { localctx = NewExit_typeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1570, PostgreSQLParserRULE_exit_type) + p.EnterRule(localctx, 1572, PostgreSQLParserRULE_exit_type) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11230) + p.SetState(11220) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONTINUE_P || _la == PostgreSQLParserEXIT) { @@ -185877,28 +185854,28 @@ func (s *Stmt_returnContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { localctx = NewStmt_returnContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1572, PostgreSQLParserRULE_stmt_return) + p.EnterRule(localctx, 1574, PostgreSQLParserRULE_stmt_return) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11232) + p.SetState(11222) p.Match(PostgreSQLParserRETURN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11247) + p.SetState(11237) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1111, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1109, p.GetParserRuleContext()) { case 1: { - p.SetState(11233) + p.SetState(11223) p.Match(PostgreSQLParserNEXT) if p.HasError() { // Recognition error - abort rule @@ -185906,20 +185883,20 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { } } { - p.SetState(11234) + p.SetState(11224) p.Sql_expression() } case 2: { - p.SetState(11235) + p.SetState(11225) p.Match(PostgreSQLParserQUERY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11242) + p.SetState(11232) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185928,7 +185905,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserEXECUTE: { - p.SetState(11236) + p.SetState(11226) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -185936,10 +185913,10 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { } } { - p.SetState(11237) + p.SetState(11227) p.A_expr() } - p.SetState(11239) + p.SetState(11229) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185948,7 +185925,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11238) + p.SetState(11228) p.Opt_for_using_expression() } @@ -185956,7 +185933,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { case PostgreSQLParserOPEN_PAREN, PostgreSQLParserSELECT, PostgreSQLParserTABLE, PostgreSQLParserWITH, PostgreSQLParserVALUES: { - p.SetState(11241) + p.SetState(11231) p.Selectstmt() } @@ -185966,7 +185943,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { } case 3: - p.SetState(11245) + p.SetState(11235) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185975,7 +185952,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&3692875871896482308) != 0) || ((int64((_la-75)) & ^0x3f) == 0 && ((int64(1)<<(_la-75))&-684997864177649) != 0) || ((int64((_la-139)) & ^0x3f) == 0 && ((int64(1)<<(_la-139))&-1) != 0) || ((int64((_la-203)) & ^0x3f) == 0 && ((int64(1)<<(_la-203))&-1) != 0) || ((int64((_la-267)) & ^0x3f) == 0 && ((int64(1)<<(_la-267))&-37) != 0) || ((int64((_la-331)) & ^0x3f) == 0 && ((int64(1)<<(_la-331))&-1) != 0) || ((int64((_la-395)) & ^0x3f) == 0 && ((int64(1)<<(_la-395))&-1) != 0) || ((int64((_la-459)) & ^0x3f) == 0 && ((int64(1)<<(_la-459))&-65537) != 0) || ((int64((_la-523)) & ^0x3f) == 0 && ((int64(1)<<(_la-523))&-131083) != 0) || ((int64((_la-587)) & ^0x3f) == 0 && ((int64(1)<<(_la-587))&-1) != 0) || ((int64((_la-651)) & ^0x3f) == 0 && ((int64(1)<<(_la-651))&282473779198079) != 0) { { - p.SetState(11244) + p.SetState(11234) p.Opt_return_result() } @@ -185985,7 +185962,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { goto errorExit } { - p.SetState(11249) + p.SetState(11239) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186100,10 +186077,10 @@ func (s *Opt_return_resultContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Opt_return_result() (localctx IOpt_return_resultContext) { localctx = NewOpt_return_resultContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1574, PostgreSQLParserRULE_opt_return_result) + p.EnterRule(localctx, 1576, PostgreSQLParserRULE_opt_return_result) p.EnterOuterAlt(localctx, 1) { - p.SetState(11251) + p.SetState(11241) p.Sql_expression() } @@ -186297,27 +186274,27 @@ func (s *Stmt_raiseContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { localctx = NewStmt_raiseContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1576, PostgreSQLParserRULE_stmt_raise) + p.EnterRule(localctx, 1578, PostgreSQLParserRULE_stmt_raise) var _la int - p.SetState(11296) + p.SetState(11286) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1121, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1119, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11253) + p.SetState(11243) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11255) + p.SetState(11245) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186326,16 +186303,16 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if (int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0 { { - p.SetState(11254) + p.SetState(11244) p.Opt_stmt_raise_level() } } { - p.SetState(11257) + p.SetState(11247) p.Sconst() } - p.SetState(11259) + p.SetState(11249) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186344,12 +186321,12 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserCOMMA { { - p.SetState(11258) + p.SetState(11248) p.Opt_raise_list() } } - p.SetState(11262) + p.SetState(11252) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186358,13 +186335,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11261) + p.SetState(11251) p.Opt_raise_using() } } { - p.SetState(11264) + p.SetState(11254) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186375,19 +186352,19 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11266) + p.SetState(11256) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11268) + p.SetState(11258) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1115, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1113, p.GetParserRuleContext()) == 1 { { - p.SetState(11267) + p.SetState(11257) p.Opt_stmt_raise_level() } @@ -186395,10 +186372,10 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { goto errorExit } { - p.SetState(11270) + p.SetState(11260) p.Identifier() } - p.SetState(11272) + p.SetState(11262) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186407,13 +186384,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11271) + p.SetState(11261) p.Opt_raise_using() } } { - p.SetState(11274) + p.SetState(11264) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186424,14 +186401,14 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(11276) + p.SetState(11266) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11278) + p.SetState(11268) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186440,13 +186417,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if (int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0 { { - p.SetState(11277) + p.SetState(11267) p.Opt_stmt_raise_level() } } { - p.SetState(11280) + p.SetState(11270) p.Match(PostgreSQLParserSQLSTATE) if p.HasError() { // Recognition error - abort rule @@ -186454,10 +186431,10 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { } } { - p.SetState(11281) + p.SetState(11271) p.Sconst() } - p.SetState(11283) + p.SetState(11273) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186466,13 +186443,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11282) + p.SetState(11272) p.Opt_raise_using() } } { - p.SetState(11285) + p.SetState(11275) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186483,14 +186460,14 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(11287) + p.SetState(11277) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11289) + p.SetState(11279) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186499,12 +186476,12 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if (int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0 { { - p.SetState(11288) + p.SetState(11278) p.Opt_stmt_raise_level() } } - p.SetState(11292) + p.SetState(11282) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186513,13 +186490,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11291) + p.SetState(11281) p.Opt_raise_using() } } { - p.SetState(11294) + p.SetState(11284) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186530,7 +186507,7 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(11295) + p.SetState(11285) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule @@ -186662,12 +186639,12 @@ func (s *Opt_stmt_raise_levelContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Opt_stmt_raise_level() (localctx IOpt_stmt_raise_levelContext) { localctx = NewOpt_stmt_raise_levelContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1578, PostgreSQLParserRULE_opt_stmt_raise_level) + p.EnterRule(localctx, 1580, PostgreSQLParserRULE_opt_stmt_raise_level) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11298) + p.SetState(11288) _la = p.GetTokenStream().LA(1) if !((int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0) { @@ -186821,11 +186798,11 @@ func (s *Opt_raise_listContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Opt_raise_list() (localctx IOpt_raise_listContext) { localctx = NewOpt_raise_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1580, PostgreSQLParserRULE_opt_raise_list) + p.EnterRule(localctx, 1582, PostgreSQLParserRULE_opt_raise_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11302) + p.SetState(11292) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186834,7 +186811,7 @@ func (p *PostgreSQLParser) Opt_raise_list() (localctx IOpt_raise_listContext) { for ok := true; ok; ok = _la == PostgreSQLParserCOMMA { { - p.SetState(11300) + p.SetState(11290) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -186842,11 +186819,11 @@ func (p *PostgreSQLParser) Opt_raise_list() (localctx IOpt_raise_listContext) { } } { - p.SetState(11301) + p.SetState(11291) p.A_expr() } - p.SetState(11304) + p.SetState(11294) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186966,10 +186943,10 @@ func (s *Opt_raise_usingContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_raise_using() (localctx IOpt_raise_usingContext) { localctx = NewOpt_raise_usingContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1582, PostgreSQLParserRULE_opt_raise_using) + p.EnterRule(localctx, 1584, PostgreSQLParserRULE_opt_raise_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(11306) + p.SetState(11296) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -186977,7 +186954,7 @@ func (p *PostgreSQLParser) Opt_raise_using() (localctx IOpt_raise_usingContext) } } { - p.SetState(11307) + p.SetState(11297) p.Opt_raise_using_elem_list() } @@ -187110,14 +187087,14 @@ func (s *Opt_raise_using_elemContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Opt_raise_using_elem() (localctx IOpt_raise_using_elemContext) { localctx = NewOpt_raise_using_elemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1584, PostgreSQLParserRULE_opt_raise_using_elem) + p.EnterRule(localctx, 1586, PostgreSQLParserRULE_opt_raise_using_elem) p.EnterOuterAlt(localctx, 1) { - p.SetState(11309) + p.SetState(11299) p.Identifier() } { - p.SetState(11310) + p.SetState(11300) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -187125,7 +187102,7 @@ func (p *PostgreSQLParser) Opt_raise_using_elem() (localctx IOpt_raise_using_ele } } { - p.SetState(11311) + p.SetState(11301) p.A_expr() } @@ -187272,15 +187249,15 @@ func (s *Opt_raise_using_elem_listContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Opt_raise_using_elem_list() (localctx IOpt_raise_using_elem_listContext) { localctx = NewOpt_raise_using_elem_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1586, PostgreSQLParserRULE_opt_raise_using_elem_list) + p.EnterRule(localctx, 1588, PostgreSQLParserRULE_opt_raise_using_elem_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11313) + p.SetState(11303) p.Opt_raise_using_elem() } - p.SetState(11318) + p.SetState(11308) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187289,7 +187266,7 @@ func (p *PostgreSQLParser) Opt_raise_using_elem_list() (localctx IOpt_raise_usin for _la == PostgreSQLParserCOMMA { { - p.SetState(11314) + p.SetState(11304) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -187297,11 +187274,11 @@ func (p *PostgreSQLParser) Opt_raise_using_elem_list() (localctx IOpt_raise_usin } } { - p.SetState(11315) + p.SetState(11305) p.Opt_raise_using_elem() } - p.SetState(11320) + p.SetState(11310) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187443,12 +187420,12 @@ func (s *Stmt_assertContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_assert() (localctx IStmt_assertContext) { localctx = NewStmt_assertContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1588, PostgreSQLParserRULE_stmt_assert) + p.EnterRule(localctx, 1590, PostgreSQLParserRULE_stmt_assert) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11321) + p.SetState(11311) p.Match(PostgreSQLParserASSERT) if p.HasError() { // Recognition error - abort rule @@ -187456,10 +187433,10 @@ func (p *PostgreSQLParser) Stmt_assert() (localctx IStmt_assertContext) { } } { - p.SetState(11322) + p.SetState(11312) p.Sql_expression() } - p.SetState(11324) + p.SetState(11314) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187468,13 +187445,13 @@ func (p *PostgreSQLParser) Stmt_assert() (localctx IStmt_assertContext) { if _la == PostgreSQLParserCOMMA { { - p.SetState(11323) + p.SetState(11313) p.Opt_stmt_assert_message() } } { - p.SetState(11326) + p.SetState(11316) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -187594,10 +187571,10 @@ func (s *Opt_stmt_assert_messageContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opt_stmt_assert_message() (localctx IOpt_stmt_assert_messageContext) { localctx = NewOpt_stmt_assert_messageContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1590, PostgreSQLParserRULE_opt_stmt_assert_message) + p.EnterRule(localctx, 1592, PostgreSQLParserRULE_opt_stmt_assert_message) p.EnterOuterAlt(localctx, 1) { - p.SetState(11328) + p.SetState(11318) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -187605,7 +187582,7 @@ func (p *PostgreSQLParser) Opt_stmt_assert_message() (localctx IOpt_stmt_assert_ } } { - p.SetState(11329) + p.SetState(11319) p.Sql_expression() } @@ -187753,12 +187730,12 @@ func (s *Loop_bodyContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Loop_body() (localctx ILoop_bodyContext) { localctx = NewLoop_bodyContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1592, PostgreSQLParserRULE_loop_body) + p.EnterRule(localctx, 1594, PostgreSQLParserRULE_loop_body) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11331) + p.SetState(11321) p.Match(PostgreSQLParserLOOP) if p.HasError() { // Recognition error - abort rule @@ -187766,11 +187743,11 @@ func (p *PostgreSQLParser) Loop_body() (localctx ILoop_bodyContext) { } } { - p.SetState(11332) + p.SetState(11322) p.Proc_sect() } { - p.SetState(11333) + p.SetState(11323) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -187778,14 +187755,14 @@ func (p *PostgreSQLParser) Loop_body() (localctx ILoop_bodyContext) { } } { - p.SetState(11334) + p.SetState(11324) p.Match(PostgreSQLParserLOOP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11336) + p.SetState(11326) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187794,13 +187771,13 @@ func (p *PostgreSQLParser) Loop_body() (localctx ILoop_bodyContext) { if ((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&2459027012145119232) != 0) || ((int64((_la-92)) & ^0x3f) == 0 && ((int64(1)<<(_la-92))&-59593526869901311) != 0) || ((int64((_la-156)) & ^0x3f) == 0 && ((int64(1)<<(_la-156))&-1) != 0) || ((int64((_la-220)) & ^0x3f) == 0 && ((int64(1)<<(_la-220))&-5066549580791809) != 0) || ((int64((_la-284)) & ^0x3f) == 0 && ((int64(1)<<(_la-284))&-1) != 0) || ((int64((_la-348)) & ^0x3f) == 0 && ((int64(1)<<(_la-348))&-1) != 0) || ((int64((_la-412)) & ^0x3f) == 0 && ((int64(1)<<(_la-412))&9223372036854775807) != 0) || ((int64((_la-476)) & ^0x3f) == 0 && ((int64(1)<<(_la-476))&-1407374883684353) != 0) || ((int64((_la-541)) & ^0x3f) == 0 && ((int64(1)<<(_la-541))&-1) != 0) || ((int64((_la-605)) & ^0x3f) == 0 && ((int64(1)<<(_la-605))&2170735020392579071) != 0) || ((int64((_la-669)) & ^0x3f) == 0 && ((int64(1)<<(_la-669))&3145729) != 0) { { - p.SetState(11335) + p.SetState(11325) p.Opt_label() } } { - p.SetState(11338) + p.SetState(11328) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -187920,14 +187897,14 @@ func (s *Stmt_execsqlContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_execsql() (localctx IStmt_execsqlContext) { localctx = NewStmt_execsqlContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1594, PostgreSQLParserRULE_stmt_execsql) + p.EnterRule(localctx, 1596, PostgreSQLParserRULE_stmt_execsql) p.EnterOuterAlt(localctx, 1) { - p.SetState(11340) + p.SetState(11330) p.Make_execsql_stmt() } { - p.SetState(11341) + p.SetState(11331) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -188086,12 +188063,12 @@ func (s *Stmt_dynexecuteContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) { localctx = NewStmt_dynexecuteContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1596, PostgreSQLParserRULE_stmt_dynexecute) + p.EnterRule(localctx, 1598, PostgreSQLParserRULE_stmt_dynexecute) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11343) + p.SetState(11333) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -188099,18 +188076,18 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) } } { - p.SetState(11344) + p.SetState(11334) p.A_expr() } - p.SetState(11358) + p.SetState(11348) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1130, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1128, p.GetParserRuleContext()) { case 1: - p.SetState(11346) + p.SetState(11336) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188119,12 +188096,12 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserINTO { { - p.SetState(11345) + p.SetState(11335) p.Opt_execute_into() } } - p.SetState(11349) + p.SetState(11339) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188133,14 +188110,14 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserUSING { { - p.SetState(11348) + p.SetState(11338) p.Opt_execute_using() } } case 2: - p.SetState(11352) + p.SetState(11342) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188149,12 +188126,12 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserUSING { { - p.SetState(11351) + p.SetState(11341) p.Opt_execute_using() } } - p.SetState(11355) + p.SetState(11345) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188163,7 +188140,7 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserINTO { { - p.SetState(11354) + p.SetState(11344) p.Opt_execute_into() } @@ -188175,7 +188152,7 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) goto errorExit } { - p.SetState(11360) + p.SetState(11350) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -188295,10 +188272,10 @@ func (s *Opt_execute_usingContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Opt_execute_using() (localctx IOpt_execute_usingContext) { localctx = NewOpt_execute_usingContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1598, PostgreSQLParserRULE_opt_execute_using) + p.EnterRule(localctx, 1600, PostgreSQLParserRULE_opt_execute_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(11362) + p.SetState(11352) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -188306,7 +188283,7 @@ func (p *PostgreSQLParser) Opt_execute_using() (localctx IOpt_execute_usingConte } } { - p.SetState(11363) + p.SetState(11353) p.Opt_execute_using_list() } @@ -188453,15 +188430,15 @@ func (s *Opt_execute_using_listContext) Accept(visitor antlr.ParseTreeVisitor) i func (p *PostgreSQLParser) Opt_execute_using_list() (localctx IOpt_execute_using_listContext) { localctx = NewOpt_execute_using_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1600, PostgreSQLParserRULE_opt_execute_using_list) + p.EnterRule(localctx, 1602, PostgreSQLParserRULE_opt_execute_using_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11365) + p.SetState(11355) p.A_expr() } - p.SetState(11370) + p.SetState(11360) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188470,7 +188447,7 @@ func (p *PostgreSQLParser) Opt_execute_using_list() (localctx IOpt_execute_using for _la == PostgreSQLParserCOMMA { { - p.SetState(11366) + p.SetState(11356) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -188478,11 +188455,11 @@ func (p *PostgreSQLParser) Opt_execute_using_list() (localctx IOpt_execute_using } } { - p.SetState(11367) + p.SetState(11357) p.A_expr() } - p.SetState(11372) + p.SetState(11362) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188607,22 +188584,22 @@ func (s *Opt_execute_intoContext) Accept(visitor antlr.ParseTreeVisitor) interfa func (p *PostgreSQLParser) Opt_execute_into() (localctx IOpt_execute_intoContext) { localctx = NewOpt_execute_intoContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1602, PostgreSQLParserRULE_opt_execute_into) + p.EnterRule(localctx, 1604, PostgreSQLParserRULE_opt_execute_into) p.EnterOuterAlt(localctx, 1) { - p.SetState(11373) + p.SetState(11363) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11375) + p.SetState(11365) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1132, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1130, p.GetParserRuleContext()) == 1 { { - p.SetState(11374) + p.SetState(11364) p.Match(PostgreSQLParserSTRICT_P) if p.HasError() { // Recognition error - abort rule @@ -188634,7 +188611,7 @@ func (p *PostgreSQLParser) Opt_execute_into() (localctx IOpt_execute_intoContext goto errorExit } { - p.SetState(11377) + p.SetState(11367) p.Into_target() } @@ -188877,31 +188854,31 @@ func (s *Stmt_openContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { localctx = NewStmt_openContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1604, PostgreSQLParserRULE_stmt_open) + p.EnterRule(localctx, 1606, PostgreSQLParserRULE_stmt_open) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11379) + p.SetState(11369) p.Match(PostgreSQLParserOPEN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11400) + p.SetState(11390) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1137, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1135, p.GetParserRuleContext()) { case 1: { - p.SetState(11380) + p.SetState(11370) p.Cursor_variable() } - p.SetState(11382) + p.SetState(11372) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188910,20 +188887,20 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { if _la == PostgreSQLParserNO || _la == PostgreSQLParserSCROLL { { - p.SetState(11381) + p.SetState(11371) p.Opt_scroll_option() } } { - p.SetState(11384) + p.SetState(11374) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11391) + p.SetState(11381) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188932,13 +188909,13 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN, PostgreSQLParserSELECT, PostgreSQLParserTABLE, PostgreSQLParserWITH, PostgreSQLParserVALUES: { - p.SetState(11385) + p.SetState(11375) p.Selectstmt() } case PostgreSQLParserEXECUTE: { - p.SetState(11386) + p.SetState(11376) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -188946,10 +188923,10 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { } } { - p.SetState(11387) + p.SetState(11377) p.Sql_expression() } - p.SetState(11389) + p.SetState(11379) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188958,7 +188935,7 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11388) + p.SetState(11378) p.Opt_open_using() } @@ -188971,10 +188948,10 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { case 2: { - p.SetState(11393) + p.SetState(11383) p.Colid() } - p.SetState(11398) + p.SetState(11388) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188983,7 +188960,7 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(11394) + p.SetState(11384) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -188991,11 +188968,11 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { } } { - p.SetState(11395) + p.SetState(11385) p.Opt_open_bound_list() } { - p.SetState(11396) + p.SetState(11386) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -189009,7 +188986,7 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { goto errorExit } { - p.SetState(11402) + p.SetState(11392) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -189146,22 +189123,22 @@ func (s *Opt_open_bound_list_itemContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opt_open_bound_list_item() (localctx IOpt_open_bound_list_itemContext) { localctx = NewOpt_open_bound_list_itemContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1606, PostgreSQLParserRULE_opt_open_bound_list_item) - p.SetState(11409) + p.EnterRule(localctx, 1608, PostgreSQLParserRULE_opt_open_bound_list_item) + p.SetState(11399) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1138, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1136, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11404) + p.SetState(11394) p.Colid() } { - p.SetState(11405) + p.SetState(11395) p.Match(PostgreSQLParserCOLON_EQUALS) if p.HasError() { // Recognition error - abort rule @@ -189169,14 +189146,14 @@ func (p *PostgreSQLParser) Opt_open_bound_list_item() (localctx IOpt_open_bound_ } } { - p.SetState(11406) + p.SetState(11396) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11408) + p.SetState(11398) p.A_expr() } @@ -189327,15 +189304,15 @@ func (s *Opt_open_bound_listContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Opt_open_bound_list() (localctx IOpt_open_bound_listContext) { localctx = NewOpt_open_bound_listContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1608, PostgreSQLParserRULE_opt_open_bound_list) + p.EnterRule(localctx, 1610, PostgreSQLParserRULE_opt_open_bound_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11411) + p.SetState(11401) p.Opt_open_bound_list_item() } - p.SetState(11416) + p.SetState(11406) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189344,7 +189321,7 @@ func (p *PostgreSQLParser) Opt_open_bound_list() (localctx IOpt_open_bound_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(11412) + p.SetState(11402) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -189352,11 +189329,11 @@ func (p *PostgreSQLParser) Opt_open_bound_list() (localctx IOpt_open_bound_listC } } { - p.SetState(11413) + p.SetState(11403) p.Opt_open_bound_list_item() } - p.SetState(11418) + p.SetState(11408) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189476,10 +189453,10 @@ func (s *Opt_open_usingContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Opt_open_using() (localctx IOpt_open_usingContext) { localctx = NewOpt_open_usingContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1610, PostgreSQLParserRULE_opt_open_using) + p.EnterRule(localctx, 1612, PostgreSQLParserRULE_opt_open_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(11419) + p.SetState(11409) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -189487,7 +189464,7 @@ func (p *PostgreSQLParser) Opt_open_using() (localctx IOpt_open_usingContext) { } } { - p.SetState(11420) + p.SetState(11410) p.Expr_list() } @@ -189603,11 +189580,11 @@ func (s *Opt_scroll_optionContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Opt_scroll_option() (localctx IOpt_scroll_optionContext) { localctx = NewOpt_scroll_optionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1612, PostgreSQLParserRULE_opt_scroll_option) + p.EnterRule(localctx, 1614, PostgreSQLParserRULE_opt_scroll_option) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11423) + p.SetState(11413) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189616,13 +189593,13 @@ func (p *PostgreSQLParser) Opt_scroll_option() (localctx IOpt_scroll_optionConte if _la == PostgreSQLParserNO { { - p.SetState(11422) + p.SetState(11412) p.Opt_scroll_option_no() } } { - p.SetState(11425) + p.SetState(11415) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -189725,10 +189702,10 @@ func (s *Opt_scroll_option_noContext) Accept(visitor antlr.ParseTreeVisitor) int func (p *PostgreSQLParser) Opt_scroll_option_no() (localctx IOpt_scroll_option_noContext) { localctx = NewOpt_scroll_option_noContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1614, PostgreSQLParserRULE_opt_scroll_option_no) + p.EnterRule(localctx, 1616, PostgreSQLParserRULE_opt_scroll_option_no) p.EnterOuterAlt(localctx, 1) { - p.SetState(11427) + p.SetState(11417) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -189920,24 +189897,24 @@ func (s *Stmt_fetchContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { localctx = NewStmt_fetchContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1616, PostgreSQLParserRULE_stmt_fetch) + p.EnterRule(localctx, 1618, PostgreSQLParserRULE_stmt_fetch) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11429) + p.SetState(11419) p.Match(PostgreSQLParserFETCH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11431) + p.SetState(11421) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1141, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1139, p.GetParserRuleContext()) == 1 { { - p.SetState(11430) + p.SetState(11420) var _x = p.Opt_fetch_direction() @@ -189947,7 +189924,7 @@ func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(11434) + p.SetState(11424) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189956,17 +189933,17 @@ func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(11433) + p.SetState(11423) p.Opt_cursor_from() } } { - p.SetState(11436) + p.SetState(11426) p.Cursor_variable() } { - p.SetState(11437) + p.SetState(11427) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -189974,11 +189951,11 @@ func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { } } { - p.SetState(11438) + p.SetState(11428) p.Into_target() } { - p.SetState(11439) + p.SetState(11429) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -190093,10 +190070,10 @@ func (s *Into_targetContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Into_target() (localctx IInto_targetContext) { localctx = NewInto_targetContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1618, PostgreSQLParserRULE_into_target) + p.EnterRule(localctx, 1620, PostgreSQLParserRULE_into_target) p.EnterOuterAlt(localctx, 1) { - p.SetState(11441) + p.SetState(11431) p.Expr_list() } @@ -190200,12 +190177,12 @@ func (s *Opt_cursor_fromContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_cursor_from() (localctx IOpt_cursor_fromContext) { localctx = NewOpt_cursor_fromContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1620, PostgreSQLParserRULE_opt_cursor_from) + p.EnterRule(localctx, 1622, PostgreSQLParserRULE_opt_cursor_from) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11443) + p.SetState(11433) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P) { @@ -190368,20 +190345,20 @@ func (s *Opt_fetch_directionContext) Accept(visitor antlr.ParseTreeVisitor) inte func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionContext) { localctx = NewOpt_fetch_directionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1622, PostgreSQLParserRULE_opt_fetch_direction) + p.EnterRule(localctx, 1624, PostgreSQLParserRULE_opt_fetch_direction) var _la int - p.SetState(11460) + p.SetState(11450) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1144, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1142, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11445) + p.SetState(11435) p.Match(PostgreSQLParserNEXT) if p.HasError() { // Recognition error - abort rule @@ -190392,7 +190369,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11446) + p.SetState(11436) p.Match(PostgreSQLParserPRIOR) if p.HasError() { // Recognition error - abort rule @@ -190403,7 +190380,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(11447) + p.SetState(11437) p.Match(PostgreSQLParserFIRST_P) if p.HasError() { // Recognition error - abort rule @@ -190414,7 +190391,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(11448) + p.SetState(11438) p.Match(PostgreSQLParserLAST_P) if p.HasError() { // Recognition error - abort rule @@ -190425,7 +190402,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(11449) + p.SetState(11439) p.Match(PostgreSQLParserABSOLUTE_P) if p.HasError() { // Recognition error - abort rule @@ -190433,14 +190410,14 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC } } { - p.SetState(11450) + p.SetState(11440) p.A_expr() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(11451) + p.SetState(11441) p.Match(PostgreSQLParserRELATIVE_P) if p.HasError() { // Recognition error - abort rule @@ -190448,21 +190425,21 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC } } { - p.SetState(11452) + p.SetState(11442) p.A_expr() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(11453) + p.SetState(11443) p.A_expr() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(11454) + p.SetState(11444) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -190473,7 +190450,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(11455) + p.SetState(11445) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserBACKWARD || _la == PostgreSQLParserFORWARD) { @@ -190483,20 +190460,20 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC p.Consume() } } - p.SetState(11458) + p.SetState(11448) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1143, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1141, p.GetParserRuleContext()) == 1 { { - p.SetState(11456) + p.SetState(11446) p.A_expr() } } else if p.HasError() { // JIM goto errorExit - } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1143, p.GetParserRuleContext()) == 2 { + } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1141, p.GetParserRuleContext()) == 2 { { - p.SetState(11457) + p.SetState(11447) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -190646,22 +190623,22 @@ func (s *Stmt_moveContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_move() (localctx IStmt_moveContext) { localctx = NewStmt_moveContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1624, PostgreSQLParserRULE_stmt_move) + p.EnterRule(localctx, 1626, PostgreSQLParserRULE_stmt_move) p.EnterOuterAlt(localctx, 1) { - p.SetState(11462) + p.SetState(11452) p.Match(PostgreSQLParserMOVE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11464) + p.SetState(11454) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1145, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1143, p.GetParserRuleContext()) == 1 { { - p.SetState(11463) + p.SetState(11453) p.Opt_fetch_direction() } @@ -190669,11 +190646,11 @@ func (p *PostgreSQLParser) Stmt_move() (localctx IStmt_moveContext) { goto errorExit } { - p.SetState(11466) + p.SetState(11456) p.Cursor_variable() } { - p.SetState(11467) + p.SetState(11457) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -190798,10 +190775,10 @@ func (s *Stmt_closeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_close() (localctx IStmt_closeContext) { localctx = NewStmt_closeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1626, PostgreSQLParserRULE_stmt_close) + p.EnterRule(localctx, 1628, PostgreSQLParserRULE_stmt_close) p.EnterOuterAlt(localctx, 1) { - p.SetState(11469) + p.SetState(11459) p.Match(PostgreSQLParserCLOSE) if p.HasError() { // Recognition error - abort rule @@ -190809,11 +190786,11 @@ func (p *PostgreSQLParser) Stmt_close() (localctx IStmt_closeContext) { } } { - p.SetState(11470) + p.SetState(11460) p.Cursor_variable() } { - p.SetState(11471) + p.SetState(11461) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -190921,10 +190898,10 @@ func (s *Stmt_nullContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_null() (localctx IStmt_nullContext) { localctx = NewStmt_nullContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1628, PostgreSQLParserRULE_stmt_null) + p.EnterRule(localctx, 1630, PostgreSQLParserRULE_stmt_null) p.EnterOuterAlt(localctx, 1) { - p.SetState(11473) + p.SetState(11463) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -190932,7 +190909,7 @@ func (p *PostgreSQLParser) Stmt_null() (localctx IStmt_nullContext) { } } { - p.SetState(11474) + p.SetState(11464) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191057,19 +191034,19 @@ func (s *Stmt_commitContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Stmt_commit() (localctx IStmt_commitContext) { localctx = NewStmt_commitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1630, PostgreSQLParserRULE_stmt_commit) + p.EnterRule(localctx, 1632, PostgreSQLParserRULE_stmt_commit) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11476) + p.SetState(11466) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11478) + p.SetState(11468) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191078,13 +191055,13 @@ func (p *PostgreSQLParser) Stmt_commit() (localctx IStmt_commitContext) { if _la == PostgreSQLParserAND { { - p.SetState(11477) + p.SetState(11467) p.Plsql_opt_transaction_chain() } } { - p.SetState(11480) + p.SetState(11470) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191209,19 +191186,19 @@ func (s *Stmt_rollbackContext) Accept(visitor antlr.ParseTreeVisitor) interface{ func (p *PostgreSQLParser) Stmt_rollback() (localctx IStmt_rollbackContext) { localctx = NewStmt_rollbackContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1632, PostgreSQLParserRULE_stmt_rollback) + p.EnterRule(localctx, 1634, PostgreSQLParserRULE_stmt_rollback) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11482) + p.SetState(11472) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11484) + p.SetState(11474) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191230,13 +191207,13 @@ func (p *PostgreSQLParser) Stmt_rollback() (localctx IStmt_rollbackContext) { if _la == PostgreSQLParserAND { { - p.SetState(11483) + p.SetState(11473) p.Plsql_opt_transaction_chain() } } { - p.SetState(11486) + p.SetState(11476) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191349,19 +191326,19 @@ func (s *Plsql_opt_transaction_chainContext) Accept(visitor antlr.ParseTreeVisit func (p *PostgreSQLParser) Plsql_opt_transaction_chain() (localctx IPlsql_opt_transaction_chainContext) { localctx = NewPlsql_opt_transaction_chainContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1634, PostgreSQLParserRULE_plsql_opt_transaction_chain) + p.EnterRule(localctx, 1636, PostgreSQLParserRULE_plsql_opt_transaction_chain) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11488) + p.SetState(11478) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11490) + p.SetState(11480) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191370,7 +191347,7 @@ func (p *PostgreSQLParser) Plsql_opt_transaction_chain() (localctx IPlsql_opt_tr if _la == PostgreSQLParserNO { { - p.SetState(11489) + p.SetState(11479) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -191380,7 +191357,7 @@ func (p *PostgreSQLParser) Plsql_opt_transaction_chain() (localctx IPlsql_opt_tr } { - p.SetState(11492) + p.SetState(11482) p.Match(PostgreSQLParserCHAIN) if p.HasError() { // Recognition error - abort rule @@ -191525,8 +191502,8 @@ func (s *Stmt_setContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { localctx = NewStmt_setContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1636, PostgreSQLParserRULE_stmt_set) - p.SetState(11506) + p.EnterRule(localctx, 1638, PostgreSQLParserRULE_stmt_set) + p.SetState(11496) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191536,7 +191513,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(11494) + p.SetState(11484) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -191544,11 +191521,11 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { } } { - p.SetState(11495) + p.SetState(11485) p.Any_name() } { - p.SetState(11496) + p.SetState(11486) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -191556,7 +191533,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { } } { - p.SetState(11497) + p.SetState(11487) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -191564,7 +191541,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { } } { - p.SetState(11498) + p.SetState(11488) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191575,14 +191552,14 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { case PostgreSQLParserRESET: p.EnterOuterAlt(localctx, 2) { - p.SetState(11500) + p.SetState(11490) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11503) + p.SetState(11493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191591,13 +191568,13 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: { - p.SetState(11501) + p.SetState(11491) p.Any_name() } case PostgreSQLParserALL: { - p.SetState(11502) + p.SetState(11492) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -191610,7 +191587,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { goto errorExit } { - p.SetState(11505) + p.SetState(11495) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191735,8 +191712,8 @@ func (s *Cursor_variableContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Cursor_variable() (localctx ICursor_variableContext) { localctx = NewCursor_variableContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1638, PostgreSQLParserRULE_cursor_variable) - p.SetState(11510) + p.EnterRule(localctx, 1640, PostgreSQLParserRULE_cursor_variable) + p.SetState(11500) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191746,14 +191723,14 @@ func (p *PostgreSQLParser) Cursor_variable() (localctx ICursor_variableContext) case PostgreSQLParserAND, PostgreSQLParserARRAY, PostgreSQLParserCOLLATE, PostgreSQLParserCOLUMN, PostgreSQLParserCONSTRAINT, PostgreSQLParserDEFAULT, PostgreSQLParserDO, PostgreSQLParserFETCH, PostgreSQLParserTABLE, PostgreSQLParserJSON_OBJECT, PostgreSQLParserJSON_ARRAY, PostgreSQLParserJSON, PostgreSQLParserSTRING, PostgreSQLParserKEYS, PostgreSQLParserABSENT, PostgreSQLParserIS, PostgreSQLParserLEFT, PostgreSQLParserOUTER_P, PostgreSQLParserOVER, PostgreSQLParserRIGHT, PostgreSQLParserABORT_P, PostgreSQLParserABSOLUTE_P, PostgreSQLParserACCESS, PostgreSQLParserACTION, PostgreSQLParserADD_P, PostgreSQLParserADMIN, PostgreSQLParserAFTER, PostgreSQLParserAGGREGATE, PostgreSQLParserALSO, PostgreSQLParserALTER, PostgreSQLParserALWAYS, PostgreSQLParserASSERTION, PostgreSQLParserASSIGNMENT, PostgreSQLParserAT, PostgreSQLParserATTRIBUTE, PostgreSQLParserBACKWARD, PostgreSQLParserBEFORE, PostgreSQLParserBEGIN_P, PostgreSQLParserBY, PostgreSQLParserCACHE, PostgreSQLParserCALLED, PostgreSQLParserCASCADE, PostgreSQLParserCASCADED, PostgreSQLParserCATALOG, PostgreSQLParserCHAIN, PostgreSQLParserCHARACTERISTICS, PostgreSQLParserCHECKPOINT, PostgreSQLParserCLASS, PostgreSQLParserCLOSE, PostgreSQLParserCLUSTER, PostgreSQLParserCOMMENT, PostgreSQLParserCOMMENTS, PostgreSQLParserCOMMIT, PostgreSQLParserCOMMITTED, PostgreSQLParserCONFIGURATION, PostgreSQLParserCONNECTION, PostgreSQLParserCONSTRAINTS, PostgreSQLParserCONTENT_P, PostgreSQLParserCONTINUE_P, PostgreSQLParserCONVERSION_P, PostgreSQLParserCOPY, PostgreSQLParserCOST, PostgreSQLParserCSV, PostgreSQLParserCURSOR, PostgreSQLParserCYCLE, PostgreSQLParserDATA_P, PostgreSQLParserDATABASE, PostgreSQLParserDAY_P, PostgreSQLParserDEALLOCATE, PostgreSQLParserDECLARE, PostgreSQLParserDEFAULTS, PostgreSQLParserDEFERRED, PostgreSQLParserDEFINER, PostgreSQLParserDELETE_P, PostgreSQLParserDELIMITER, PostgreSQLParserDELIMITERS, PostgreSQLParserDICTIONARY, PostgreSQLParserDISABLE_P, PostgreSQLParserDISCARD, PostgreSQLParserDOCUMENT_P, PostgreSQLParserDOMAIN_P, PostgreSQLParserDOUBLE_P, PostgreSQLParserDROP, PostgreSQLParserEACH, PostgreSQLParserENABLE_P, PostgreSQLParserENCODING, PostgreSQLParserENCRYPTED, PostgreSQLParserENUM_P, PostgreSQLParserESCAPE, PostgreSQLParserEVENT, PostgreSQLParserEXCLUDE, PostgreSQLParserEXCLUDING, PostgreSQLParserEXCLUSIVE, PostgreSQLParserEXECUTE, PostgreSQLParserEXPLAIN, PostgreSQLParserEXTENSION, PostgreSQLParserEXTERNAL, PostgreSQLParserFAMILY, PostgreSQLParserFIRST_P, PostgreSQLParserFOLLOWING, PostgreSQLParserFORCE, PostgreSQLParserFORWARD, PostgreSQLParserFUNCTION, PostgreSQLParserFUNCTIONS, PostgreSQLParserGLOBAL, PostgreSQLParserGRANTED, PostgreSQLParserHANDLER, PostgreSQLParserHEADER_P, PostgreSQLParserHOLD, PostgreSQLParserHOUR_P, PostgreSQLParserIDENTITY_P, PostgreSQLParserIF_P, PostgreSQLParserIMMEDIATE, PostgreSQLParserIMMUTABLE, PostgreSQLParserIMPLICIT_P, PostgreSQLParserINCLUDING, PostgreSQLParserINCREMENT, PostgreSQLParserINDEX, PostgreSQLParserINDEXES, PostgreSQLParserINHERIT, PostgreSQLParserINHERITS, PostgreSQLParserINLINE_P, PostgreSQLParserINSENSITIVE, PostgreSQLParserINSERT, PostgreSQLParserINSTEAD, PostgreSQLParserINVOKER, PostgreSQLParserISOLATION, PostgreSQLParserKEY, PostgreSQLParserLABEL, PostgreSQLParserLANGUAGE, PostgreSQLParserLARGE_P, PostgreSQLParserLAST_P, PostgreSQLParserLEAKPROOF, PostgreSQLParserLEVEL, PostgreSQLParserLISTEN, PostgreSQLParserLOAD, PostgreSQLParserLOCAL, PostgreSQLParserLOCATION, PostgreSQLParserLOCK_P, PostgreSQLParserMAPPING, PostgreSQLParserMATCH, PostgreSQLParserMATERIALIZED, PostgreSQLParserMAXVALUE, PostgreSQLParserMINUTE_P, PostgreSQLParserMINVALUE, PostgreSQLParserMODE, PostgreSQLParserMONTH_P, PostgreSQLParserMOVE, PostgreSQLParserNAME_P, PostgreSQLParserNAMES, PostgreSQLParserNEXT, PostgreSQLParserNO, PostgreSQLParserNOTHING, PostgreSQLParserNOTIFY, PostgreSQLParserNOWAIT, PostgreSQLParserNULLS_P, PostgreSQLParserOBJECT_P, PostgreSQLParserOF, PostgreSQLParserOFF, PostgreSQLParserOIDS, PostgreSQLParserOPERATOR, PostgreSQLParserOPTION, PostgreSQLParserOPTIONS, PostgreSQLParserOWNED, PostgreSQLParserOWNER, PostgreSQLParserPARSER, PostgreSQLParserPARTIAL, PostgreSQLParserPARTITION, PostgreSQLParserPASSING, PostgreSQLParserPASSWORD, PostgreSQLParserPLANS, PostgreSQLParserPRECEDING, PostgreSQLParserPREPARE, PostgreSQLParserPREPARED, PostgreSQLParserPRESERVE, PostgreSQLParserPRIOR, PostgreSQLParserPRIVILEGES, PostgreSQLParserPROCEDURAL, PostgreSQLParserPROCEDURE, PostgreSQLParserPROGRAM, PostgreSQLParserQUOTE, PostgreSQLParserRANGE, PostgreSQLParserREAD, PostgreSQLParserREASSIGN, PostgreSQLParserRECHECK, PostgreSQLParserRECURSIVE, PostgreSQLParserREF, PostgreSQLParserREFRESH, PostgreSQLParserREINDEX, PostgreSQLParserRELATIVE_P, PostgreSQLParserRELEASE, PostgreSQLParserRENAME, PostgreSQLParserREPEATABLE, PostgreSQLParserREPLACE, PostgreSQLParserREPLICA, PostgreSQLParserRESET, PostgreSQLParserRESTART, PostgreSQLParserRESTRICT, PostgreSQLParserRETURNS, PostgreSQLParserREVOKE, PostgreSQLParserROLE, PostgreSQLParserROLLBACK, PostgreSQLParserROWS, PostgreSQLParserRULE, PostgreSQLParserSAVEPOINT, PostgreSQLParserSCHEMA, PostgreSQLParserSCROLL, PostgreSQLParserSEARCH, PostgreSQLParserSECOND_P, PostgreSQLParserSECURITY, PostgreSQLParserSEQUENCE, PostgreSQLParserSEQUENCES, PostgreSQLParserSERIALIZABLE, PostgreSQLParserSERVER, PostgreSQLParserSESSION, PostgreSQLParserSET, PostgreSQLParserSHARE, PostgreSQLParserSHOW, PostgreSQLParserSIMPLE, PostgreSQLParserSNAPSHOT, PostgreSQLParserSTABLE, PostgreSQLParserSTANDALONE_P, PostgreSQLParserSTART, PostgreSQLParserSTATEMENT, PostgreSQLParserSTATISTICS, PostgreSQLParserSTDIN, PostgreSQLParserSTDOUT, PostgreSQLParserSTORAGE, PostgreSQLParserSTRICT_P, PostgreSQLParserSTRIP_P, PostgreSQLParserSYSID, PostgreSQLParserSYSTEM_P, PostgreSQLParserTABLES, PostgreSQLParserTABLESPACE, PostgreSQLParserTEMP, PostgreSQLParserTEMPLATE, PostgreSQLParserTEMPORARY, PostgreSQLParserTEXT_P, PostgreSQLParserTRANSACTION, PostgreSQLParserTRIGGER, PostgreSQLParserTRUNCATE, PostgreSQLParserTRUSTED, PostgreSQLParserTYPE_P, PostgreSQLParserTYPES_P, PostgreSQLParserUNBOUNDED, PostgreSQLParserUNCOMMITTED, PostgreSQLParserUNENCRYPTED, PostgreSQLParserUNKNOWN, PostgreSQLParserUNLISTEN, PostgreSQLParserUNLOGGED, PostgreSQLParserUNTIL, PostgreSQLParserUPDATE, PostgreSQLParserVACUUM, PostgreSQLParserVALID, PostgreSQLParserVALIDATE, PostgreSQLParserVALIDATOR, PostgreSQLParserVARYING, PostgreSQLParserVERSION_P, PostgreSQLParserVIEW, PostgreSQLParserVOLATILE, PostgreSQLParserWHITESPACE_P, PostgreSQLParserWITHOUT, PostgreSQLParserWORK, PostgreSQLParserWRAPPER, PostgreSQLParserWRITE, PostgreSQLParserXML_P, PostgreSQLParserYEAR_P, PostgreSQLParserYES_P, PostgreSQLParserZONE, PostgreSQLParserATOMIC_P, PostgreSQLParserBETWEEN, PostgreSQLParserBIGINT, PostgreSQLParserBIT, PostgreSQLParserBOOLEAN_P, PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserCOALESCE, PostgreSQLParserDEC, PostgreSQLParserDECIMAL_P, PostgreSQLParserEXISTS, PostgreSQLParserEXTRACT, PostgreSQLParserFLOAT_P, PostgreSQLParserGREATEST, PostgreSQLParserINOUT, PostgreSQLParserINT_P, PostgreSQLParserINTEGER, PostgreSQLParserINTERVAL, PostgreSQLParserLEAST, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserNONE, PostgreSQLParserNULLIF, PostgreSQLParserNUMERIC, PostgreSQLParserOVERLAY, PostgreSQLParserPARAMETER, PostgreSQLParserPOSITION, PostgreSQLParserPRECISION, PostgreSQLParserREAL, PostgreSQLParserROW, PostgreSQLParserSETOF, PostgreSQLParserSMALLINT, PostgreSQLParserSUBSTRING, PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP, PostgreSQLParserTREAT, PostgreSQLParserTRIM, PostgreSQLParserVALUES, PostgreSQLParserVARCHAR, PostgreSQLParserXMLATTRIBUTES, PostgreSQLParserXMLCOMMENT, PostgreSQLParserXMLAGG, PostgreSQLParserXML_IS_WELL_FORMED, PostgreSQLParserXML_IS_WELL_FORMED_DOCUMENT, PostgreSQLParserXML_IS_WELL_FORMED_CONTENT, PostgreSQLParserXPATH, PostgreSQLParserXPATH_EXISTS, PostgreSQLParserXMLCONCAT, PostgreSQLParserXMLELEMENT, PostgreSQLParserXMLEXISTS, PostgreSQLParserXMLFOREST, PostgreSQLParserXMLPARSE, PostgreSQLParserXMLPI, PostgreSQLParserXMLROOT, PostgreSQLParserXMLSERIALIZE, PostgreSQLParserCALL, PostgreSQLParserCURRENT_P, PostgreSQLParserATTACH, PostgreSQLParserDETACH, PostgreSQLParserEXPRESSION, PostgreSQLParserGENERATED, PostgreSQLParserLOGGED, PostgreSQLParserSTORED, PostgreSQLParserINCLUDE, PostgreSQLParserROUTINE, PostgreSQLParserTRANSFORM, PostgreSQLParserIMPORT_P, PostgreSQLParserPOLICY, PostgreSQLParserMETHOD, PostgreSQLParserREFERENCING, PostgreSQLParserNEW, PostgreSQLParserOLD, PostgreSQLParserVALUE_P, PostgreSQLParserSUBSCRIPTION, PostgreSQLParserPUBLICATION, PostgreSQLParserOUT_P, PostgreSQLParserROUTINES, PostgreSQLParserSCHEMAS, PostgreSQLParserPROCEDURES, PostgreSQLParserINPUT_P, PostgreSQLParserSUPPORT, PostgreSQLParserPARALLEL, PostgreSQLParserSQL_P, PostgreSQLParserDEPENDS, PostgreSQLParserOVERRIDING, PostgreSQLParserCONFLICT, PostgreSQLParserSKIP_P, PostgreSQLParserLOCKED, PostgreSQLParserTIES, PostgreSQLParserROLLUP, PostgreSQLParserCUBE, PostgreSQLParserGROUPING, PostgreSQLParserSETS, PostgreSQLParserORDINALITY, PostgreSQLParserXMLTABLE, PostgreSQLParserCOLUMNS, PostgreSQLParserXMLNAMESPACES, PostgreSQLParserROWTYPE, PostgreSQLParserNORMALIZED, PostgreSQLParserWITHIN, PostgreSQLParserFILTER, PostgreSQLParserGROUPS, PostgreSQLParserOTHERS, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD, PostgreSQLParserUESCAPE, PostgreSQLParserVIEWS, PostgreSQLParserNORMALIZE, PostgreSQLParserDUMP, PostgreSQLParserPRINT_STRICT_PARAMS, PostgreSQLParserVARIABLE_CONFLICT, PostgreSQLParserERROR, PostgreSQLParserUSE_VARIABLE, PostgreSQLParserUSE_COLUMN, PostgreSQLParserALIAS, PostgreSQLParserCONSTANT, PostgreSQLParserPERFORM, PostgreSQLParserGET, PostgreSQLParserDIAGNOSTICS, PostgreSQLParserSTACKED, PostgreSQLParserELSIF, PostgreSQLParserREVERSE, PostgreSQLParserSLICE, PostgreSQLParserEXIT, PostgreSQLParserRETURN, PostgreSQLParserQUERY, PostgreSQLParserRAISE, PostgreSQLParserSQLSTATE, PostgreSQLParserDEBUG, PostgreSQLParserLOG, PostgreSQLParserINFO, PostgreSQLParserNOTICE, PostgreSQLParserWARNING, PostgreSQLParserEXCEPTION, PostgreSQLParserASSERT, PostgreSQLParserOPEN, PostgreSQLParserABS, PostgreSQLParserCBRT, PostgreSQLParserCEIL, PostgreSQLParserCEILING, PostgreSQLParserDEGREES, PostgreSQLParserDIV, PostgreSQLParserEXP, PostgreSQLParserFACTORIAL, PostgreSQLParserFLOOR, PostgreSQLParserGCD, PostgreSQLParserLCM, PostgreSQLParserLN, PostgreSQLParserLOG10, PostgreSQLParserMIN_SCALE, PostgreSQLParserMOD, PostgreSQLParserPI, PostgreSQLParserPOWER, PostgreSQLParserRADIANS, PostgreSQLParserROUND, PostgreSQLParserSCALE, PostgreSQLParserSIGN, PostgreSQLParserSQRT, PostgreSQLParserTRIM_SCALE, PostgreSQLParserTRUNC, PostgreSQLParserWIDTH_BUCKET, PostgreSQLParserRANDOM, PostgreSQLParserSETSEED, PostgreSQLParserACOS, PostgreSQLParserACOSD, PostgreSQLParserASIN, PostgreSQLParserASIND, PostgreSQLParserATAN, PostgreSQLParserATAND, PostgreSQLParserATAN2, PostgreSQLParserATAN2D, PostgreSQLParserCOS, PostgreSQLParserCOSD, PostgreSQLParserCOT, PostgreSQLParserCOTD, PostgreSQLParserSIN, PostgreSQLParserSIND, PostgreSQLParserTAN, PostgreSQLParserTAND, PostgreSQLParserSINH, PostgreSQLParserCOSH, PostgreSQLParserTANH, PostgreSQLParserASINH, PostgreSQLParserACOSH, PostgreSQLParserATANH, PostgreSQLParserBIT_LENGTH, PostgreSQLParserCHAR_LENGTH, PostgreSQLParserCHARACTER_LENGTH, PostgreSQLParserLOWER, PostgreSQLParserOCTET_LENGTH, PostgreSQLParserUPPER, PostgreSQLParserASCII, PostgreSQLParserBTRIM, PostgreSQLParserCHR, PostgreSQLParserCONCAT, PostgreSQLParserCONCAT_WS, PostgreSQLParserFORMAT, PostgreSQLParserINITCAP, PostgreSQLParserLENGTH, PostgreSQLParserLPAD, PostgreSQLParserLTRIM, PostgreSQLParserMD5, PostgreSQLParserPARSE_IDENT, PostgreSQLParserPG_CLIENT_ENCODING, PostgreSQLParserQUOTE_IDENT, PostgreSQLParserQUOTE_LITERAL, PostgreSQLParserQUOTE_NULLABLE, PostgreSQLParserREGEXP_COUNT, PostgreSQLParserREGEXP_INSTR, PostgreSQLParserREGEXP_LIKE, PostgreSQLParserREGEXP_MATCH, PostgreSQLParserREGEXP_MATCHES, PostgreSQLParserREGEXP_REPLACE, PostgreSQLParserREGEXP_SPLIT_TO_ARRAY, PostgreSQLParserREGEXP_SPLIT_TO_TABLE, PostgreSQLParserREGEXP_SUBSTR, PostgreSQLParserREPEAT, PostgreSQLParserRPAD, PostgreSQLParserRTRIM, PostgreSQLParserSPLIT_PART, PostgreSQLParserSTARTS_WITH, PostgreSQLParserSTRING_TO_ARRAY, PostgreSQLParserSTRING_TO_TABLE, PostgreSQLParserSTRPOS, PostgreSQLParserSUBSTR, PostgreSQLParserTO_ASCII, PostgreSQLParserTO_HEX, PostgreSQLParserTRANSLATE, PostgreSQLParserUNISTR, PostgreSQLParserAGE, PostgreSQLParserCLOCK_TIMESTAMP, PostgreSQLParserDATE_BIN, PostgreSQLParserDATE_PART, PostgreSQLParserDATE_TRUNC, PostgreSQLParserISFINITE, PostgreSQLParserJUSTIFY_DAYS, PostgreSQLParserJUSTIFY_HOURS, PostgreSQLParserJUSTIFY_INTERVAL, PostgreSQLParserMAKE_DATE, PostgreSQLParserMAKE_INTERVAL, PostgreSQLParserMAKE_TIME, PostgreSQLParserMAKE_TIMESTAMP, PostgreSQLParserMAKE_TIMESTAMPTZ, PostgreSQLParserNOW, PostgreSQLParserSTATEMENT_TIMESTAMP, PostgreSQLParserTIMEOFDAY, PostgreSQLParserTRANSACTION_TIMESTAMP, PostgreSQLParserTO_TIMESTAMP, PostgreSQLParserTO_CHAR, PostgreSQLParserTO_DATE, PostgreSQLParserTO_NUMBER, PostgreSQLParserENCODE, PostgreSQLParserJSON_ARRAYAGG, PostgreSQLParserJSON_OBJECTAGG, PostgreSQLParserIdentifier, PostgreSQLParserQuotedIdentifier, PostgreSQLParserUnicodeQuotedIdentifier, PostgreSQLParserPLSQLVARIABLENAME, PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 1) { - p.SetState(11508) + p.SetState(11498) p.Colid() } case PostgreSQLParserPARAM: p.EnterOuterAlt(localctx, 2) { - p.SetState(11509) + p.SetState(11499) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -191878,10 +191855,10 @@ func (s *Exception_sectContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Exception_sect() (localctx IException_sectContext) { localctx = NewException_sectContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1640, PostgreSQLParserRULE_exception_sect) + p.EnterRule(localctx, 1642, PostgreSQLParserRULE_exception_sect) p.EnterOuterAlt(localctx, 1) { - p.SetState(11512) + p.SetState(11502) p.Match(PostgreSQLParserEXCEPTION) if p.HasError() { // Recognition error - abort rule @@ -191889,7 +191866,7 @@ func (p *PostgreSQLParser) Exception_sect() (localctx IException_sectContext) { } } { - p.SetState(11513) + p.SetState(11503) p.Proc_exceptions() } @@ -192026,11 +192003,11 @@ func (s *Proc_exceptionsContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Proc_exceptions() (localctx IProc_exceptionsContext) { localctx = NewProc_exceptionsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1642, PostgreSQLParserRULE_proc_exceptions) + p.EnterRule(localctx, 1644, PostgreSQLParserRULE_proc_exceptions) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11516) + p.SetState(11506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192039,11 +192016,11 @@ func (p *PostgreSQLParser) Proc_exceptions() (localctx IProc_exceptionsContext) for ok := true; ok; ok = _la == PostgreSQLParserWHEN { { - p.SetState(11515) + p.SetState(11505) p.Proc_exception() } - p.SetState(11518) + p.SetState(11508) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192185,10 +192162,10 @@ func (s *Proc_exceptionContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Proc_exception() (localctx IProc_exceptionContext) { localctx = NewProc_exceptionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1644, PostgreSQLParserRULE_proc_exception) + p.EnterRule(localctx, 1646, PostgreSQLParserRULE_proc_exception) p.EnterOuterAlt(localctx, 1) { - p.SetState(11520) + p.SetState(11510) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -192196,11 +192173,11 @@ func (p *PostgreSQLParser) Proc_exception() (localctx IProc_exceptionContext) { } } { - p.SetState(11521) + p.SetState(11511) p.Proc_conditions() } { - p.SetState(11522) + p.SetState(11512) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -192208,7 +192185,7 @@ func (p *PostgreSQLParser) Proc_exception() (localctx IProc_exceptionContext) { } } { - p.SetState(11523) + p.SetState(11513) p.Proc_sect() } @@ -192355,15 +192332,15 @@ func (s *Proc_conditionsContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Proc_conditions() (localctx IProc_conditionsContext) { localctx = NewProc_conditionsContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1646, PostgreSQLParserRULE_proc_conditions) + p.EnterRule(localctx, 1648, PostgreSQLParserRULE_proc_conditions) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11525) + p.SetState(11515) p.Proc_condition() } - p.SetState(11530) + p.SetState(11520) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192372,7 +192349,7 @@ func (p *PostgreSQLParser) Proc_conditions() (localctx IProc_conditionsContext) for _la == PostgreSQLParserOR { { - p.SetState(11526) + p.SetState(11516) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -192380,11 +192357,11 @@ func (p *PostgreSQLParser) Proc_conditions() (localctx IProc_conditionsContext) } } { - p.SetState(11527) + p.SetState(11517) p.Proc_condition() } - p.SetState(11532) + p.SetState(11522) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192521,25 +192498,25 @@ func (s *Proc_conditionContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Proc_condition() (localctx IProc_conditionContext) { localctx = NewProc_conditionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1648, PostgreSQLParserRULE_proc_condition) - p.SetState(11536) + p.EnterRule(localctx, 1650, PostgreSQLParserRULE_proc_condition) + p.SetState(11526) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1154, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1152, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11533) + p.SetState(11523) p.Any_identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11534) + p.SetState(11524) p.Match(PostgreSQLParserSQLSTATE) if p.HasError() { // Recognition error - abort rule @@ -192547,7 +192524,7 @@ func (p *PostgreSQLParser) Proc_condition() (localctx IProc_conditionContext) { } } { - p.SetState(11535) + p.SetState(11525) p.Sconst() } @@ -192662,10 +192639,10 @@ func (s *Opt_block_labelContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Opt_block_label() (localctx IOpt_block_labelContext) { localctx = NewOpt_block_labelContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1650, PostgreSQLParserRULE_opt_block_label) + p.EnterRule(localctx, 1652, PostgreSQLParserRULE_opt_block_label) p.EnterOuterAlt(localctx, 1) { - p.SetState(11538) + p.SetState(11528) p.Label_decl() } @@ -192776,10 +192753,10 @@ func (s *Opt_loop_labelContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Opt_loop_label() (localctx IOpt_loop_labelContext) { localctx = NewOpt_loop_labelContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1652, PostgreSQLParserRULE_opt_loop_label) + p.EnterRule(localctx, 1654, PostgreSQLParserRULE_opt_loop_label) p.EnterOuterAlt(localctx, 1) { - p.SetState(11540) + p.SetState(11530) p.Label_decl() } @@ -192890,10 +192867,10 @@ func (s *Opt_labelContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Opt_label() (localctx IOpt_labelContext) { localctx = NewOpt_labelContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1654, PostgreSQLParserRULE_opt_label) + p.EnterRule(localctx, 1656, PostgreSQLParserRULE_opt_label) p.EnterOuterAlt(localctx, 1) { - p.SetState(11542) + p.SetState(11532) p.Any_identifier() } @@ -193009,10 +192986,10 @@ func (s *Opt_exitcondContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Opt_exitcond() (localctx IOpt_exitcondContext) { localctx = NewOpt_exitcondContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1656, PostgreSQLParserRULE_opt_exitcond) + p.EnterRule(localctx, 1658, PostgreSQLParserRULE_opt_exitcond) p.EnterOuterAlt(localctx, 1) { - p.SetState(11544) + p.SetState(11534) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -193020,7 +192997,7 @@ func (p *PostgreSQLParser) Opt_exitcond() (localctx IOpt_exitcondContext) { } } { - p.SetState(11545) + p.SetState(11535) p.Expr_until_semi() } @@ -193148,25 +193125,25 @@ func (s *Any_identifierContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Any_identifier() (localctx IAny_identifierContext) { localctx = NewAny_identifierContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1658, PostgreSQLParserRULE_any_identifier) - p.SetState(11549) + p.EnterRule(localctx, 1660, PostgreSQLParserRULE_any_identifier) + p.SetState(11539) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1155, p.GetParserRuleContext()) { + switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1153, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11547) + p.SetState(11537) p.Colid() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11548) + p.SetState(11538) p.Plsql_unreserved_keyword() } @@ -193579,12 +193556,12 @@ func (s *Plsql_unreserved_keywordContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Plsql_unreserved_keyword() (localctx IPlsql_unreserved_keywordContext) { localctx = NewPlsql_unreserved_keywordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1660, PostgreSQLParserRULE_plsql_unreserved_keyword) + p.EnterRule(localctx, 1662, PostgreSQLParserRULE_plsql_unreserved_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11551) + p.SetState(11541) _la = p.GetTokenStream().LA(1) if !(((int64((_la-33)) & ^0x3f) == 0 && ((int64(1)<<(_la-33))&576460752589691909) != 0) || ((int64((_la-135)) & ^0x3f) == 0 && ((int64(1)<<(_la-135))&74346914954363009) != 0) || ((int64((_la-226)) & ^0x3f) == 0 && ((int64(1)<<(_la-226))&56295003965620233) != 0) || ((int64((_la-291)) & ^0x3f) == 0 && ((int64(1)<<(_la-291))&18068292027564033) != 0) || _la == PostgreSQLParserTYPE_P || ((int64((_la-454)) & ^0x3f) == 0 && ((int64(1)<<(_la-454))&-144097595889811453) != 0) || ((int64((_la-518)) & ^0x3f) == 0 && ((int64(1)<<(_la-518))&12516927) != 0)) { @@ -193855,11 +193832,11 @@ func (s *Sql_expressionContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { localctx = NewSql_expressionContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1662, PostgreSQLParserRULE_sql_expression) + p.EnterRule(localctx, 1664, PostgreSQLParserRULE_sql_expression) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11554) + p.SetState(11544) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193868,16 +193845,16 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserDISTINCT { { - p.SetState(11553) + p.SetState(11543) p.Distinct_clause() } } { - p.SetState(11556) + p.SetState(11546) p.Opt_target_list() } - p.SetState(11558) + p.SetState(11548) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193886,12 +193863,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserFROM { { - p.SetState(11557) + p.SetState(11547) p.From_clause() } } - p.SetState(11561) + p.SetState(11551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193900,12 +193877,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(11560) + p.SetState(11550) p.Where_clause() } } - p.SetState(11564) + p.SetState(11554) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193914,12 +193891,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserGROUP_P { { - p.SetState(11563) + p.SetState(11553) p.Group_clause() } } - p.SetState(11567) + p.SetState(11557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193928,12 +193905,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserHAVING { { - p.SetState(11566) + p.SetState(11556) p.Having_clause() } } - p.SetState(11570) + p.SetState(11560) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193942,12 +193919,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserWINDOW { { - p.SetState(11569) + p.SetState(11559) p.Window_clause() } } - p.SetState(11573) + p.SetState(11563) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193956,12 +193933,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserORDER { { - p.SetState(11572) + p.SetState(11562) p.Opt_sort_clause() } } - p.SetState(11576) + p.SetState(11566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193970,12 +193947,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if (int64((_la-61)) & ^0x3f) == 0 && ((int64(1)<<(_la-61))&270337) != 0 { { - p.SetState(11575) + p.SetState(11565) p.Opt_select_limit() } } - p.SetState(11579) + p.SetState(11569) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193984,7 +193961,7 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserFOR { { - p.SetState(11578) + p.SetState(11568) p.Opt_for_locking_clause() } @@ -194097,10 +194074,10 @@ func (s *Expr_until_thenContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Expr_until_then() (localctx IExpr_until_thenContext) { localctx = NewExpr_until_thenContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1664, PostgreSQLParserRULE_expr_until_then) + p.EnterRule(localctx, 1666, PostgreSQLParserRULE_expr_until_then) p.EnterOuterAlt(localctx, 1) { - p.SetState(11581) + p.SetState(11571) p.Sql_expression() } @@ -194211,10 +194188,10 @@ func (s *Expr_until_semiContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Expr_until_semi() (localctx IExpr_until_semiContext) { localctx = NewExpr_until_semiContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1666, PostgreSQLParserRULE_expr_until_semi) + p.EnterRule(localctx, 1668, PostgreSQLParserRULE_expr_until_semi) p.EnterOuterAlt(localctx, 1) { - p.SetState(11583) + p.SetState(11573) p.Sql_expression() } @@ -194325,10 +194302,10 @@ func (s *Expr_until_rightbracketContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Expr_until_rightbracket() (localctx IExpr_until_rightbracketContext) { localctx = NewExpr_until_rightbracketContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1668, PostgreSQLParserRULE_expr_until_rightbracket) + p.EnterRule(localctx, 1670, PostgreSQLParserRULE_expr_until_rightbracket) p.EnterOuterAlt(localctx, 1) { - p.SetState(11585) + p.SetState(11575) p.A_expr() } @@ -194439,10 +194416,10 @@ func (s *Expr_until_loopContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Expr_until_loop() (localctx IExpr_until_loopContext) { localctx = NewExpr_until_loopContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1670, PostgreSQLParserRULE_expr_until_loop) + p.EnterRule(localctx, 1672, PostgreSQLParserRULE_expr_until_loop) p.EnterOuterAlt(localctx, 1) { - p.SetState(11587) + p.SetState(11577) p.A_expr() } @@ -194570,15 +194547,15 @@ func (s *Make_execsql_stmtContext) Accept(visitor antlr.ParseTreeVisitor) interf func (p *PostgreSQLParser) Make_execsql_stmt() (localctx IMake_execsql_stmtContext) { localctx = NewMake_execsql_stmtContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1672, PostgreSQLParserRULE_make_execsql_stmt) + p.EnterRule(localctx, 1674, PostgreSQLParserRULE_make_execsql_stmt) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11589) + p.SetState(11579) p.Stmt() } - p.SetState(11591) + p.SetState(11581) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194587,7 +194564,7 @@ func (p *PostgreSQLParser) Make_execsql_stmt() (localctx IMake_execsql_stmtConte if _la == PostgreSQLParserINTO { { - p.SetState(11590) + p.SetState(11580) p.Opt_returning_clause_into() } @@ -194722,22 +194699,22 @@ func (s *Opt_returning_clause_intoContext) Accept(visitor antlr.ParseTreeVisitor func (p *PostgreSQLParser) Opt_returning_clause_into() (localctx IOpt_returning_clause_intoContext) { localctx = NewOpt_returning_clause_intoContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1674, PostgreSQLParserRULE_opt_returning_clause_into) + p.EnterRule(localctx, 1676, PostgreSQLParserRULE_opt_returning_clause_into) p.EnterOuterAlt(localctx, 1) { - p.SetState(11593) + p.SetState(11583) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11595) + p.SetState(11585) p.GetErrorHandler().Sync(p) - if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1166, p.GetParserRuleContext()) == 1 { + if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1164, p.GetParserRuleContext()) == 1 { { - p.SetState(11594) + p.SetState(11584) p.Opt_strict() } @@ -194745,7 +194722,7 @@ func (p *PostgreSQLParser) Opt_returning_clause_into() (localctx IOpt_returning_ goto errorExit } { - p.SetState(11597) + p.SetState(11587) p.Into_target() } @@ -194764,7 +194741,7 @@ errorExit: func (p *PostgreSQLParser) Sempred(localctx antlr.RuleContext, ruleIndex, predIndex int) bool { switch ruleIndex { - case 605: + case 606: var t *B_exprContext = nil if localctx != nil { t = localctx.(*B_exprContext) diff --git a/postgresql/postgresqlparser_base_listener.go b/postgresql/postgresqlparser_base_listener.go index 70ba4f5..0136bc9 100644 --- a/postgresql/postgresqlparser_base_listener.go +++ b/postgresql/postgresqlparser_base_listener.go @@ -3381,6 +3381,12 @@ func (s *BasePostgreSQLParserListener) EnterTable_ref(ctx *Table_refContext) {} // ExitTable_ref is called when production table_ref is exited. func (s *BasePostgreSQLParserListener) ExitTable_ref(ctx *Table_refContext) {} +// EnterJoined_table is called when production joined_table is entered. +func (s *BasePostgreSQLParserListener) EnterJoined_table(ctx *Joined_tableContext) {} + +// ExitJoined_table is called when production joined_table is exited. +func (s *BasePostgreSQLParserListener) ExitJoined_table(ctx *Joined_tableContext) {} + // EnterAlias_clause is called when production alias_clause is entered. func (s *BasePostgreSQLParserListener) EnterAlias_clause(ctx *Alias_clauseContext) {} diff --git a/postgresql/postgresqlparser_base_visitor.go b/postgresql/postgresqlparser_base_visitor.go index 28c978f..b09ba23 100644 --- a/postgresql/postgresqlparser_base_visitor.go +++ b/postgresql/postgresqlparser_base_visitor.go @@ -2143,6 +2143,10 @@ func (v *BasePostgreSQLParserVisitor) VisitTable_ref(ctx *Table_refContext) inte return v.VisitChildren(ctx) } +func (v *BasePostgreSQLParserVisitor) VisitJoined_table(ctx *Joined_tableContext) interface{} { + return v.VisitChildren(ctx) +} + func (v *BasePostgreSQLParserVisitor) VisitAlias_clause(ctx *Alias_clauseContext) interface{} { return v.VisitChildren(ctx) } diff --git a/postgresql/postgresqlparser_listener.go b/postgresql/postgresqlparser_listener.go index b76f004..c5c867c 100644 --- a/postgresql/postgresqlparser_listener.go +++ b/postgresql/postgresqlparser_listener.go @@ -1609,6 +1609,9 @@ type PostgreSQLParserListener interface { // EnterTable_ref is called when entering the table_ref production. EnterTable_ref(c *Table_refContext) + // EnterJoined_table is called when entering the joined_table production. + EnterJoined_table(c *Joined_tableContext) + // EnterAlias_clause is called when entering the alias_clause production. EnterAlias_clause(c *Alias_clauseContext) @@ -4135,6 +4138,9 @@ type PostgreSQLParserListener interface { // ExitTable_ref is called when exiting the table_ref production. ExitTable_ref(c *Table_refContext) + // ExitJoined_table is called when exiting the joined_table production. + ExitJoined_table(c *Joined_tableContext) + // ExitAlias_clause is called when exiting the alias_clause production. ExitAlias_clause(c *Alias_clauseContext) diff --git a/postgresql/postgresqlparser_visitor.go b/postgresql/postgresqlparser_visitor.go index d8fc8d6..3cab5ad 100644 --- a/postgresql/postgresqlparser_visitor.go +++ b/postgresql/postgresqlparser_visitor.go @@ -1609,6 +1609,9 @@ type PostgreSQLParserVisitor interface { // Visit a parse tree produced by PostgreSQLParser#table_ref. VisitTable_ref(ctx *Table_refContext) interface{} + // Visit a parse tree produced by PostgreSQLParser#joined_table. + VisitJoined_table(ctx *Joined_tableContext) interface{} + // Visit a parse tree produced by PostgreSQLParser#alias_clause. VisitAlias_clause(ctx *Alias_clauseContext) interface{}