diff --git a/postgresql/PostgreSQLParser.g4 b/postgresql/PostgreSQLParser.g4 index bde448e..5fa34cd 100755 --- a/postgresql/PostgreSQLParser.g4 +++ b/postgresql/PostgreSQLParser.g4 @@ -3038,29 +3038,27 @@ from_list ; table_ref - : (relation_expr opt_alias_clause? tablesample_clause? - | func_table func_alias_clause? - | xmltable opt_alias_clause? - | select_with_parens opt_alias_clause? - | LATERAL_P ( - xmltable opt_alias_clause? - | 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? - ) - joined_table* - ; - -joined_table - : join_type? JOIN table_ref join_qual - | CROSS JOIN table_ref - | NATURAL join_type? JOIN table_ref - ; + : ( + relation_expr opt_alias_clause? tablesample_clause? + | func_table func_alias_clause? + | xmltable opt_alias_clause? + | select_with_parens opt_alias_clause? + | LATERAL_P ( + xmltable opt_alias_clause? + | 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 + )* + ; alias_clause : AS? colid (OPEN_PAREN name_list CLOSE_PAREN)? diff --git a/postgresql/postgresql_parser.go b/postgresql/postgresql_parser.go index 3f74625..9e172a7 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", "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", + "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", "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, 11605, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, + 4, 1, 707, 11600, 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, 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, + 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, 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, 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, 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, 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, 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, + 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, 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, 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, + 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, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, - 109, 1, 109, 5, 109, 3220, 8, 109, 10, 109, 12, 109, 3223, 9, 109, 1, 110, + 109, 1, 109, 5, 109, 3218, 8, 109, 10, 109, 12, 109, 3221, 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, 3238, 8, 113, 10, 113, 12, 113, 3241, 9, + 1, 113, 1, 113, 1, 113, 5, 113, 3236, 8, 113, 10, 113, 12, 113, 3239, 9, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, - 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, + 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, 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, 3283, 8, 119, 3, 119, - 3285, 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, 3281, 8, 119, 3, 119, + 3283, 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, 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, + 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, 8, 124, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, - 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, + 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, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, - 1, 131, 3, 131, 3369, 8, 131, 1, 131, 1, 131, 3, 131, 3373, 8, 131, 1, + 1, 131, 3, 131, 3367, 8, 131, 1, 131, 1, 131, 3, 131, 3371, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, - 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, + 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, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, - 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, 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, 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, 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, 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, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 179, 1, 179, - 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, + 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, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, - 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, + 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, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 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, + 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, 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, 4065, 8, 190, 1, 191, 1, 191, 1, 191, 1, 191, + 190, 1, 190, 1, 190, 3, 190, 4063, 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, 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, + 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, 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, 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, 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, 1, 203, 1, - 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, + 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, 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, 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, + 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, 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, 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, + 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, 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, 4358, 8, 228, 1, 229, 1, 229, 1, 229, + 228, 1, 228, 1, 228, 1, 228, 3, 228, 4356, 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, - 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, + 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, 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, 4405, 8, + 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 4403, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, - 230, 3, 230, 4416, 8, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, + 230, 3, 230, 4414, 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, 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, + 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, 8, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 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, + 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, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, - 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, + 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, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, - 247, 1, 247, 3, 247, 4655, 8, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, + 247, 1, 247, 3, 247, 4653, 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, 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, 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, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, - 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, + 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, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, - 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, 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, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, - 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, + 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, 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, 4881, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4888, + 258, 4879, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 4886, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, - 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, 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, 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, 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, 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, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, - 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, + 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, 8, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, - 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, + 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, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, 270, 1, - 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, + 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, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 1, - 278, 1, 278, 3, 278, 5350, 8, 278, 3, 278, 5352, 8, 278, 1, 279, 1, 279, + 278, 1, 278, 3, 278, 5348, 8, 278, 3, 278, 5350, 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, 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, + 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, 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, 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, + 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, 1, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, - 1, 292, 1, 293, 5, 293, 5541, 8, 293, 10, 293, 12, 293, 5544, 9, 293, 1, + 1, 292, 1, 293, 5, 293, 5539, 8, 293, 10, 293, 12, 293, 5542, 9, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, - 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, + 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, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, - 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, + 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, 1, 307, 1, 307, 1, 308, 1, 308, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, - 1, 310, 3, 310, 5709, 8, 310, 1, 311, 1, 311, 3, 311, 5713, 8, 311, 1, + 1, 310, 3, 310, 5707, 8, 310, 1, 311, 1, 311, 3, 311, 5711, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, - 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, + 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, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, 1, 326, - 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, 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, 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, - 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, + 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, 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, 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, + 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, 9, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 349, 4, 349, - 6100, 8, 349, 11, 349, 12, 349, 6101, 1, 350, 1, 350, 1, 350, 3, 350, 6107, + 6098, 8, 349, 11, 349, 12, 349, 6099, 1, 350, 1, 350, 1, 350, 3, 350, 6105, 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, 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, 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, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, 1, 351, - 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, 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, 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, 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, + 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, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 1, 358, 3, - 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, + 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, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, - 6293, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, + 6291, 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, 6364, + 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6362, 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, 6559, 8, 364, 1, 364, 1, + 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6557, 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, 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, + 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, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, - 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, + 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, 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, 6654, 8, 364, 1, 364, 1, 364, 1, + 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6652, 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, 6668, 8, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, + 364, 3, 364, 6666, 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, 6780, 8, 364, 3, 364, 6782, + 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 6778, 8, 364, 3, 364, 6780, 8, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, - 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, + 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, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 1, 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, + 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, 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, 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, + 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, 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, 7166, 8, 375, 1, 375, 1, 375, 1, 375, 1, 375, + 375, 1, 375, 1, 375, 3, 375, 7164, 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, 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, + 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, 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, - 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, + 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, 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, 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, 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, 1, 384, 1, 384, 1, 384, - 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, + 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, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 3, - 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, + 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, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, - 397, 7615, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7622, + 397, 7613, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7620, 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, 7635, 8, 397, 1, 398, 1, 398, 1, 399, 1, + 1, 397, 1, 397, 1, 397, 3, 397, 7633, 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, 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, + 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, 8, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, - 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, + 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, 1, 417, 1, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 419, 1, 419, - 1, 419, 1, 419, 3, 419, 7812, 8, 419, 1, 419, 1, 419, 1, 419, 1, 420, 1, + 1, 419, 1, 419, 3, 419, 7810, 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, 7833, 8, 420, 1, 420, - 1, 420, 3, 420, 7837, 8, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7842, 8, + 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, 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,5188 +1382,5185 @@ 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, 7925, 8, 423, 1, 424, 1, 424, 1, 425, 1, 425, 3, 425, 7931, + 423, 3, 423, 7923, 8, 423, 1, 424, 1, 424, 1, 425, 1, 425, 3, 425, 7929, 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, 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, + 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, 437, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, - 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, + 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, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, - 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, + 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, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, - 452, 3, 452, 8159, 8, 452, 1, 452, 3, 452, 8162, 8, 452, 3, 452, 8164, + 452, 3, 452, 8157, 8, 452, 1, 452, 3, 452, 8160, 8, 452, 3, 452, 8162, 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, 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, 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, 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, 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, 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, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, 1, 477, - 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, + 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, 8, 492, 1, 492, 1, 492, 1, 492, 1, 492, 1, 493, 1, 493, 1, 493, 3, 493, - 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, + 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, 1, 498, 1, 498, 1, 499, 1, 499, 1, 500, 1, 500, 1, 500, 1, 500, 1, 500, - 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, + 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, 8, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 1, 508, 3, 508, - 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, + 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, 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, 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, + 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, 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, 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, 1, 533, 1, 533, 1, 533, 1, 533, 3, 533, 8879, 8, 533, 1, - 533, 1, 533, 1, 533, 3, 533, 8884, 8, 533, 1, 533, 1, 533, 1, 533, 1, 533, - 3, 533, 8890, 8, 533, 1, 533, 1, 533, 3, 533, 8894, 8, 533, 3, 533, 8896, - 8, 533, 1, 533, 5, 533, 8899, 8, 533, 10, 533, 12, 533, 8902, 9, 533, 1, - 534, 3, 534, 8905, 8, 534, 1, 534, 1, 534, 1, 534, 1, 534, 1, 534, 1, 534, - 1, 534, 1, 534, 1, 534, 3, 534, 8916, 8, 534, 1, 534, 1, 534, 3, 534, 8920, - 8, 534, 1, 535, 3, 535, 8923, 8, 535, 1, 535, 1, 535, 1, 535, 1, 535, 1, - 535, 3, 535, 8930, 8, 535, 1, 536, 1, 536, 1, 537, 3, 537, 8935, 8, 537, - 1, 537, 1, 537, 1, 537, 1, 537, 1, 537, 3, 537, 8942, 8, 537, 1, 538, 1, - 538, 1, 538, 3, 538, 8947, 8, 538, 1, 538, 3, 538, 8950, 8, 538, 1, 538, - 1, 538, 1, 538, 1, 538, 3, 538, 8956, 8, 538, 1, 539, 1, 539, 3, 539, 8960, - 8, 539, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 1, 540, 3, 540, - 8969, 8, 540, 1, 541, 1, 541, 3, 541, 8973, 8, 541, 1, 541, 1, 541, 1, - 541, 1, 541, 1, 541, 1, 541, 3, 541, 8981, 8, 541, 3, 541, 8983, 8, 541, - 1, 542, 1, 542, 1, 542, 5, 542, 8988, 8, 542, 10, 542, 12, 542, 8991, 9, - 542, 1, 543, 1, 543, 3, 543, 8995, 8, 543, 1, 543, 3, 543, 8998, 8, 543, - 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 1, 544, 3, 544, 9006, 8, 544, 1, - 545, 1, 545, 1, 545, 1, 545, 1, 545, 1, 546, 1, 546, 3, 546, 9015, 8, 546, - 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 1, 546, 3, 546, 9023, 8, 546, 3, - 546, 9025, 8, 546, 1, 547, 1, 547, 3, 547, 9029, 8, 547, 1, 548, 1, 548, - 1, 548, 5, 548, 9034, 8, 548, 10, 548, 12, 548, 9037, 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, 9055, 8, 552, 1, 553, - 1, 553, 1, 554, 1, 554, 1, 554, 5, 554, 9062, 8, 554, 10, 554, 12, 554, - 9065, 9, 554, 1, 555, 1, 555, 1, 555, 3, 555, 9070, 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, 9089, 8, 556, - 1, 556, 1, 556, 1, 557, 1, 557, 1, 557, 5, 557, 9096, 8, 557, 10, 557, - 12, 557, 9099, 9, 557, 1, 558, 1, 558, 1, 558, 3, 558, 9104, 8, 558, 1, - 558, 1, 558, 3, 558, 9108, 8, 558, 1, 559, 4, 559, 9111, 8, 559, 11, 559, - 12, 559, 9112, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, 1, 560, - 1, 560, 3, 560, 9123, 8, 560, 1, 561, 1, 561, 1, 561, 5, 561, 9128, 8, - 561, 10, 561, 12, 561, 9131, 9, 561, 1, 562, 1, 562, 1, 562, 1, 562, 1, - 562, 1, 562, 3, 562, 9139, 8, 562, 1, 563, 3, 563, 9142, 8, 563, 1, 563, - 1, 563, 1, 563, 1, 563, 1, 563, 1, 563, 1, 563, 3, 563, 9151, 8, 563, 3, - 563, 9153, 8, 563, 1, 563, 1, 563, 1, 563, 1, 563, 3, 563, 9159, 8, 563, - 1, 564, 1, 564, 3, 564, 9163, 8, 564, 1, 564, 5, 564, 9166, 8, 564, 10, - 564, 12, 564, 9169, 9, 564, 1, 565, 1, 565, 1, 565, 1, 565, 1, 565, 1, - 565, 1, 565, 3, 565, 9178, 8, 565, 1, 565, 1, 565, 1, 565, 1, 565, 3, 565, - 9184, 8, 565, 3, 565, 9186, 8, 565, 1, 566, 1, 566, 1, 566, 1, 566, 3, - 566, 9192, 8, 566, 1, 567, 1, 567, 1, 567, 1, 567, 3, 567, 9198, 8, 567, - 1, 567, 3, 567, 9201, 8, 567, 1, 567, 3, 567, 9204, 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, 9217, 8, 569, 1, 569, 1, 569, 1, 569, 1, 569, 3, 569, 9223, - 8, 569, 1, 569, 1, 569, 3, 569, 9227, 8, 569, 1, 569, 1, 569, 3, 569, 9231, - 8, 569, 1, 569, 3, 569, 9234, 8, 569, 1, 570, 1, 570, 1, 570, 1, 570, 1, - 571, 1, 571, 3, 571, 9242, 8, 571, 1, 572, 1, 572, 3, 572, 9246, 8, 572, - 1, 573, 1, 573, 3, 573, 9250, 8, 573, 1, 573, 1, 573, 1, 573, 1, 573, 1, - 574, 1, 574, 3, 574, 9258, 8, 574, 1, 575, 1, 575, 1, 575, 1, 575, 1, 575, - 3, 575, 9265, 8, 575, 1, 576, 1, 576, 1, 576, 1, 576, 1, 576, 3, 576, 9272, - 8, 576, 1, 577, 1, 577, 3, 577, 9276, 8, 577, 1, 577, 1, 577, 1, 577, 1, - 577, 3, 577, 9282, 8, 577, 3, 577, 9284, 8, 577, 1, 578, 1, 578, 1, 579, - 1, 579, 1, 579, 1, 579, 1, 579, 3, 579, 9293, 8, 579, 1, 579, 3, 579, 9296, - 8, 579, 1, 580, 1, 580, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, 1, 581, - 3, 581, 9306, 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, 9322, - 8, 582, 1, 582, 1, 582, 1, 582, 1, 582, 3, 582, 9328, 8, 582, 1, 582, 1, - 582, 1, 582, 3, 582, 9333, 8, 582, 1, 583, 1, 583, 1, 583, 1, 583, 1, 583, - 3, 583, 9340, 8, 583, 1, 584, 1, 584, 1, 584, 1, 585, 1, 585, 1, 586, 1, - 586, 3, 586, 9349, 8, 586, 1, 587, 1, 587, 1, 587, 5, 587, 9354, 8, 587, - 10, 587, 12, 587, 9357, 9, 587, 1, 588, 1, 588, 1, 588, 5, 588, 9362, 8, - 588, 10, 588, 12, 588, 9365, 9, 588, 1, 589, 1, 589, 1, 589, 5, 589, 9370, - 8, 589, 10, 589, 12, 589, 9373, 9, 589, 1, 590, 1, 590, 3, 590, 9377, 8, - 590, 1, 590, 1, 590, 3, 590, 9381, 8, 590, 1, 590, 1, 590, 1, 590, 1, 590, - 3, 590, 9387, 8, 590, 1, 591, 1, 591, 3, 591, 9391, 8, 591, 1, 591, 1, - 591, 3, 591, 9395, 8, 591, 1, 592, 3, 592, 9398, 8, 592, 1, 592, 1, 592, - 1, 593, 1, 593, 3, 593, 9404, 8, 593, 1, 594, 1, 594, 1, 594, 3, 594, 9409, - 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, 9425, 8, 594, 1, - 594, 3, 594, 9428, 8, 594, 3, 594, 9430, 8, 594, 1, 595, 1, 595, 1, 595, - 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 1, 595, 3, 595, 9442, 8, - 595, 3, 595, 9444, 8, 595, 1, 596, 1, 596, 3, 596, 9448, 8, 596, 1, 596, - 1, 596, 1, 596, 1, 596, 3, 596, 9454, 8, 596, 1, 596, 1, 596, 3, 596, 9458, - 8, 596, 3, 596, 9460, 8, 596, 1, 597, 1, 597, 1, 597, 1, 597, 5, 597, 9466, - 8, 597, 10, 597, 12, 597, 9469, 9, 597, 1, 598, 3, 598, 9472, 8, 598, 1, - 598, 1, 598, 1, 599, 1, 599, 1, 599, 5, 599, 9479, 8, 599, 10, 599, 12, - 599, 9482, 9, 599, 1, 600, 1, 600, 1, 600, 5, 600, 9487, 8, 600, 10, 600, - 12, 600, 9490, 9, 600, 1, 601, 1, 601, 1, 601, 3, 601, 9495, 8, 601, 1, - 602, 3, 602, 9498, 8, 602, 1, 602, 1, 602, 1, 603, 1, 603, 1, 603, 1, 603, - 1, 603, 3, 603, 9507, 8, 603, 1, 604, 1, 604, 1, 604, 3, 604, 9512, 8, - 604, 1, 605, 1, 605, 1, 605, 5, 605, 9517, 8, 605, 10, 605, 12, 605, 9520, - 9, 605, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 3, 606, - 9529, 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, 9555, - 8, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, 1, 606, - 1, 606, 3, 606, 9566, 8, 606, 5, 606, 9568, 8, 606, 10, 606, 12, 606, 9571, - 9, 606, 1, 607, 1, 607, 1, 607, 1, 607, 1, 607, 3, 607, 9578, 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, 9601, 8, 607, 1, 607, 1, 607, 1, 607, 1, 607, - 1, 607, 1, 607, 3, 607, 9609, 8, 607, 1, 608, 1, 608, 1, 609, 1, 609, 1, - 609, 1, 609, 1, 609, 1, 609, 3, 609, 9619, 8, 609, 1, 609, 3, 609, 9622, - 8, 609, 1, 609, 1, 609, 1, 609, 3, 609, 9627, 8, 609, 1, 609, 1, 609, 1, - 609, 3, 609, 9632, 8, 609, 1, 609, 1, 609, 3, 609, 9636, 8, 609, 1, 609, - 1, 609, 1, 610, 1, 610, 3, 610, 9642, 8, 610, 1, 610, 3, 610, 9645, 8, - 610, 1, 610, 3, 610, 9648, 8, 610, 1, 610, 1, 610, 3, 610, 9652, 8, 610, - 1, 610, 3, 610, 9655, 8, 610, 1, 610, 3, 610, 9658, 8, 610, 1, 611, 1, - 611, 1, 611, 3, 611, 9663, 8, 611, 1, 612, 1, 612, 1, 612, 1, 612, 3, 612, - 9669, 8, 612, 1, 612, 3, 612, 9672, 8, 612, 1, 612, 3, 612, 9675, 8, 612, - 1, 612, 1, 612, 1, 612, 1, 612, 1, 612, 1, 612, 3, 612, 9683, 8, 612, 1, - 612, 3, 612, 9686, 8, 612, 1, 612, 3, 612, 9689, 8, 612, 1, 612, 1, 612, - 3, 612, 9693, 8, 612, 1, 613, 1, 613, 1, 613, 3, 613, 9698, 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, 9716, 8, 615, - 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9723, 8, 615, 1, 615, 1, - 615, 1, 615, 1, 615, 1, 615, 3, 615, 9730, 8, 615, 1, 615, 1, 615, 1, 615, - 1, 615, 1, 615, 3, 615, 9737, 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, 9755, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, - 1, 615, 1, 615, 3, 615, 9763, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, - 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9775, 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, 9793, 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, 9832, 8, 615, 3, 615, 9834, 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, 9854, 8, 615, 1, - 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9864, - 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, - 1, 615, 3, 615, 9875, 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, 9896, 8, 615, 1, 615, 3, 615, - 9899, 8, 615, 1, 615, 3, 615, 9902, 8, 615, 1, 615, 1, 615, 1, 615, 1, - 615, 1, 615, 3, 615, 9909, 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, - 3, 615, 9916, 8, 615, 1, 615, 3, 615, 9919, 8, 615, 1, 615, 1, 615, 1, - 615, 1, 615, 1, 615, 1, 615, 3, 615, 9927, 8, 615, 1, 615, 3, 615, 9930, - 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9937, 8, 615, 1, - 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 9944, 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, 9957, 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, 9970, 8, 615, 1, 615, 3, 615, - 9973, 8, 615, 1, 615, 1, 615, 3, 615, 9977, 8, 615, 1, 615, 3, 615, 9980, - 8, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, - 3, 615, 9990, 8, 615, 1, 615, 3, 615, 9993, 8, 615, 1, 615, 1, 615, 1, - 615, 1, 615, 1, 615, 1, 615, 1, 615, 1, 615, 3, 615, 10003, 8, 615, 1, - 615, 3, 615, 10006, 8, 615, 1, 615, 3, 615, 10009, 8, 615, 1, 615, 1, 615, - 3, 615, 10013, 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, 10034, 8, 617, 1, 618, 1, 618, - 1, 618, 3, 618, 10039, 8, 618, 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, - 1, 619, 1, 619, 1, 619, 1, 619, 1, 619, 3, 619, 10051, 8, 619, 1, 620, - 1, 620, 1, 620, 1, 620, 1, 620, 1, 620, 1, 621, 1, 621, 3, 621, 10061, - 8, 621, 1, 621, 1, 621, 1, 621, 3, 621, 10066, 8, 621, 1, 621, 3, 621, - 10069, 8, 621, 1, 621, 3, 621, 10072, 8, 621, 1, 622, 1, 622, 1, 622, 1, - 623, 1, 623, 1, 623, 5, 623, 10080, 8, 623, 10, 623, 12, 623, 10083, 9, - 623, 1, 624, 1, 624, 1, 624, 1, 624, 1, 625, 1, 625, 1, 625, 1, 625, 1, - 625, 1, 625, 3, 625, 10095, 8, 625, 1, 626, 1, 626, 1, 626, 5, 626, 10100, - 8, 626, 10, 626, 12, 626, 10103, 9, 626, 1, 627, 1, 627, 1, 627, 3, 627, - 10108, 8, 627, 1, 628, 1, 628, 1, 628, 3, 628, 10113, 8, 628, 1, 628, 1, - 628, 1, 628, 3, 628, 10118, 8, 628, 3, 628, 10120, 8, 628, 1, 629, 1, 629, - 1, 629, 1, 629, 1, 629, 1, 629, 3, 629, 10128, 8, 629, 1, 630, 1, 630, - 1, 630, 1, 630, 1, 630, 1, 630, 3, 630, 10136, 8, 630, 1, 631, 1, 631, - 1, 631, 5, 631, 10141, 8, 631, 10, 631, 12, 631, 10144, 9, 631, 1, 632, - 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 1, 632, 3, 632, 10154, - 8, 632, 1, 633, 1, 633, 3, 633, 10158, 8, 633, 1, 634, 1, 634, 1, 634, - 1, 634, 1, 634, 1, 634, 3, 634, 10166, 8, 634, 1, 635, 1, 635, 1, 635, - 1, 635, 1, 635, 3, 635, 10173, 8, 635, 1, 636, 1, 636, 1, 636, 1, 636, - 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 1, 636, 3, 636, 10185, 8, 636, - 1, 637, 1, 637, 1, 637, 1, 637, 1, 637, 1, 638, 1, 638, 1, 638, 5, 638, - 10195, 8, 638, 10, 638, 12, 638, 10198, 9, 638, 1, 639, 1, 639, 1, 639, - 3, 639, 10203, 8, 639, 1, 640, 1, 640, 1, 641, 1, 641, 1, 641, 1, 641, - 3, 641, 10211, 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, 10228, 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, 10251, 8, 647, - 10, 647, 12, 647, 10254, 9, 647, 1, 648, 1, 648, 1, 648, 1, 648, 1, 649, - 1, 649, 1, 649, 3, 649, 10263, 8, 649, 1, 650, 1, 650, 3, 650, 10267, 8, - 650, 1, 650, 3, 650, 10270, 8, 650, 1, 650, 3, 650, 10273, 8, 650, 1, 650, - 3, 650, 10276, 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, 10289, 8, 653, 1, 653, - 1, 653, 1, 653, 3, 653, 10294, 8, 653, 1, 653, 1, 653, 1, 653, 3, 653, - 10299, 8, 653, 3, 653, 10301, 8, 653, 1, 654, 1, 654, 1, 654, 1, 654, 1, - 654, 1, 654, 3, 654, 10309, 8, 654, 1, 655, 1, 655, 1, 655, 1, 655, 1, - 655, 1, 655, 1, 655, 3, 655, 10318, 8, 655, 1, 656, 1, 656, 1, 656, 1, - 656, 1, 656, 1, 656, 1, 656, 3, 656, 10327, 8, 656, 1, 657, 1, 657, 1, - 657, 3, 657, 10332, 8, 657, 1, 657, 1, 657, 1, 657, 1, 657, 1, 657, 1, - 657, 1, 657, 3, 657, 10341, 8, 657, 1, 658, 1, 658, 1, 658, 3, 658, 10346, - 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, 10360, 8, 661, 1, 662, 1, 662, - 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 1, 663, 3, 663, 10370, 8, 663, - 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 1, 664, 3, 664, 10378, 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, 10392, 8, 665, 1, 666, 1, 666, 1, 666, - 5, 666, 10397, 8, 666, 10, 666, 12, 666, 10400, 9, 666, 1, 667, 1, 667, - 1, 667, 5, 667, 10405, 8, 667, 10, 667, 12, 667, 10408, 9, 667, 1, 668, - 1, 668, 1, 668, 1, 668, 1, 668, 3, 668, 10415, 8, 668, 1, 669, 1, 669, - 1, 669, 5, 669, 10420, 8, 669, 10, 669, 12, 669, 10423, 9, 669, 1, 670, - 1, 670, 1, 670, 3, 670, 10428, 8, 670, 1, 670, 1, 670, 1, 671, 1, 671, - 1, 671, 5, 671, 10435, 8, 671, 10, 671, 12, 671, 10438, 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, 10452, 8, 673, 1, 674, 1, 674, 1, 675, 1, 675, - 1, 675, 1, 675, 1, 675, 1, 675, 1, 675, 3, 675, 10463, 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, 10496, 8, 677, 1, 678, 1, 678, 1, 678, - 1, 678, 1, 678, 1, 678, 1, 678, 3, 678, 10505, 8, 678, 1, 679, 1, 679, - 1, 679, 1, 679, 1, 679, 3, 679, 10512, 8, 679, 1, 680, 1, 680, 3, 680, - 10516, 8, 680, 1, 680, 1, 680, 3, 680, 10520, 8, 680, 1, 680, 1, 680, 1, - 681, 4, 681, 10525, 8, 681, 11, 681, 12, 681, 10526, 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, 10541, 8, 685, 1, 686, 1, 686, 1, 686, 3, 686, 10546, 8, 686, - 1, 686, 1, 686, 1, 686, 3, 686, 10551, 8, 686, 1, 686, 1, 686, 3, 686, - 10555, 8, 686, 3, 686, 10557, 8, 686, 1, 686, 3, 686, 10560, 8, 686, 1, - 687, 1, 687, 1, 688, 4, 688, 10565, 8, 688, 11, 688, 12, 688, 10566, 1, - 689, 5, 689, 10570, 8, 689, 10, 689, 12, 689, 10573, 9, 689, 1, 690, 1, - 690, 1, 691, 1, 691, 1, 691, 5, 691, 10580, 8, 691, 10, 691, 12, 691, 10583, - 9, 691, 1, 692, 1, 692, 3, 692, 10587, 8, 692, 1, 692, 3, 692, 10590, 8, - 692, 1, 693, 1, 693, 1, 693, 3, 693, 10595, 8, 693, 1, 694, 1, 694, 1, - 694, 5, 694, 10600, 8, 694, 10, 694, 12, 694, 10603, 9, 694, 1, 695, 1, - 695, 3, 695, 10607, 8, 695, 1, 696, 1, 696, 1, 696, 5, 696, 10612, 8, 696, - 10, 696, 12, 696, 10615, 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, - 10630, 8, 700, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, - 1, 701, 1, 701, 1, 701, 3, 701, 10642, 8, 701, 1, 701, 1, 701, 1, 701, - 3, 701, 10647, 8, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, - 3, 701, 10655, 8, 701, 1, 701, 1, 701, 1, 701, 1, 701, 1, 701, 3, 701, - 10662, 8, 701, 1, 701, 1, 701, 1, 701, 3, 701, 10667, 8, 701, 1, 702, 1, - 702, 1, 703, 1, 703, 1, 704, 1, 704, 1, 705, 1, 705, 1, 706, 1, 706, 3, - 706, 10679, 8, 706, 1, 707, 1, 707, 1, 707, 1, 707, 5, 707, 10685, 8, 707, - 10, 707, 12, 707, 10688, 9, 707, 1, 707, 1, 707, 3, 707, 10692, 8, 707, - 1, 708, 1, 708, 1, 708, 1, 709, 1, 709, 1, 709, 1, 709, 1, 709, 3, 709, - 10702, 8, 709, 1, 710, 1, 710, 1, 711, 1, 711, 1, 711, 3, 711, 10709, 8, - 711, 1, 712, 1, 712, 1, 712, 5, 712, 10714, 8, 712, 10, 712, 12, 712, 10717, - 9, 712, 1, 713, 1, 713, 1, 713, 1, 713, 1, 713, 1, 713, 3, 713, 10725, - 8, 713, 1, 714, 1, 714, 1, 714, 1, 714, 3, 714, 10731, 8, 714, 1, 715, - 1, 715, 1, 715, 1, 715, 3, 715, 10737, 8, 715, 1, 716, 1, 716, 1, 716, - 1, 716, 3, 716, 10743, 8, 716, 1, 717, 1, 717, 1, 717, 1, 717, 1, 717, - 1, 717, 3, 717, 10751, 8, 717, 1, 718, 1, 718, 3, 718, 10755, 8, 718, 1, - 718, 1, 718, 1, 718, 1, 718, 1, 718, 3, 718, 10762, 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, 10824, 8, 721, 1, 722, 1, - 722, 1, 723, 1, 723, 1, 724, 1, 724, 1, 725, 1, 725, 1, 725, 3, 725, 10835, - 8, 725, 1, 726, 5, 726, 10838, 8, 726, 10, 726, 12, 726, 10841, 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, 10863, 8, 727, 1, 728, 1, 728, 1, 729, 1, 729, - 1, 729, 1, 729, 3, 729, 10871, 8, 729, 1, 730, 1, 730, 1, 731, 1, 731, - 1, 731, 1, 731, 3, 731, 10879, 8, 731, 1, 731, 1, 731, 3, 731, 10883, 8, - 731, 1, 732, 3, 732, 10886, 8, 732, 1, 732, 1, 732, 3, 732, 10890, 8, 732, - 3, 732, 10892, 8, 732, 1, 733, 1, 733, 1, 734, 4, 734, 10897, 8, 734, 11, - 734, 12, 734, 10898, 1, 735, 1, 735, 1, 735, 1, 735, 1, 736, 1, 736, 1, - 736, 3, 736, 10908, 8, 736, 1, 737, 1, 737, 1, 737, 1, 737, 1, 737, 3, - 737, 10915, 8, 737, 1, 737, 1, 737, 3, 737, 10919, 8, 737, 1, 737, 3, 737, - 10922, 8, 737, 1, 737, 3, 737, 10925, 8, 737, 1, 737, 3, 737, 10928, 8, - 737, 1, 737, 1, 737, 3, 737, 10932, 8, 737, 1, 737, 1, 737, 1, 737, 3, - 737, 10937, 8, 737, 1, 737, 1, 737, 1, 738, 1, 738, 1, 738, 3, 738, 10944, - 8, 738, 1, 739, 1, 739, 1, 740, 1, 740, 1, 740, 1, 740, 1, 741, 1, 741, - 1, 741, 5, 741, 10955, 8, 741, 10, 741, 12, 741, 10958, 9, 741, 1, 742, - 1, 742, 1, 742, 1, 743, 1, 743, 1, 744, 1, 744, 3, 744, 10967, 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, - 10986, 8, 751, 1, 752, 1, 752, 1, 753, 5, 753, 10991, 8, 753, 10, 753, - 12, 753, 10994, 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, 11023, 8, 754, 1, 755, 1, 755, 1, 755, - 1, 755, 1, 756, 1, 756, 1, 756, 1, 756, 3, 756, 11033, 8, 756, 1, 756, - 1, 756, 1, 756, 1, 756, 1, 756, 1, 756, 1, 756, 3, 756, 11042, 8, 756, - 1, 756, 1, 756, 1, 756, 3, 756, 11047, 8, 756, 1, 757, 1, 757, 1, 758, - 1, 758, 1, 758, 1, 758, 1, 758, 1, 759, 1, 759, 3, 759, 11058, 8, 759, - 1, 759, 1, 759, 1, 759, 1, 759, 1, 760, 1, 760, 1, 761, 1, 761, 1, 761, - 5, 761, 11069, 8, 761, 10, 761, 12, 761, 11072, 9, 761, 1, 762, 1, 762, - 1, 762, 1, 762, 1, 763, 1, 763, 1, 764, 1, 764, 1, 765, 1, 765, 3, 765, - 11084, 8, 765, 1, 765, 1, 765, 1, 765, 1, 765, 5, 765, 11090, 8, 765, 10, - 765, 12, 765, 11093, 9, 765, 1, 766, 1, 766, 1, 766, 1, 766, 1, 766, 1, - 766, 3, 766, 11101, 8, 766, 1, 766, 1, 766, 1, 766, 1, 766, 1, 767, 1, - 767, 1, 767, 1, 767, 1, 767, 5, 767, 11112, 8, 767, 10, 767, 12, 767, 11115, - 9, 767, 1, 768, 1, 768, 1, 768, 1, 769, 1, 769, 3, 769, 11122, 8, 769, - 1, 769, 1, 769, 3, 769, 11126, 8, 769, 1, 769, 1, 769, 1, 769, 1, 769, - 1, 770, 1, 770, 1, 771, 4, 771, 11135, 8, 771, 11, 771, 12, 771, 11136, - 1, 772, 1, 772, 1, 772, 1, 772, 1, 772, 1, 773, 1, 773, 1, 773, 1, 774, - 3, 774, 11148, 8, 774, 1, 774, 1, 774, 1, 775, 3, 775, 11153, 8, 775, 1, - 775, 1, 775, 1, 775, 1, 775, 1, 776, 3, 776, 11160, 8, 776, 1, 776, 1, - 776, 1, 776, 1, 776, 1, 777, 1, 777, 1, 777, 1, 777, 3, 777, 11170, 8, - 777, 1, 777, 1, 777, 1, 777, 1, 777, 1, 777, 3, 777, 11177, 8, 777, 1, - 777, 3, 777, 11180, 8, 777, 1, 777, 1, 777, 1, 777, 1, 777, 3, 777, 11186, - 8, 777, 3, 777, 11188, 8, 777, 1, 778, 1, 778, 1, 778, 1, 779, 1, 779, - 1, 779, 1, 779, 5, 779, 11197, 8, 779, 10, 779, 12, 779, 11200, 9, 779, - 1, 779, 1, 779, 1, 780, 1, 780, 1, 781, 1, 781, 1, 781, 1, 782, 1, 782, - 1, 783, 3, 783, 11212, 8, 783, 1, 783, 1, 783, 1, 783, 3, 783, 11217, 8, - 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 783, 1, 784, 1, 784, 1, 784, 1, - 785, 1, 785, 3, 785, 11229, 8, 785, 1, 785, 3, 785, 11232, 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, 11245, 8, 787, 1, 787, 3, 787, 11248, 8, 787, 1, 787, 3, - 787, 11251, 8, 787, 3, 787, 11253, 8, 787, 1, 787, 1, 787, 1, 788, 1, 788, - 1, 789, 1, 789, 3, 789, 11261, 8, 789, 1, 789, 1, 789, 3, 789, 11265, 8, - 789, 1, 789, 3, 789, 11268, 8, 789, 1, 789, 1, 789, 1, 789, 1, 789, 3, - 789, 11274, 8, 789, 1, 789, 1, 789, 3, 789, 11278, 8, 789, 1, 789, 1, 789, - 1, 789, 1, 789, 3, 789, 11284, 8, 789, 1, 789, 1, 789, 1, 789, 3, 789, - 11289, 8, 789, 1, 789, 1, 789, 1, 789, 1, 789, 3, 789, 11295, 8, 789, 1, - 789, 3, 789, 11298, 8, 789, 1, 789, 1, 789, 3, 789, 11302, 8, 789, 1, 790, - 1, 790, 1, 791, 1, 791, 4, 791, 11308, 8, 791, 11, 791, 12, 791, 11309, - 1, 792, 1, 792, 1, 792, 1, 793, 1, 793, 1, 793, 1, 793, 1, 794, 1, 794, - 1, 794, 5, 794, 11322, 8, 794, 10, 794, 12, 794, 11325, 9, 794, 1, 795, - 1, 795, 1, 795, 3, 795, 11330, 8, 795, 1, 795, 1, 795, 1, 796, 1, 796, - 1, 796, 1, 797, 1, 797, 1, 797, 1, 797, 1, 797, 3, 797, 11342, 8, 797, - 1, 797, 1, 797, 1, 798, 1, 798, 1, 798, 1, 799, 1, 799, 1, 799, 3, 799, - 11352, 8, 799, 1, 799, 3, 799, 11355, 8, 799, 1, 799, 3, 799, 11358, 8, - 799, 1, 799, 3, 799, 11361, 8, 799, 1, 799, 3, 799, 11364, 8, 799, 1, 799, - 1, 799, 1, 800, 1, 800, 1, 800, 1, 801, 1, 801, 1, 801, 5, 801, 11374, - 8, 801, 10, 801, 12, 801, 11377, 9, 801, 1, 802, 1, 802, 3, 802, 11381, - 8, 802, 1, 802, 1, 802, 1, 803, 1, 803, 1, 803, 3, 803, 11388, 8, 803, - 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 3, 803, 11395, 8, 803, 3, 803, - 11397, 8, 803, 1, 803, 1, 803, 1, 803, 1, 803, 1, 803, 3, 803, 11404, 8, - 803, 3, 803, 11406, 8, 803, 1, 803, 1, 803, 1, 804, 1, 804, 1, 804, 1, - 804, 1, 804, 3, 804, 11415, 8, 804, 1, 805, 1, 805, 1, 805, 5, 805, 11420, - 8, 805, 10, 805, 12, 805, 11423, 9, 805, 1, 806, 1, 806, 1, 806, 1, 807, - 3, 807, 11429, 8, 807, 1, 807, 1, 807, 1, 808, 1, 808, 1, 809, 1, 809, - 3, 809, 11437, 8, 809, 1, 809, 3, 809, 11440, 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, 11464, 8, 812, 3, 812, 11466, 8, 812, 1, 813, 1, 813, - 3, 813, 11470, 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, 11484, 8, 816, - 1, 816, 1, 816, 1, 817, 1, 817, 3, 817, 11490, 8, 817, 1, 817, 1, 817, - 1, 818, 1, 818, 3, 818, 11496, 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, 11509, - 8, 819, 1, 819, 3, 819, 11512, 8, 819, 1, 820, 1, 820, 3, 820, 11516, 8, - 820, 1, 821, 1, 821, 1, 821, 1, 822, 4, 822, 11522, 8, 822, 11, 822, 12, - 822, 11523, 1, 823, 1, 823, 1, 823, 1, 823, 1, 823, 1, 824, 1, 824, 1, - 824, 5, 824, 11534, 8, 824, 10, 824, 12, 824, 11537, 9, 824, 1, 825, 1, - 825, 1, 825, 3, 825, 11542, 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, 11555, 8, - 830, 1, 831, 1, 831, 1, 832, 3, 832, 11560, 8, 832, 1, 832, 1, 832, 3, - 832, 11564, 8, 832, 1, 832, 3, 832, 11567, 8, 832, 1, 832, 3, 832, 11570, - 8, 832, 1, 832, 3, 832, 11573, 8, 832, 1, 832, 3, 832, 11576, 8, 832, 1, - 832, 3, 832, 11579, 8, 832, 1, 832, 3, 832, 11582, 8, 832, 1, 832, 3, 832, - 11585, 8, 832, 1, 833, 1, 833, 1, 834, 1, 834, 1, 835, 1, 835, 1, 836, - 1, 836, 1, 837, 1, 837, 3, 837, 11597, 8, 837, 1, 838, 1, 838, 3, 838, - 11601, 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, 132, 134, 136, 138, 140, 142, - 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, - 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, - 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, - 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, - 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, - 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, - 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, - 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, - 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, - 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, - 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, - 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, - 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, - 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, - 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, - 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, - 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, - 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, - 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, - 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, - 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, - 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, - 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, - 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, - 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, - 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, - 924, 926, 928, 930, 932, 934, 936, 938, 940, 942, 944, 946, 948, 950, 952, - 954, 956, 958, 960, 962, 964, 966, 968, 970, 972, 974, 976, 978, 980, 982, - 984, 986, 988, 990, 992, 994, 996, 998, 1000, 1002, 1004, 1006, 1008, 1010, - 1012, 1014, 1016, 1018, 1020, 1022, 1024, 1026, 1028, 1030, 1032, 1034, - 1036, 1038, 1040, 1042, 1044, 1046, 1048, 1050, 1052, 1054, 1056, 1058, - 1060, 1062, 1064, 1066, 1068, 1070, 1072, 1074, 1076, 1078, 1080, 1082, - 1084, 1086, 1088, 1090, 1092, 1094, 1096, 1098, 1100, 1102, 1104, 1106, - 1108, 1110, 1112, 1114, 1116, 1118, 1120, 1122, 1124, 1126, 1128, 1130, - 1132, 1134, 1136, 1138, 1140, 1142, 1144, 1146, 1148, 1150, 1152, 1154, - 1156, 1158, 1160, 1162, 1164, 1166, 1168, 1170, 1172, 1174, 1176, 1178, - 1180, 1182, 1184, 1186, 1188, 1190, 1192, 1194, 1196, 1198, 1200, 1202, - 1204, 1206, 1208, 1210, 1212, 1214, 1216, 1218, 1220, 1222, 1224, 1226, - 1228, 1230, 1232, 1234, 1236, 1238, 1240, 1242, 1244, 1246, 1248, 1250, - 1252, 1254, 1256, 1258, 1260, 1262, 1264, 1266, 1268, 1270, 1272, 1274, - 1276, 1278, 1280, 1282, 1284, 1286, 1288, 1290, 1292, 1294, 1296, 1298, - 1300, 1302, 1304, 1306, 1308, 1310, 1312, 1314, 1316, 1318, 1320, 1322, - 1324, 1326, 1328, 1330, 1332, 1334, 1336, 1338, 1340, 1342, 1344, 1346, - 1348, 1350, 1352, 1354, 1356, 1358, 1360, 1362, 1364, 1366, 1368, 1370, - 1372, 1374, 1376, 1378, 1380, 1382, 1384, 1386, 1388, 1390, 1392, 1394, - 1396, 1398, 1400, 1402, 1404, 1406, 1408, 1410, 1412, 1414, 1416, 1418, - 1420, 1422, 1424, 1426, 1428, 1430, 1432, 1434, 1436, 1438, 1440, 1442, - 1444, 1446, 1448, 1450, 1452, 1454, 1456, 1458, 1460, 1462, 1464, 1466, - 1468, 1470, 1472, 1474, 1476, 1478, 1480, 1482, 1484, 1486, 1488, 1490, - 1492, 1494, 1496, 1498, 1500, 1502, 1504, 1506, 1508, 1510, 1512, 1514, - 1516, 1518, 1520, 1522, 1524, 1526, 1528, 1530, 1532, 1534, 1536, 1538, - 1540, 1542, 1544, 1546, 1548, 1550, 1552, 1554, 1556, 1558, 1560, 1562, - 1564, 1566, 1568, 1570, 1572, 1574, 1576, 1578, 1580, 1582, 1584, 1586, - 1588, 1590, 1592, 1594, 1596, 1598, 1600, 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, 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, 392, 2, 0, 170, 170, 264, - 264, 2, 0, 325, 325, 345, 345, 1, 0, 31, 32, 2, 0, 99, 99, 361, 361, 2, - 0, 220, 220, 346, 346, 2, 0, 59, 59, 97, 97, 2, 0, 232, 232, 264, 264, - 2, 0, 30, 30, 56, 56, 2, 0, 332, 332, 428, 428, 2, 0, 226, 226, 280, 280, - 4, 0, 132, 132, 134, 134, 138, 138, 145, 145, 2, 0, 372, 372, 498, 498, - 2, 0, 404, 405, 419, 419, 1, 0, 404, 405, 1, 0, 432, 433, 1, 0, 18, 19, - 2, 0, 136, 136, 141, 141, 5, 0, 10, 10, 16, 17, 21, 21, 23, 23, 25, 25, - 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 3, 0, 39, 39, 73, 73, 95, 95, - 1, 0, 116, 117, 1, 0, 120, 121, 2, 0, 185, 185, 207, 207, 2, 0, 316, 316, - 471, 471, 2, 0, 227, 227, 301, 301, 3, 0, 30, 30, 34, 34, 90, 90, 6, 0, - 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, 2, 0, 20, 20, 22, 22, 1, - 0, 504, 507, 16, 0, 108, 108, 119, 119, 122, 123, 143, 143, 148, 268, 270, - 271, 273, 322, 324, 399, 424, 424, 454, 473, 476, 490, 492, 492, 494, 494, - 496, 496, 499, 509, 602, 602, 5, 0, 125, 137, 139, 142, 144, 144, 146, - 147, 493, 493, 4, 0, 30, 52, 54, 70, 72, 105, 475, 475, 5, 0, 323, 323, - 439, 445, 525, 525, 534, 534, 542, 657, 2, 0, 62, 62, 135, 135, 2, 0, 10, - 10, 20, 20, 2, 0, 455, 455, 522, 522, 2, 0, 186, 186, 528, 528, 1, 0, 533, - 538, 2, 0, 163, 163, 229, 229, 36, 0, 33, 33, 35, 35, 43, 45, 53, 53, 57, - 57, 61, 61, 92, 92, 135, 135, 142, 142, 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, 12864, 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, 8895, 1, 0, 0, 0, 1068, 8919, 1, 0, 0, 0, - 1070, 8922, 1, 0, 0, 0, 1072, 8931, 1, 0, 0, 0, 1074, 8934, 1, 0, 0, 0, - 1076, 8955, 1, 0, 0, 0, 1078, 8957, 1, 0, 0, 0, 1080, 8968, 1, 0, 0, 0, - 1082, 8982, 1, 0, 0, 0, 1084, 8984, 1, 0, 0, 0, 1086, 8992, 1, 0, 0, 0, - 1088, 8999, 1, 0, 0, 0, 1090, 9007, 1, 0, 0, 0, 1092, 9024, 1, 0, 0, 0, - 1094, 9026, 1, 0, 0, 0, 1096, 9030, 1, 0, 0, 0, 1098, 9038, 1, 0, 0, 0, - 1100, 9043, 1, 0, 0, 0, 1102, 9046, 1, 0, 0, 0, 1104, 9049, 1, 0, 0, 0, - 1106, 9056, 1, 0, 0, 0, 1108, 9058, 1, 0, 0, 0, 1110, 9066, 1, 0, 0, 0, - 1112, 9071, 1, 0, 0, 0, 1114, 9092, 1, 0, 0, 0, 1116, 9100, 1, 0, 0, 0, - 1118, 9110, 1, 0, 0, 0, 1120, 9122, 1, 0, 0, 0, 1122, 9124, 1, 0, 0, 0, - 1124, 9138, 1, 0, 0, 0, 1126, 9158, 1, 0, 0, 0, 1128, 9167, 1, 0, 0, 0, - 1130, 9185, 1, 0, 0, 0, 1132, 9191, 1, 0, 0, 0, 1134, 9197, 1, 0, 0, 0, - 1136, 9205, 1, 0, 0, 0, 1138, 9233, 1, 0, 0, 0, 1140, 9235, 1, 0, 0, 0, - 1142, 9241, 1, 0, 0, 0, 1144, 9245, 1, 0, 0, 0, 1146, 9247, 1, 0, 0, 0, - 1148, 9255, 1, 0, 0, 0, 1150, 9259, 1, 0, 0, 0, 1152, 9266, 1, 0, 0, 0, - 1154, 9283, 1, 0, 0, 0, 1156, 9285, 1, 0, 0, 0, 1158, 9287, 1, 0, 0, 0, - 1160, 9297, 1, 0, 0, 0, 1162, 9305, 1, 0, 0, 0, 1164, 9332, 1, 0, 0, 0, - 1166, 9334, 1, 0, 0, 0, 1168, 9341, 1, 0, 0, 0, 1170, 9344, 1, 0, 0, 0, - 1172, 9346, 1, 0, 0, 0, 1174, 9350, 1, 0, 0, 0, 1176, 9358, 1, 0, 0, 0, - 1178, 9366, 1, 0, 0, 0, 1180, 9374, 1, 0, 0, 0, 1182, 9388, 1, 0, 0, 0, - 1184, 9397, 1, 0, 0, 0, 1186, 9401, 1, 0, 0, 0, 1188, 9405, 1, 0, 0, 0, - 1190, 9431, 1, 0, 0, 0, 1192, 9445, 1, 0, 0, 0, 1194, 9461, 1, 0, 0, 0, - 1196, 9471, 1, 0, 0, 0, 1198, 9475, 1, 0, 0, 0, 1200, 9483, 1, 0, 0, 0, - 1202, 9491, 1, 0, 0, 0, 1204, 9497, 1, 0, 0, 0, 1206, 9501, 1, 0, 0, 0, - 1208, 9508, 1, 0, 0, 0, 1210, 9513, 1, 0, 0, 0, 1212, 9528, 1, 0, 0, 0, - 1214, 9608, 1, 0, 0, 0, 1216, 9610, 1, 0, 0, 0, 1218, 9612, 1, 0, 0, 0, - 1220, 9657, 1, 0, 0, 0, 1222, 9662, 1, 0, 0, 0, 1224, 9692, 1, 0, 0, 0, - 1226, 9694, 1, 0, 0, 0, 1228, 9699, 1, 0, 0, 0, 1230, 10012, 1, 0, 0, 0, - 1232, 10014, 1, 0, 0, 0, 1234, 10033, 1, 0, 0, 0, 1236, 10038, 1, 0, 0, - 0, 1238, 10050, 1, 0, 0, 0, 1240, 10052, 1, 0, 0, 0, 1242, 10071, 1, 0, - 0, 0, 1244, 10073, 1, 0, 0, 0, 1246, 10076, 1, 0, 0, 0, 1248, 10084, 1, - 0, 0, 0, 1250, 10094, 1, 0, 0, 0, 1252, 10096, 1, 0, 0, 0, 1254, 10104, - 1, 0, 0, 0, 1256, 10119, 1, 0, 0, 0, 1258, 10127, 1, 0, 0, 0, 1260, 10135, - 1, 0, 0, 0, 1262, 10137, 1, 0, 0, 0, 1264, 10153, 1, 0, 0, 0, 1266, 10155, - 1, 0, 0, 0, 1268, 10165, 1, 0, 0, 0, 1270, 10172, 1, 0, 0, 0, 1272, 10184, - 1, 0, 0, 0, 1274, 10186, 1, 0, 0, 0, 1276, 10191, 1, 0, 0, 0, 1278, 10199, - 1, 0, 0, 0, 1280, 10204, 1, 0, 0, 0, 1282, 10210, 1, 0, 0, 0, 1284, 10227, - 1, 0, 0, 0, 1286, 10229, 1, 0, 0, 0, 1288, 10232, 1, 0, 0, 0, 1290, 10238, - 1, 0, 0, 0, 1292, 10244, 1, 0, 0, 0, 1294, 10247, 1, 0, 0, 0, 1296, 10255, - 1, 0, 0, 0, 1298, 10259, 1, 0, 0, 0, 1300, 10264, 1, 0, 0, 0, 1302, 10279, - 1, 0, 0, 0, 1304, 10281, 1, 0, 0, 0, 1306, 10300, 1, 0, 0, 0, 1308, 10308, - 1, 0, 0, 0, 1310, 10317, 1, 0, 0, 0, 1312, 10319, 1, 0, 0, 0, 1314, 10340, - 1, 0, 0, 0, 1316, 10342, 1, 0, 0, 0, 1318, 10349, 1, 0, 0, 0, 1320, 10355, - 1, 0, 0, 0, 1322, 10359, 1, 0, 0, 0, 1324, 10361, 1, 0, 0, 0, 1326, 10369, - 1, 0, 0, 0, 1328, 10377, 1, 0, 0, 0, 1330, 10391, 1, 0, 0, 0, 1332, 10393, - 1, 0, 0, 0, 1334, 10401, 1, 0, 0, 0, 1336, 10414, 1, 0, 0, 0, 1338, 10416, - 1, 0, 0, 0, 1340, 10424, 1, 0, 0, 0, 1342, 10431, 1, 0, 0, 0, 1344, 10439, - 1, 0, 0, 0, 1346, 10451, 1, 0, 0, 0, 1348, 10453, 1, 0, 0, 0, 1350, 10455, - 1, 0, 0, 0, 1352, 10464, 1, 0, 0, 0, 1354, 10495, 1, 0, 0, 0, 1356, 10504, - 1, 0, 0, 0, 1358, 10511, 1, 0, 0, 0, 1360, 10513, 1, 0, 0, 0, 1362, 10524, - 1, 0, 0, 0, 1364, 10528, 1, 0, 0, 0, 1366, 10533, 1, 0, 0, 0, 1368, 10536, - 1, 0, 0, 0, 1370, 10538, 1, 0, 0, 0, 1372, 10559, 1, 0, 0, 0, 1374, 10561, - 1, 0, 0, 0, 1376, 10564, 1, 0, 0, 0, 1378, 10571, 1, 0, 0, 0, 1380, 10574, - 1, 0, 0, 0, 1382, 10576, 1, 0, 0, 0, 1384, 10589, 1, 0, 0, 0, 1386, 10594, - 1, 0, 0, 0, 1388, 10596, 1, 0, 0, 0, 1390, 10604, 1, 0, 0, 0, 1392, 10608, - 1, 0, 0, 0, 1394, 10616, 1, 0, 0, 0, 1396, 10618, 1, 0, 0, 0, 1398, 10620, - 1, 0, 0, 0, 1400, 10629, 1, 0, 0, 0, 1402, 10666, 1, 0, 0, 0, 1404, 10668, - 1, 0, 0, 0, 1406, 10670, 1, 0, 0, 0, 1408, 10672, 1, 0, 0, 0, 1410, 10674, - 1, 0, 0, 0, 1412, 10676, 1, 0, 0, 0, 1414, 10691, 1, 0, 0, 0, 1416, 10693, - 1, 0, 0, 0, 1418, 10701, 1, 0, 0, 0, 1420, 10703, 1, 0, 0, 0, 1422, 10708, - 1, 0, 0, 0, 1424, 10710, 1, 0, 0, 0, 1426, 10724, 1, 0, 0, 0, 1428, 10730, - 1, 0, 0, 0, 1430, 10736, 1, 0, 0, 0, 1432, 10742, 1, 0, 0, 0, 1434, 10750, - 1, 0, 0, 0, 1436, 10761, 1, 0, 0, 0, 1438, 10763, 1, 0, 0, 0, 1440, 10765, - 1, 0, 0, 0, 1442, 10823, 1, 0, 0, 0, 1444, 10825, 1, 0, 0, 0, 1446, 10827, - 1, 0, 0, 0, 1448, 10829, 1, 0, 0, 0, 1450, 10831, 1, 0, 0, 0, 1452, 10839, - 1, 0, 0, 0, 1454, 10862, 1, 0, 0, 0, 1456, 10864, 1, 0, 0, 0, 1458, 10870, - 1, 0, 0, 0, 1460, 10872, 1, 0, 0, 0, 1462, 10874, 1, 0, 0, 0, 1464, 10885, - 1, 0, 0, 0, 1466, 10893, 1, 0, 0, 0, 1468, 10896, 1, 0, 0, 0, 1470, 10900, - 1, 0, 0, 0, 1472, 10907, 1, 0, 0, 0, 1474, 10909, 1, 0, 0, 0, 1476, 10943, - 1, 0, 0, 0, 1478, 10945, 1, 0, 0, 0, 1480, 10947, 1, 0, 0, 0, 1482, 10951, - 1, 0, 0, 0, 1484, 10959, 1, 0, 0, 0, 1486, 10962, 1, 0, 0, 0, 1488, 10966, - 1, 0, 0, 0, 1490, 10968, 1, 0, 0, 0, 1492, 10970, 1, 0, 0, 0, 1494, 10972, - 1, 0, 0, 0, 1496, 10974, 1, 0, 0, 0, 1498, 10977, 1, 0, 0, 0, 1500, 10980, - 1, 0, 0, 0, 1502, 10985, 1, 0, 0, 0, 1504, 10987, 1, 0, 0, 0, 1506, 10992, - 1, 0, 0, 0, 1508, 11022, 1, 0, 0, 0, 1510, 11024, 1, 0, 0, 0, 1512, 11046, - 1, 0, 0, 0, 1514, 11048, 1, 0, 0, 0, 1516, 11050, 1, 0, 0, 0, 1518, 11055, - 1, 0, 0, 0, 1520, 11063, 1, 0, 0, 0, 1522, 11065, 1, 0, 0, 0, 1524, 11073, - 1, 0, 0, 0, 1526, 11077, 1, 0, 0, 0, 1528, 11079, 1, 0, 0, 0, 1530, 11083, - 1, 0, 0, 0, 1532, 11094, 1, 0, 0, 0, 1534, 11113, 1, 0, 0, 0, 1536, 11116, - 1, 0, 0, 0, 1538, 11119, 1, 0, 0, 0, 1540, 11131, 1, 0, 0, 0, 1542, 11134, - 1, 0, 0, 0, 1544, 11138, 1, 0, 0, 0, 1546, 11143, 1, 0, 0, 0, 1548, 11147, - 1, 0, 0, 0, 1550, 11152, 1, 0, 0, 0, 1552, 11159, 1, 0, 0, 0, 1554, 11165, - 1, 0, 0, 0, 1556, 11189, 1, 0, 0, 0, 1558, 11192, 1, 0, 0, 0, 1560, 11203, - 1, 0, 0, 0, 1562, 11205, 1, 0, 0, 0, 1564, 11208, 1, 0, 0, 0, 1566, 11211, - 1, 0, 0, 0, 1568, 11223, 1, 0, 0, 0, 1570, 11226, 1, 0, 0, 0, 1572, 11235, - 1, 0, 0, 0, 1574, 11237, 1, 0, 0, 0, 1576, 11256, 1, 0, 0, 0, 1578, 11301, - 1, 0, 0, 0, 1580, 11303, 1, 0, 0, 0, 1582, 11307, 1, 0, 0, 0, 1584, 11311, - 1, 0, 0, 0, 1586, 11314, 1, 0, 0, 0, 1588, 11318, 1, 0, 0, 0, 1590, 11326, - 1, 0, 0, 0, 1592, 11333, 1, 0, 0, 0, 1594, 11336, 1, 0, 0, 0, 1596, 11345, - 1, 0, 0, 0, 1598, 11348, 1, 0, 0, 0, 1600, 11367, 1, 0, 0, 0, 1602, 11370, - 1, 0, 0, 0, 1604, 11378, 1, 0, 0, 0, 1606, 11384, 1, 0, 0, 0, 1608, 11414, - 1, 0, 0, 0, 1610, 11416, 1, 0, 0, 0, 1612, 11424, 1, 0, 0, 0, 1614, 11428, - 1, 0, 0, 0, 1616, 11432, 1, 0, 0, 0, 1618, 11434, 1, 0, 0, 0, 1620, 11446, - 1, 0, 0, 0, 1622, 11448, 1, 0, 0, 0, 1624, 11465, 1, 0, 0, 0, 1626, 11467, - 1, 0, 0, 0, 1628, 11474, 1, 0, 0, 0, 1630, 11478, 1, 0, 0, 0, 1632, 11481, - 1, 0, 0, 0, 1634, 11487, 1, 0, 0, 0, 1636, 11493, 1, 0, 0, 0, 1638, 11511, - 1, 0, 0, 0, 1640, 11515, 1, 0, 0, 0, 1642, 11517, 1, 0, 0, 0, 1644, 11521, - 1, 0, 0, 0, 1646, 11525, 1, 0, 0, 0, 1648, 11530, 1, 0, 0, 0, 1650, 11541, - 1, 0, 0, 0, 1652, 11543, 1, 0, 0, 0, 1654, 11545, 1, 0, 0, 0, 1656, 11547, - 1, 0, 0, 0, 1658, 11549, 1, 0, 0, 0, 1660, 11554, 1, 0, 0, 0, 1662, 11556, - 1, 0, 0, 0, 1664, 11559, 1, 0, 0, 0, 1666, 11586, 1, 0, 0, 0, 1668, 11588, - 1, 0, 0, 0, 1670, 11590, 1, 0, 0, 0, 1672, 11592, 1, 0, 0, 0, 1674, 11594, - 1, 0, 0, 0, 1676, 11598, 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, 8896, 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, 8896, 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, 8896, 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, 8896, 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, 8896, 1, 0, 0, 0, 8871, - 8872, 5, 2, 0, 0, 8872, 8889, 3, 1066, 533, 0, 8873, 8874, 5, 129, 0, 0, - 8874, 8875, 5, 137, 0, 0, 8875, 8890, 3, 1066, 533, 0, 8876, 8878, 5, 140, - 0, 0, 8877, 8879, 3, 1078, 539, 0, 8878, 8877, 1, 0, 0, 0, 8878, 8879, - 1, 0, 0, 0, 8879, 8880, 1, 0, 0, 0, 8880, 8881, 5, 137, 0, 0, 8881, 8890, - 3, 1066, 533, 0, 8882, 8884, 3, 1078, 539, 0, 8883, 8882, 1, 0, 0, 0, 8883, - 8884, 1, 0, 0, 0, 8884, 8885, 1, 0, 0, 0, 8885, 8886, 5, 137, 0, 0, 8886, - 8887, 3, 1066, 533, 0, 8887, 8888, 3, 1080, 540, 0, 8888, 8890, 1, 0, 0, - 0, 8889, 8873, 1, 0, 0, 0, 8889, 8876, 1, 0, 0, 0, 8889, 8883, 1, 0, 0, - 0, 8889, 8890, 1, 0, 0, 0, 8890, 8891, 1, 0, 0, 0, 8891, 8893, 5, 3, 0, - 0, 8892, 8894, 3, 1072, 536, 0, 8893, 8892, 1, 0, 0, 0, 8893, 8894, 1, - 0, 0, 0, 8894, 8896, 1, 0, 0, 0, 8895, 8837, 1, 0, 0, 0, 8895, 8844, 1, - 0, 0, 0, 8895, 8848, 1, 0, 0, 0, 8895, 8852, 1, 0, 0, 0, 8895, 8856, 1, - 0, 0, 0, 8895, 8871, 1, 0, 0, 0, 8896, 8900, 1, 0, 0, 0, 8897, 8899, 3, - 1068, 534, 0, 8898, 8897, 1, 0, 0, 0, 8899, 8902, 1, 0, 0, 0, 8900, 8898, - 1, 0, 0, 0, 8900, 8901, 1, 0, 0, 0, 8901, 1067, 1, 0, 0, 0, 8902, 8900, - 1, 0, 0, 0, 8903, 8905, 3, 1078, 539, 0, 8904, 8903, 1, 0, 0, 0, 8904, - 8905, 1, 0, 0, 0, 8905, 8906, 1, 0, 0, 0, 8906, 8907, 5, 137, 0, 0, 8907, - 8908, 3, 1066, 533, 0, 8908, 8909, 3, 1080, 540, 0, 8909, 8920, 1, 0, 0, - 0, 8910, 8911, 5, 129, 0, 0, 8911, 8912, 5, 137, 0, 0, 8912, 8920, 3, 1066, - 533, 0, 8913, 8915, 5, 140, 0, 0, 8914, 8916, 3, 1078, 539, 0, 8915, 8914, - 1, 0, 0, 0, 8915, 8916, 1, 0, 0, 0, 8916, 8917, 1, 0, 0, 0, 8917, 8918, - 5, 137, 0, 0, 8918, 8920, 3, 1066, 533, 0, 8919, 8904, 1, 0, 0, 0, 8919, - 8910, 1, 0, 0, 0, 8919, 8913, 1, 0, 0, 0, 8920, 1069, 1, 0, 0, 0, 8921, - 8923, 5, 36, 0, 0, 8922, 8921, 1, 0, 0, 0, 8922, 8923, 1, 0, 0, 0, 8923, - 8924, 1, 0, 0, 0, 8924, 8929, 3, 1426, 713, 0, 8925, 8926, 5, 2, 0, 0, - 8926, 8927, 3, 1392, 696, 0, 8927, 8928, 5, 3, 0, 0, 8928, 8930, 1, 0, - 0, 0, 8929, 8925, 1, 0, 0, 0, 8929, 8930, 1, 0, 0, 0, 8930, 1071, 1, 0, - 0, 0, 8931, 8932, 3, 1074, 537, 0, 8932, 1073, 1, 0, 0, 0, 8933, 8935, - 5, 36, 0, 0, 8934, 8933, 1, 0, 0, 0, 8934, 8935, 1, 0, 0, 0, 8935, 8936, - 1, 0, 0, 0, 8936, 8941, 3, 1428, 714, 0, 8937, 8938, 5, 2, 0, 0, 8938, - 8939, 3, 1392, 696, 0, 8939, 8940, 5, 3, 0, 0, 8940, 8942, 1, 0, 0, 0, - 8941, 8937, 1, 0, 0, 0, 8941, 8942, 1, 0, 0, 0, 8942, 1075, 1, 0, 0, 0, - 8943, 8956, 3, 1070, 535, 0, 8944, 8946, 5, 36, 0, 0, 8945, 8947, 3, 1426, - 713, 0, 8946, 8945, 1, 0, 0, 0, 8946, 8947, 1, 0, 0, 0, 8947, 8950, 1, - 0, 0, 0, 8948, 8950, 3, 1426, 713, 0, 8949, 8944, 1, 0, 0, 0, 8949, 8948, - 1, 0, 0, 0, 8950, 8951, 1, 0, 0, 0, 8951, 8952, 5, 2, 0, 0, 8952, 8953, - 3, 1108, 554, 0, 8953, 8954, 5, 3, 0, 0, 8954, 8956, 1, 0, 0, 0, 8955, - 8943, 1, 0, 0, 0, 8955, 8949, 1, 0, 0, 0, 8956, 1077, 1, 0, 0, 0, 8957, - 8959, 7, 46, 0, 0, 8958, 8960, 5, 142, 0, 0, 8959, 8958, 1, 0, 0, 0, 8959, - 8960, 1, 0, 0, 0, 8960, 1079, 1, 0, 0, 0, 8961, 8962, 5, 100, 0, 0, 8962, - 8963, 5, 2, 0, 0, 8963, 8964, 3, 1392, 696, 0, 8964, 8965, 5, 3, 0, 0, - 8965, 8969, 1, 0, 0, 0, 8966, 8967, 5, 80, 0, 0, 8967, 8969, 3, 1170, 585, - 0, 8968, 8961, 1, 0, 0, 0, 8968, 8966, 1, 0, 0, 0, 8969, 1081, 1, 0, 0, - 0, 8970, 8972, 3, 1390, 695, 0, 8971, 8973, 5, 9, 0, 0, 8972, 8971, 1, - 0, 0, 0, 8972, 8973, 1, 0, 0, 0, 8973, 8983, 1, 0, 0, 0, 8974, 8980, 5, - 81, 0, 0, 8975, 8981, 3, 1390, 695, 0, 8976, 8977, 5, 2, 0, 0, 8977, 8978, - 3, 1390, 695, 0, 8978, 8979, 5, 3, 0, 0, 8979, 8981, 1, 0, 0, 0, 8980, - 8975, 1, 0, 0, 0, 8980, 8976, 1, 0, 0, 0, 8981, 8983, 1, 0, 0, 0, 8982, - 8970, 1, 0, 0, 0, 8982, 8974, 1, 0, 0, 0, 8983, 1083, 1, 0, 0, 0, 8984, - 8989, 3, 1082, 541, 0, 8985, 8986, 5, 6, 0, 0, 8986, 8988, 3, 1082, 541, - 0, 8987, 8985, 1, 0, 0, 0, 8988, 8991, 1, 0, 0, 0, 8989, 8987, 1, 0, 0, - 0, 8989, 8990, 1, 0, 0, 0, 8990, 1085, 1, 0, 0, 0, 8991, 8989, 1, 0, 0, - 0, 8992, 8997, 3, 1082, 541, 0, 8993, 8995, 5, 36, 0, 0, 8994, 8993, 1, - 0, 0, 0, 8994, 8995, 1, 0, 0, 0, 8995, 8996, 1, 0, 0, 0, 8996, 8998, 3, - 1426, 713, 0, 8997, 8994, 1, 0, 0, 0, 8997, 8998, 1, 0, 0, 0, 8998, 1087, - 1, 0, 0, 0, 8999, 9000, 5, 493, 0, 0, 9000, 9001, 3, 1400, 700, 0, 9001, - 9002, 5, 2, 0, 0, 9002, 9003, 3, 1332, 666, 0, 9003, 9005, 5, 3, 0, 0, - 9004, 9006, 3, 1090, 545, 0, 9005, 9004, 1, 0, 0, 0, 9005, 9006, 1, 0, - 0, 0, 9006, 1089, 1, 0, 0, 0, 9007, 9008, 5, 322, 0, 0, 9008, 9009, 5, - 2, 0, 0, 9009, 9010, 3, 1170, 585, 0, 9010, 9011, 5, 3, 0, 0, 9011, 1091, - 1, 0, 0, 0, 9012, 9014, 3, 1222, 611, 0, 9013, 9015, 3, 1100, 550, 0, 9014, - 9013, 1, 0, 0, 0, 9014, 9015, 1, 0, 0, 0, 9015, 9025, 1, 0, 0, 0, 9016, - 9017, 5, 332, 0, 0, 9017, 9018, 5, 64, 0, 0, 9018, 9019, 5, 2, 0, 0, 9019, - 9020, 3, 1096, 548, 0, 9020, 9022, 5, 3, 0, 0, 9021, 9023, 3, 1100, 550, - 0, 9022, 9021, 1, 0, 0, 0, 9022, 9023, 1, 0, 0, 0, 9023, 9025, 1, 0, 0, - 0, 9024, 9012, 1, 0, 0, 0, 9024, 9016, 1, 0, 0, 0, 9025, 1093, 1, 0, 0, - 0, 9026, 9028, 3, 1222, 611, 0, 9027, 9029, 3, 1098, 549, 0, 9028, 9027, - 1, 0, 0, 0, 9028, 9029, 1, 0, 0, 0, 9029, 1095, 1, 0, 0, 0, 9030, 9035, - 3, 1094, 547, 0, 9031, 9032, 5, 6, 0, 0, 9032, 9034, 3, 1094, 547, 0, 9033, - 9031, 1, 0, 0, 0, 9034, 9037, 1, 0, 0, 0, 9035, 9033, 1, 0, 0, 0, 9035, - 9036, 1, 0, 0, 0, 9036, 1097, 1, 0, 0, 0, 9037, 9035, 1, 0, 0, 0, 9038, - 9039, 5, 36, 0, 0, 9039, 9040, 5, 2, 0, 0, 9040, 9041, 3, 1108, 554, 0, - 9041, 9042, 5, 3, 0, 0, 9042, 1099, 1, 0, 0, 0, 9043, 9044, 5, 105, 0, - 0, 9044, 9045, 5, 494, 0, 0, 9045, 1101, 1, 0, 0, 0, 9046, 9047, 5, 103, - 0, 0, 9047, 9048, 3, 1170, 585, 0, 9048, 1103, 1, 0, 0, 0, 9049, 9054, - 5, 103, 0, 0, 9050, 9051, 5, 455, 0, 0, 9051, 9052, 5, 287, 0, 0, 9052, - 9055, 3, 962, 481, 0, 9053, 9055, 3, 1170, 585, 0, 9054, 9050, 1, 0, 0, - 0, 9054, 9053, 1, 0, 0, 0, 9055, 1105, 1, 0, 0, 0, 9056, 9057, 3, 1108, - 554, 0, 9057, 1107, 1, 0, 0, 0, 9058, 9063, 3, 1110, 555, 0, 9059, 9060, - 5, 6, 0, 0, 9060, 9062, 3, 1110, 555, 0, 9061, 9059, 1, 0, 0, 0, 9062, - 9065, 1, 0, 0, 0, 9063, 9061, 1, 0, 0, 0, 9063, 9064, 1, 0, 0, 0, 9064, - 1109, 1, 0, 0, 0, 9065, 9063, 1, 0, 0, 0, 9066, 9067, 3, 1426, 713, 0, - 9067, 9069, 3, 1126, 563, 0, 9068, 9070, 3, 110, 55, 0, 9069, 9068, 1, - 0, 0, 0, 9069, 9070, 1, 0, 0, 0, 9070, 1111, 1, 0, 0, 0, 9071, 9072, 5, - 495, 0, 0, 9072, 9088, 5, 2, 0, 0, 9073, 9074, 3, 1214, 607, 0, 9074, 9075, - 3, 1284, 642, 0, 9075, 9076, 5, 496, 0, 0, 9076, 9077, 3, 1114, 557, 0, - 9077, 9089, 1, 0, 0, 0, 9078, 9079, 5, 497, 0, 0, 9079, 9080, 5, 2, 0, - 0, 9080, 9081, 3, 1122, 561, 0, 9081, 9082, 5, 3, 0, 0, 9082, 9083, 5, - 6, 0, 0, 9083, 9084, 3, 1214, 607, 0, 9084, 9085, 3, 1284, 642, 0, 9085, - 9086, 5, 496, 0, 0, 9086, 9087, 3, 1114, 557, 0, 9087, 9089, 1, 0, 0, 0, - 9088, 9073, 1, 0, 0, 0, 9088, 9078, 1, 0, 0, 0, 9089, 9090, 1, 0, 0, 0, - 9090, 9091, 5, 3, 0, 0, 9091, 1113, 1, 0, 0, 0, 9092, 9097, 3, 1116, 558, - 0, 9093, 9094, 5, 6, 0, 0, 9094, 9096, 3, 1116, 558, 0, 9095, 9093, 1, - 0, 0, 0, 9096, 9099, 1, 0, 0, 0, 9097, 9095, 1, 0, 0, 0, 9097, 9098, 1, - 0, 0, 0, 9098, 1115, 1, 0, 0, 0, 9099, 9097, 1, 0, 0, 0, 9100, 9107, 3, - 1426, 713, 0, 9101, 9103, 3, 1126, 563, 0, 9102, 9104, 3, 1118, 559, 0, - 9103, 9102, 1, 0, 0, 0, 9103, 9104, 1, 0, 0, 0, 9104, 9108, 1, 0, 0, 0, - 9105, 9106, 5, 62, 0, 0, 9106, 9108, 5, 494, 0, 0, 9107, 9101, 1, 0, 0, - 0, 9107, 9105, 1, 0, 0, 0, 9108, 1117, 1, 0, 0, 0, 9109, 9111, 3, 1120, - 560, 0, 9110, 9109, 1, 0, 0, 0, 9111, 9112, 1, 0, 0, 0, 9112, 9110, 1, - 0, 0, 0, 9112, 9113, 1, 0, 0, 0, 9113, 1119, 1, 0, 0, 0, 9114, 9115, 5, - 53, 0, 0, 9115, 9123, 3, 1170, 585, 0, 9116, 9117, 3, 1436, 718, 0, 9117, - 9118, 3, 1170, 585, 0, 9118, 9123, 1, 0, 0, 0, 9119, 9120, 5, 77, 0, 0, - 9120, 9123, 5, 78, 0, 0, 9121, 9123, 5, 78, 0, 0, 9122, 9114, 1, 0, 0, - 0, 9122, 9116, 1, 0, 0, 0, 9122, 9119, 1, 0, 0, 0, 9122, 9121, 1, 0, 0, - 0, 9123, 1121, 1, 0, 0, 0, 9124, 9129, 3, 1124, 562, 0, 9125, 9126, 5, - 6, 0, 0, 9126, 9128, 3, 1124, 562, 0, 9127, 9125, 1, 0, 0, 0, 9128, 9131, - 1, 0, 0, 0, 9129, 9127, 1, 0, 0, 0, 9129, 9130, 1, 0, 0, 0, 9130, 1123, - 1, 0, 0, 0, 9131, 9129, 1, 0, 0, 0, 9132, 9133, 3, 1212, 606, 0, 9133, - 9134, 5, 36, 0, 0, 9134, 9135, 3, 1434, 717, 0, 9135, 9139, 1, 0, 0, 0, - 9136, 9137, 5, 53, 0, 0, 9137, 9139, 3, 1212, 606, 0, 9138, 9132, 1, 0, - 0, 0, 9138, 9136, 1, 0, 0, 0, 9139, 1125, 1, 0, 0, 0, 9140, 9142, 5, 429, - 0, 0, 9141, 9140, 1, 0, 0, 0, 9141, 9142, 1, 0, 0, 0, 9142, 9143, 1, 0, - 0, 0, 9143, 9152, 3, 1130, 565, 0, 9144, 9153, 3, 1128, 564, 0, 9145, 9150, - 5, 35, 0, 0, 9146, 9147, 5, 4, 0, 0, 9147, 9148, 3, 1410, 705, 0, 9148, - 9149, 5, 5, 0, 0, 9149, 9151, 1, 0, 0, 0, 9150, 9146, 1, 0, 0, 0, 9150, - 9151, 1, 0, 0, 0, 9151, 9153, 1, 0, 0, 0, 9152, 9144, 1, 0, 0, 0, 9152, - 9145, 1, 0, 0, 0, 9153, 9159, 1, 0, 0, 0, 9154, 9155, 3, 1390, 695, 0, - 9155, 9156, 5, 27, 0, 0, 9156, 9157, 7, 47, 0, 0, 9157, 9159, 1, 0, 0, - 0, 9158, 9141, 1, 0, 0, 0, 9158, 9154, 1, 0, 0, 0, 9159, 1127, 1, 0, 0, - 0, 9160, 9162, 5, 4, 0, 0, 9161, 9163, 3, 1410, 705, 0, 9162, 9161, 1, - 0, 0, 0, 9162, 9163, 1, 0, 0, 0, 9163, 9164, 1, 0, 0, 0, 9164, 9166, 5, - 5, 0, 0, 9165, 9160, 1, 0, 0, 0, 9166, 9169, 1, 0, 0, 0, 9167, 9165, 1, - 0, 0, 0, 9167, 9168, 1, 0, 0, 0, 9168, 1129, 1, 0, 0, 0, 9169, 9167, 1, - 0, 0, 0, 9170, 9186, 3, 1134, 567, 0, 9171, 9186, 3, 1138, 569, 0, 9172, - 9186, 3, 1142, 571, 0, 9173, 9186, 3, 1150, 575, 0, 9174, 9186, 3, 1158, - 579, 0, 9175, 9183, 3, 1160, 580, 0, 9176, 9178, 3, 1164, 582, 0, 9177, - 9176, 1, 0, 0, 0, 9177, 9178, 1, 0, 0, 0, 9178, 9184, 1, 0, 0, 0, 9179, - 9180, 5, 2, 0, 0, 9180, 9181, 3, 1410, 705, 0, 9181, 9182, 5, 3, 0, 0, - 9182, 9184, 1, 0, 0, 0, 9183, 9177, 1, 0, 0, 0, 9183, 9179, 1, 0, 0, 0, - 9184, 9186, 1, 0, 0, 0, 9185, 9170, 1, 0, 0, 0, 9185, 9171, 1, 0, 0, 0, - 9185, 9172, 1, 0, 0, 0, 9185, 9173, 1, 0, 0, 0, 9185, 9174, 1, 0, 0, 0, - 9185, 9175, 1, 0, 0, 0, 9186, 1131, 1, 0, 0, 0, 9187, 9192, 3, 1138, 569, - 0, 9188, 9192, 3, 1144, 572, 0, 9189, 9192, 3, 1152, 576, 0, 9190, 9192, - 3, 1158, 579, 0, 9191, 9187, 1, 0, 0, 0, 9191, 9188, 1, 0, 0, 0, 9191, - 9189, 1, 0, 0, 0, 9191, 9190, 1, 0, 0, 0, 9192, 1133, 1, 0, 0, 0, 9193, - 9198, 3, 1448, 724, 0, 9194, 9198, 3, 1430, 715, 0, 9195, 9198, 5, 138, - 0, 0, 9196, 9198, 5, 145, 0, 0, 9197, 9193, 1, 0, 0, 0, 9197, 9194, 1, - 0, 0, 0, 9197, 9195, 1, 0, 0, 0, 9197, 9196, 1, 0, 0, 0, 9198, 9200, 1, - 0, 0, 0, 9199, 9201, 3, 528, 264, 0, 9200, 9199, 1, 0, 0, 0, 9200, 9201, - 1, 0, 0, 0, 9201, 9203, 1, 0, 0, 0, 9202, 9204, 3, 1136, 568, 0, 9203, - 9202, 1, 0, 0, 0, 9203, 9204, 1, 0, 0, 0, 9204, 1135, 1, 0, 0, 0, 9205, - 9206, 5, 2, 0, 0, 9206, 9207, 3, 1332, 666, 0, 9207, 9208, 5, 3, 0, 0, - 9208, 1137, 1, 0, 0, 0, 9209, 9234, 5, 414, 0, 0, 9210, 9234, 5, 415, 0, - 0, 9211, 9234, 5, 430, 0, 0, 9212, 9234, 5, 401, 0, 0, 9213, 9234, 5, 427, - 0, 0, 9214, 9216, 5, 411, 0, 0, 9215, 9217, 3, 1140, 570, 0, 9216, 9215, - 1, 0, 0, 0, 9216, 9217, 1, 0, 0, 0, 9217, 9234, 1, 0, 0, 0, 9218, 9219, - 5, 209, 0, 0, 9219, 9234, 5, 426, 0, 0, 9220, 9222, 5, 408, 0, 0, 9221, - 9223, 3, 1136, 568, 0, 9222, 9221, 1, 0, 0, 0, 9222, 9223, 1, 0, 0, 0, - 9223, 9234, 1, 0, 0, 0, 9224, 9226, 5, 407, 0, 0, 9225, 9227, 3, 1136, - 568, 0, 9226, 9225, 1, 0, 0, 0, 9226, 9227, 1, 0, 0, 0, 9227, 9234, 1, - 0, 0, 0, 9228, 9230, 5, 422, 0, 0, 9229, 9231, 3, 1136, 568, 0, 9230, 9229, - 1, 0, 0, 0, 9230, 9231, 1, 0, 0, 0, 9231, 9234, 1, 0, 0, 0, 9232, 9234, - 5, 403, 0, 0, 9233, 9209, 1, 0, 0, 0, 9233, 9210, 1, 0, 0, 0, 9233, 9211, - 1, 0, 0, 0, 9233, 9212, 1, 0, 0, 0, 9233, 9213, 1, 0, 0, 0, 9233, 9214, - 1, 0, 0, 0, 9233, 9218, 1, 0, 0, 0, 9233, 9220, 1, 0, 0, 0, 9233, 9224, - 1, 0, 0, 0, 9233, 9228, 1, 0, 0, 0, 9233, 9232, 1, 0, 0, 0, 9234, 1139, - 1, 0, 0, 0, 9235, 9236, 5, 2, 0, 0, 9236, 9237, 3, 1410, 705, 0, 9237, - 9238, 5, 3, 0, 0, 9238, 1141, 1, 0, 0, 0, 9239, 9242, 3, 1146, 573, 0, - 9240, 9242, 3, 1148, 574, 0, 9241, 9239, 1, 0, 0, 0, 9241, 9240, 1, 0, - 0, 0, 9242, 1143, 1, 0, 0, 0, 9243, 9246, 3, 1146, 573, 0, 9244, 9246, - 3, 1148, 574, 0, 9245, 9243, 1, 0, 0, 0, 9245, 9244, 1, 0, 0, 0, 9246, - 1145, 1, 0, 0, 0, 9247, 9249, 5, 402, 0, 0, 9248, 9250, 3, 1156, 578, 0, - 9249, 9248, 1, 0, 0, 0, 9249, 9250, 1, 0, 0, 0, 9250, 9251, 1, 0, 0, 0, - 9251, 9252, 5, 2, 0, 0, 9252, 9253, 3, 1332, 666, 0, 9253, 9254, 5, 3, - 0, 0, 9254, 1147, 1, 0, 0, 0, 9255, 9257, 5, 402, 0, 0, 9256, 9258, 3, - 1156, 578, 0, 9257, 9256, 1, 0, 0, 0, 9257, 9258, 1, 0, 0, 0, 9258, 1149, - 1, 0, 0, 0, 9259, 9264, 3, 1154, 577, 0, 9260, 9261, 5, 2, 0, 0, 9261, - 9262, 3, 1410, 705, 0, 9262, 9263, 5, 3, 0, 0, 9263, 9265, 1, 0, 0, 0, - 9264, 9260, 1, 0, 0, 0, 9264, 9265, 1, 0, 0, 0, 9265, 1151, 1, 0, 0, 0, - 9266, 9271, 3, 1154, 577, 0, 9267, 9268, 5, 2, 0, 0, 9268, 9269, 3, 1410, - 705, 0, 9269, 9270, 5, 3, 0, 0, 9270, 9272, 1, 0, 0, 0, 9271, 9267, 1, - 0, 0, 0, 9271, 9272, 1, 0, 0, 0, 9272, 1153, 1, 0, 0, 0, 9273, 9275, 7, - 48, 0, 0, 9274, 9276, 3, 1156, 578, 0, 9275, 9274, 1, 0, 0, 0, 9275, 9276, - 1, 0, 0, 0, 9276, 9284, 1, 0, 0, 0, 9277, 9284, 5, 437, 0, 0, 9278, 9279, - 5, 418, 0, 0, 9279, 9281, 7, 49, 0, 0, 9280, 9282, 3, 1156, 578, 0, 9281, - 9280, 1, 0, 0, 0, 9281, 9282, 1, 0, 0, 0, 9282, 9284, 1, 0, 0, 0, 9283, - 9273, 1, 0, 0, 0, 9283, 9277, 1, 0, 0, 0, 9283, 9278, 1, 0, 0, 0, 9284, - 1155, 1, 0, 0, 0, 9285, 9286, 5, 386, 0, 0, 9286, 1157, 1, 0, 0, 0, 9287, - 9292, 7, 50, 0, 0, 9288, 9289, 5, 2, 0, 0, 9289, 9290, 3, 1410, 705, 0, - 9290, 9291, 5, 3, 0, 0, 9291, 9293, 1, 0, 0, 0, 9292, 9288, 1, 0, 0, 0, - 9292, 9293, 1, 0, 0, 0, 9293, 9295, 1, 0, 0, 0, 9294, 9296, 3, 1162, 581, - 0, 9295, 9294, 1, 0, 0, 0, 9295, 9296, 1, 0, 0, 0, 9296, 1159, 1, 0, 0, - 0, 9297, 9298, 5, 416, 0, 0, 9298, 1161, 1, 0, 0, 0, 9299, 9300, 5, 105, - 0, 0, 9300, 9301, 5, 432, 0, 0, 9301, 9306, 5, 398, 0, 0, 9302, 9303, 5, - 391, 0, 0, 9303, 9304, 5, 432, 0, 0, 9304, 9306, 5, 398, 0, 0, 9305, 9299, - 1, 0, 0, 0, 9305, 9302, 1, 0, 0, 0, 9306, 1163, 1, 0, 0, 0, 9307, 9333, - 5, 396, 0, 0, 9308, 9333, 5, 276, 0, 0, 9309, 9333, 5, 195, 0, 0, 9310, - 9333, 5, 237, 0, 0, 9311, 9333, 5, 273, 0, 0, 9312, 9333, 3, 1166, 583, - 0, 9313, 9314, 5, 396, 0, 0, 9314, 9315, 5, 94, 0, 0, 9315, 9333, 5, 276, - 0, 0, 9316, 9317, 5, 195, 0, 0, 9317, 9321, 5, 94, 0, 0, 9318, 9322, 5, - 237, 0, 0, 9319, 9322, 5, 273, 0, 0, 9320, 9322, 3, 1166, 583, 0, 9321, - 9318, 1, 0, 0, 0, 9321, 9319, 1, 0, 0, 0, 9321, 9320, 1, 0, 0, 0, 9322, - 9333, 1, 0, 0, 0, 9323, 9324, 5, 237, 0, 0, 9324, 9327, 5, 94, 0, 0, 9325, - 9328, 5, 273, 0, 0, 9326, 9328, 3, 1166, 583, 0, 9327, 9325, 1, 0, 0, 0, - 9327, 9326, 1, 0, 0, 0, 9328, 9333, 1, 0, 0, 0, 9329, 9330, 5, 273, 0, - 0, 9330, 9331, 5, 94, 0, 0, 9331, 9333, 3, 1166, 583, 0, 9332, 9307, 1, - 0, 0, 0, 9332, 9308, 1, 0, 0, 0, 9332, 9309, 1, 0, 0, 0, 9332, 9310, 1, - 0, 0, 0, 9332, 9311, 1, 0, 0, 0, 9332, 9312, 1, 0, 0, 0, 9332, 9313, 1, - 0, 0, 0, 9332, 9316, 1, 0, 0, 0, 9332, 9323, 1, 0, 0, 0, 9332, 9329, 1, - 0, 0, 0, 9333, 1165, 1, 0, 0, 0, 9334, 9339, 5, 338, 0, 0, 9335, 9336, - 5, 2, 0, 0, 9336, 9337, 3, 1410, 705, 0, 9337, 9338, 5, 3, 0, 0, 9338, - 9340, 1, 0, 0, 0, 9339, 9335, 1, 0, 0, 0, 9339, 9340, 1, 0, 0, 0, 9340, - 1167, 1, 0, 0, 0, 9341, 9342, 5, 216, 0, 0, 9342, 9343, 3, 1170, 585, 0, - 9343, 1169, 1, 0, 0, 0, 9344, 9345, 3, 1172, 586, 0, 9345, 1171, 1, 0, - 0, 0, 9346, 9348, 3, 1174, 587, 0, 9347, 9349, 3, 1326, 663, 0, 9348, 9347, - 1, 0, 0, 0, 9348, 9349, 1, 0, 0, 0, 9349, 1173, 1, 0, 0, 0, 9350, 9355, - 3, 1176, 588, 0, 9351, 9352, 7, 51, 0, 0, 9352, 9354, 3, 1176, 588, 0, - 9353, 9351, 1, 0, 0, 0, 9354, 9357, 1, 0, 0, 0, 9355, 9353, 1, 0, 0, 0, - 9355, 9356, 1, 0, 0, 0, 9356, 1175, 1, 0, 0, 0, 9357, 9355, 1, 0, 0, 0, - 9358, 9363, 3, 1178, 589, 0, 9359, 9360, 5, 82, 0, 0, 9360, 9362, 3, 1178, - 589, 0, 9361, 9359, 1, 0, 0, 0, 9362, 9365, 1, 0, 0, 0, 9363, 9361, 1, - 0, 0, 0, 9363, 9364, 1, 0, 0, 0, 9364, 1177, 1, 0, 0, 0, 9365, 9363, 1, - 0, 0, 0, 9366, 9371, 3, 1180, 590, 0, 9367, 9368, 5, 33, 0, 0, 9368, 9370, - 3, 1180, 590, 0, 9369, 9367, 1, 0, 0, 0, 9370, 9373, 1, 0, 0, 0, 9371, - 9369, 1, 0, 0, 0, 9371, 9372, 1, 0, 0, 0, 9372, 1179, 1, 0, 0, 0, 9373, - 9371, 1, 0, 0, 0, 9374, 9386, 3, 1182, 591, 0, 9375, 9377, 5, 77, 0, 0, - 9376, 9375, 1, 0, 0, 0, 9376, 9377, 1, 0, 0, 0, 9377, 9378, 1, 0, 0, 0, - 9378, 9380, 5, 400, 0, 0, 9379, 9381, 5, 91, 0, 0, 9380, 9379, 1, 0, 0, - 0, 9380, 9381, 1, 0, 0, 0, 9381, 9382, 1, 0, 0, 0, 9382, 9383, 3, 1182, - 591, 0, 9383, 9384, 5, 33, 0, 0, 9384, 9385, 3, 1182, 591, 0, 9385, 9387, - 1, 0, 0, 0, 9386, 9376, 1, 0, 0, 0, 9386, 9387, 1, 0, 0, 0, 9387, 1181, - 1, 0, 0, 0, 9388, 9394, 3, 1184, 592, 0, 9389, 9391, 5, 77, 0, 0, 9390, - 9389, 1, 0, 0, 0, 9390, 9391, 1, 0, 0, 0, 9391, 9392, 1, 0, 0, 0, 9392, - 9393, 5, 68, 0, 0, 9393, 9395, 3, 1358, 679, 0, 9394, 9390, 1, 0, 0, 0, - 9394, 9395, 1, 0, 0, 0, 9395, 1183, 1, 0, 0, 0, 9396, 9398, 5, 77, 0, 0, - 9397, 9396, 1, 0, 0, 0, 9397, 9398, 1, 0, 0, 0, 9398, 9399, 1, 0, 0, 0, - 9399, 9400, 3, 1186, 593, 0, 9400, 1185, 1, 0, 0, 0, 9401, 9403, 3, 1188, - 594, 0, 9402, 9404, 7, 52, 0, 0, 9403, 9402, 1, 0, 0, 0, 9403, 9404, 1, - 0, 0, 0, 9404, 1187, 1, 0, 0, 0, 9405, 9429, 3, 1190, 595, 0, 9406, 9408, - 5, 135, 0, 0, 9407, 9409, 5, 77, 0, 0, 9408, 9407, 1, 0, 0, 0, 9408, 9409, - 1, 0, 0, 0, 9409, 9427, 1, 0, 0, 0, 9410, 9428, 5, 78, 0, 0, 9411, 9428, - 5, 96, 0, 0, 9412, 9428, 5, 60, 0, 0, 9413, 9428, 5, 377, 0, 0, 9414, 9415, - 5, 56, 0, 0, 9415, 9416, 5, 64, 0, 0, 9416, 9428, 3, 1170, 585, 0, 9417, - 9418, 5, 287, 0, 0, 9418, 9419, 5, 2, 0, 0, 9419, 9420, 3, 1338, 669, 0, - 9420, 9421, 5, 3, 0, 0, 9421, 9428, 1, 0, 0, 0, 9422, 9428, 5, 207, 0, - 0, 9423, 9425, 3, 1348, 674, 0, 9424, 9423, 1, 0, 0, 0, 9424, 9425, 1, - 0, 0, 0, 9425, 9426, 1, 0, 0, 0, 9426, 9428, 5, 499, 0, 0, 9427, 9410, - 1, 0, 0, 0, 9427, 9411, 1, 0, 0, 0, 9427, 9412, 1, 0, 0, 0, 9427, 9413, - 1, 0, 0, 0, 9427, 9414, 1, 0, 0, 0, 9427, 9417, 1, 0, 0, 0, 9427, 9422, - 1, 0, 0, 0, 9427, 9424, 1, 0, 0, 0, 9428, 9430, 1, 0, 0, 0, 9429, 9406, - 1, 0, 0, 0, 9429, 9430, 1, 0, 0, 0, 9430, 1189, 1, 0, 0, 0, 9431, 9443, - 3, 1192, 596, 0, 9432, 9433, 7, 53, 0, 0, 9433, 9444, 3, 1192, 596, 0, - 9434, 9435, 3, 1330, 665, 0, 9435, 9441, 3, 1320, 660, 0, 9436, 9442, 3, - 970, 485, 0, 9437, 9438, 5, 2, 0, 0, 9438, 9439, 3, 1170, 585, 0, 9439, - 9440, 5, 3, 0, 0, 9440, 9442, 1, 0, 0, 0, 9441, 9436, 1, 0, 0, 0, 9441, - 9437, 1, 0, 0, 0, 9442, 9444, 1, 0, 0, 0, 9443, 9432, 1, 0, 0, 0, 9443, - 9434, 1, 0, 0, 0, 9443, 9444, 1, 0, 0, 0, 9444, 1191, 1, 0, 0, 0, 9445, - 9459, 3, 1194, 597, 0, 9446, 9448, 5, 77, 0, 0, 9447, 9446, 1, 0, 0, 0, - 9447, 9448, 1, 0, 0, 0, 9448, 9453, 1, 0, 0, 0, 9449, 9454, 5, 139, 0, - 0, 9450, 9454, 5, 133, 0, 0, 9451, 9452, 5, 146, 0, 0, 9452, 9454, 5, 94, - 0, 0, 9453, 9449, 1, 0, 0, 0, 9453, 9450, 1, 0, 0, 0, 9453, 9451, 1, 0, - 0, 0, 9454, 9455, 1, 0, 0, 0, 9455, 9457, 3, 1194, 597, 0, 9456, 9458, - 3, 1168, 584, 0, 9457, 9456, 1, 0, 0, 0, 9457, 9458, 1, 0, 0, 0, 9458, - 9460, 1, 0, 0, 0, 9459, 9447, 1, 0, 0, 0, 9459, 9460, 1, 0, 0, 0, 9460, - 1193, 1, 0, 0, 0, 9461, 9467, 3, 1196, 598, 0, 9462, 9463, 3, 1326, 663, - 0, 9463, 9464, 3, 1196, 598, 0, 9464, 9466, 1, 0, 0, 0, 9465, 9462, 1, - 0, 0, 0, 9466, 9469, 1, 0, 0, 0, 9467, 9465, 1, 0, 0, 0, 9467, 9468, 1, - 0, 0, 0, 9468, 1195, 1, 0, 0, 0, 9469, 9467, 1, 0, 0, 0, 9470, 9472, 3, - 1326, 663, 0, 9471, 9470, 1, 0, 0, 0, 9471, 9472, 1, 0, 0, 0, 9472, 9473, - 1, 0, 0, 0, 9473, 9474, 3, 1198, 599, 0, 9474, 1197, 1, 0, 0, 0, 9475, - 9480, 3, 1200, 600, 0, 9476, 9477, 7, 54, 0, 0, 9477, 9479, 3, 1200, 600, - 0, 9478, 9476, 1, 0, 0, 0, 9479, 9482, 1, 0, 0, 0, 9480, 9478, 1, 0, 0, - 0, 9480, 9481, 1, 0, 0, 0, 9481, 1199, 1, 0, 0, 0, 9482, 9480, 1, 0, 0, - 0, 9483, 9488, 3, 1202, 601, 0, 9484, 9485, 7, 55, 0, 0, 9485, 9487, 3, - 1202, 601, 0, 9486, 9484, 1, 0, 0, 0, 9487, 9490, 1, 0, 0, 0, 9488, 9486, - 1, 0, 0, 0, 9488, 9489, 1, 0, 0, 0, 9489, 1201, 1, 0, 0, 0, 9490, 9488, - 1, 0, 0, 0, 9491, 9494, 3, 1204, 602, 0, 9492, 9493, 5, 15, 0, 0, 9493, - 9495, 3, 1170, 585, 0, 9494, 9492, 1, 0, 0, 0, 9494, 9495, 1, 0, 0, 0, - 9495, 1203, 1, 0, 0, 0, 9496, 9498, 7, 54, 0, 0, 9497, 9496, 1, 0, 0, 0, - 9497, 9498, 1, 0, 0, 0, 9498, 9499, 1, 0, 0, 0, 9499, 9500, 3, 1206, 603, - 0, 9500, 1205, 1, 0, 0, 0, 9501, 9506, 3, 1208, 604, 0, 9502, 9503, 5, - 161, 0, 0, 9503, 9504, 5, 432, 0, 0, 9504, 9505, 5, 398, 0, 0, 9505, 9507, - 3, 1170, 585, 0, 9506, 9502, 1, 0, 0, 0, 9506, 9507, 1, 0, 0, 0, 9507, - 1207, 1, 0, 0, 0, 9508, 9511, 3, 1210, 605, 0, 9509, 9510, 5, 43, 0, 0, - 9510, 9512, 3, 526, 263, 0, 9511, 9509, 1, 0, 0, 0, 9511, 9512, 1, 0, 0, - 0, 9512, 1209, 1, 0, 0, 0, 9513, 9518, 3, 1214, 607, 0, 9514, 9515, 5, - 26, 0, 0, 9515, 9517, 3, 1126, 563, 0, 9516, 9514, 1, 0, 0, 0, 9517, 9520, - 1, 0, 0, 0, 9518, 9516, 1, 0, 0, 0, 9518, 9519, 1, 0, 0, 0, 9519, 1211, - 1, 0, 0, 0, 9520, 9518, 1, 0, 0, 0, 9521, 9522, 6, 606, -1, 0, 9522, 9529, - 3, 1214, 607, 0, 9523, 9524, 7, 54, 0, 0, 9524, 9529, 3, 1212, 606, 9, - 9525, 9526, 3, 1326, 663, 0, 9526, 9527, 3, 1212, 606, 3, 9527, 9529, 1, - 0, 0, 0, 9528, 9521, 1, 0, 0, 0, 9528, 9523, 1, 0, 0, 0, 9528, 9525, 1, - 0, 0, 0, 9529, 9569, 1, 0, 0, 0, 9530, 9531, 10, 8, 0, 0, 9531, 9532, 5, - 15, 0, 0, 9532, 9568, 3, 1212, 606, 9, 9533, 9534, 10, 7, 0, 0, 9534, 9535, - 7, 55, 0, 0, 9535, 9568, 3, 1212, 606, 8, 9536, 9537, 10, 6, 0, 0, 9537, - 9538, 7, 54, 0, 0, 9538, 9568, 3, 1212, 606, 7, 9539, 9540, 10, 5, 0, 0, - 9540, 9541, 3, 1326, 663, 0, 9541, 9542, 3, 1212, 606, 6, 9542, 9568, 1, - 0, 0, 0, 9543, 9544, 10, 4, 0, 0, 9544, 9545, 7, 53, 0, 0, 9545, 9568, - 3, 1212, 606, 5, 9546, 9547, 10, 10, 0, 0, 9547, 9548, 5, 26, 0, 0, 9548, - 9568, 3, 1126, 563, 0, 9549, 9550, 10, 2, 0, 0, 9550, 9568, 3, 1326, 663, - 0, 9551, 9552, 10, 1, 0, 0, 9552, 9554, 5, 135, 0, 0, 9553, 9555, 5, 77, - 0, 0, 9554, 9553, 1, 0, 0, 0, 9554, 9555, 1, 0, 0, 0, 9555, 9565, 1, 0, - 0, 0, 9556, 9557, 5, 56, 0, 0, 9557, 9558, 5, 64, 0, 0, 9558, 9566, 3, - 1212, 606, 0, 9559, 9560, 5, 287, 0, 0, 9560, 9561, 5, 2, 0, 0, 9561, 9562, - 3, 1338, 669, 0, 9562, 9563, 5, 3, 0, 0, 9563, 9566, 1, 0, 0, 0, 9564, - 9566, 5, 207, 0, 0, 9565, 9556, 1, 0, 0, 0, 9565, 9559, 1, 0, 0, 0, 9565, - 9564, 1, 0, 0, 0, 9566, 9568, 1, 0, 0, 0, 9567, 9530, 1, 0, 0, 0, 9567, - 9533, 1, 0, 0, 0, 9567, 9536, 1, 0, 0, 0, 9567, 9539, 1, 0, 0, 0, 9567, - 9543, 1, 0, 0, 0, 9567, 9546, 1, 0, 0, 0, 9567, 9549, 1, 0, 0, 0, 9567, - 9551, 1, 0, 0, 0, 9568, 9571, 1, 0, 0, 0, 9569, 9567, 1, 0, 0, 0, 9569, - 9570, 1, 0, 0, 0, 9570, 1213, 1, 0, 0, 0, 9571, 9569, 1, 0, 0, 0, 9572, - 9573, 5, 409, 0, 0, 9573, 9609, 3, 970, 485, 0, 9574, 9577, 5, 35, 0, 0, - 9575, 9578, 3, 970, 485, 0, 9576, 9578, 3, 1340, 670, 0, 9577, 9575, 1, - 0, 0, 0, 9577, 9576, 1, 0, 0, 0, 9578, 9609, 1, 0, 0, 0, 9579, 9580, 5, - 28, 0, 0, 9580, 9609, 3, 1378, 689, 0, 9581, 9582, 5, 491, 0, 0, 9582, - 9583, 5, 2, 0, 0, 9583, 9584, 3, 1332, 666, 0, 9584, 9585, 5, 3, 0, 0, - 9585, 9609, 1, 0, 0, 0, 9586, 9587, 5, 98, 0, 0, 9587, 9609, 3, 970, 485, - 0, 9588, 9609, 3, 1370, 685, 0, 9589, 9609, 3, 1402, 701, 0, 9590, 9609, - 3, 1216, 608, 0, 9591, 9592, 5, 2, 0, 0, 9592, 9593, 3, 1170, 585, 0, 9593, - 9594, 5, 3, 0, 0, 9594, 9595, 3, 1378, 689, 0, 9595, 9609, 1, 0, 0, 0, - 9596, 9609, 3, 1360, 680, 0, 9597, 9609, 3, 1220, 610, 0, 9598, 9600, 3, - 970, 485, 0, 9599, 9601, 3, 1376, 688, 0, 9600, 9599, 1, 0, 0, 0, 9600, - 9601, 1, 0, 0, 0, 9601, 9609, 1, 0, 0, 0, 9602, 9609, 3, 1316, 658, 0, - 9603, 9609, 3, 1318, 659, 0, 9604, 9605, 3, 1314, 657, 0, 9605, 9606, 5, - 144, 0, 0, 9606, 9607, 3, 1314, 657, 0, 9607, 9609, 1, 0, 0, 0, 9608, 9572, - 1, 0, 0, 0, 9608, 9574, 1, 0, 0, 0, 9608, 9579, 1, 0, 0, 0, 9608, 9581, - 1, 0, 0, 0, 9608, 9586, 1, 0, 0, 0, 9608, 9588, 1, 0, 0, 0, 9608, 9589, - 1, 0, 0, 0, 9608, 9590, 1, 0, 0, 0, 9608, 9591, 1, 0, 0, 0, 9608, 9596, - 1, 0, 0, 0, 9608, 9597, 1, 0, 0, 0, 9608, 9598, 1, 0, 0, 0, 9608, 9602, - 1, 0, 0, 0, 9608, 9603, 1, 0, 0, 0, 9608, 9604, 1, 0, 0, 0, 9609, 1215, - 1, 0, 0, 0, 9610, 9611, 5, 689, 0, 0, 9611, 1217, 1, 0, 0, 0, 9612, 9613, - 3, 1400, 700, 0, 9613, 9635, 5, 2, 0, 0, 9614, 9618, 3, 1334, 667, 0, 9615, - 9616, 5, 6, 0, 0, 9616, 9617, 5, 101, 0, 0, 9617, 9619, 3, 1336, 668, 0, - 9618, 9615, 1, 0, 0, 0, 9618, 9619, 1, 0, 0, 0, 9619, 9621, 1, 0, 0, 0, - 9620, 9622, 3, 1004, 502, 0, 9621, 9620, 1, 0, 0, 0, 9621, 9622, 1, 0, - 0, 0, 9622, 9636, 1, 0, 0, 0, 9623, 9624, 5, 101, 0, 0, 9624, 9626, 3, - 1336, 668, 0, 9625, 9627, 3, 1004, 502, 0, 9626, 9625, 1, 0, 0, 0, 9626, - 9627, 1, 0, 0, 0, 9627, 9636, 1, 0, 0, 0, 9628, 9629, 7, 43, 0, 0, 9629, - 9631, 3, 1334, 667, 0, 9630, 9632, 3, 1004, 502, 0, 9631, 9630, 1, 0, 0, - 0, 9631, 9632, 1, 0, 0, 0, 9632, 9636, 1, 0, 0, 0, 9633, 9636, 5, 9, 0, - 0, 9634, 9636, 1, 0, 0, 0, 9635, 9614, 1, 0, 0, 0, 9635, 9623, 1, 0, 0, - 0, 9635, 9628, 1, 0, 0, 0, 9635, 9633, 1, 0, 0, 0, 9635, 9634, 1, 0, 0, - 0, 9636, 9637, 1, 0, 0, 0, 9637, 9638, 5, 3, 0, 0, 9638, 1219, 1, 0, 0, - 0, 9639, 9641, 3, 1218, 609, 0, 9640, 9642, 3, 1288, 644, 0, 9641, 9640, - 1, 0, 0, 0, 9641, 9642, 1, 0, 0, 0, 9642, 9644, 1, 0, 0, 0, 9643, 9645, - 3, 1290, 645, 0, 9644, 9643, 1, 0, 0, 0, 9644, 9645, 1, 0, 0, 0, 9645, - 9647, 1, 0, 0, 0, 9646, 9648, 3, 1298, 649, 0, 9647, 9646, 1, 0, 0, 0, - 9647, 9648, 1, 0, 0, 0, 9648, 9658, 1, 0, 0, 0, 9649, 9651, 3, 1224, 612, - 0, 9650, 9652, 3, 1290, 645, 0, 9651, 9650, 1, 0, 0, 0, 9651, 9652, 1, - 0, 0, 0, 9652, 9654, 1, 0, 0, 0, 9653, 9655, 3, 1298, 649, 0, 9654, 9653, - 1, 0, 0, 0, 9654, 9655, 1, 0, 0, 0, 9655, 9658, 1, 0, 0, 0, 9656, 9658, - 3, 1230, 615, 0, 9657, 9639, 1, 0, 0, 0, 9657, 9649, 1, 0, 0, 0, 9657, - 9656, 1, 0, 0, 0, 9658, 1221, 1, 0, 0, 0, 9659, 9663, 3, 1218, 609, 0, - 9660, 9663, 3, 1230, 615, 0, 9661, 9663, 3, 1224, 612, 0, 9662, 9659, 1, - 0, 0, 0, 9662, 9660, 1, 0, 0, 0, 9662, 9661, 1, 0, 0, 0, 9663, 1223, 1, - 0, 0, 0, 9664, 9665, 5, 663, 0, 0, 9665, 9666, 5, 2, 0, 0, 9666, 9668, - 3, 1264, 632, 0, 9667, 9669, 3, 1260, 630, 0, 9668, 9667, 1, 0, 0, 0, 9668, - 9669, 1, 0, 0, 0, 9669, 9671, 1, 0, 0, 0, 9670, 9672, 3, 1256, 628, 0, - 9671, 9670, 1, 0, 0, 0, 9671, 9672, 1, 0, 0, 0, 9672, 9674, 1, 0, 0, 0, - 9673, 9675, 3, 1226, 613, 0, 9674, 9673, 1, 0, 0, 0, 9674, 9675, 1, 0, - 0, 0, 9675, 9676, 1, 0, 0, 0, 9676, 9677, 5, 3, 0, 0, 9677, 9693, 1, 0, - 0, 0, 9678, 9679, 5, 662, 0, 0, 9679, 9680, 5, 2, 0, 0, 9680, 9682, 3, - 1266, 633, 0, 9681, 9683, 3, 1228, 614, 0, 9682, 9681, 1, 0, 0, 0, 9682, - 9683, 1, 0, 0, 0, 9683, 9685, 1, 0, 0, 0, 9684, 9686, 3, 1258, 629, 0, - 9685, 9684, 1, 0, 0, 0, 9685, 9686, 1, 0, 0, 0, 9686, 9688, 1, 0, 0, 0, - 9687, 9689, 3, 1226, 613, 0, 9688, 9687, 1, 0, 0, 0, 9688, 9689, 1, 0, - 0, 0, 9689, 9690, 1, 0, 0, 0, 9690, 9691, 5, 3, 0, 0, 9691, 9693, 1, 0, - 0, 0, 9692, 9664, 1, 0, 0, 0, 9692, 9678, 1, 0, 0, 0, 9693, 1225, 1, 0, - 0, 0, 9694, 9695, 5, 87, 0, 0, 9695, 9697, 3, 1126, 563, 0, 9696, 9698, - 3, 1268, 634, 0, 9697, 9696, 1, 0, 0, 0, 9697, 9698, 1, 0, 0, 0, 9698, - 1227, 1, 0, 0, 0, 9699, 9700, 5, 83, 0, 0, 9700, 9701, 5, 166, 0, 0, 9701, - 9702, 3, 1008, 504, 0, 9702, 1229, 1, 0, 0, 0, 9703, 9704, 5, 127, 0, 0, - 9704, 9705, 5, 62, 0, 0, 9705, 9706, 5, 2, 0, 0, 9706, 9707, 3, 1170, 585, - 0, 9707, 9708, 5, 3, 0, 0, 9708, 10013, 1, 0, 0, 0, 9709, 10013, 5, 48, - 0, 0, 9710, 9715, 5, 50, 0, 0, 9711, 9712, 5, 2, 0, 0, 9712, 9713, 3, 1410, - 705, 0, 9713, 9714, 5, 3, 0, 0, 9714, 9716, 1, 0, 0, 0, 9715, 9711, 1, - 0, 0, 0, 9715, 9716, 1, 0, 0, 0, 9716, 10013, 1, 0, 0, 0, 9717, 9722, 5, - 51, 0, 0, 9718, 9719, 5, 2, 0, 0, 9719, 9720, 3, 1410, 705, 0, 9720, 9721, - 5, 3, 0, 0, 9721, 9723, 1, 0, 0, 0, 9722, 9718, 1, 0, 0, 0, 9722, 9723, - 1, 0, 0, 0, 9723, 10013, 1, 0, 0, 0, 9724, 9729, 5, 75, 0, 0, 9725, 9726, - 5, 2, 0, 0, 9726, 9727, 3, 1410, 705, 0, 9727, 9728, 5, 3, 0, 0, 9728, - 9730, 1, 0, 0, 0, 9729, 9725, 1, 0, 0, 0, 9729, 9730, 1, 0, 0, 0, 9730, - 10013, 1, 0, 0, 0, 9731, 9736, 5, 76, 0, 0, 9732, 9733, 5, 2, 0, 0, 9733, - 9734, 3, 1410, 705, 0, 9734, 9735, 5, 3, 0, 0, 9735, 9737, 1, 0, 0, 0, - 9736, 9732, 1, 0, 0, 0, 9736, 9737, 1, 0, 0, 0, 9737, 10013, 1, 0, 0, 0, - 9738, 10013, 5, 49, 0, 0, 9739, 10013, 5, 52, 0, 0, 9740, 10013, 5, 89, - 0, 0, 9741, 10013, 5, 99, 0, 0, 9742, 10013, 5, 47, 0, 0, 9743, 10013, - 5, 130, 0, 0, 9744, 9745, 5, 41, 0, 0, 9745, 9746, 5, 2, 0, 0, 9746, 9747, - 3, 1170, 585, 0, 9747, 9748, 5, 36, 0, 0, 9748, 9749, 3, 1126, 563, 0, - 9749, 9750, 5, 3, 0, 0, 9750, 10013, 1, 0, 0, 0, 9751, 9752, 5, 410, 0, - 0, 9752, 9754, 5, 2, 0, 0, 9753, 9755, 3, 1344, 672, 0, 9754, 9753, 1, - 0, 0, 0, 9754, 9755, 1, 0, 0, 0, 9755, 9756, 1, 0, 0, 0, 9756, 10013, 5, - 3, 0, 0, 9757, 9758, 5, 510, 0, 0, 9758, 9759, 5, 2, 0, 0, 9759, 9762, - 3, 1170, 585, 0, 9760, 9761, 5, 6, 0, 0, 9761, 9763, 3, 1348, 674, 0, 9762, - 9760, 1, 0, 0, 0, 9762, 9763, 1, 0, 0, 0, 9763, 9764, 1, 0, 0, 0, 9764, - 9765, 5, 3, 0, 0, 9765, 10013, 1, 0, 0, 0, 9766, 9767, 5, 423, 0, 0, 9767, - 9768, 5, 2, 0, 0, 9768, 9769, 3, 1350, 675, 0, 9769, 9770, 5, 3, 0, 0, - 9770, 10013, 1, 0, 0, 0, 9771, 9772, 5, 425, 0, 0, 9772, 9774, 5, 2, 0, - 0, 9773, 9775, 3, 1352, 676, 0, 9774, 9773, 1, 0, 0, 0, 9774, 9775, 1, - 0, 0, 0, 9775, 9776, 1, 0, 0, 0, 9776, 10013, 5, 3, 0, 0, 9777, 9778, 5, - 431, 0, 0, 9778, 9779, 5, 2, 0, 0, 9779, 9780, 3, 1354, 677, 0, 9780, 9781, - 5, 3, 0, 0, 9781, 10013, 1, 0, 0, 0, 9782, 9783, 5, 434, 0, 0, 9783, 9784, - 5, 2, 0, 0, 9784, 9785, 3, 1170, 585, 0, 9785, 9786, 5, 36, 0, 0, 9786, - 9787, 3, 1126, 563, 0, 9787, 9788, 5, 3, 0, 0, 9788, 10013, 1, 0, 0, 0, - 9789, 9790, 5, 435, 0, 0, 9790, 9792, 5, 2, 0, 0, 9791, 9793, 7, 56, 0, - 0, 9792, 9791, 1, 0, 0, 0, 9792, 9793, 1, 0, 0, 0, 9793, 9794, 1, 0, 0, - 0, 9794, 9795, 3, 1356, 678, 0, 9795, 9796, 5, 3, 0, 0, 9796, 10013, 1, - 0, 0, 0, 9797, 9798, 5, 421, 0, 0, 9798, 9799, 5, 2, 0, 0, 9799, 9800, - 3, 1170, 585, 0, 9800, 9801, 5, 6, 0, 0, 9801, 9802, 3, 1170, 585, 0, 9802, - 9803, 5, 3, 0, 0, 9803, 10013, 1, 0, 0, 0, 9804, 9805, 5, 406, 0, 0, 9805, - 9806, 5, 2, 0, 0, 9806, 9807, 3, 1332, 666, 0, 9807, 9808, 5, 3, 0, 0, - 9808, 10013, 1, 0, 0, 0, 9809, 9810, 5, 412, 0, 0, 9810, 9811, 5, 2, 0, - 0, 9811, 9812, 3, 1332, 666, 0, 9812, 9813, 5, 3, 0, 0, 9813, 10013, 1, - 0, 0, 0, 9814, 9815, 5, 417, 0, 0, 9815, 9816, 5, 2, 0, 0, 9816, 9817, - 3, 1332, 666, 0, 9817, 9818, 5, 3, 0, 0, 9818, 10013, 1, 0, 0, 0, 9819, - 9820, 5, 446, 0, 0, 9820, 9821, 5, 2, 0, 0, 9821, 9822, 3, 1332, 666, 0, - 9822, 9823, 5, 3, 0, 0, 9823, 10013, 1, 0, 0, 0, 9824, 9825, 5, 447, 0, - 0, 9825, 9826, 5, 2, 0, 0, 9826, 9827, 5, 278, 0, 0, 9827, 9833, 3, 1434, - 717, 0, 9828, 9831, 5, 6, 0, 0, 9829, 9832, 3, 1274, 637, 0, 9830, 9832, - 3, 1332, 666, 0, 9831, 9829, 1, 0, 0, 0, 9831, 9830, 1, 0, 0, 0, 9832, - 9834, 1, 0, 0, 0, 9833, 9828, 1, 0, 0, 0, 9833, 9834, 1, 0, 0, 0, 9834, - 9835, 1, 0, 0, 0, 9835, 9836, 5, 3, 0, 0, 9836, 10013, 1, 0, 0, 0, 9837, - 9838, 5, 448, 0, 0, 9838, 9839, 5, 2, 0, 0, 9839, 9840, 3, 1214, 607, 0, - 9840, 9841, 3, 1284, 642, 0, 9841, 9842, 5, 3, 0, 0, 9842, 10013, 1, 0, - 0, 0, 9843, 9844, 5, 449, 0, 0, 9844, 9845, 5, 2, 0, 0, 9845, 9846, 3, - 1276, 638, 0, 9846, 9847, 5, 3, 0, 0, 9847, 10013, 1, 0, 0, 0, 9848, 9849, - 5, 450, 0, 0, 9849, 9850, 5, 2, 0, 0, 9850, 9851, 3, 1280, 640, 0, 9851, - 9853, 3, 1170, 585, 0, 9852, 9854, 3, 1282, 641, 0, 9853, 9852, 1, 0, 0, - 0, 9853, 9854, 1, 0, 0, 0, 9854, 9855, 1, 0, 0, 0, 9855, 9856, 5, 3, 0, - 0, 9856, 10013, 1, 0, 0, 0, 9857, 9858, 5, 451, 0, 0, 9858, 9859, 5, 2, - 0, 0, 9859, 9860, 5, 278, 0, 0, 9860, 9863, 3, 1434, 717, 0, 9861, 9862, - 5, 6, 0, 0, 9862, 9864, 3, 1170, 585, 0, 9863, 9861, 1, 0, 0, 0, 9863, - 9864, 1, 0, 0, 0, 9864, 9865, 1, 0, 0, 0, 9865, 9866, 5, 3, 0, 0, 9866, - 10013, 1, 0, 0, 0, 9867, 9868, 5, 452, 0, 0, 9868, 9869, 5, 2, 0, 0, 9869, - 9870, 5, 395, 0, 0, 9870, 9871, 3, 1170, 585, 0, 9871, 9872, 5, 6, 0, 0, - 9872, 9874, 3, 1270, 635, 0, 9873, 9875, 3, 1272, 636, 0, 9874, 9873, 1, - 0, 0, 0, 9874, 9875, 1, 0, 0, 0, 9875, 9876, 1, 0, 0, 0, 9876, 9877, 5, - 3, 0, 0, 9877, 10013, 1, 0, 0, 0, 9878, 9879, 5, 453, 0, 0, 9879, 9880, - 5, 2, 0, 0, 9880, 9881, 3, 1280, 640, 0, 9881, 9882, 3, 1170, 585, 0, 9882, - 9883, 5, 36, 0, 0, 9883, 9884, 3, 1130, 565, 0, 9884, 9885, 5, 3, 0, 0, - 9885, 10013, 1, 0, 0, 0, 9886, 9887, 5, 106, 0, 0, 9887, 9888, 5, 2, 0, - 0, 9888, 9889, 3, 1334, 667, 0, 9889, 9890, 5, 3, 0, 0, 9890, 10013, 1, - 0, 0, 0, 9891, 9892, 5, 106, 0, 0, 9892, 9893, 5, 2, 0, 0, 9893, 9895, - 3, 1262, 631, 0, 9894, 9896, 3, 1260, 630, 0, 9895, 9894, 1, 0, 0, 0, 9895, - 9896, 1, 0, 0, 0, 9896, 9898, 1, 0, 0, 0, 9897, 9899, 3, 1256, 628, 0, - 9898, 9897, 1, 0, 0, 0, 9898, 9899, 1, 0, 0, 0, 9899, 9901, 1, 0, 0, 0, - 9900, 9902, 3, 1254, 627, 0, 9901, 9900, 1, 0, 0, 0, 9901, 9902, 1, 0, - 0, 0, 9902, 9903, 1, 0, 0, 0, 9903, 9904, 5, 3, 0, 0, 9904, 10013, 1, 0, - 0, 0, 9905, 9906, 5, 106, 0, 0, 9906, 9908, 5, 2, 0, 0, 9907, 9909, 3, - 1254, 627, 0, 9908, 9907, 1, 0, 0, 0, 9908, 9909, 1, 0, 0, 0, 9909, 9910, - 1, 0, 0, 0, 9910, 10013, 5, 3, 0, 0, 9911, 9912, 5, 107, 0, 0, 9912, 9913, - 5, 2, 0, 0, 9913, 9915, 3, 1252, 626, 0, 9914, 9916, 3, 1258, 629, 0, 9915, - 9914, 1, 0, 0, 0, 9915, 9916, 1, 0, 0, 0, 9916, 9918, 1, 0, 0, 0, 9917, - 9919, 3, 1254, 627, 0, 9918, 9917, 1, 0, 0, 0, 9918, 9919, 1, 0, 0, 0, - 9919, 9920, 1, 0, 0, 0, 9920, 9921, 5, 3, 0, 0, 9921, 10013, 1, 0, 0, 0, - 9922, 9923, 5, 107, 0, 0, 9923, 9924, 5, 2, 0, 0, 9924, 9926, 3, 972, 486, - 0, 9925, 9927, 3, 1250, 625, 0, 9926, 9925, 1, 0, 0, 0, 9926, 9927, 1, - 0, 0, 0, 9927, 9929, 1, 0, 0, 0, 9928, 9930, 3, 1254, 627, 0, 9929, 9928, - 1, 0, 0, 0, 9929, 9930, 1, 0, 0, 0, 9930, 9931, 1, 0, 0, 0, 9931, 9932, - 5, 3, 0, 0, 9932, 10013, 1, 0, 0, 0, 9933, 9934, 5, 107, 0, 0, 9934, 9936, - 5, 2, 0, 0, 9935, 9937, 3, 1254, 627, 0, 9936, 9935, 1, 0, 0, 0, 9936, - 9937, 1, 0, 0, 0, 9937, 9938, 1, 0, 0, 0, 9938, 10013, 5, 3, 0, 0, 9939, - 9940, 5, 108, 0, 0, 9940, 9941, 5, 2, 0, 0, 9941, 9943, 3, 1266, 633, 0, - 9942, 9944, 3, 1256, 628, 0, 9943, 9942, 1, 0, 0, 0, 9943, 9944, 1, 0, - 0, 0, 9944, 9945, 1, 0, 0, 0, 9945, 9946, 5, 3, 0, 0, 9946, 10013, 1, 0, - 0, 0, 9947, 9948, 5, 109, 0, 0, 9948, 9949, 5, 2, 0, 0, 9949, 9950, 3, - 1170, 585, 0, 9950, 9951, 5, 3, 0, 0, 9951, 10013, 1, 0, 0, 0, 9952, 9953, - 5, 110, 0, 0, 9953, 9954, 5, 2, 0, 0, 9954, 9956, 3, 1266, 633, 0, 9955, - 9957, 3, 1254, 627, 0, 9956, 9955, 1, 0, 0, 0, 9956, 9957, 1, 0, 0, 0, - 9957, 9958, 1, 0, 0, 0, 9958, 9959, 5, 3, 0, 0, 9959, 10013, 1, 0, 0, 0, - 9960, 9961, 5, 111, 0, 0, 9961, 9962, 5, 2, 0, 0, 9962, 10013, 5, 3, 0, - 0, 9963, 9964, 5, 112, 0, 0, 9964, 9965, 5, 2, 0, 0, 9965, 9966, 3, 1266, - 633, 0, 9966, 9967, 5, 6, 0, 0, 9967, 9969, 3, 1170, 585, 0, 9968, 9970, - 3, 1244, 622, 0, 9969, 9968, 1, 0, 0, 0, 9969, 9970, 1, 0, 0, 0, 9970, - 9972, 1, 0, 0, 0, 9971, 9973, 3, 1254, 627, 0, 9972, 9971, 1, 0, 0, 0, - 9972, 9973, 1, 0, 0, 0, 9973, 9974, 1, 0, 0, 0, 9974, 9976, 3, 1242, 621, - 0, 9975, 9977, 3, 1240, 620, 0, 9976, 9975, 1, 0, 0, 0, 9976, 9977, 1, - 0, 0, 0, 9977, 9979, 1, 0, 0, 0, 9978, 9980, 3, 1234, 617, 0, 9979, 9978, - 1, 0, 0, 0, 9979, 9980, 1, 0, 0, 0, 9980, 9981, 1, 0, 0, 0, 9981, 9982, - 5, 3, 0, 0, 9982, 10013, 1, 0, 0, 0, 9983, 9984, 5, 113, 0, 0, 9984, 9985, - 5, 2, 0, 0, 9985, 9986, 3, 1266, 633, 0, 9986, 9987, 5, 6, 0, 0, 9987, - 9989, 3, 1170, 585, 0, 9988, 9990, 3, 1244, 622, 0, 9989, 9988, 1, 0, 0, - 0, 9989, 9990, 1, 0, 0, 0, 9990, 9992, 1, 0, 0, 0, 9991, 9993, 3, 1232, - 616, 0, 9992, 9991, 1, 0, 0, 0, 9992, 9993, 1, 0, 0, 0, 9993, 9994, 1, - 0, 0, 0, 9994, 9995, 5, 3, 0, 0, 9995, 10013, 1, 0, 0, 0, 9996, 9997, 5, - 114, 0, 0, 9997, 9998, 5, 2, 0, 0, 9998, 9999, 3, 1266, 633, 0, 9999, 10000, - 5, 6, 0, 0, 10000, 10002, 3, 1170, 585, 0, 10001, 10003, 3, 1244, 622, - 0, 10002, 10001, 1, 0, 0, 0, 10002, 10003, 1, 0, 0, 0, 10003, 10005, 1, - 0, 0, 0, 10004, 10006, 3, 1254, 627, 0, 10005, 10004, 1, 0, 0, 0, 10005, - 10006, 1, 0, 0, 0, 10006, 10008, 1, 0, 0, 0, 10007, 10009, 3, 1234, 617, - 0, 10008, 10007, 1, 0, 0, 0, 10008, 10009, 1, 0, 0, 0, 10009, 10010, 1, - 0, 0, 0, 10010, 10011, 5, 3, 0, 0, 10011, 10013, 1, 0, 0, 0, 10012, 9703, - 1, 0, 0, 0, 10012, 9709, 1, 0, 0, 0, 10012, 9710, 1, 0, 0, 0, 10012, 9717, - 1, 0, 0, 0, 10012, 9724, 1, 0, 0, 0, 10012, 9731, 1, 0, 0, 0, 10012, 9738, - 1, 0, 0, 0, 10012, 9739, 1, 0, 0, 0, 10012, 9740, 1, 0, 0, 0, 10012, 9741, - 1, 0, 0, 0, 10012, 9742, 1, 0, 0, 0, 10012, 9743, 1, 0, 0, 0, 10012, 9744, - 1, 0, 0, 0, 10012, 9751, 1, 0, 0, 0, 10012, 9757, 1, 0, 0, 0, 10012, 9766, - 1, 0, 0, 0, 10012, 9771, 1, 0, 0, 0, 10012, 9777, 1, 0, 0, 0, 10012, 9782, - 1, 0, 0, 0, 10012, 9789, 1, 0, 0, 0, 10012, 9797, 1, 0, 0, 0, 10012, 9804, - 1, 0, 0, 0, 10012, 9809, 1, 0, 0, 0, 10012, 9814, 1, 0, 0, 0, 10012, 9819, - 1, 0, 0, 0, 10012, 9824, 1, 0, 0, 0, 10012, 9837, 1, 0, 0, 0, 10012, 9843, - 1, 0, 0, 0, 10012, 9848, 1, 0, 0, 0, 10012, 9857, 1, 0, 0, 0, 10012, 9867, - 1, 0, 0, 0, 10012, 9878, 1, 0, 0, 0, 10012, 9886, 1, 0, 0, 0, 10012, 9891, - 1, 0, 0, 0, 10012, 9905, 1, 0, 0, 0, 10012, 9911, 1, 0, 0, 0, 10012, 9922, - 1, 0, 0, 0, 10012, 9933, 1, 0, 0, 0, 10012, 9939, 1, 0, 0, 0, 10012, 9947, - 1, 0, 0, 0, 10012, 9952, 1, 0, 0, 0, 10012, 9960, 1, 0, 0, 0, 10012, 9963, - 1, 0, 0, 0, 10012, 9983, 1, 0, 0, 0, 10012, 9996, 1, 0, 0, 0, 10013, 1231, - 1, 0, 0, 0, 10014, 10015, 3, 1236, 618, 0, 10015, 10016, 5, 80, 0, 0, 10016, - 10017, 5, 514, 0, 0, 10017, 1233, 1, 0, 0, 0, 10018, 10019, 3, 1236, 618, - 0, 10019, 10020, 5, 80, 0, 0, 10020, 10021, 5, 115, 0, 0, 10021, 10034, - 1, 0, 0, 0, 10022, 10023, 3, 1236, 618, 0, 10023, 10024, 5, 80, 0, 0, 10024, - 10025, 5, 514, 0, 0, 10025, 10034, 1, 0, 0, 0, 10026, 10027, 3, 1236, 618, - 0, 10027, 10028, 5, 80, 0, 0, 10028, 10029, 5, 115, 0, 0, 10029, 10030, - 3, 1236, 618, 0, 10030, 10031, 5, 80, 0, 0, 10031, 10032, 5, 514, 0, 0, - 10032, 10034, 1, 0, 0, 0, 10033, 10018, 1, 0, 0, 0, 10033, 10022, 1, 0, - 0, 0, 10033, 10026, 1, 0, 0, 0, 10034, 1235, 1, 0, 0, 0, 10035, 10036, - 5, 53, 0, 0, 10036, 10039, 3, 1170, 585, 0, 10037, 10039, 3, 1238, 619, - 0, 10038, 10035, 1, 0, 0, 0, 10038, 10037, 1, 0, 0, 0, 10039, 1237, 1, - 0, 0, 0, 10040, 10051, 5, 514, 0, 0, 10041, 10051, 5, 78, 0, 0, 10042, - 10051, 5, 96, 0, 0, 10043, 10051, 5, 60, 0, 0, 10044, 10051, 5, 377, 0, - 0, 10045, 10046, 5, 115, 0, 0, 10046, 10051, 5, 35, 0, 0, 10047, 10048, - 5, 115, 0, 0, 10048, 10051, 5, 286, 0, 0, 10049, 10051, 5, 115, 0, 0, 10050, - 10040, 1, 0, 0, 0, 10050, 10041, 1, 0, 0, 0, 10050, 10042, 1, 0, 0, 0, - 10050, 10043, 1, 0, 0, 0, 10050, 10044, 1, 0, 0, 0, 10050, 10045, 1, 0, - 0, 0, 10050, 10047, 1, 0, 0, 0, 10050, 10049, 1, 0, 0, 0, 10051, 1239, - 1, 0, 0, 0, 10052, 10053, 7, 57, 0, 0, 10053, 10054, 5, 124, 0, 0, 10054, - 10055, 5, 80, 0, 0, 10055, 10056, 5, 118, 0, 0, 10056, 10057, 5, 119, 0, - 0, 10057, 1241, 1, 0, 0, 0, 10058, 10060, 5, 391, 0, 0, 10059, 10061, 5, - 35, 0, 0, 10060, 10059, 1, 0, 0, 0, 10060, 10061, 1, 0, 0, 0, 10061, 10062, - 1, 0, 0, 0, 10062, 10072, 5, 393, 0, 0, 10063, 10065, 5, 105, 0, 0, 10064, - 10066, 7, 58, 0, 0, 10065, 10064, 1, 0, 0, 0, 10065, 10066, 1, 0, 0, 0, - 10066, 10068, 1, 0, 0, 0, 10067, 10069, 5, 35, 0, 0, 10068, 10067, 1, 0, - 0, 0, 10068, 10069, 1, 0, 0, 0, 10069, 10070, 1, 0, 0, 0, 10070, 10072, - 5, 393, 0, 0, 10071, 10058, 1, 0, 0, 0, 10071, 10063, 1, 0, 0, 0, 10072, - 1243, 1, 0, 0, 0, 10073, 10074, 5, 298, 0, 0, 10074, 10075, 3, 1246, 623, - 0, 10075, 1245, 1, 0, 0, 0, 10076, 10081, 3, 1248, 624, 0, 10077, 10078, - 5, 6, 0, 0, 10078, 10080, 3, 1248, 624, 0, 10079, 10077, 1, 0, 0, 0, 10080, - 10083, 1, 0, 0, 0, 10081, 10079, 1, 0, 0, 0, 10081, 10082, 1, 0, 0, 0, - 10082, 1247, 1, 0, 0, 0, 10083, 10081, 1, 0, 0, 0, 10084, 10085, 3, 1266, - 633, 0, 10085, 10086, 5, 36, 0, 0, 10086, 10087, 3, 1434, 717, 0, 10087, - 1249, 1, 0, 0, 0, 10088, 10089, 5, 602, 0, 0, 10089, 10090, 5, 108, 0, - 0, 10090, 10091, 5, 213, 0, 0, 10091, 10095, 3, 1394, 697, 0, 10092, 10093, - 5, 602, 0, 0, 10093, 10095, 5, 108, 0, 0, 10094, 10088, 1, 0, 0, 0, 10094, - 10092, 1, 0, 0, 0, 10095, 1251, 1, 0, 0, 0, 10096, 10101, 3, 1266, 633, - 0, 10097, 10098, 5, 6, 0, 0, 10098, 10100, 3, 1266, 633, 0, 10099, 10097, - 1, 0, 0, 0, 10100, 10103, 1, 0, 0, 0, 10101, 10099, 1, 0, 0, 0, 10101, - 10102, 1, 0, 0, 0, 10102, 1253, 1, 0, 0, 0, 10103, 10101, 1, 0, 0, 0, 10104, - 10105, 5, 87, 0, 0, 10105, 10107, 3, 1126, 563, 0, 10106, 10108, 3, 1268, - 634, 0, 10107, 10106, 1, 0, 0, 0, 10107, 10108, 1, 0, 0, 0, 10108, 1255, - 1, 0, 0, 0, 10109, 10110, 5, 105, 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, 10120, 1, 0, 0, 0, 10114, 10115, 5, 391, 0, 0, 10115, 10117, 5, - 98, 0, 0, 10116, 10118, 5, 122, 0, 0, 10117, 10116, 1, 0, 0, 0, 10117, - 10118, 1, 0, 0, 0, 10118, 10120, 1, 0, 0, 0, 10119, 10109, 1, 0, 0, 0, - 10119, 10114, 1, 0, 0, 0, 10120, 1257, 1, 0, 0, 0, 10121, 10122, 5, 78, - 0, 0, 10122, 10123, 5, 80, 0, 0, 10123, 10128, 5, 78, 0, 0, 10124, 10125, - 5, 123, 0, 0, 10125, 10126, 5, 80, 0, 0, 10126, 10128, 5, 78, 0, 0, 10127, - 10121, 1, 0, 0, 0, 10127, 10124, 1, 0, 0, 0, 10128, 1259, 1, 0, 0, 0, 10129, - 10130, 5, 78, 0, 0, 10130, 10131, 5, 80, 0, 0, 10131, 10136, 5, 78, 0, - 0, 10132, 10133, 5, 123, 0, 0, 10133, 10134, 5, 80, 0, 0, 10134, 10136, - 5, 78, 0, 0, 10135, 10129, 1, 0, 0, 0, 10135, 10132, 1, 0, 0, 0, 10136, - 1261, 1, 0, 0, 0, 10137, 10142, 3, 1264, 632, 0, 10138, 10139, 5, 6, 0, - 0, 10139, 10141, 3, 1264, 632, 0, 10140, 10138, 1, 0, 0, 0, 10141, 10144, - 1, 0, 0, 0, 10142, 10140, 1, 0, 0, 0, 10142, 10143, 1, 0, 0, 0, 10143, - 1263, 1, 0, 0, 0, 10144, 10142, 1, 0, 0, 0, 10145, 10146, 3, 1214, 607, - 0, 10146, 10147, 5, 471, 0, 0, 10147, 10148, 3, 1266, 633, 0, 10148, 10154, - 1, 0, 0, 0, 10149, 10150, 3, 1170, 585, 0, 10150, 10151, 5, 8, 0, 0, 10151, - 10152, 3, 1266, 633, 0, 10152, 10154, 1, 0, 0, 0, 10153, 10145, 1, 0, 0, - 0, 10153, 10149, 1, 0, 0, 0, 10154, 1265, 1, 0, 0, 0, 10155, 10157, 3, - 1170, 585, 0, 10156, 10158, 3, 1268, 634, 0, 10157, 10156, 1, 0, 0, 0, - 10157, 10158, 1, 0, 0, 0, 10158, 1267, 1, 0, 0, 0, 10159, 10160, 5, 602, - 0, 0, 10160, 10161, 5, 108, 0, 0, 10161, 10162, 5, 213, 0, 0, 10162, 10166, - 3, 1394, 697, 0, 10163, 10164, 5, 602, 0, 0, 10164, 10166, 5, 108, 0, 0, - 10165, 10159, 1, 0, 0, 0, 10165, 10163, 1, 0, 0, 0, 10166, 1269, 1, 0, - 0, 0, 10167, 10168, 5, 387, 0, 0, 10168, 10173, 3, 1170, 585, 0, 10169, - 10170, 5, 387, 0, 0, 10170, 10171, 5, 281, 0, 0, 10171, 10173, 5, 471, - 0, 0, 10172, 10167, 1, 0, 0, 0, 10172, 10169, 1, 0, 0, 0, 10173, 1271, - 1, 0, 0, 0, 10174, 10175, 5, 6, 0, 0, 10175, 10176, 5, 351, 0, 0, 10176, - 10185, 5, 397, 0, 0, 10177, 10178, 5, 6, 0, 0, 10178, 10179, 5, 351, 0, - 0, 10179, 10185, 5, 281, 0, 0, 10180, 10181, 5, 6, 0, 0, 10181, 10182, - 5, 351, 0, 0, 10182, 10183, 5, 281, 0, 0, 10183, 10185, 5, 471, 0, 0, 10184, - 10174, 1, 0, 0, 0, 10184, 10177, 1, 0, 0, 0, 10184, 10180, 1, 0, 0, 0, - 10185, 1273, 1, 0, 0, 0, 10186, 10187, 5, 438, 0, 0, 10187, 10188, 5, 2, - 0, 0, 10188, 10189, 3, 1276, 638, 0, 10189, 10190, 5, 3, 0, 0, 10190, 1275, - 1, 0, 0, 0, 10191, 10196, 3, 1278, 639, 0, 10192, 10193, 5, 6, 0, 0, 10193, - 10195, 3, 1278, 639, 0, 10194, 10192, 1, 0, 0, 0, 10195, 10198, 1, 0, 0, - 0, 10196, 10194, 1, 0, 0, 0, 10196, 10197, 1, 0, 0, 0, 10197, 1277, 1, - 0, 0, 0, 10198, 10196, 1, 0, 0, 0, 10199, 10202, 3, 1170, 585, 0, 10200, - 10201, 5, 36, 0, 0, 10201, 10203, 3, 1434, 717, 0, 10202, 10200, 1, 0, - 0, 0, 10202, 10203, 1, 0, 0, 0, 10203, 1279, 1, 0, 0, 0, 10204, 10205, - 7, 59, 0, 0, 10205, 1281, 1, 0, 0, 0, 10206, 10207, 5, 304, 0, 0, 10207, - 10211, 5, 390, 0, 0, 10208, 10209, 5, 359, 0, 0, 10209, 10211, 5, 390, - 0, 0, 10210, 10206, 1, 0, 0, 0, 10210, 10208, 1, 0, 0, 0, 10211, 1283, - 1, 0, 0, 0, 10212, 10213, 5, 298, 0, 0, 10213, 10228, 3, 1214, 607, 0, - 10214, 10215, 5, 298, 0, 0, 10215, 10216, 3, 1214, 607, 0, 10216, 10217, - 3, 1286, 643, 0, 10217, 10228, 1, 0, 0, 0, 10218, 10219, 5, 298, 0, 0, - 10219, 10220, 3, 1286, 643, 0, 10220, 10221, 3, 1214, 607, 0, 10221, 10228, - 1, 0, 0, 0, 10222, 10223, 5, 298, 0, 0, 10223, 10224, 3, 1286, 643, 0, - 10224, 10225, 3, 1214, 607, 0, 10225, 10226, 3, 1286, 643, 0, 10226, 10228, - 1, 0, 0, 0, 10227, 10212, 1, 0, 0, 0, 10227, 10214, 1, 0, 0, 0, 10227, - 10218, 1, 0, 0, 0, 10227, 10222, 1, 0, 0, 0, 10228, 1285, 1, 0, 0, 0, 10229, - 10230, 5, 166, 0, 0, 10230, 10231, 7, 60, 0, 0, 10231, 1287, 1, 0, 0, 0, - 10232, 10233, 5, 500, 0, 0, 10233, 10234, 5, 66, 0, 0, 10234, 10235, 5, - 2, 0, 0, 10235, 10236, 3, 1006, 503, 0, 10236, 10237, 5, 3, 0, 0, 10237, - 1289, 1, 0, 0, 0, 10238, 10239, 5, 501, 0, 0, 10239, 10240, 5, 2, 0, 0, - 10240, 10241, 5, 103, 0, 0, 10241, 10242, 3, 1170, 585, 0, 10242, 10243, - 5, 3, 0, 0, 10243, 1291, 1, 0, 0, 0, 10244, 10245, 5, 104, 0, 0, 10245, - 10246, 3, 1294, 647, 0, 10246, 1293, 1, 0, 0, 0, 10247, 10252, 3, 1296, - 648, 0, 10248, 10249, 5, 6, 0, 0, 10249, 10251, 3, 1296, 648, 0, 10250, - 10248, 1, 0, 0, 0, 10251, 10254, 1, 0, 0, 0, 10252, 10250, 1, 0, 0, 0, - 10252, 10253, 1, 0, 0, 0, 10253, 1295, 1, 0, 0, 0, 10254, 10252, 1, 0, - 0, 0, 10255, 10256, 3, 1426, 713, 0, 10256, 10257, 5, 36, 0, 0, 10257, - 10258, 3, 1300, 650, 0, 10258, 1297, 1, 0, 0, 0, 10259, 10262, 5, 143, - 0, 0, 10260, 10263, 3, 1300, 650, 0, 10261, 10263, 3, 1426, 713, 0, 10262, - 10260, 1, 0, 0, 0, 10262, 10261, 1, 0, 0, 0, 10263, 1299, 1, 0, 0, 0, 10264, - 10266, 5, 2, 0, 0, 10265, 10267, 3, 1302, 651, 0, 10266, 10265, 1, 0, 0, - 0, 10266, 10267, 1, 0, 0, 0, 10267, 10269, 1, 0, 0, 0, 10268, 10270, 3, - 1304, 652, 0, 10269, 10268, 1, 0, 0, 0, 10269, 10270, 1, 0, 0, 0, 10270, - 10272, 1, 0, 0, 0, 10271, 10273, 3, 1004, 502, 0, 10272, 10271, 1, 0, 0, - 0, 10272, 10273, 1, 0, 0, 0, 10273, 10275, 1, 0, 0, 0, 10274, 10276, 3, - 1306, 653, 0, 10275, 10274, 1, 0, 0, 0, 10275, 10276, 1, 0, 0, 0, 10276, - 10277, 1, 0, 0, 0, 10277, 10278, 5, 3, 0, 0, 10278, 1301, 1, 0, 0, 0, 10279, - 10280, 3, 1426, 713, 0, 10280, 1303, 1, 0, 0, 0, 10281, 10282, 5, 297, - 0, 0, 10282, 10283, 5, 166, 0, 0, 10283, 10284, 3, 1332, 666, 0, 10284, - 1305, 1, 0, 0, 0, 10285, 10286, 5, 311, 0, 0, 10286, 10288, 3, 1308, 654, - 0, 10287, 10289, 3, 1312, 656, 0, 10288, 10287, 1, 0, 0, 0, 10288, 10289, - 1, 0, 0, 0, 10289, 10301, 1, 0, 0, 0, 10290, 10291, 5, 332, 0, 0, 10291, - 10293, 3, 1308, 654, 0, 10292, 10294, 3, 1312, 656, 0, 10293, 10292, 1, - 0, 0, 0, 10293, 10294, 1, 0, 0, 0, 10294, 10301, 1, 0, 0, 0, 10295, 10296, - 5, 502, 0, 0, 10296, 10298, 3, 1308, 654, 0, 10297, 10299, 3, 1312, 656, - 0, 10298, 10297, 1, 0, 0, 0, 10298, 10299, 1, 0, 0, 0, 10299, 10301, 1, - 0, 0, 0, 10300, 10285, 1, 0, 0, 0, 10300, 10290, 1, 0, 0, 0, 10300, 10295, - 1, 0, 0, 0, 10301, 1307, 1, 0, 0, 0, 10302, 10309, 3, 1310, 655, 0, 10303, - 10304, 5, 400, 0, 0, 10304, 10305, 3, 1310, 655, 0, 10305, 10306, 5, 33, - 0, 0, 10306, 10307, 3, 1310, 655, 0, 10307, 10309, 1, 0, 0, 0, 10308, 10302, - 1, 0, 0, 0, 10308, 10303, 1, 0, 0, 0, 10309, 1309, 1, 0, 0, 0, 10310, 10311, - 5, 374, 0, 0, 10311, 10318, 7, 61, 0, 0, 10312, 10313, 5, 455, 0, 0, 10313, - 10318, 5, 428, 0, 0, 10314, 10315, 3, 1170, 585, 0, 10315, 10316, 7, 61, - 0, 0, 10316, 10318, 1, 0, 0, 0, 10317, 10310, 1, 0, 0, 0, 10317, 10312, - 1, 0, 0, 0, 10317, 10314, 1, 0, 0, 0, 10318, 1311, 1, 0, 0, 0, 10319, 10326, - 5, 218, 0, 0, 10320, 10321, 5, 455, 0, 0, 10321, 10327, 5, 428, 0, 0, 10322, - 10327, 5, 66, 0, 0, 10323, 10327, 5, 488, 0, 0, 10324, 10325, 5, 281, 0, - 0, 10325, 10327, 5, 503, 0, 0, 10326, 10320, 1, 0, 0, 0, 10326, 10322, - 1, 0, 0, 0, 10326, 10323, 1, 0, 0, 0, 10326, 10324, 1, 0, 0, 0, 10327, - 1313, 1, 0, 0, 0, 10328, 10329, 5, 428, 0, 0, 10329, 10331, 5, 2, 0, 0, - 10330, 10332, 3, 1332, 666, 0, 10331, 10330, 1, 0, 0, 0, 10331, 10332, - 1, 0, 0, 0, 10332, 10333, 1, 0, 0, 0, 10333, 10341, 5, 3, 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, 10341, - 1, 0, 0, 0, 10340, 10328, 1, 0, 0, 0, 10340, 10334, 1, 0, 0, 0, 10341, - 1315, 1, 0, 0, 0, 10342, 10343, 5, 428, 0, 0, 10343, 10345, 5, 2, 0, 0, - 10344, 10346, 3, 1332, 666, 0, 10345, 10344, 1, 0, 0, 0, 10345, 10346, - 1, 0, 0, 0, 10346, 10347, 1, 0, 0, 0, 10347, 10348, 5, 3, 0, 0, 10348, - 1317, 1, 0, 0, 0, 10349, 10350, 5, 2, 0, 0, 10350, 10351, 3, 1332, 666, - 0, 10351, 10352, 5, 6, 0, 0, 10352, 10353, 3, 1170, 585, 0, 10353, 10354, - 5, 3, 0, 0, 10354, 1319, 1, 0, 0, 0, 10355, 10356, 7, 62, 0, 0, 10356, - 1321, 1, 0, 0, 0, 10357, 10360, 5, 29, 0, 0, 10358, 10360, 3, 1324, 662, - 0, 10359, 10357, 1, 0, 0, 0, 10359, 10358, 1, 0, 0, 0, 10360, 1323, 1, - 0, 0, 0, 10361, 10362, 7, 63, 0, 0, 10362, 1325, 1, 0, 0, 0, 10363, 10370, - 5, 29, 0, 0, 10364, 10365, 5, 290, 0, 0, 10365, 10366, 5, 2, 0, 0, 10366, - 10367, 3, 690, 345, 0, 10367, 10368, 5, 3, 0, 0, 10368, 10370, 1, 0, 0, - 0, 10369, 10363, 1, 0, 0, 0, 10369, 10364, 1, 0, 0, 0, 10370, 1327, 1, - 0, 0, 0, 10371, 10378, 3, 1322, 661, 0, 10372, 10373, 5, 290, 0, 0, 10373, - 10374, 5, 2, 0, 0, 10374, 10375, 3, 690, 345, 0, 10375, 10376, 5, 3, 0, - 0, 10376, 10378, 1, 0, 0, 0, 10377, 10371, 1, 0, 0, 0, 10377, 10372, 1, - 0, 0, 0, 10378, 1329, 1, 0, 0, 0, 10379, 10392, 3, 1322, 661, 0, 10380, - 10381, 5, 290, 0, 0, 10381, 10382, 5, 2, 0, 0, 10382, 10383, 3, 690, 345, - 0, 10383, 10384, 5, 3, 0, 0, 10384, 10392, 1, 0, 0, 0, 10385, 10392, 5, - 139, 0, 0, 10386, 10387, 5, 77, 0, 0, 10387, 10392, 5, 139, 0, 0, 10388, - 10392, 5, 133, 0, 0, 10389, 10390, 5, 77, 0, 0, 10390, 10392, 5, 133, 0, - 0, 10391, 10379, 1, 0, 0, 0, 10391, 10380, 1, 0, 0, 0, 10391, 10385, 1, - 0, 0, 0, 10391, 10386, 1, 0, 0, 0, 10391, 10388, 1, 0, 0, 0, 10391, 10389, - 1, 0, 0, 0, 10392, 1331, 1, 0, 0, 0, 10393, 10398, 3, 1170, 585, 0, 10394, - 10395, 5, 6, 0, 0, 10395, 10397, 3, 1170, 585, 0, 10396, 10394, 1, 0, 0, - 0, 10397, 10400, 1, 0, 0, 0, 10398, 10396, 1, 0, 0, 0, 10398, 10399, 1, - 0, 0, 0, 10399, 1333, 1, 0, 0, 0, 10400, 10398, 1, 0, 0, 0, 10401, 10406, - 3, 1336, 668, 0, 10402, 10403, 5, 6, 0, 0, 10403, 10405, 3, 1336, 668, - 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, 1335, 1, 0, 0, 0, 10408, 10406, - 1, 0, 0, 0, 10409, 10415, 3, 1170, 585, 0, 10410, 10411, 3, 642, 321, 0, - 10411, 10412, 7, 64, 0, 0, 10412, 10413, 3, 1170, 585, 0, 10413, 10415, - 1, 0, 0, 0, 10414, 10409, 1, 0, 0, 0, 10414, 10410, 1, 0, 0, 0, 10415, - 1337, 1, 0, 0, 0, 10416, 10421, 3, 1126, 563, 0, 10417, 10418, 5, 6, 0, - 0, 10418, 10420, 3, 1126, 563, 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, - 1339, 1, 0, 0, 0, 10423, 10421, 1, 0, 0, 0, 10424, 10427, 5, 4, 0, 0, 10425, - 10428, 3, 1332, 666, 0, 10426, 10428, 3, 1342, 671, 0, 10427, 10425, 1, - 0, 0, 0, 10427, 10426, 1, 0, 0, 0, 10427, 10428, 1, 0, 0, 0, 10428, 10429, - 1, 0, 0, 0, 10429, 10430, 5, 5, 0, 0, 10430, 1341, 1, 0, 0, 0, 10431, 10436, - 3, 1340, 670, 0, 10432, 10433, 5, 6, 0, 0, 10433, 10435, 3, 1340, 670, - 0, 10434, 10432, 1, 0, 0, 0, 10435, 10438, 1, 0, 0, 0, 10436, 10434, 1, - 0, 0, 0, 10436, 10437, 1, 0, 0, 0, 10437, 1343, 1, 0, 0, 0, 10438, 10436, - 1, 0, 0, 0, 10439, 10440, 3, 1346, 673, 0, 10440, 10441, 5, 64, 0, 0, 10441, - 10442, 3, 1170, 585, 0, 10442, 1345, 1, 0, 0, 0, 10443, 10452, 3, 1436, - 718, 0, 10444, 10452, 5, 396, 0, 0, 10445, 10452, 5, 276, 0, 0, 10446, - 10452, 5, 195, 0, 0, 10447, 10452, 5, 237, 0, 0, 10448, 10452, 5, 273, - 0, 0, 10449, 10452, 5, 338, 0, 0, 10450, 10452, 3, 1412, 706, 0, 10451, - 10443, 1, 0, 0, 0, 10451, 10444, 1, 0, 0, 0, 10451, 10445, 1, 0, 0, 0, - 10451, 10446, 1, 0, 0, 0, 10451, 10447, 1, 0, 0, 0, 10451, 10448, 1, 0, - 0, 0, 10451, 10449, 1, 0, 0, 0, 10451, 10450, 1, 0, 0, 0, 10452, 1347, - 1, 0, 0, 0, 10453, 10454, 7, 65, 0, 0, 10454, 1349, 1, 0, 0, 0, 10455, - 10456, 3, 1170, 585, 0, 10456, 10457, 5, 84, 0, 0, 10457, 10458, 3, 1170, - 585, 0, 10458, 10459, 5, 64, 0, 0, 10459, 10462, 3, 1170, 585, 0, 10460, - 10461, 5, 62, 0, 0, 10461, 10463, 3, 1170, 585, 0, 10462, 10460, 1, 0, - 0, 0, 10462, 10463, 1, 0, 0, 0, 10463, 1351, 1, 0, 0, 0, 10464, 10465, - 3, 1212, 606, 0, 10465, 10466, 5, 68, 0, 0, 10466, 10467, 3, 1212, 606, - 0, 10467, 1353, 1, 0, 0, 0, 10468, 10469, 3, 1170, 585, 0, 10469, 10470, - 5, 64, 0, 0, 10470, 10471, 3, 1170, 585, 0, 10471, 10472, 5, 62, 0, 0, - 10472, 10473, 3, 1170, 585, 0, 10473, 10496, 1, 0, 0, 0, 10474, 10475, - 3, 1170, 585, 0, 10475, 10476, 5, 62, 0, 0, 10476, 10477, 3, 1170, 585, - 0, 10477, 10478, 5, 64, 0, 0, 10478, 10479, 3, 1170, 585, 0, 10479, 10496, - 1, 0, 0, 0, 10480, 10481, 3, 1170, 585, 0, 10481, 10482, 5, 64, 0, 0, 10482, - 10483, 3, 1170, 585, 0, 10483, 10496, 1, 0, 0, 0, 10484, 10485, 3, 1170, - 585, 0, 10485, 10486, 5, 62, 0, 0, 10486, 10487, 3, 1170, 585, 0, 10487, - 10496, 1, 0, 0, 0, 10488, 10489, 3, 1170, 585, 0, 10489, 10490, 5, 146, - 0, 0, 10490, 10491, 3, 1170, 585, 0, 10491, 10492, 5, 216, 0, 0, 10492, - 10493, 3, 1170, 585, 0, 10493, 10496, 1, 0, 0, 0, 10494, 10496, 3, 1332, - 666, 0, 10495, 10468, 1, 0, 0, 0, 10495, 10474, 1, 0, 0, 0, 10495, 10480, - 1, 0, 0, 0, 10495, 10484, 1, 0, 0, 0, 10495, 10488, 1, 0, 0, 0, 10495, - 10494, 1, 0, 0, 0, 10496, 1355, 1, 0, 0, 0, 10497, 10498, 3, 1170, 585, - 0, 10498, 10499, 5, 64, 0, 0, 10499, 10500, 3, 1332, 666, 0, 10500, 10505, - 1, 0, 0, 0, 10501, 10502, 5, 64, 0, 0, 10502, 10505, 3, 1332, 666, 0, 10503, - 10505, 3, 1332, 666, 0, 10504, 10497, 1, 0, 0, 0, 10504, 10501, 1, 0, 0, - 0, 10504, 10503, 1, 0, 0, 0, 10505, 1357, 1, 0, 0, 0, 10506, 10512, 3, - 970, 485, 0, 10507, 10508, 5, 2, 0, 0, 10508, 10509, 3, 1332, 666, 0, 10509, - 10510, 5, 3, 0, 0, 10510, 10512, 1, 0, 0, 0, 10511, 10506, 1, 0, 0, 0, - 10511, 10507, 1, 0, 0, 0, 10512, 1359, 1, 0, 0, 0, 10513, 10515, 5, 40, - 0, 0, 10514, 10516, 3, 1368, 684, 0, 10515, 10514, 1, 0, 0, 0, 10515, 10516, - 1, 0, 0, 0, 10516, 10517, 1, 0, 0, 0, 10517, 10519, 3, 1362, 681, 0, 10518, - 10520, 3, 1366, 683, 0, 10519, 10518, 1, 0, 0, 0, 10519, 10520, 1, 0, 0, - 0, 10520, 10521, 1, 0, 0, 0, 10521, 10522, 5, 475, 0, 0, 10522, 1361, 1, - 0, 0, 0, 10523, 10525, 3, 1364, 682, 0, 10524, 10523, 1, 0, 0, 0, 10525, - 10526, 1, 0, 0, 0, 10526, 10524, 1, 0, 0, 0, 10526, 10527, 1, 0, 0, 0, - 10527, 1363, 1, 0, 0, 0, 10528, 10529, 5, 102, 0, 0, 10529, 10530, 3, 1170, - 585, 0, 10530, 10531, 5, 93, 0, 0, 10531, 10532, 3, 1170, 585, 0, 10532, - 1365, 1, 0, 0, 0, 10533, 10534, 5, 58, 0, 0, 10534, 10535, 3, 1170, 585, - 0, 10535, 1367, 1, 0, 0, 0, 10536, 10537, 3, 1170, 585, 0, 10537, 1369, - 1, 0, 0, 0, 10538, 10540, 3, 1426, 713, 0, 10539, 10541, 3, 1376, 688, - 0, 10540, 10539, 1, 0, 0, 0, 10540, 10541, 1, 0, 0, 0, 10541, 1371, 1, - 0, 0, 0, 10542, 10545, 5, 11, 0, 0, 10543, 10546, 3, 1396, 698, 0, 10544, - 10546, 5, 9, 0, 0, 10545, 10543, 1, 0, 0, 0, 10545, 10544, 1, 0, 0, 0, - 10546, 10560, 1, 0, 0, 0, 10547, 10556, 5, 4, 0, 0, 10548, 10557, 3, 1170, - 585, 0, 10549, 10551, 3, 1374, 687, 0, 10550, 10549, 1, 0, 0, 0, 10550, - 10551, 1, 0, 0, 0, 10551, 10552, 1, 0, 0, 0, 10552, 10554, 5, 8, 0, 0, - 10553, 10555, 3, 1374, 687, 0, 10554, 10553, 1, 0, 0, 0, 10554, 10555, - 1, 0, 0, 0, 10555, 10557, 1, 0, 0, 0, 10556, 10548, 1, 0, 0, 0, 10556, - 10550, 1, 0, 0, 0, 10557, 10558, 1, 0, 0, 0, 10558, 10560, 5, 5, 0, 0, - 10559, 10542, 1, 0, 0, 0, 10559, 10547, 1, 0, 0, 0, 10560, 1373, 1, 0, - 0, 0, 10561, 10562, 3, 1170, 585, 0, 10562, 1375, 1, 0, 0, 0, 10563, 10565, - 3, 1372, 686, 0, 10564, 10563, 1, 0, 0, 0, 10565, 10566, 1, 0, 0, 0, 10566, - 10564, 1, 0, 0, 0, 10566, 10567, 1, 0, 0, 0, 10567, 1377, 1, 0, 0, 0, 10568, - 10570, 3, 1372, 686, 0, 10569, 10568, 1, 0, 0, 0, 10570, 10573, 1, 0, 0, - 0, 10571, 10569, 1, 0, 0, 0, 10571, 10572, 1, 0, 0, 0, 10572, 1379, 1, - 0, 0, 0, 10573, 10571, 1, 0, 0, 0, 10574, 10575, 3, 1382, 691, 0, 10575, - 1381, 1, 0, 0, 0, 10576, 10581, 3, 1384, 692, 0, 10577, 10578, 5, 6, 0, - 0, 10578, 10580, 3, 1384, 692, 0, 10579, 10577, 1, 0, 0, 0, 10580, 10583, - 1, 0, 0, 0, 10581, 10579, 1, 0, 0, 0, 10581, 10582, 1, 0, 0, 0, 10582, - 1383, 1, 0, 0, 0, 10583, 10581, 1, 0, 0, 0, 10584, 10586, 3, 1170, 585, - 0, 10585, 10587, 3, 1386, 693, 0, 10586, 10585, 1, 0, 0, 0, 10586, 10587, - 1, 0, 0, 0, 10587, 10590, 1, 0, 0, 0, 10588, 10590, 5, 9, 0, 0, 10589, - 10584, 1, 0, 0, 0, 10589, 10588, 1, 0, 0, 0, 10590, 1385, 1, 0, 0, 0, 10591, - 10592, 5, 36, 0, 0, 10592, 10595, 3, 1434, 717, 0, 10593, 10595, 3, 1436, - 718, 0, 10594, 10591, 1, 0, 0, 0, 10594, 10593, 1, 0, 0, 0, 10595, 1387, - 1, 0, 0, 0, 10596, 10601, 3, 1390, 695, 0, 10597, 10598, 5, 6, 0, 0, 10598, - 10600, 3, 1390, 695, 0, 10599, 10597, 1, 0, 0, 0, 10600, 10603, 1, 0, 0, - 0, 10601, 10599, 1, 0, 0, 0, 10601, 10602, 1, 0, 0, 0, 10602, 1389, 1, - 0, 0, 0, 10603, 10601, 1, 0, 0, 0, 10604, 10606, 3, 1426, 713, 0, 10605, - 10607, 3, 1376, 688, 0, 10606, 10605, 1, 0, 0, 0, 10606, 10607, 1, 0, 0, - 0, 10607, 1391, 1, 0, 0, 0, 10608, 10613, 3, 1394, 697, 0, 10609, 10610, - 5, 6, 0, 0, 10610, 10612, 3, 1394, 697, 0, 10611, 10609, 1, 0, 0, 0, 10612, - 10615, 1, 0, 0, 0, 10613, 10611, 1, 0, 0, 0, 10613, 10614, 1, 0, 0, 0, - 10614, 1393, 1, 0, 0, 0, 10615, 10613, 1, 0, 0, 0, 10616, 10617, 3, 1426, - 713, 0, 10617, 1395, 1, 0, 0, 0, 10618, 10619, 3, 1434, 717, 0, 10619, - 1397, 1, 0, 0, 0, 10620, 10621, 3, 1412, 706, 0, 10621, 1399, 1, 0, 0, - 0, 10622, 10630, 3, 1448, 724, 0, 10623, 10630, 3, 1430, 715, 0, 10624, - 10625, 3, 1426, 713, 0, 10625, 10626, 3, 1376, 688, 0, 10626, 10630, 1, - 0, 0, 0, 10627, 10630, 5, 138, 0, 0, 10628, 10630, 5, 145, 0, 0, 10629, - 10622, 1, 0, 0, 0, 10629, 10623, 1, 0, 0, 0, 10629, 10624, 1, 0, 0, 0, - 10629, 10627, 1, 0, 0, 0, 10629, 10628, 1, 0, 0, 0, 10630, 1401, 1, 0, - 0, 0, 10631, 10667, 3, 1410, 705, 0, 10632, 10667, 3, 1408, 704, 0, 10633, - 10667, 3, 1412, 706, 0, 10634, 10667, 3, 1406, 703, 0, 10635, 10667, 3, - 1404, 702, 0, 10636, 10646, 3, 1400, 700, 0, 10637, 10647, 3, 1412, 706, - 0, 10638, 10639, 5, 2, 0, 0, 10639, 10641, 3, 1334, 667, 0, 10640, 10642, - 3, 1004, 502, 0, 10641, 10640, 1, 0, 0, 0, 10641, 10642, 1, 0, 0, 0, 10642, - 10643, 1, 0, 0, 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, 10638, 1, - 0, 0, 0, 10647, 10667, 1, 0, 0, 0, 10648, 10649, 3, 1132, 566, 0, 10649, - 10650, 3, 1412, 706, 0, 10650, 10667, 1, 0, 0, 0, 10651, 10661, 3, 1160, - 580, 0, 10652, 10654, 3, 1412, 706, 0, 10653, 10655, 3, 1164, 582, 0, 10654, - 10653, 1, 0, 0, 0, 10654, 10655, 1, 0, 0, 0, 10655, 10662, 1, 0, 0, 0, - 10656, 10657, 5, 2, 0, 0, 10657, 10658, 3, 1410, 705, 0, 10658, 10659, - 5, 3, 0, 0, 10659, 10660, 3, 1412, 706, 0, 10660, 10662, 1, 0, 0, 0, 10661, - 10652, 1, 0, 0, 0, 10661, 10656, 1, 0, 0, 0, 10662, 10667, 1, 0, 0, 0, - 10663, 10667, 5, 96, 0, 0, 10664, 10667, 5, 60, 0, 0, 10665, 10667, 5, - 78, 0, 0, 10666, 10631, 1, 0, 0, 0, 10666, 10632, 1, 0, 0, 0, 10666, 10633, - 1, 0, 0, 0, 10666, 10634, 1, 0, 0, 0, 10666, 10635, 1, 0, 0, 0, 10666, - 10636, 1, 0, 0, 0, 10666, 10648, 1, 0, 0, 0, 10666, 10651, 1, 0, 0, 0, - 10666, 10663, 1, 0, 0, 0, 10666, 10664, 1, 0, 0, 0, 10666, 10665, 1, 0, - 0, 0, 10667, 1403, 1, 0, 0, 0, 10668, 10669, 5, 682, 0, 0, 10669, 1405, - 1, 0, 0, 0, 10670, 10671, 5, 678, 0, 0, 10671, 1407, 1, 0, 0, 0, 10672, - 10673, 5, 688, 0, 0, 10673, 1409, 1, 0, 0, 0, 10674, 10675, 5, 686, 0, - 0, 10675, 1411, 1, 0, 0, 0, 10676, 10678, 3, 1414, 707, 0, 10677, 10679, - 3, 1416, 708, 0, 10678, 10677, 1, 0, 0, 0, 10678, 10679, 1, 0, 0, 0, 10679, - 1413, 1, 0, 0, 0, 10680, 10692, 5, 673, 0, 0, 10681, 10692, 5, 675, 0, - 0, 10682, 10686, 5, 677, 0, 0, 10683, 10685, 5, 705, 0, 0, 10684, 10683, - 1, 0, 0, 0, 10685, 10688, 1, 0, 0, 0, 10686, 10684, 1, 0, 0, 0, 10686, - 10687, 1, 0, 0, 0, 10687, 10689, 1, 0, 0, 0, 10688, 10686, 1, 0, 0, 0, - 10689, 10692, 5, 706, 0, 0, 10690, 10692, 5, 699, 0, 0, 10691, 10680, 1, - 0, 0, 0, 10691, 10681, 1, 0, 0, 0, 10691, 10682, 1, 0, 0, 0, 10691, 10690, - 1, 0, 0, 0, 10692, 1415, 1, 0, 0, 0, 10693, 10694, 5, 508, 0, 0, 10694, - 10695, 3, 1414, 707, 0, 10695, 1417, 1, 0, 0, 0, 10696, 10702, 3, 1410, - 705, 0, 10697, 10698, 5, 12, 0, 0, 10698, 10702, 3, 1410, 705, 0, 10699, - 10700, 5, 13, 0, 0, 10700, 10702, 3, 1410, 705, 0, 10701, 10696, 1, 0, - 0, 0, 10701, 10697, 1, 0, 0, 0, 10701, 10699, 1, 0, 0, 0, 10702, 1419, - 1, 0, 0, 0, 10703, 10704, 3, 1422, 711, 0, 10704, 1421, 1, 0, 0, 0, 10705, - 10709, 3, 1432, 716, 0, 10706, 10709, 5, 52, 0, 0, 10707, 10709, 5, 89, - 0, 0, 10708, 10705, 1, 0, 0, 0, 10708, 10706, 1, 0, 0, 0, 10708, 10707, - 1, 0, 0, 0, 10709, 1423, 1, 0, 0, 0, 10710, 10715, 3, 1422, 711, 0, 10711, - 10712, 5, 6, 0, 0, 10712, 10714, 3, 1422, 711, 0, 10713, 10711, 1, 0, 0, - 0, 10714, 10717, 1, 0, 0, 0, 10715, 10713, 1, 0, 0, 0, 10715, 10716, 1, - 0, 0, 0, 10716, 1425, 1, 0, 0, 0, 10717, 10715, 1, 0, 0, 0, 10718, 10725, - 3, 1436, 718, 0, 10719, 10725, 3, 1440, 720, 0, 10720, 10725, 3, 1442, - 721, 0, 10721, 10725, 3, 1662, 831, 0, 10722, 10725, 5, 138, 0, 0, 10723, - 10725, 5, 145, 0, 0, 10724, 10718, 1, 0, 0, 0, 10724, 10719, 1, 0, 0, 0, - 10724, 10720, 1, 0, 0, 0, 10724, 10721, 1, 0, 0, 0, 10724, 10722, 1, 0, - 0, 0, 10724, 10723, 1, 0, 0, 0, 10725, 1427, 1, 0, 0, 0, 10726, 10731, - 3, 1436, 718, 0, 10727, 10731, 3, 1440, 720, 0, 10728, 10731, 3, 1442, - 721, 0, 10729, 10731, 3, 1662, 831, 0, 10730, 10726, 1, 0, 0, 0, 10730, - 10727, 1, 0, 0, 0, 10730, 10728, 1, 0, 0, 0, 10730, 10729, 1, 0, 0, 0, - 10731, 1429, 1, 0, 0, 0, 10732, 10737, 3, 1436, 718, 0, 10733, 10737, 3, - 1440, 720, 0, 10734, 10737, 3, 1662, 831, 0, 10735, 10737, 3, 1444, 722, - 0, 10736, 10732, 1, 0, 0, 0, 10736, 10733, 1, 0, 0, 0, 10736, 10734, 1, - 0, 0, 0, 10736, 10735, 1, 0, 0, 0, 10737, 1431, 1, 0, 0, 0, 10738, 10743, - 3, 1436, 718, 0, 10739, 10743, 3, 1440, 720, 0, 10740, 10743, 3, 1442, - 721, 0, 10741, 10743, 3, 1444, 722, 0, 10742, 10738, 1, 0, 0, 0, 10742, - 10739, 1, 0, 0, 0, 10742, 10740, 1, 0, 0, 0, 10742, 10741, 1, 0, 0, 0, - 10743, 1433, 1, 0, 0, 0, 10744, 10751, 3, 1436, 718, 0, 10745, 10751, 3, - 1662, 831, 0, 10746, 10751, 3, 1440, 720, 0, 10747, 10751, 3, 1442, 721, - 0, 10748, 10751, 3, 1444, 722, 0, 10749, 10751, 3, 1446, 723, 0, 10750, - 10744, 1, 0, 0, 0, 10750, 10745, 1, 0, 0, 0, 10750, 10746, 1, 0, 0, 0, - 10750, 10747, 1, 0, 0, 0, 10750, 10748, 1, 0, 0, 0, 10750, 10749, 1, 0, - 0, 0, 10751, 1435, 1, 0, 0, 0, 10752, 10754, 5, 664, 0, 0, 10753, 10755, - 3, 1416, 708, 0, 10754, 10753, 1, 0, 0, 0, 10754, 10755, 1, 0, 0, 0, 10755, - 10762, 1, 0, 0, 0, 10756, 10762, 5, 665, 0, 0, 10757, 10762, 5, 669, 0, - 0, 10758, 10762, 3, 1216, 608, 0, 10759, 10762, 3, 1438, 719, 0, 10760, - 10762, 3, 1662, 831, 0, 10761, 10752, 1, 0, 0, 0, 10761, 10756, 1, 0, 0, - 0, 10761, 10757, 1, 0, 0, 0, 10761, 10758, 1, 0, 0, 0, 10761, 10759, 1, - 0, 0, 0, 10761, 10760, 1, 0, 0, 0, 10762, 1437, 1, 0, 0, 0, 10763, 10764, - 5, 690, 0, 0, 10764, 1439, 1, 0, 0, 0, 10765, 10766, 7, 66, 0, 0, 10766, - 1441, 1, 0, 0, 0, 10767, 10824, 5, 400, 0, 0, 10768, 10824, 5, 401, 0, - 0, 10769, 10824, 3, 1142, 571, 0, 10770, 10824, 5, 403, 0, 0, 10771, 10824, - 5, 404, 0, 0, 10772, 10824, 3, 1150, 575, 0, 10773, 10824, 5, 406, 0, 0, - 10774, 10824, 5, 407, 0, 0, 10775, 10824, 5, 408, 0, 0, 10776, 10824, 5, - 409, 0, 0, 10777, 10824, 5, 410, 0, 0, 10778, 10824, 5, 411, 0, 0, 10779, - 10824, 5, 412, 0, 0, 10780, 10824, 5, 491, 0, 0, 10781, 10824, 5, 413, - 0, 0, 10782, 10824, 5, 414, 0, 0, 10783, 10824, 5, 415, 0, 0, 10784, 10824, - 5, 416, 0, 0, 10785, 10824, 5, 107, 0, 0, 10786, 10824, 5, 662, 0, 0, 10787, - 10824, 5, 106, 0, 0, 10788, 10824, 5, 663, 0, 0, 10789, 10824, 5, 417, - 0, 0, 10790, 10824, 5, 418, 0, 0, 10791, 10824, 5, 419, 0, 0, 10792, 10824, - 5, 420, 0, 0, 10793, 10824, 5, 510, 0, 0, 10794, 10824, 5, 421, 0, 0, 10795, - 10824, 3, 1138, 569, 0, 10796, 10824, 5, 474, 0, 0, 10797, 10824, 5, 423, - 0, 0, 10798, 10824, 5, 425, 0, 0, 10799, 10824, 5, 426, 0, 0, 10800, 10824, - 5, 427, 0, 0, 10801, 10824, 5, 428, 0, 0, 10802, 10824, 5, 429, 0, 0, 10803, - 10824, 5, 430, 0, 0, 10804, 10824, 5, 431, 0, 0, 10805, 10824, 5, 432, - 0, 0, 10806, 10824, 5, 433, 0, 0, 10807, 10824, 5, 434, 0, 0, 10808, 10824, - 5, 435, 0, 0, 10809, 10824, 5, 436, 0, 0, 10810, 10824, 5, 437, 0, 0, 10811, - 10824, 5, 438, 0, 0, 10812, 10824, 5, 446, 0, 0, 10813, 10824, 5, 447, - 0, 0, 10814, 10824, 5, 448, 0, 0, 10815, 10824, 5, 449, 0, 0, 10816, 10824, - 5, 497, 0, 0, 10817, 10824, 5, 450, 0, 0, 10818, 10824, 5, 451, 0, 0, 10819, - 10824, 5, 452, 0, 0, 10820, 10824, 5, 453, 0, 0, 10821, 10824, 5, 495, - 0, 0, 10822, 10824, 3, 1448, 724, 0, 10823, 10767, 1, 0, 0, 0, 10823, 10768, - 1, 0, 0, 0, 10823, 10769, 1, 0, 0, 0, 10823, 10770, 1, 0, 0, 0, 10823, - 10771, 1, 0, 0, 0, 10823, 10772, 1, 0, 0, 0, 10823, 10773, 1, 0, 0, 0, - 10823, 10774, 1, 0, 0, 0, 10823, 10775, 1, 0, 0, 0, 10823, 10776, 1, 0, - 0, 0, 10823, 10777, 1, 0, 0, 0, 10823, 10778, 1, 0, 0, 0, 10823, 10779, - 1, 0, 0, 0, 10823, 10780, 1, 0, 0, 0, 10823, 10781, 1, 0, 0, 0, 10823, - 10782, 1, 0, 0, 0, 10823, 10783, 1, 0, 0, 0, 10823, 10784, 1, 0, 0, 0, - 10823, 10785, 1, 0, 0, 0, 10823, 10786, 1, 0, 0, 0, 10823, 10787, 1, 0, - 0, 0, 10823, 10788, 1, 0, 0, 0, 10823, 10789, 1, 0, 0, 0, 10823, 10790, - 1, 0, 0, 0, 10823, 10791, 1, 0, 0, 0, 10823, 10792, 1, 0, 0, 0, 10823, - 10793, 1, 0, 0, 0, 10823, 10794, 1, 0, 0, 0, 10823, 10795, 1, 0, 0, 0, - 10823, 10796, 1, 0, 0, 0, 10823, 10797, 1, 0, 0, 0, 10823, 10798, 1, 0, - 0, 0, 10823, 10799, 1, 0, 0, 0, 10823, 10800, 1, 0, 0, 0, 10823, 10801, - 1, 0, 0, 0, 10823, 10802, 1, 0, 0, 0, 10823, 10803, 1, 0, 0, 0, 10823, - 10804, 1, 0, 0, 0, 10823, 10805, 1, 0, 0, 0, 10823, 10806, 1, 0, 0, 0, - 10823, 10807, 1, 0, 0, 0, 10823, 10808, 1, 0, 0, 0, 10823, 10809, 1, 0, - 0, 0, 10823, 10810, 1, 0, 0, 0, 10823, 10811, 1, 0, 0, 0, 10823, 10812, - 1, 0, 0, 0, 10823, 10813, 1, 0, 0, 0, 10823, 10814, 1, 0, 0, 0, 10823, - 10815, 1, 0, 0, 0, 10823, 10816, 1, 0, 0, 0, 10823, 10817, 1, 0, 0, 0, - 10823, 10818, 1, 0, 0, 0, 10823, 10819, 1, 0, 0, 0, 10823, 10820, 1, 0, - 0, 0, 10823, 10821, 1, 0, 0, 0, 10823, 10822, 1, 0, 0, 0, 10824, 1443, - 1, 0, 0, 0, 10825, 10826, 7, 67, 0, 0, 10826, 1445, 1, 0, 0, 0, 10827, - 10828, 7, 68, 0, 0, 10828, 1447, 1, 0, 0, 0, 10829, 10830, 7, 69, 0, 0, - 10830, 1449, 1, 0, 0, 0, 10831, 10832, 3, 1452, 726, 0, 10832, 10834, 3, - 1462, 731, 0, 10833, 10835, 3, 1460, 730, 0, 10834, 10833, 1, 0, 0, 0, - 10834, 10835, 1, 0, 0, 0, 10835, 1451, 1, 0, 0, 0, 10836, 10838, 3, 1454, - 727, 0, 10837, 10836, 1, 0, 0, 0, 10838, 10841, 1, 0, 0, 0, 10839, 10837, - 1, 0, 0, 0, 10839, 10840, 1, 0, 0, 0, 10840, 1453, 1, 0, 0, 0, 10841, 10839, - 1, 0, 0, 0, 10842, 10843, 3, 1456, 728, 0, 10843, 10844, 5, 291, 0, 0, - 10844, 10845, 5, 511, 0, 0, 10845, 10863, 1, 0, 0, 0, 10846, 10847, 3, - 1456, 728, 0, 10847, 10848, 5, 512, 0, 0, 10848, 10849, 3, 1458, 729, 0, - 10849, 10863, 1, 0, 0, 0, 10850, 10851, 3, 1456, 728, 0, 10851, 10852, - 5, 513, 0, 0, 10852, 10853, 5, 514, 0, 0, 10853, 10863, 1, 0, 0, 0, 10854, - 10855, 3, 1456, 728, 0, 10855, 10856, 5, 513, 0, 0, 10856, 10857, 5, 515, - 0, 0, 10857, 10863, 1, 0, 0, 0, 10858, 10859, 3, 1456, 728, 0, 10859, 10860, - 5, 513, 0, 0, 10860, 10861, 5, 516, 0, 0, 10861, 10863, 1, 0, 0, 0, 10862, - 10842, 1, 0, 0, 0, 10862, 10846, 1, 0, 0, 0, 10862, 10850, 1, 0, 0, 0, - 10862, 10854, 1, 0, 0, 0, 10862, 10858, 1, 0, 0, 0, 10863, 1455, 1, 0, - 0, 0, 10864, 10865, 5, 29, 0, 0, 10865, 1457, 1, 0, 0, 0, 10866, 10871, - 3, 1412, 706, 0, 10867, 10871, 3, 1446, 723, 0, 10868, 10871, 3, 1662, - 831, 0, 10869, 10871, 3, 1440, 720, 0, 10870, 10866, 1, 0, 0, 0, 10870, - 10867, 1, 0, 0, 0, 10870, 10868, 1, 0, 0, 0, 10870, 10869, 1, 0, 0, 0, - 10871, 1459, 1, 0, 0, 0, 10872, 10873, 5, 7, 0, 0, 10873, 1461, 1, 0, 0, - 0, 10874, 10875, 3, 1464, 732, 0, 10875, 10876, 5, 165, 0, 0, 10876, 10878, - 3, 1506, 753, 0, 10877, 10879, 3, 1642, 821, 0, 10878, 10877, 1, 0, 0, - 0, 10878, 10879, 1, 0, 0, 0, 10879, 10880, 1, 0, 0, 0, 10880, 10882, 5, - 475, 0, 0, 10881, 10883, 3, 1656, 828, 0, 10882, 10881, 1, 0, 0, 0, 10882, - 10883, 1, 0, 0, 0, 10883, 1463, 1, 0, 0, 0, 10884, 10886, 3, 1652, 826, - 0, 10885, 10884, 1, 0, 0, 0, 10885, 10886, 1, 0, 0, 0, 10886, 10891, 1, - 0, 0, 0, 10887, 10889, 3, 1466, 733, 0, 10888, 10890, 3, 1468, 734, 0, - 10889, 10888, 1, 0, 0, 0, 10889, 10890, 1, 0, 0, 0, 10890, 10892, 1, 0, - 0, 0, 10891, 10887, 1, 0, 0, 0, 10891, 10892, 1, 0, 0, 0, 10892, 1465, - 1, 0, 0, 0, 10893, 10894, 5, 197, 0, 0, 10894, 1467, 1, 0, 0, 0, 10895, - 10897, 3, 1472, 736, 0, 10896, 10895, 1, 0, 0, 0, 10897, 10898, 1, 0, 0, - 0, 10898, 10896, 1, 0, 0, 0, 10898, 10899, 1, 0, 0, 0, 10899, 1469, 1, - 0, 0, 0, 10900, 10901, 5, 18, 0, 0, 10901, 10902, 3, 1660, 830, 0, 10902, - 10903, 5, 19, 0, 0, 10903, 1471, 1, 0, 0, 0, 10904, 10908, 3, 1474, 737, - 0, 10905, 10908, 5, 197, 0, 0, 10906, 10908, 3, 1470, 735, 0, 10907, 10904, - 1, 0, 0, 0, 10907, 10905, 1, 0, 0, 0, 10907, 10906, 1, 0, 0, 0, 10908, - 1473, 1, 0, 0, 0, 10909, 10936, 3, 1490, 745, 0, 10910, 10911, 5, 517, - 0, 0, 10911, 10912, 5, 62, 0, 0, 10912, 10937, 3, 1488, 744, 0, 10913, - 10915, 3, 1492, 746, 0, 10914, 10913, 1, 0, 0, 0, 10914, 10915, 1, 0, 0, - 0, 10915, 10916, 1, 0, 0, 0, 10916, 10918, 3, 1494, 747, 0, 10917, 10919, - 3, 1496, 748, 0, 10918, 10917, 1, 0, 0, 0, 10918, 10919, 1, 0, 0, 0, 10919, - 10921, 1, 0, 0, 0, 10920, 10922, 3, 1498, 749, 0, 10921, 10920, 1, 0, 0, - 0, 10921, 10922, 1, 0, 0, 0, 10922, 10924, 1, 0, 0, 0, 10923, 10925, 3, - 1500, 750, 0, 10924, 10923, 1, 0, 0, 0, 10924, 10925, 1, 0, 0, 0, 10925, - 10937, 1, 0, 0, 0, 10926, 10928, 3, 1476, 738, 0, 10927, 10926, 1, 0, 0, - 0, 10927, 10928, 1, 0, 0, 0, 10928, 10929, 1, 0, 0, 0, 10929, 10931, 5, - 191, 0, 0, 10930, 10932, 3, 1480, 740, 0, 10931, 10930, 1, 0, 0, 0, 10931, - 10932, 1, 0, 0, 0, 10932, 10933, 1, 0, 0, 0, 10933, 10934, 3, 1486, 743, - 0, 10934, 10935, 3, 1478, 739, 0, 10935, 10937, 1, 0, 0, 0, 10936, 10910, - 1, 0, 0, 0, 10936, 10914, 1, 0, 0, 0, 10936, 10927, 1, 0, 0, 0, 10937, - 10938, 1, 0, 0, 0, 10938, 10939, 5, 7, 0, 0, 10939, 1475, 1, 0, 0, 0, 10940, - 10941, 5, 281, 0, 0, 10941, 10944, 5, 336, 0, 0, 10942, 10944, 5, 336, - 0, 0, 10943, 10940, 1, 0, 0, 0, 10943, 10942, 1, 0, 0, 0, 10944, 1477, - 1, 0, 0, 0, 10945, 10946, 3, 968, 484, 0, 10946, 1479, 1, 0, 0, 0, 10947, - 10948, 5, 2, 0, 0, 10948, 10949, 3, 1482, 741, 0, 10949, 10950, 5, 3, 0, - 0, 10950, 1481, 1, 0, 0, 0, 10951, 10956, 3, 1484, 742, 0, 10952, 10953, - 5, 6, 0, 0, 10953, 10955, 3, 1484, 742, 0, 10954, 10952, 1, 0, 0, 0, 10955, - 10958, 1, 0, 0, 0, 10956, 10954, 1, 0, 0, 0, 10956, 10957, 1, 0, 0, 0, - 10957, 1483, 1, 0, 0, 0, 10958, 10956, 1, 0, 0, 0, 10959, 10960, 3, 1490, - 745, 0, 10960, 10961, 3, 1494, 747, 0, 10961, 1485, 1, 0, 0, 0, 10962, - 10963, 7, 70, 0, 0, 10963, 1487, 1, 0, 0, 0, 10964, 10967, 5, 28, 0, 0, - 10965, 10967, 3, 1426, 713, 0, 10966, 10964, 1, 0, 0, 0, 10966, 10965, - 1, 0, 0, 0, 10967, 1489, 1, 0, 0, 0, 10968, 10969, 3, 1660, 830, 0, 10969, - 1491, 1, 0, 0, 0, 10970, 10971, 5, 518, 0, 0, 10971, 1493, 1, 0, 0, 0, - 10972, 10973, 3, 1126, 563, 0, 10973, 1495, 1, 0, 0, 0, 10974, 10975, 5, - 43, 0, 0, 10975, 10976, 3, 526, 263, 0, 10976, 1497, 1, 0, 0, 0, 10977, - 10978, 5, 77, 0, 0, 10978, 10979, 5, 78, 0, 0, 10979, 1499, 1, 0, 0, 0, - 10980, 10981, 3, 1502, 751, 0, 10981, 10982, 3, 1664, 832, 0, 10982, 1501, - 1, 0, 0, 0, 10983, 10986, 3, 1504, 752, 0, 10984, 10986, 5, 53, 0, 0, 10985, - 10983, 1, 0, 0, 0, 10985, 10984, 1, 0, 0, 0, 10986, 1503, 1, 0, 0, 0, 10987, - 10988, 7, 71, 0, 0, 10988, 1505, 1, 0, 0, 0, 10989, 10991, 3, 1508, 754, - 0, 10990, 10989, 1, 0, 0, 0, 10991, 10994, 1, 0, 0, 0, 10992, 10990, 1, - 0, 0, 0, 10992, 10993, 1, 0, 0, 0, 10993, 1507, 1, 0, 0, 0, 10994, 10992, - 1, 0, 0, 0, 10995, 10996, 3, 1462, 731, 0, 10996, 10997, 5, 7, 0, 0, 10997, - 11023, 1, 0, 0, 0, 10998, 11023, 3, 1574, 787, 0, 10999, 11023, 3, 1578, - 789, 0, 11000, 11023, 3, 1516, 758, 0, 11001, 11023, 3, 1532, 766, 0, 11002, - 11023, 3, 1538, 769, 0, 11003, 11023, 3, 1548, 774, 0, 11004, 11023, 3, - 1550, 775, 0, 11005, 11023, 3, 1552, 776, 0, 11006, 11023, 3, 1566, 783, - 0, 11007, 11023, 3, 1570, 785, 0, 11008, 11023, 3, 1590, 795, 0, 11009, - 11023, 3, 1596, 798, 0, 11010, 11023, 3, 1598, 799, 0, 11011, 11023, 3, - 1510, 755, 0, 11012, 11023, 3, 1512, 756, 0, 11013, 11023, 3, 1518, 759, - 0, 11014, 11023, 3, 1606, 803, 0, 11015, 11023, 3, 1618, 809, 0, 11016, - 11023, 3, 1626, 813, 0, 11017, 11023, 3, 1628, 814, 0, 11018, 11023, 3, - 1630, 815, 0, 11019, 11023, 3, 1632, 816, 0, 11020, 11023, 3, 1634, 817, - 0, 11021, 11023, 3, 1638, 819, 0, 11022, 10995, 1, 0, 0, 0, 11022, 10998, - 1, 0, 0, 0, 11022, 10999, 1, 0, 0, 0, 11022, 11000, 1, 0, 0, 0, 11022, - 11001, 1, 0, 0, 0, 11022, 11002, 1, 0, 0, 0, 11022, 11003, 1, 0, 0, 0, - 11022, 11004, 1, 0, 0, 0, 11022, 11005, 1, 0, 0, 0, 11022, 11006, 1, 0, - 0, 0, 11022, 11007, 1, 0, 0, 0, 11022, 11008, 1, 0, 0, 0, 11022, 11009, - 1, 0, 0, 0, 11022, 11010, 1, 0, 0, 0, 11022, 11011, 1, 0, 0, 0, 11022, - 11012, 1, 0, 0, 0, 11022, 11013, 1, 0, 0, 0, 11022, 11014, 1, 0, 0, 0, - 11022, 11015, 1, 0, 0, 0, 11022, 11016, 1, 0, 0, 0, 11022, 11017, 1, 0, - 0, 0, 11022, 11018, 1, 0, 0, 0, 11022, 11019, 1, 0, 0, 0, 11022, 11020, - 1, 0, 0, 0, 11022, 11021, 1, 0, 0, 0, 11023, 1509, 1, 0, 0, 0, 11024, 11025, - 5, 519, 0, 0, 11025, 11026, 3, 1668, 834, 0, 11026, 11027, 5, 7, 0, 0, - 11027, 1511, 1, 0, 0, 0, 11028, 11029, 5, 454, 0, 0, 11029, 11030, 3, 1660, - 830, 0, 11030, 11032, 5, 2, 0, 0, 11031, 11033, 3, 1514, 757, 0, 11032, - 11031, 1, 0, 0, 0, 11032, 11033, 1, 0, 0, 0, 11033, 11034, 1, 0, 0, 0, - 11034, 11035, 5, 3, 0, 0, 11035, 11036, 5, 7, 0, 0, 11036, 11047, 1, 0, - 0, 0, 11037, 11038, 5, 57, 0, 0, 11038, 11039, 3, 1660, 830, 0, 11039, - 11041, 5, 2, 0, 0, 11040, 11042, 3, 1514, 757, 0, 11041, 11040, 1, 0, 0, - 0, 11041, 11042, 1, 0, 0, 0, 11042, 11043, 1, 0, 0, 0, 11043, 11044, 5, - 3, 0, 0, 11044, 11045, 5, 7, 0, 0, 11045, 11047, 1, 0, 0, 0, 11046, 11028, - 1, 0, 0, 0, 11046, 11037, 1, 0, 0, 0, 11047, 1513, 1, 0, 0, 0, 11048, 11049, - 3, 1332, 666, 0, 11049, 1515, 1, 0, 0, 0, 11050, 11051, 3, 1530, 765, 0, - 11051, 11052, 3, 1504, 752, 0, 11052, 11053, 3, 1664, 832, 0, 11053, 11054, - 5, 7, 0, 0, 11054, 1517, 1, 0, 0, 0, 11055, 11057, 5, 520, 0, 0, 11056, - 11058, 3, 1520, 760, 0, 11057, 11056, 1, 0, 0, 0, 11057, 11058, 1, 0, 0, - 0, 11058, 11059, 1, 0, 0, 0, 11059, 11060, 5, 521, 0, 0, 11060, 11061, - 3, 1522, 761, 0, 11061, 11062, 5, 7, 0, 0, 11062, 1519, 1, 0, 0, 0, 11063, - 11064, 7, 72, 0, 0, 11064, 1521, 1, 0, 0, 0, 11065, 11070, 3, 1524, 762, - 0, 11066, 11067, 5, 6, 0, 0, 11067, 11069, 3, 1524, 762, 0, 11068, 11066, - 1, 0, 0, 0, 11069, 11072, 1, 0, 0, 0, 11070, 11068, 1, 0, 0, 0, 11070, - 11071, 1, 0, 0, 0, 11071, 1523, 1, 0, 0, 0, 11072, 11070, 1, 0, 0, 0, 11073, - 11074, 3, 1528, 764, 0, 11074, 11075, 3, 1504, 752, 0, 11075, 11076, 3, - 1526, 763, 0, 11076, 1525, 1, 0, 0, 0, 11077, 11078, 3, 1426, 713, 0, 11078, - 1527, 1, 0, 0, 0, 11079, 11080, 3, 1530, 765, 0, 11080, 1529, 1, 0, 0, - 0, 11081, 11084, 3, 526, 263, 0, 11082, 11084, 5, 28, 0, 0, 11083, 11081, - 1, 0, 0, 0, 11083, 11082, 1, 0, 0, 0, 11084, 11091, 1, 0, 0, 0, 11085, - 11086, 5, 4, 0, 0, 11086, 11087, 3, 1670, 835, 0, 11087, 11088, 5, 5, 0, - 0, 11088, 11090, 1, 0, 0, 0, 11089, 11085, 1, 0, 0, 0, 11090, 11093, 1, - 0, 0, 0, 11091, 11089, 1, 0, 0, 0, 11091, 11092, 1, 0, 0, 0, 11092, 1531, - 1, 0, 0, 0, 11093, 11091, 1, 0, 0, 0, 11094, 11095, 5, 239, 0, 0, 11095, - 11096, 3, 1666, 833, 0, 11096, 11097, 5, 93, 0, 0, 11097, 11098, 3, 1506, - 753, 0, 11098, 11100, 3, 1534, 767, 0, 11099, 11101, 3, 1536, 768, 0, 11100, - 11099, 1, 0, 0, 0, 11100, 11101, 1, 0, 0, 0, 11101, 11102, 1, 0, 0, 0, - 11102, 11103, 5, 475, 0, 0, 11103, 11104, 5, 239, 0, 0, 11104, 11105, 5, - 7, 0, 0, 11105, 1533, 1, 0, 0, 0, 11106, 11107, 5, 523, 0, 0, 11107, 11108, - 3, 1170, 585, 0, 11108, 11109, 5, 93, 0, 0, 11109, 11110, 3, 1506, 753, - 0, 11110, 11112, 1, 0, 0, 0, 11111, 11106, 1, 0, 0, 0, 11112, 11115, 1, - 0, 0, 0, 11113, 11111, 1, 0, 0, 0, 11113, 11114, 1, 0, 0, 0, 11114, 1535, - 1, 0, 0, 0, 11115, 11113, 1, 0, 0, 0, 11116, 11117, 5, 58, 0, 0, 11117, - 11118, 3, 1506, 753, 0, 11118, 1537, 1, 0, 0, 0, 11119, 11121, 5, 40, 0, - 0, 11120, 11122, 3, 1540, 770, 0, 11121, 11120, 1, 0, 0, 0, 11121, 11122, - 1, 0, 0, 0, 11122, 11123, 1, 0, 0, 0, 11123, 11125, 3, 1542, 771, 0, 11124, - 11126, 3, 1546, 773, 0, 11125, 11124, 1, 0, 0, 0, 11125, 11126, 1, 0, 0, - 0, 11126, 11127, 1, 0, 0, 0, 11127, 11128, 5, 475, 0, 0, 11128, 11129, - 5, 40, 0, 0, 11129, 11130, 5, 7, 0, 0, 11130, 1539, 1, 0, 0, 0, 11131, - 11132, 3, 1664, 832, 0, 11132, 1541, 1, 0, 0, 0, 11133, 11135, 3, 1544, - 772, 0, 11134, 11133, 1, 0, 0, 0, 11135, 11136, 1, 0, 0, 0, 11136, 11134, - 1, 0, 0, 0, 11136, 11137, 1, 0, 0, 0, 11137, 1543, 1, 0, 0, 0, 11138, 11139, - 5, 102, 0, 0, 11139, 11140, 3, 1332, 666, 0, 11140, 11141, 5, 93, 0, 0, - 11141, 11142, 3, 1506, 753, 0, 11142, 1545, 1, 0, 0, 0, 11143, 11144, 5, - 58, 0, 0, 11144, 11145, 3, 1506, 753, 0, 11145, 1547, 1, 0, 0, 0, 11146, - 11148, 3, 1654, 827, 0, 11147, 11146, 1, 0, 0, 0, 11147, 11148, 1, 0, 0, - 0, 11148, 11149, 1, 0, 0, 0, 11149, 11150, 3, 1594, 797, 0, 11150, 1549, - 1, 0, 0, 0, 11151, 11153, 3, 1654, 827, 0, 11152, 11151, 1, 0, 0, 0, 11152, - 11153, 1, 0, 0, 0, 11153, 11154, 1, 0, 0, 0, 11154, 11155, 5, 524, 0, 0, - 11155, 11156, 3, 1672, 836, 0, 11156, 11157, 3, 1594, 797, 0, 11157, 1551, - 1, 0, 0, 0, 11158, 11160, 3, 1654, 827, 0, 11159, 11158, 1, 0, 0, 0, 11159, - 11160, 1, 0, 0, 0, 11160, 11161, 1, 0, 0, 0, 11161, 11162, 5, 62, 0, 0, - 11162, 11163, 3, 1554, 777, 0, 11163, 11164, 3, 1594, 797, 0, 11164, 1553, - 1, 0, 0, 0, 11165, 11166, 3, 1564, 782, 0, 11166, 11187, 5, 68, 0, 0, 11167, - 11169, 3, 962, 481, 0, 11168, 11170, 3, 1558, 779, 0, 11169, 11168, 1, - 0, 0, 0, 11169, 11170, 1, 0, 0, 0, 11170, 11188, 1, 0, 0, 0, 11171, 11188, - 3, 968, 484, 0, 11172, 11188, 3, 886, 443, 0, 11173, 11174, 5, 221, 0, - 0, 11174, 11176, 3, 1170, 585, 0, 11175, 11177, 3, 1556, 778, 0, 11176, - 11175, 1, 0, 0, 0, 11176, 11177, 1, 0, 0, 0, 11177, 11188, 1, 0, 0, 0, - 11178, 11180, 3, 1560, 780, 0, 11179, 11178, 1, 0, 0, 0, 11179, 11180, - 1, 0, 0, 0, 11180, 11181, 1, 0, 0, 0, 11181, 11182, 3, 1170, 585, 0, 11182, - 11183, 5, 24, 0, 0, 11183, 11185, 3, 1170, 585, 0, 11184, 11186, 3, 1562, - 781, 0, 11185, 11184, 1, 0, 0, 0, 11185, 11186, 1, 0, 0, 0, 11186, 11188, - 1, 0, 0, 0, 11187, 11167, 1, 0, 0, 0, 11187, 11171, 1, 0, 0, 0, 11187, - 11172, 1, 0, 0, 0, 11187, 11173, 1, 0, 0, 0, 11187, 11179, 1, 0, 0, 0, - 11188, 1555, 1, 0, 0, 0, 11189, 11190, 5, 100, 0, 0, 11190, 11191, 3, 1332, - 666, 0, 11191, 1557, 1, 0, 0, 0, 11192, 11193, 5, 2, 0, 0, 11193, 11198, - 3, 1170, 585, 0, 11194, 11195, 5, 6, 0, 0, 11195, 11197, 3, 1170, 585, - 0, 11196, 11194, 1, 0, 0, 0, 11197, 11200, 1, 0, 0, 0, 11198, 11196, 1, - 0, 0, 0, 11198, 11199, 1, 0, 0, 0, 11199, 11201, 1, 0, 0, 0, 11200, 11198, - 1, 0, 0, 0, 11201, 11202, 5, 3, 0, 0, 11202, 1559, 1, 0, 0, 0, 11203, 11204, - 5, 525, 0, 0, 11204, 1561, 1, 0, 0, 0, 11205, 11206, 5, 166, 0, 0, 11206, - 11207, 3, 1170, 585, 0, 11207, 1563, 1, 0, 0, 0, 11208, 11209, 3, 524, - 262, 0, 11209, 1565, 1, 0, 0, 0, 11210, 11212, 3, 1654, 827, 0, 11211, - 11210, 1, 0, 0, 0, 11211, 11212, 1, 0, 0, 0, 11212, 11213, 1, 0, 0, 0, - 11213, 11214, 5, 526, 0, 0, 11214, 11216, 3, 1564, 782, 0, 11215, 11217, - 3, 1568, 784, 0, 11216, 11215, 1, 0, 0, 0, 11216, 11217, 1, 0, 0, 0, 11217, - 11218, 1, 0, 0, 0, 11218, 11219, 5, 68, 0, 0, 11219, 11220, 5, 35, 0, 0, - 11220, 11221, 3, 1170, 585, 0, 11221, 11222, 3, 1594, 797, 0, 11222, 1567, - 1, 0, 0, 0, 11223, 11224, 5, 527, 0, 0, 11224, 11225, 3, 1410, 705, 0, - 11225, 1569, 1, 0, 0, 0, 11226, 11228, 3, 1572, 786, 0, 11227, 11229, 3, - 1656, 828, 0, 11228, 11227, 1, 0, 0, 0, 11228, 11229, 1, 0, 0, 0, 11229, - 11231, 1, 0, 0, 0, 11230, 11232, 3, 1658, 829, 0, 11231, 11230, 1, 0, 0, - 0, 11231, 11232, 1, 0, 0, 0, 11232, 11233, 1, 0, 0, 0, 11233, 11234, 5, - 7, 0, 0, 11234, 1571, 1, 0, 0, 0, 11235, 11236, 7, 73, 0, 0, 11236, 1573, - 1, 0, 0, 0, 11237, 11252, 5, 529, 0, 0, 11238, 11239, 5, 280, 0, 0, 11239, - 11253, 3, 1664, 832, 0, 11240, 11247, 5, 530, 0, 0, 11241, 11242, 5, 221, - 0, 0, 11242, 11244, 3, 1170, 585, 0, 11243, 11245, 3, 1556, 778, 0, 11244, - 11243, 1, 0, 0, 0, 11244, 11245, 1, 0, 0, 0, 11245, 11248, 1, 0, 0, 0, - 11246, 11248, 3, 968, 484, 0, 11247, 11241, 1, 0, 0, 0, 11247, 11246, 1, - 0, 0, 0, 11248, 11253, 1, 0, 0, 0, 11249, 11251, 3, 1576, 788, 0, 11250, - 11249, 1, 0, 0, 0, 11250, 11251, 1, 0, 0, 0, 11251, 11253, 1, 0, 0, 0, - 11252, 11238, 1, 0, 0, 0, 11252, 11240, 1, 0, 0, 0, 11252, 11250, 1, 0, - 0, 0, 11253, 11254, 1, 0, 0, 0, 11254, 11255, 5, 7, 0, 0, 11255, 1575, - 1, 0, 0, 0, 11256, 11257, 3, 1664, 832, 0, 11257, 1577, 1, 0, 0, 0, 11258, - 11260, 5, 531, 0, 0, 11259, 11261, 3, 1580, 790, 0, 11260, 11259, 1, 0, - 0, 0, 11260, 11261, 1, 0, 0, 0, 11261, 11262, 1, 0, 0, 0, 11262, 11264, - 3, 1412, 706, 0, 11263, 11265, 3, 1582, 791, 0, 11264, 11263, 1, 0, 0, - 0, 11264, 11265, 1, 0, 0, 0, 11265, 11267, 1, 0, 0, 0, 11266, 11268, 3, - 1584, 792, 0, 11267, 11266, 1, 0, 0, 0, 11267, 11268, 1, 0, 0, 0, 11268, - 11269, 1, 0, 0, 0, 11269, 11270, 5, 7, 0, 0, 11270, 11302, 1, 0, 0, 0, - 11271, 11273, 5, 531, 0, 0, 11272, 11274, 3, 1580, 790, 0, 11273, 11272, - 1, 0, 0, 0, 11273, 11274, 1, 0, 0, 0, 11274, 11275, 1, 0, 0, 0, 11275, - 11277, 3, 1436, 718, 0, 11276, 11278, 3, 1584, 792, 0, 11277, 11276, 1, - 0, 0, 0, 11277, 11278, 1, 0, 0, 0, 11278, 11279, 1, 0, 0, 0, 11279, 11280, - 5, 7, 0, 0, 11280, 11302, 1, 0, 0, 0, 11281, 11283, 5, 531, 0, 0, 11282, - 11284, 3, 1580, 790, 0, 11283, 11282, 1, 0, 0, 0, 11283, 11284, 1, 0, 0, - 0, 11284, 11285, 1, 0, 0, 0, 11285, 11286, 5, 532, 0, 0, 11286, 11288, - 3, 1412, 706, 0, 11287, 11289, 3, 1584, 792, 0, 11288, 11287, 1, 0, 0, - 0, 11288, 11289, 1, 0, 0, 0, 11289, 11290, 1, 0, 0, 0, 11290, 11291, 5, - 7, 0, 0, 11291, 11302, 1, 0, 0, 0, 11292, 11294, 5, 531, 0, 0, 11293, 11295, - 3, 1580, 790, 0, 11294, 11293, 1, 0, 0, 0, 11294, 11295, 1, 0, 0, 0, 11295, - 11297, 1, 0, 0, 0, 11296, 11298, 3, 1584, 792, 0, 11297, 11296, 1, 0, 0, - 0, 11297, 11298, 1, 0, 0, 0, 11298, 11299, 1, 0, 0, 0, 11299, 11302, 5, - 7, 0, 0, 11300, 11302, 5, 531, 0, 0, 11301, 11258, 1, 0, 0, 0, 11301, 11271, - 1, 0, 0, 0, 11301, 11281, 1, 0, 0, 0, 11301, 11292, 1, 0, 0, 0, 11301, - 11300, 1, 0, 0, 0, 11302, 1579, 1, 0, 0, 0, 11303, 11304, 7, 74, 0, 0, - 11304, 1581, 1, 0, 0, 0, 11305, 11306, 5, 6, 0, 0, 11306, 11308, 3, 1170, - 585, 0, 11307, 11305, 1, 0, 0, 0, 11308, 11309, 1, 0, 0, 0, 11309, 11307, - 1, 0, 0, 0, 11309, 11310, 1, 0, 0, 0, 11310, 1583, 1, 0, 0, 0, 11311, 11312, - 5, 100, 0, 0, 11312, 11313, 3, 1588, 794, 0, 11313, 1585, 1, 0, 0, 0, 11314, - 11315, 3, 1436, 718, 0, 11315, 11316, 5, 10, 0, 0, 11316, 11317, 3, 1170, - 585, 0, 11317, 1587, 1, 0, 0, 0, 11318, 11323, 3, 1586, 793, 0, 11319, - 11320, 5, 6, 0, 0, 11320, 11322, 3, 1586, 793, 0, 11321, 11319, 1, 0, 0, - 0, 11322, 11325, 1, 0, 0, 0, 11323, 11321, 1, 0, 0, 0, 11323, 11324, 1, - 0, 0, 0, 11324, 1589, 1, 0, 0, 0, 11325, 11323, 1, 0, 0, 0, 11326, 11327, - 5, 539, 0, 0, 11327, 11329, 3, 1664, 832, 0, 11328, 11330, 3, 1592, 796, - 0, 11329, 11328, 1, 0, 0, 0, 11329, 11330, 1, 0, 0, 0, 11330, 11331, 1, - 0, 0, 0, 11331, 11332, 5, 7, 0, 0, 11332, 1591, 1, 0, 0, 0, 11333, 11334, - 5, 6, 0, 0, 11334, 11335, 3, 1664, 832, 0, 11335, 1593, 1, 0, 0, 0, 11336, - 11337, 5, 540, 0, 0, 11337, 11338, 3, 1506, 753, 0, 11338, 11339, 5, 475, - 0, 0, 11339, 11341, 5, 540, 0, 0, 11340, 11342, 3, 1656, 828, 0, 11341, - 11340, 1, 0, 0, 0, 11341, 11342, 1, 0, 0, 0, 11342, 11343, 1, 0, 0, 0, - 11343, 11344, 5, 7, 0, 0, 11344, 1595, 1, 0, 0, 0, 11345, 11346, 3, 1674, - 837, 0, 11346, 11347, 5, 7, 0, 0, 11347, 1597, 1, 0, 0, 0, 11348, 11349, - 5, 221, 0, 0, 11349, 11363, 3, 1170, 585, 0, 11350, 11352, 3, 1604, 802, - 0, 11351, 11350, 1, 0, 0, 0, 11351, 11352, 1, 0, 0, 0, 11352, 11354, 1, - 0, 0, 0, 11353, 11355, 3, 1600, 800, 0, 11354, 11353, 1, 0, 0, 0, 11354, - 11355, 1, 0, 0, 0, 11355, 11364, 1, 0, 0, 0, 11356, 11358, 3, 1600, 800, - 0, 11357, 11356, 1, 0, 0, 0, 11357, 11358, 1, 0, 0, 0, 11358, 11360, 1, - 0, 0, 0, 11359, 11361, 3, 1604, 802, 0, 11360, 11359, 1, 0, 0, 0, 11360, - 11361, 1, 0, 0, 0, 11361, 11364, 1, 0, 0, 0, 11362, 11364, 1, 0, 0, 0, - 11363, 11351, 1, 0, 0, 0, 11363, 11357, 1, 0, 0, 0, 11363, 11362, 1, 0, - 0, 0, 11364, 11365, 1, 0, 0, 0, 11365, 11366, 5, 7, 0, 0, 11366, 1599, - 1, 0, 0, 0, 11367, 11368, 5, 100, 0, 0, 11368, 11369, 3, 1602, 801, 0, - 11369, 1601, 1, 0, 0, 0, 11370, 11375, 3, 1170, 585, 0, 11371, 11372, 5, - 6, 0, 0, 11372, 11374, 3, 1170, 585, 0, 11373, 11371, 1, 0, 0, 0, 11374, - 11377, 1, 0, 0, 0, 11375, 11373, 1, 0, 0, 0, 11375, 11376, 1, 0, 0, 0, - 11376, 1603, 1, 0, 0, 0, 11377, 11375, 1, 0, 0, 0, 11378, 11380, 5, 71, - 0, 0, 11379, 11381, 5, 358, 0, 0, 11380, 11379, 1, 0, 0, 0, 11380, 11381, - 1, 0, 0, 0, 11381, 11382, 1, 0, 0, 0, 11382, 11383, 3, 1620, 810, 0, 11383, - 1605, 1, 0, 0, 0, 11384, 11405, 5, 541, 0, 0, 11385, 11387, 3, 1640, 820, - 0, 11386, 11388, 3, 1614, 807, 0, 11387, 11386, 1, 0, 0, 0, 11387, 11388, - 1, 0, 0, 0, 11388, 11389, 1, 0, 0, 0, 11389, 11396, 5, 62, 0, 0, 11390, - 11397, 3, 968, 484, 0, 11391, 11392, 5, 221, 0, 0, 11392, 11394, 3, 1664, - 832, 0, 11393, 11395, 3, 1612, 806, 0, 11394, 11393, 1, 0, 0, 0, 11394, - 11395, 1, 0, 0, 0, 11395, 11397, 1, 0, 0, 0, 11396, 11390, 1, 0, 0, 0, - 11396, 11391, 1, 0, 0, 0, 11397, 11406, 1, 0, 0, 0, 11398, 11403, 3, 1426, - 713, 0, 11399, 11400, 5, 2, 0, 0, 11400, 11401, 3, 1610, 805, 0, 11401, - 11402, 5, 3, 0, 0, 11402, 11404, 1, 0, 0, 0, 11403, 11399, 1, 0, 0, 0, - 11403, 11404, 1, 0, 0, 0, 11404, 11406, 1, 0, 0, 0, 11405, 11385, 1, 0, - 0, 0, 11405, 11398, 1, 0, 0, 0, 11406, 11407, 1, 0, 0, 0, 11407, 11408, - 5, 7, 0, 0, 11408, 1607, 1, 0, 0, 0, 11409, 11410, 3, 1426, 713, 0, 11410, - 11411, 5, 20, 0, 0, 11411, 11412, 3, 1170, 585, 0, 11412, 11415, 1, 0, - 0, 0, 11413, 11415, 3, 1170, 585, 0, 11414, 11409, 1, 0, 0, 0, 11414, 11413, - 1, 0, 0, 0, 11415, 1609, 1, 0, 0, 0, 11416, 11421, 3, 1608, 804, 0, 11417, - 11418, 5, 6, 0, 0, 11418, 11420, 3, 1608, 804, 0, 11419, 11417, 1, 0, 0, - 0, 11420, 11423, 1, 0, 0, 0, 11421, 11419, 1, 0, 0, 0, 11421, 11422, 1, - 0, 0, 0, 11422, 1611, 1, 0, 0, 0, 11423, 11421, 1, 0, 0, 0, 11424, 11425, - 5, 100, 0, 0, 11425, 11426, 3, 1332, 666, 0, 11426, 1613, 1, 0, 0, 0, 11427, - 11429, 3, 1616, 808, 0, 11428, 11427, 1, 0, 0, 0, 11428, 11429, 1, 0, 0, - 0, 11429, 11430, 1, 0, 0, 0, 11430, 11431, 5, 336, 0, 0, 11431, 1615, 1, - 0, 0, 0, 11432, 11433, 5, 281, 0, 0, 11433, 1617, 1, 0, 0, 0, 11434, 11436, - 5, 61, 0, 0, 11435, 11437, 3, 1624, 812, 0, 11436, 11435, 1, 0, 0, 0, 11436, - 11437, 1, 0, 0, 0, 11437, 11439, 1, 0, 0, 0, 11438, 11440, 3, 1622, 811, - 0, 11439, 11438, 1, 0, 0, 0, 11439, 11440, 1, 0, 0, 0, 11440, 11441, 1, - 0, 0, 0, 11441, 11442, 3, 1640, 820, 0, 11442, 11443, 5, 71, 0, 0, 11443, - 11444, 3, 1620, 810, 0, 11444, 11445, 5, 7, 0, 0, 11445, 1619, 1, 0, 0, - 0, 11446, 11447, 3, 1332, 666, 0, 11447, 1621, 1, 0, 0, 0, 11448, 11449, - 7, 25, 0, 0, 11449, 1623, 1, 0, 0, 0, 11450, 11466, 5, 280, 0, 0, 11451, - 11466, 5, 305, 0, 0, 11452, 11466, 5, 226, 0, 0, 11453, 11466, 5, 259, - 0, 0, 11454, 11455, 5, 149, 0, 0, 11455, 11466, 3, 1170, 585, 0, 11456, - 11457, 5, 319, 0, 0, 11457, 11466, 3, 1170, 585, 0, 11458, 11466, 3, 1170, - 585, 0, 11459, 11466, 5, 30, 0, 0, 11460, 11463, 7, 75, 0, 0, 11461, 11464, - 3, 1170, 585, 0, 11462, 11464, 5, 30, 0, 0, 11463, 11461, 1, 0, 0, 0, 11463, - 11462, 1, 0, 0, 0, 11463, 11464, 1, 0, 0, 0, 11464, 11466, 1, 0, 0, 0, - 11465, 11450, 1, 0, 0, 0, 11465, 11451, 1, 0, 0, 0, 11465, 11452, 1, 0, - 0, 0, 11465, 11453, 1, 0, 0, 0, 11465, 11454, 1, 0, 0, 0, 11465, 11456, - 1, 0, 0, 0, 11465, 11458, 1, 0, 0, 0, 11465, 11459, 1, 0, 0, 0, 11465, - 11460, 1, 0, 0, 0, 11466, 1625, 1, 0, 0, 0, 11467, 11469, 5, 277, 0, 0, - 11468, 11470, 3, 1624, 812, 0, 11469, 11468, 1, 0, 0, 0, 11469, 11470, - 1, 0, 0, 0, 11470, 11471, 1, 0, 0, 0, 11471, 11472, 3, 1640, 820, 0, 11472, - 11473, 5, 7, 0, 0, 11473, 1627, 1, 0, 0, 0, 11474, 11475, 5, 176, 0, 0, - 11475, 11476, 3, 1640, 820, 0, 11476, 11477, 5, 7, 0, 0, 11477, 1629, 1, - 0, 0, 0, 11478, 11479, 5, 78, 0, 0, 11479, 11480, 5, 7, 0, 0, 11480, 1631, - 1, 0, 0, 0, 11481, 11483, 5, 180, 0, 0, 11482, 11484, 3, 1636, 818, 0, - 11483, 11482, 1, 0, 0, 0, 11483, 11484, 1, 0, 0, 0, 11484, 11485, 1, 0, - 0, 0, 11485, 11486, 5, 7, 0, 0, 11486, 1633, 1, 0, 0, 0, 11487, 11489, - 5, 331, 0, 0, 11488, 11490, 3, 1636, 818, 0, 11489, 11488, 1, 0, 0, 0, - 11489, 11490, 1, 0, 0, 0, 11490, 11491, 1, 0, 0, 0, 11491, 11492, 5, 7, - 0, 0, 11492, 1635, 1, 0, 0, 0, 11493, 11495, 5, 33, 0, 0, 11494, 11496, - 5, 281, 0, 0, 11495, 11494, 1, 0, 0, 0, 11495, 11496, 1, 0, 0, 0, 11496, - 11497, 1, 0, 0, 0, 11497, 11498, 5, 172, 0, 0, 11498, 1637, 1, 0, 0, 0, - 11499, 11500, 5, 345, 0, 0, 11500, 11501, 3, 526, 263, 0, 11501, 11502, - 5, 94, 0, 0, 11502, 11503, 5, 53, 0, 0, 11503, 11504, 5, 7, 0, 0, 11504, - 11512, 1, 0, 0, 0, 11505, 11508, 5, 325, 0, 0, 11506, 11509, 3, 526, 263, - 0, 11507, 11509, 5, 30, 0, 0, 11508, 11506, 1, 0, 0, 0, 11508, 11507, 1, - 0, 0, 0, 11509, 11510, 1, 0, 0, 0, 11510, 11512, 5, 7, 0, 0, 11511, 11499, - 1, 0, 0, 0, 11511, 11505, 1, 0, 0, 0, 11512, 1639, 1, 0, 0, 0, 11513, 11516, - 3, 1426, 713, 0, 11514, 11516, 5, 28, 0, 0, 11515, 11513, 1, 0, 0, 0, 11515, - 11514, 1, 0, 0, 0, 11516, 1641, 1, 0, 0, 0, 11517, 11518, 5, 538, 0, 0, - 11518, 11519, 3, 1644, 822, 0, 11519, 1643, 1, 0, 0, 0, 11520, 11522, 3, - 1646, 823, 0, 11521, 11520, 1, 0, 0, 0, 11522, 11523, 1, 0, 0, 0, 11523, - 11521, 1, 0, 0, 0, 11523, 11524, 1, 0, 0, 0, 11524, 1645, 1, 0, 0, 0, 11525, - 11526, 5, 102, 0, 0, 11526, 11527, 3, 1648, 824, 0, 11527, 11528, 5, 93, - 0, 0, 11528, 11529, 3, 1506, 753, 0, 11529, 1647, 1, 0, 0, 0, 11530, 11535, - 3, 1650, 825, 0, 11531, 11532, 5, 82, 0, 0, 11532, 11534, 3, 1650, 825, - 0, 11533, 11531, 1, 0, 0, 0, 11534, 11537, 1, 0, 0, 0, 11535, 11533, 1, - 0, 0, 0, 11535, 11536, 1, 0, 0, 0, 11536, 1649, 1, 0, 0, 0, 11537, 11535, - 1, 0, 0, 0, 11538, 11542, 3, 1660, 830, 0, 11539, 11540, 5, 532, 0, 0, - 11540, 11542, 3, 1412, 706, 0, 11541, 11538, 1, 0, 0, 0, 11541, 11539, - 1, 0, 0, 0, 11542, 1651, 1, 0, 0, 0, 11543, 11544, 3, 1470, 735, 0, 11544, - 1653, 1, 0, 0, 0, 11545, 11546, 3, 1470, 735, 0, 11546, 1655, 1, 0, 0, - 0, 11547, 11548, 3, 1660, 830, 0, 11548, 1657, 1, 0, 0, 0, 11549, 11550, - 5, 102, 0, 0, 11550, 11551, 3, 1668, 834, 0, 11551, 1659, 1, 0, 0, 0, 11552, - 11555, 3, 1426, 713, 0, 11553, 11555, 3, 1662, 831, 0, 11554, 11552, 1, - 0, 0, 0, 11554, 11553, 1, 0, 0, 0, 11555, 1661, 1, 0, 0, 0, 11556, 11557, - 7, 76, 0, 0, 11557, 1663, 1, 0, 0, 0, 11558, 11560, 3, 1000, 500, 0, 11559, - 11558, 1, 0, 0, 0, 11559, 11560, 1, 0, 0, 0, 11560, 11561, 1, 0, 0, 0, - 11561, 11563, 3, 1380, 690, 0, 11562, 11564, 3, 1062, 531, 0, 11563, 11562, - 1, 0, 0, 0, 11563, 11564, 1, 0, 0, 0, 11564, 11566, 1, 0, 0, 0, 11565, - 11567, 3, 1102, 551, 0, 11566, 11565, 1, 0, 0, 0, 11566, 11567, 1, 0, 0, - 0, 11567, 11569, 1, 0, 0, 0, 11568, 11570, 3, 1032, 516, 0, 11569, 11568, - 1, 0, 0, 0, 11569, 11570, 1, 0, 0, 0, 11570, 11572, 1, 0, 0, 0, 11571, - 11573, 3, 1046, 523, 0, 11572, 11571, 1, 0, 0, 0, 11572, 11573, 1, 0, 0, - 0, 11573, 11575, 1, 0, 0, 0, 11574, 11576, 3, 1292, 646, 0, 11575, 11574, - 1, 0, 0, 0, 11575, 11576, 1, 0, 0, 0, 11576, 11578, 1, 0, 0, 0, 11577, - 11579, 3, 1004, 502, 0, 11578, 11577, 1, 0, 0, 0, 11578, 11579, 1, 0, 0, - 0, 11579, 11581, 1, 0, 0, 0, 11580, 11582, 3, 1014, 507, 0, 11581, 11580, - 1, 0, 0, 0, 11581, 11582, 1, 0, 0, 0, 11582, 11584, 1, 0, 0, 0, 11583, - 11585, 3, 1050, 525, 0, 11584, 11583, 1, 0, 0, 0, 11584, 11585, 1, 0, 0, - 0, 11585, 1665, 1, 0, 0, 0, 11586, 11587, 3, 1664, 832, 0, 11587, 1667, - 1, 0, 0, 0, 11588, 11589, 3, 1664, 832, 0, 11589, 1669, 1, 0, 0, 0, 11590, - 11591, 3, 1170, 585, 0, 11591, 1671, 1, 0, 0, 0, 11592, 11593, 3, 1170, - 585, 0, 11593, 1673, 1, 0, 0, 0, 11594, 11596, 3, 8, 4, 0, 11595, 11597, - 3, 1676, 838, 0, 11596, 11595, 1, 0, 0, 0, 11596, 11597, 1, 0, 0, 0, 11597, - 1675, 1, 0, 0, 0, 11598, 11600, 5, 71, 0, 0, 11599, 11601, 3, 992, 496, - 0, 11600, 11599, 1, 0, 0, 0, 11600, 11601, 1, 0, 0, 0, 11601, 11602, 1, - 0, 0, 0, 11602, 11603, 3, 1620, 810, 0, 11603, 1677, 1, 0, 0, 0, 1167, - 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, 8878, 8883, 8889, 8893, 8895, 8900, 8904, - 8915, 8919, 8922, 8929, 8934, 8941, 8946, 8949, 8955, 8959, 8968, 8972, - 8980, 8982, 8989, 8994, 8997, 9005, 9014, 9022, 9024, 9028, 9035, 9054, - 9063, 9069, 9088, 9097, 9103, 9107, 9112, 9122, 9129, 9138, 9141, 9150, - 9152, 9158, 9162, 9167, 9177, 9183, 9185, 9191, 9197, 9200, 9203, 9216, - 9222, 9226, 9230, 9233, 9241, 9245, 9249, 9257, 9264, 9271, 9275, 9281, - 9283, 9292, 9295, 9305, 9321, 9327, 9332, 9339, 9348, 9355, 9363, 9371, - 9376, 9380, 9386, 9390, 9394, 9397, 9403, 9408, 9424, 9427, 9429, 9441, - 9443, 9447, 9453, 9457, 9459, 9467, 9471, 9480, 9488, 9494, 9497, 9506, - 9511, 9518, 9528, 9554, 9565, 9567, 9569, 9577, 9600, 9608, 9618, 9621, - 9626, 9631, 9635, 9641, 9644, 9647, 9651, 9654, 9657, 9662, 9668, 9671, - 9674, 9682, 9685, 9688, 9692, 9697, 9715, 9722, 9729, 9736, 9754, 9762, - 9774, 9792, 9831, 9833, 9853, 9863, 9874, 9895, 9898, 9901, 9908, 9915, - 9918, 9926, 9929, 9936, 9943, 9956, 9969, 9972, 9976, 9979, 9989, 9992, - 10002, 10005, 10008, 10012, 10033, 10038, 10050, 10060, 10065, 10068, 10071, - 10081, 10094, 10101, 10107, 10112, 10117, 10119, 10127, 10135, 10142, 10153, - 10157, 10165, 10172, 10184, 10196, 10202, 10210, 10227, 10252, 10262, 10266, - 10269, 10272, 10275, 10288, 10293, 10298, 10300, 10308, 10317, 10326, 10331, - 10340, 10345, 10359, 10369, 10377, 10391, 10398, 10406, 10414, 10421, 10427, - 10436, 10451, 10462, 10495, 10504, 10511, 10515, 10519, 10526, 10540, 10545, - 10550, 10554, 10556, 10559, 10566, 10571, 10581, 10586, 10589, 10594, 10601, - 10606, 10613, 10629, 10641, 10646, 10654, 10661, 10666, 10678, 10686, 10691, - 10701, 10708, 10715, 10724, 10730, 10736, 10742, 10750, 10754, 10761, 10823, - 10834, 10839, 10862, 10870, 10878, 10882, 10885, 10889, 10891, 10898, 10907, - 10914, 10918, 10921, 10924, 10927, 10931, 10936, 10943, 10956, 10966, 10985, - 10992, 11022, 11032, 11041, 11046, 11057, 11070, 11083, 11091, 11100, 11113, - 11121, 11125, 11136, 11147, 11152, 11159, 11169, 11176, 11179, 11185, 11187, - 11198, 11211, 11216, 11228, 11231, 11244, 11247, 11250, 11252, 11260, 11264, - 11267, 11273, 11277, 11283, 11288, 11294, 11297, 11301, 11309, 11323, 11329, - 11341, 11351, 11354, 11357, 11360, 11363, 11375, 11380, 11387, 11394, 11396, - 11403, 11405, 11414, 11421, 11428, 11436, 11439, 11463, 11465, 11469, 11483, - 11489, 11495, 11508, 11511, 11515, 11523, 11535, 11541, 11554, 11559, 11563, - 11566, 11569, 11572, 11575, 11578, 11581, 11584, 11596, 11600, + 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, + 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, + 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, + 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, + 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, + 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, + 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, + 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, + 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, + 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, + 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, + 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, + 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, + 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, + 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, + 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, + 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, + 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, + 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, + 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, + 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, + 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, + 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, + 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, + 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, + 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, + 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, + 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, + 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, + 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, + 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, + 942, 944, 946, 948, 950, 952, 954, 956, 958, 960, 962, 964, 966, 968, 970, + 972, 974, 976, 978, 980, 982, 984, 986, 988, 990, 992, 994, 996, 998, 1000, + 1002, 1004, 1006, 1008, 1010, 1012, 1014, 1016, 1018, 1020, 1022, 1024, + 1026, 1028, 1030, 1032, 1034, 1036, 1038, 1040, 1042, 1044, 1046, 1048, + 1050, 1052, 1054, 1056, 1058, 1060, 1062, 1064, 1066, 1068, 1070, 1072, + 1074, 1076, 1078, 1080, 1082, 1084, 1086, 1088, 1090, 1092, 1094, 1096, + 1098, 1100, 1102, 1104, 1106, 1108, 1110, 1112, 1114, 1116, 1118, 1120, + 1122, 1124, 1126, 1128, 1130, 1132, 1134, 1136, 1138, 1140, 1142, 1144, + 1146, 1148, 1150, 1152, 1154, 1156, 1158, 1160, 1162, 1164, 1166, 1168, + 1170, 1172, 1174, 1176, 1178, 1180, 1182, 1184, 1186, 1188, 1190, 1192, + 1194, 1196, 1198, 1200, 1202, 1204, 1206, 1208, 1210, 1212, 1214, 1216, + 1218, 1220, 1222, 1224, 1226, 1228, 1230, 1232, 1234, 1236, 1238, 1240, + 1242, 1244, 1246, 1248, 1250, 1252, 1254, 1256, 1258, 1260, 1262, 1264, + 1266, 1268, 1270, 1272, 1274, 1276, 1278, 1280, 1282, 1284, 1286, 1288, + 1290, 1292, 1294, 1296, 1298, 1300, 1302, 1304, 1306, 1308, 1310, 1312, + 1314, 1316, 1318, 1320, 1322, 1324, 1326, 1328, 1330, 1332, 1334, 1336, + 1338, 1340, 1342, 1344, 1346, 1348, 1350, 1352, 1354, 1356, 1358, 1360, + 1362, 1364, 1366, 1368, 1370, 1372, 1374, 1376, 1378, 1380, 1382, 1384, + 1386, 1388, 1390, 1392, 1394, 1396, 1398, 1400, 1402, 1404, 1406, 1408, + 1410, 1412, 1414, 1416, 1418, 1420, 1422, 1424, 1426, 1428, 1430, 1432, + 1434, 1436, 1438, 1440, 1442, 1444, 1446, 1448, 1450, 1452, 1454, 1456, + 1458, 1460, 1462, 1464, 1466, 1468, 1470, 1472, 1474, 1476, 1478, 1480, + 1482, 1484, 1486, 1488, 1490, 1492, 1494, 1496, 1498, 1500, 1502, 1504, + 1506, 1508, 1510, 1512, 1514, 1516, 1518, 1520, 1522, 1524, 1526, 1528, + 1530, 1532, 1534, 1536, 1538, 1540, 1542, 1544, 1546, 1548, 1550, 1552, + 1554, 1556, 1558, 1560, 1562, 1564, 1566, 1568, 1570, 1572, 1574, 1576, + 1578, 1580, 1582, 1584, 1586, 1588, 1590, 1592, 1594, 1596, 1598, 1600, + 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, + 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, + 392, 2, 0, 170, 170, 264, 264, 2, 0, 325, 325, 345, 345, 1, 0, 31, 32, + 2, 0, 99, 99, 361, 361, 2, 0, 220, 220, 346, 346, 2, 0, 59, 59, 97, 97, + 2, 0, 232, 232, 264, 264, 2, 0, 30, 30, 56, 56, 2, 0, 332, 332, 428, 428, + 2, 0, 226, 226, 280, 280, 4, 0, 132, 132, 134, 134, 138, 138, 145, 145, + 2, 0, 372, 372, 498, 498, 2, 0, 404, 405, 419, 419, 1, 0, 404, 405, 1, + 0, 432, 433, 1, 0, 18, 19, 2, 0, 136, 136, 141, 141, 5, 0, 10, 10, 16, + 17, 21, 21, 23, 23, 25, 25, 1, 0, 12, 13, 3, 0, 9, 9, 14, 14, 27, 27, 3, + 0, 39, 39, 73, 73, 95, 95, 1, 0, 116, 117, 1, 0, 120, 121, 2, 0, 185, 185, + 207, 207, 2, 0, 316, 316, 471, 471, 2, 0, 227, 227, 301, 301, 3, 0, 30, + 30, 34, 34, 90, 90, 6, 0, 9, 10, 12, 17, 21, 21, 23, 23, 25, 25, 27, 27, + 2, 0, 20, 20, 22, 22, 1, 0, 504, 507, 16, 0, 108, 108, 119, 119, 122, 123, + 143, 143, 148, 268, 270, 271, 273, 322, 324, 399, 424, 424, 454, 473, 476, + 490, 492, 492, 494, 494, 496, 496, 499, 509, 602, 602, 5, 0, 125, 137, + 139, 142, 144, 144, 146, 147, 493, 493, 4, 0, 30, 52, 54, 70, 72, 105, + 475, 475, 5, 0, 323, 323, 439, 445, 525, 525, 534, 534, 542, 657, 2, 0, + 62, 62, 135, 135, 2, 0, 10, 10, 20, 20, 2, 0, 455, 455, 522, 522, 2, 0, + 186, 186, 528, 528, 1, 0, 533, 538, 2, 0, 163, 163, 229, 229, 36, 0, 33, + 33, 35, 35, 43, 45, 53, 53, 57, 57, 61, 61, 92, 92, 135, 135, 142, 142, + 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, } deserializer := antlr.NewATNDeserializer(nil) staticData.atn = deserializer.Deserialize(staticData.serializedATN) @@ -7850,311 +7847,310 @@ const ( PostgreSQLParserRULE_from_clause = 531 PostgreSQLParserRULE_from_list = 532 PostgreSQLParserRULE_table_ref = 533 - 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 + 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 ) // IRootContext is an interface to support dynamic dispatch. @@ -8259,11 +8255,11 @@ func (p *PostgreSQLParser) Root() (localctx IRootContext) { p.EnterRule(localctx, 0, PostgreSQLParserRULE_root) p.EnterOuterAlt(localctx, 1) { - p.SetState(1678) + p.SetState(1676) p.Stmtblock() } { - p.SetState(1679) + p.SetState(1677) p.Match(PostgreSQLParserEOF) if p.HasError() { // Recognition error - abort rule @@ -8381,7 +8377,7 @@ func (p *PostgreSQLParser) Plsqlroot() (localctx IPlsqlrootContext) { p.EnterRule(localctx, 2, PostgreSQLParserRULE_plsqlroot) p.EnterOuterAlt(localctx, 1) { - p.SetState(1681) + p.SetState(1679) p.Pl_function() } @@ -8495,7 +8491,7 @@ func (p *PostgreSQLParser) Stmtblock() (localctx IStmtblockContext) { p.EnterRule(localctx, 4, PostgreSQLParserRULE_stmtblock) p.EnterOuterAlt(localctx, 1) { - p.SetState(1683) + p.SetState(1681) p.Stmtmulti() } @@ -8648,7 +8644,7 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1691) + p.SetState(1689) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8660,10 +8656,10 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1685) + p.SetState(1683) p.Stmt() } - p.SetState(1687) + p.SetState(1685) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -8672,7 +8668,7 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { if _la == PostgreSQLParserSEMI { { - p.SetState(1686) + p.SetState(1684) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -8683,7 +8679,7 @@ func (p *PostgreSQLParser) Stmtmulti() (localctx IStmtmultiContext) { } } - p.SetState(1693) + p.SetState(1691) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10910,7 +10906,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(1819) + p.SetState(1817) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -10920,875 +10916,875 @@ func (p *PostgreSQLParser) Stmt() (localctx IStmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1694) + p.SetState(1692) p.Altereventtrigstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1695) + p.SetState(1693) p.Altercollationstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1696) + p.SetState(1694) p.Alterdatabasestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1697) + p.SetState(1695) p.Alterdatabasesetstmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1698) + p.SetState(1696) p.Alterdefaultprivilegesstmt() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1699) + p.SetState(1697) p.Alterdomainstmt() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(1700) + p.SetState(1698) p.Alterenumstmt() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(1701) + p.SetState(1699) p.Alterextensionstmt() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(1702) + p.SetState(1700) p.Alterextensioncontentsstmt() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(1703) + p.SetState(1701) p.Alterfdwstmt() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(1704) + p.SetState(1702) p.Alterforeignserverstmt() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(1705) + p.SetState(1703) p.Alterfunctionstmt() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(1706) + p.SetState(1704) p.Altergroupstmt() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(1707) + p.SetState(1705) p.Alterobjectdependsstmt() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(1708) + p.SetState(1706) p.Alterobjectschemastmt() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(1709) + p.SetState(1707) p.Alterownerstmt() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(1710) + p.SetState(1708) p.Alteroperatorstmt() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(1711) + p.SetState(1709) p.Altertypestmt() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(1712) + p.SetState(1710) p.Alterpolicystmt() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(1713) + p.SetState(1711) p.Alterseqstmt() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(1714) + p.SetState(1712) p.Altersystemstmt() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(1715) + p.SetState(1713) p.Altertablestmt() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(1716) + p.SetState(1714) p.Altertblspcstmt() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(1717) + p.SetState(1715) p.Altercompositetypestmt() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(1718) + p.SetState(1716) p.Alterpublicationstmt() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(1719) + p.SetState(1717) p.Alterrolesetstmt() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(1720) + p.SetState(1718) p.Alterrolestmt() } case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(1721) + p.SetState(1719) p.Altersubscriptionstmt() } case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(1722) + p.SetState(1720) p.Alterstatsstmt() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(1723) + p.SetState(1721) p.Altertsconfigurationstmt() } case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(1724) + p.SetState(1722) p.Altertsdictionarystmt() } case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(1725) + p.SetState(1723) p.Alterusermappingstmt() } case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(1726) + p.SetState(1724) p.Analyzestmt() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(1727) + p.SetState(1725) p.Callstmt() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(1728) + p.SetState(1726) p.Checkpointstmt() } case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(1729) + p.SetState(1727) p.Closeportalstmt() } case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(1730) + p.SetState(1728) p.Clusterstmt() } case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(1731) + p.SetState(1729) p.Commentstmt() } case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(1732) + p.SetState(1730) p.Constraintssetstmt() } case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(1733) + p.SetState(1731) p.Copystmt() } case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(1734) + p.SetState(1732) p.Createamstmt() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(1735) + p.SetState(1733) p.Createasstmt() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(1736) + p.SetState(1734) p.Createassertionstmt() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(1737) + p.SetState(1735) p.Createcaststmt() } case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(1738) + p.SetState(1736) p.Createconversionstmt() } case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(1739) + p.SetState(1737) p.Createdomainstmt() } case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(1740) + p.SetState(1738) p.Createextensionstmt() } case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(1741) + p.SetState(1739) p.Createfdwstmt() } case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(1742) + p.SetState(1740) p.Createforeignserverstmt() } case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(1743) + p.SetState(1741) p.Createforeigntablestmt() } case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(1744) + p.SetState(1742) p.Createfunctionstmt() } case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(1745) + p.SetState(1743) p.Creategroupstmt() } case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(1746) + p.SetState(1744) p.Creatematviewstmt() } case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(1747) + p.SetState(1745) p.Createopclassstmt() } case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(1748) + p.SetState(1746) p.Createopfamilystmt() } case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(1749) + p.SetState(1747) p.Createpublicationstmt() } case 57: p.EnterOuterAlt(localctx, 57) { - p.SetState(1750) + p.SetState(1748) p.Alteropfamilystmt() } case 58: p.EnterOuterAlt(localctx, 58) { - p.SetState(1751) + p.SetState(1749) p.Createpolicystmt() } case 59: p.EnterOuterAlt(localctx, 59) { - p.SetState(1752) + p.SetState(1750) p.Createplangstmt() } case 60: p.EnterOuterAlt(localctx, 60) { - p.SetState(1753) + p.SetState(1751) p.Createschemastmt() } case 61: p.EnterOuterAlt(localctx, 61) { - p.SetState(1754) + p.SetState(1752) p.Createseqstmt() } case 62: p.EnterOuterAlt(localctx, 62) { - p.SetState(1755) + p.SetState(1753) p.Createstmt() } case 63: p.EnterOuterAlt(localctx, 63) { - p.SetState(1756) + p.SetState(1754) p.Createsubscriptionstmt() } case 64: p.EnterOuterAlt(localctx, 64) { - p.SetState(1757) + p.SetState(1755) p.Createstatsstmt() } case 65: p.EnterOuterAlt(localctx, 65) { - p.SetState(1758) + p.SetState(1756) p.Createtablespacestmt() } case 66: p.EnterOuterAlt(localctx, 66) { - p.SetState(1759) + p.SetState(1757) p.Createtransformstmt() } case 67: p.EnterOuterAlt(localctx, 67) { - p.SetState(1760) + p.SetState(1758) p.Createtrigstmt() } case 68: p.EnterOuterAlt(localctx, 68) { - p.SetState(1761) + p.SetState(1759) p.Createeventtrigstmt() } case 69: p.EnterOuterAlt(localctx, 69) { - p.SetState(1762) + p.SetState(1760) p.Createrolestmt() } case 70: p.EnterOuterAlt(localctx, 70) { - p.SetState(1763) + p.SetState(1761) p.Createuserstmt() } case 71: p.EnterOuterAlt(localctx, 71) { - p.SetState(1764) + p.SetState(1762) p.Createusermappingstmt() } case 72: p.EnterOuterAlt(localctx, 72) { - p.SetState(1765) + p.SetState(1763) p.Createdbstmt() } case 73: p.EnterOuterAlt(localctx, 73) { - p.SetState(1766) + p.SetState(1764) p.Deallocatestmt() } case 74: p.EnterOuterAlt(localctx, 74) { - p.SetState(1767) + p.SetState(1765) p.Declarecursorstmt() } case 75: p.EnterOuterAlt(localctx, 75) { - p.SetState(1768) + p.SetState(1766) p.Definestmt() } case 76: p.EnterOuterAlt(localctx, 76) { - p.SetState(1769) + p.SetState(1767) p.Deletestmt() } case 77: p.EnterOuterAlt(localctx, 77) { - p.SetState(1770) + p.SetState(1768) p.Discardstmt() } case 78: p.EnterOuterAlt(localctx, 78) { - p.SetState(1771) + p.SetState(1769) p.Dostmt() } case 79: p.EnterOuterAlt(localctx, 79) { - p.SetState(1772) + p.SetState(1770) p.Dropcaststmt() } case 80: p.EnterOuterAlt(localctx, 80) { - p.SetState(1773) + p.SetState(1771) p.Dropopclassstmt() } case 81: p.EnterOuterAlt(localctx, 81) { - p.SetState(1774) + p.SetState(1772) p.Dropopfamilystmt() } case 82: p.EnterOuterAlt(localctx, 82) { - p.SetState(1775) + p.SetState(1773) p.Dropownedstmt() } case 83: p.EnterOuterAlt(localctx, 83) { - p.SetState(1776) + p.SetState(1774) p.Dropstmt() } case 84: p.EnterOuterAlt(localctx, 84) { - p.SetState(1777) + p.SetState(1775) p.Dropsubscriptionstmt() } case 85: p.EnterOuterAlt(localctx, 85) { - p.SetState(1778) + p.SetState(1776) p.Droptablespacestmt() } case 86: p.EnterOuterAlt(localctx, 86) { - p.SetState(1779) + p.SetState(1777) p.Droptransformstmt() } case 87: p.EnterOuterAlt(localctx, 87) { - p.SetState(1780) + p.SetState(1778) p.Droprolestmt() } case 88: p.EnterOuterAlt(localctx, 88) { - p.SetState(1781) + p.SetState(1779) p.Dropusermappingstmt() } case 89: p.EnterOuterAlt(localctx, 89) { - p.SetState(1782) + p.SetState(1780) p.Dropdbstmt() } case 90: p.EnterOuterAlt(localctx, 90) { - p.SetState(1783) + p.SetState(1781) p.Executestmt() } case 91: p.EnterOuterAlt(localctx, 91) { - p.SetState(1784) + p.SetState(1782) p.Explainstmt() } case 92: p.EnterOuterAlt(localctx, 92) { - p.SetState(1785) + p.SetState(1783) p.Fetchstmt() } case 93: p.EnterOuterAlt(localctx, 93) { - p.SetState(1786) + p.SetState(1784) p.Grantstmt() } case 94: p.EnterOuterAlt(localctx, 94) { - p.SetState(1787) + p.SetState(1785) p.Grantrolestmt() } case 95: p.EnterOuterAlt(localctx, 95) { - p.SetState(1788) + p.SetState(1786) p.Importforeignschemastmt() } case 96: p.EnterOuterAlt(localctx, 96) { - p.SetState(1789) + p.SetState(1787) p.Indexstmt() } case 97: p.EnterOuterAlt(localctx, 97) { - p.SetState(1790) + p.SetState(1788) p.Insertstmt() } case 98: p.EnterOuterAlt(localctx, 98) { - p.SetState(1791) + p.SetState(1789) p.Mergestmt() } case 99: p.EnterOuterAlt(localctx, 99) { - p.SetState(1792) + p.SetState(1790) p.Listenstmt() } case 100: p.EnterOuterAlt(localctx, 100) { - p.SetState(1793) + p.SetState(1791) p.Refreshmatviewstmt() } case 101: p.EnterOuterAlt(localctx, 101) { - p.SetState(1794) + p.SetState(1792) p.Loadstmt() } case 102: p.EnterOuterAlt(localctx, 102) { - p.SetState(1795) + p.SetState(1793) p.Lockstmt() } case 103: p.EnterOuterAlt(localctx, 103) { - p.SetState(1796) + p.SetState(1794) p.Notifystmt() } case 104: p.EnterOuterAlt(localctx, 104) { - p.SetState(1797) + p.SetState(1795) p.Preparestmt() } case 105: p.EnterOuterAlt(localctx, 105) { - p.SetState(1798) + p.SetState(1796) p.Reassignownedstmt() } case 106: p.EnterOuterAlt(localctx, 106) { - p.SetState(1799) + p.SetState(1797) p.Reindexstmt() } case 107: p.EnterOuterAlt(localctx, 107) { - p.SetState(1800) + p.SetState(1798) p.Removeaggrstmt() } case 108: p.EnterOuterAlt(localctx, 108) { - p.SetState(1801) + p.SetState(1799) p.Removefuncstmt() } case 109: p.EnterOuterAlt(localctx, 109) { - p.SetState(1802) + p.SetState(1800) p.Removeoperstmt() } case 110: p.EnterOuterAlt(localctx, 110) { - p.SetState(1803) + p.SetState(1801) p.Renamestmt() } case 111: p.EnterOuterAlt(localctx, 111) { - p.SetState(1804) + p.SetState(1802) p.Revokestmt() } case 112: p.EnterOuterAlt(localctx, 112) { - p.SetState(1805) + p.SetState(1803) p.Revokerolestmt() } case 113: p.EnterOuterAlt(localctx, 113) { - p.SetState(1806) + p.SetState(1804) p.Rulestmt() } case 114: p.EnterOuterAlt(localctx, 114) { - p.SetState(1807) + p.SetState(1805) p.Seclabelstmt() } case 115: p.EnterOuterAlt(localctx, 115) { - p.SetState(1808) + p.SetState(1806) p.Selectstmt() } case 116: p.EnterOuterAlt(localctx, 116) { - p.SetState(1809) + p.SetState(1807) p.Transactionstmt() } case 117: p.EnterOuterAlt(localctx, 117) { - p.SetState(1810) + p.SetState(1808) p.Truncatestmt() } case 118: p.EnterOuterAlt(localctx, 118) { - p.SetState(1811) + p.SetState(1809) p.Unlistenstmt() } case 119: p.EnterOuterAlt(localctx, 119) { - p.SetState(1812) + p.SetState(1810) p.Updatestmt() } case 120: p.EnterOuterAlt(localctx, 120) { - p.SetState(1813) + p.SetState(1811) p.Vacuumstmt() } case 121: p.EnterOuterAlt(localctx, 121) { - p.SetState(1814) + p.SetState(1812) p.Variableresetstmt() } case 122: p.EnterOuterAlt(localctx, 122) { - p.SetState(1815) + p.SetState(1813) p.Variablesetstmt() } case 123: p.EnterOuterAlt(localctx, 123) { - p.SetState(1816) + p.SetState(1814) p.Variableshowstmt() } case 124: p.EnterOuterAlt(localctx, 124) { - p.SetState(1817) + p.SetState(1815) p.Viewstmt() } case 125: p.EnterOuterAlt(localctx, 125) { - p.SetState(1818) + p.SetState(1816) p.Plsqlconsolecommand() } @@ -11901,14 +11897,14 @@ func (p *PostgreSQLParser) Plsqlconsolecommand() (localctx IPlsqlconsolecommandC p.EnterOuterAlt(localctx, 1) { - p.SetState(1821) + p.SetState(1819) p.Match(PostgreSQLParserMetaCommand) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1823) + p.SetState(1821) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -11917,7 +11913,7 @@ func (p *PostgreSQLParser) Plsqlconsolecommand() (localctx IPlsqlconsolecommandC if _la == PostgreSQLParserEndMetaCommand { { - p.SetState(1822) + p.SetState(1820) p.Match(PostgreSQLParserEndMetaCommand) if p.HasError() { // Recognition error - abort rule @@ -12042,7 +12038,7 @@ func (p *PostgreSQLParser) Callstmt() (localctx ICallstmtContext) { p.EnterRule(localctx, 12, PostgreSQLParserRULE_callstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1825) + p.SetState(1823) p.Match(PostgreSQLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -12050,7 +12046,7 @@ func (p *PostgreSQLParser) Callstmt() (localctx ICallstmtContext) { } } { - p.SetState(1826) + p.SetState(1824) p.Func_application() } @@ -12208,7 +12204,7 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { p.EnterRule(localctx, 14, PostgreSQLParserRULE_createrolestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1828) + p.SetState(1826) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -12216,7 +12212,7 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { } } { - p.SetState(1829) + p.SetState(1827) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -12224,15 +12220,15 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { } } { - p.SetState(1830) + p.SetState(1828) p.Roleid() } - p.SetState(1832) + p.SetState(1830) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 4, p.GetParserRuleContext()) == 1 { { - p.SetState(1831) + p.SetState(1829) p.Opt_with() } @@ -12240,7 +12236,7 @@ func (p *PostgreSQLParser) Createrolestmt() (localctx ICreaterolestmtContext) { goto errorExit } { - p.SetState(1834) + p.SetState(1832) p.Optrolelist() } @@ -12342,7 +12338,7 @@ func (p *PostgreSQLParser) Opt_with() (localctx IOpt_withContext) { p.EnterRule(localctx, 16, PostgreSQLParserRULE_opt_with) p.EnterOuterAlt(localctx, 1) { - p.SetState(1836) + p.SetState(1834) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -12487,7 +12483,7 @@ func (p *PostgreSQLParser) Optrolelist() (localctx IOptrolelistContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1841) + p.SetState(1839) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12499,12 +12495,12 @@ func (p *PostgreSQLParser) Optrolelist() (localctx IOptrolelistContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1838) + p.SetState(1836) p.Createoptroleelem() } } - p.SetState(1843) + p.SetState(1841) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12652,7 +12648,7 @@ func (p *PostgreSQLParser) Alteroptrolelist() (localctx IAlteroptrolelistContext var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1847) + p.SetState(1845) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12664,12 +12660,12 @@ func (p *PostgreSQLParser) Alteroptrolelist() (localctx IAlteroptrolelistContext for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1844) + p.SetState(1842) p.Alteroptroleelem() } } - p.SetState(1849) + p.SetState(1847) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12891,7 +12887,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext p.EnterRule(localctx, 22, PostgreSQLParserRULE_alteroptroleelem) var _la int - p.SetState(1868) + p.SetState(1866) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12901,14 +12897,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext case PostgreSQLParserPASSWORD: p.EnterOuterAlt(localctx, 1) { - p.SetState(1850) + p.SetState(1848) p.Match(PostgreSQLParserPASSWORD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1853) + p.SetState(1851) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -12917,13 +12913,13 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(1851) + p.SetState(1849) p.Sconst() } case PostgreSQLParserNULL_P: { - p.SetState(1852) + p.SetState(1850) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -12939,7 +12935,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext case PostgreSQLParserENCRYPTED, PostgreSQLParserUNENCRYPTED: p.EnterOuterAlt(localctx, 2) { - p.SetState(1855) + p.SetState(1853) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserENCRYPTED || _la == PostgreSQLParserUNENCRYPTED) { @@ -12950,7 +12946,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1856) + p.SetState(1854) p.Match(PostgreSQLParserPASSWORD) if p.HasError() { // Recognition error - abort rule @@ -12958,14 +12954,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1857) + p.SetState(1855) p.Sconst() } case PostgreSQLParserINHERIT: p.EnterOuterAlt(localctx, 3) { - p.SetState(1858) + p.SetState(1856) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -12976,7 +12972,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext case PostgreSQLParserCONNECTION: p.EnterOuterAlt(localctx, 4) { - p.SetState(1859) + p.SetState(1857) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -12984,7 +12980,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1860) + p.SetState(1858) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -12992,14 +12988,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1861) + p.SetState(1859) p.Signediconst() } case PostgreSQLParserVALID: p.EnterOuterAlt(localctx, 5) { - p.SetState(1862) + p.SetState(1860) p.Match(PostgreSQLParserVALID) if p.HasError() { // Recognition error - abort rule @@ -13007,7 +13003,7 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1863) + p.SetState(1861) p.Match(PostgreSQLParserUNTIL) if p.HasError() { // Recognition error - abort rule @@ -13015,14 +13011,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1864) + p.SetState(1862) p.Sconst() } case PostgreSQLParserUSER: p.EnterOuterAlt(localctx, 6) { - p.SetState(1865) + p.SetState(1863) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13030,14 +13026,14 @@ func (p *PostgreSQLParser) Alteroptroleelem() (localctx IAlteroptroleelemContext } } { - p.SetState(1866) + p.SetState(1864) 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(1867) + p.SetState(1865) p.Identifier() } @@ -13215,7 +13211,7 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte p.EnterRule(localctx, 24, PostgreSQLParserRULE_createoptroleelem) var _la int - p.SetState(1880) + p.SetState(1878) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -13225,14 +13221,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(1870) + p.SetState(1868) p.Alteroptroleelem() } case PostgreSQLParserSYSID: p.EnterOuterAlt(localctx, 2) { - p.SetState(1871) + p.SetState(1869) p.Match(PostgreSQLParserSYSID) if p.HasError() { // Recognition error - abort rule @@ -13240,14 +13236,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1872) + p.SetState(1870) p.Iconst() } case PostgreSQLParserADMIN: p.EnterOuterAlt(localctx, 3) { - p.SetState(1873) + p.SetState(1871) p.Match(PostgreSQLParserADMIN) if p.HasError() { // Recognition error - abort rule @@ -13255,14 +13251,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1874) + p.SetState(1872) p.Role_list() } case PostgreSQLParserROLE: p.EnterOuterAlt(localctx, 4) { - p.SetState(1875) + p.SetState(1873) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -13270,14 +13266,14 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1876) + p.SetState(1874) p.Role_list() } case PostgreSQLParserIN_P: p.EnterOuterAlt(localctx, 5) { - p.SetState(1877) + p.SetState(1875) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -13285,7 +13281,7 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1878) + p.SetState(1876) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserGROUP_P || _la == PostgreSQLParserROLE) { @@ -13296,7 +13292,7 @@ func (p *PostgreSQLParser) Createoptroleelem() (localctx ICreateoptroleelemConte } } { - p.SetState(1879) + p.SetState(1877) p.Role_list() } @@ -13459,7 +13455,7 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { p.EnterRule(localctx, 26, PostgreSQLParserRULE_createuserstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1882) + p.SetState(1880) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -13467,7 +13463,7 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { } } { - p.SetState(1883) + p.SetState(1881) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -13475,15 +13471,15 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { } } { - p.SetState(1884) + p.SetState(1882) p.Roleid() } - p.SetState(1886) + p.SetState(1884) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 10, p.GetParserRuleContext()) == 1 { { - p.SetState(1885) + p.SetState(1883) p.Opt_with() } @@ -13491,7 +13487,7 @@ func (p *PostgreSQLParser) Createuserstmt() (localctx ICreateuserstmtContext) { goto errorExit } { - p.SetState(1888) + p.SetState(1886) p.Optrolelist() } @@ -13656,7 +13652,7 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1890) + p.SetState(1888) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -13664,7 +13660,7 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { } } { - p.SetState(1891) + p.SetState(1889) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserUSER || _la == PostgreSQLParserROLE) { @@ -13675,15 +13671,15 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { } } { - p.SetState(1892) + p.SetState(1890) p.Rolespec() } - p.SetState(1894) + p.SetState(1892) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 11, p.GetParserRuleContext()) == 1 { { - p.SetState(1893) + p.SetState(1891) p.Opt_with() } @@ -13691,7 +13687,7 @@ func (p *PostgreSQLParser) Alterrolestmt() (localctx IAlterrolestmtContext) { goto errorExit } { - p.SetState(1896) + p.SetState(1894) p.Alteroptrolelist() } @@ -13815,7 +13811,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(1898) + p.SetState(1896) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -13823,7 +13819,7 @@ func (p *PostgreSQLParser) Opt_in_database() (localctx IOpt_in_databaseContext) } } { - p.SetState(1899) + p.SetState(1897) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -13831,7 +13827,7 @@ func (p *PostgreSQLParser) Opt_in_database() (localctx IOpt_in_databaseContext) } } { - p.SetState(1900) + p.SetState(1898) p.Name() } @@ -14001,7 +13997,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(1902) + p.SetState(1900) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -14009,7 +14005,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext } } { - p.SetState(1903) + p.SetState(1901) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserUSER || _la == PostgreSQLParserROLE) { @@ -14019,7 +14015,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext p.Consume() } } - p.SetState(1905) + p.SetState(1903) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14028,7 +14024,7 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext if _la == PostgreSQLParserALL { { - p.SetState(1904) + p.SetState(1902) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -14038,10 +14034,10 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext } { - p.SetState(1907) + p.SetState(1905) p.Rolespec() } - p.SetState(1909) + p.SetState(1907) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14050,13 +14046,13 @@ func (p *PostgreSQLParser) Alterrolesetstmt() (localctx IAlterrolesetstmtContext if _la == PostgreSQLParserIN_P { { - p.SetState(1908) + p.SetState(1906) p.Opt_in_database() } } { - p.SetState(1911) + p.SetState(1909) p.Setresetclause() } @@ -14202,7 +14198,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1913) + p.SetState(1911) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -14210,7 +14206,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { } } { - p.SetState(1914) + p.SetState(1912) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserGROUP_P || _la == PostgreSQLParserUSER || _la == PostgreSQLParserROLE) { @@ -14220,12 +14216,12 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { p.Consume() } } - p.SetState(1917) + p.SetState(1915) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 14, p.GetParserRuleContext()) == 1 { { - p.SetState(1915) + p.SetState(1913) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -14233,7 +14229,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { } } { - p.SetState(1916) + p.SetState(1914) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -14245,7 +14241,7 @@ func (p *PostgreSQLParser) Droprolestmt() (localctx IDroprolestmtContext) { goto errorExit } { - p.SetState(1919) + p.SetState(1917) p.Role_list() } @@ -14403,7 +14399,7 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) p.EnterRule(localctx, 36, PostgreSQLParserRULE_creategroupstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1921) + p.SetState(1919) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -14411,7 +14407,7 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) } } { - p.SetState(1922) + p.SetState(1920) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -14419,15 +14415,15 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) } } { - p.SetState(1923) + p.SetState(1921) p.Roleid() } - p.SetState(1925) + p.SetState(1923) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 15, p.GetParserRuleContext()) == 1 { { - p.SetState(1924) + p.SetState(1922) p.Opt_with() } @@ -14435,7 +14431,7 @@ func (p *PostgreSQLParser) Creategroupstmt() (localctx ICreategroupstmtContext) goto errorExit } { - p.SetState(1927) + p.SetState(1925) p.Optrolelist() } @@ -14598,7 +14594,7 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { p.EnterRule(localctx, 38, PostgreSQLParserRULE_altergroupstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(1929) + p.SetState(1927) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -14606,7 +14602,7 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { } } { - p.SetState(1930) + p.SetState(1928) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -14614,15 +14610,15 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { } } { - p.SetState(1931) + p.SetState(1929) p.Rolespec() } { - p.SetState(1932) + p.SetState(1930) p.Add_drop() } { - p.SetState(1933) + p.SetState(1931) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -14630,7 +14626,7 @@ func (p *PostgreSQLParser) Altergroupstmt() (localctx IAltergroupstmtContext) { } } { - p.SetState(1934) + p.SetState(1932) p.Role_list() } @@ -14739,7 +14735,7 @@ func (p *PostgreSQLParser) Add_drop() (localctx IAdd_dropContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1936) + p.SetState(1934) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserADD_P || _la == PostgreSQLParserDROP) { @@ -14943,7 +14939,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(1938) + p.SetState(1936) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -14951,19 +14947,19 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1939) + p.SetState(1937) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1943) + p.SetState(1941) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 16, p.GetParserRuleContext()) == 1 { { - p.SetState(1940) + p.SetState(1938) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -14971,7 +14967,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1941) + p.SetState(1939) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -14979,7 +14975,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1942) + p.SetState(1940) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -14990,7 +14986,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } else if p.HasError() { // JIM goto errorExit } - p.SetState(1951) + p.SetState(1949) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -14998,7 +14994,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 18, p.GetParserRuleContext()) { case 1: - p.SetState(1946) + p.SetState(1944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15007,13 +15003,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(1945) + p.SetState(1943) p.Optschemaname() } } { - p.SetState(1948) + p.SetState(1946) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -15021,13 +15017,13 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext } } { - p.SetState(1949) + p.SetState(1947) p.Rolespec() } case 2: { - p.SetState(1950) + p.SetState(1948) p.Colid() } @@ -15035,7 +15031,7 @@ func (p *PostgreSQLParser) Createschemastmt() (localctx ICreateschemastmtContext goto errorExit } { - p.SetState(1953) + p.SetState(1951) p.Optschemaeltlist() } @@ -15149,7 +15145,7 @@ func (p *PostgreSQLParser) Optschemaname() (localctx IOptschemanameContext) { p.EnterRule(localctx, 44, PostgreSQLParserRULE_optschemaname) p.EnterOuterAlt(localctx, 1) { - p.SetState(1955) + p.SetState(1953) p.Colid() } @@ -15290,7 +15286,7 @@ func (p *PostgreSQLParser) Optschemaeltlist() (localctx IOptschemaeltlistContext var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(1960) + p.SetState(1958) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15302,12 +15298,12 @@ func (p *PostgreSQLParser) Optschemaeltlist() (localctx IOptschemaeltlistContext for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(1957) + p.SetState(1955) p.Schema_stmt() } } - p.SetState(1962) + p.SetState(1960) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15511,7 +15507,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(1969) + p.SetState(1967) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15521,42 +15517,42 @@ func (p *PostgreSQLParser) Schema_stmt() (localctx ISchema_stmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1963) + p.SetState(1961) p.Createstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1964) + p.SetState(1962) p.Indexstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1965) + p.SetState(1963) p.Createseqstmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1966) + p.SetState(1964) p.Createtrigstmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(1967) + p.SetState(1965) p.Grantstmt() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(1968) + p.SetState(1966) p.Viewstmt() } @@ -15691,19 +15687,19 @@ func (p *PostgreSQLParser) Variablesetstmt() (localctx IVariablesetstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(1971) + p.SetState(1969) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(1973) + p.SetState(1971) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 21, p.GetParserRuleContext()) == 1 { { - p.SetState(1972) + p.SetState(1970) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserLOCAL || _la == PostgreSQLParserSESSION) { @@ -15718,7 +15714,7 @@ func (p *PostgreSQLParser) Variablesetstmt() (localctx IVariablesetstmtContext) goto errorExit } { - p.SetState(1975) + p.SetState(1973) p.Set_rest() } @@ -15867,7 +15863,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(1985) + p.SetState(1983) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -15877,7 +15873,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1977) + p.SetState(1975) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -15885,14 +15881,14 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1978) + p.SetState(1976) p.Transaction_mode_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1979) + p.SetState(1977) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -15900,7 +15896,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1980) + p.SetState(1978) p.Match(PostgreSQLParserCHARACTERISTICS) if p.HasError() { // Recognition error - abort rule @@ -15908,7 +15904,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1981) + p.SetState(1979) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -15916,7 +15912,7 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1982) + p.SetState(1980) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -15924,14 +15920,14 @@ func (p *PostgreSQLParser) Set_rest() (localctx ISet_restContext) { } } { - p.SetState(1983) + p.SetState(1981) p.Transaction_mode_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1984) + p.SetState(1982) p.Set_rest_more() } @@ -16078,11 +16074,11 @@ func (p *PostgreSQLParser) Generic_set() (localctx IGeneric_setContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(1987) + p.SetState(1985) p.Var_name() } { - p.SetState(1988) + p.SetState(1986) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEQUAL || _la == PostgreSQLParserTO) { @@ -16093,7 +16089,7 @@ func (p *PostgreSQLParser) Generic_set() (localctx IGeneric_setContext) { } } { - p.SetState(1989) + p.SetState(1987) p.Var_list() } @@ -16379,7 +16375,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { p.EnterRule(localctx, 56, PostgreSQLParserRULE_set_rest_more) var _la int - p.SetState(2018) + p.SetState(2016) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16389,18 +16385,18 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(1991) + p.SetState(1989) p.Generic_set() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(1992) + p.SetState(1990) p.Var_name() } { - p.SetState(1993) + p.SetState(1991) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -16408,7 +16404,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1994) + p.SetState(1992) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -16419,7 +16415,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(1996) + p.SetState(1994) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -16427,7 +16423,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1997) + p.SetState(1995) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -16435,14 +16431,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(1998) + p.SetState(1996) p.Zone_value() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(1999) + p.SetState(1997) p.Match(PostgreSQLParserCATALOG) if p.HasError() { // Recognition error - abort rule @@ -16450,14 +16446,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2000) + p.SetState(1998) p.Sconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2001) + p.SetState(1999) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -16465,21 +16461,21 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2002) + p.SetState(2000) p.Sconst() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2003) + p.SetState(2001) p.Match(PostgreSQLParserNAMES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2005) + p.SetState(2003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16488,7 +16484,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(2004) + p.SetState(2002) p.Opt_encoding() } @@ -16497,7 +16493,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2007) + p.SetState(2005) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -16505,14 +16501,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2008) + p.SetState(2006) p.Nonreservedword_or_sconst() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2009) + p.SetState(2007) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -16520,7 +16516,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2010) + p.SetState(2008) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -16528,14 +16524,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2011) + p.SetState(2009) p.Nonreservedword_or_sconst() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2012) + p.SetState(2010) p.Match(PostgreSQLParserXML_P) if p.HasError() { // Recognition error - abort rule @@ -16543,7 +16539,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2013) + p.SetState(2011) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -16551,14 +16547,14 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2014) + p.SetState(2012) p.Document_or_content() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(2015) + p.SetState(2013) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -16566,7 +16562,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2016) + p.SetState(2014) p.Match(PostgreSQLParserSNAPSHOT) if p.HasError() { // Recognition error - abort rule @@ -16574,7 +16570,7 @@ func (p *PostgreSQLParser) Set_rest_more() (localctx ISet_rest_moreContext) { } } { - p.SetState(2017) + p.SetState(2015) p.Sconst() } @@ -16730,10 +16726,10 @@ func (p *PostgreSQLParser) Var_name() (localctx IVar_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2020) + p.SetState(2018) p.Colid() } - p.SetState(2025) + p.SetState(2023) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16742,7 +16738,7 @@ func (p *PostgreSQLParser) Var_name() (localctx IVar_nameContext) { for _la == PostgreSQLParserDOT { { - p.SetState(2021) + p.SetState(2019) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -16750,11 +16746,11 @@ func (p *PostgreSQLParser) Var_name() (localctx IVar_nameContext) { } } { - p.SetState(2022) + p.SetState(2020) p.Colid() } - p.SetState(2027) + p.SetState(2025) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16910,10 +16906,10 @@ func (p *PostgreSQLParser) Var_list() (localctx IVar_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2028) + p.SetState(2026) p.Var_value() } - p.SetState(2033) + p.SetState(2031) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -16922,7 +16918,7 @@ func (p *PostgreSQLParser) Var_list() (localctx IVar_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(2029) + p.SetState(2027) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -16930,11 +16926,11 @@ func (p *PostgreSQLParser) Var_list() (localctx IVar_listContext) { } } { - p.SetState(2030) + p.SetState(2028) p.Var_value() } - p.SetState(2035) + p.SetState(2033) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17067,7 +17063,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(2038) + p.SetState(2036) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17077,14 +17073,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(2036) + p.SetState(2034) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(2037) + p.SetState(2035) p.Numericonly() } @@ -17211,7 +17207,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { p.EnterRule(localctx, 64, PostgreSQLParserRULE_iso_level) var _la int - p.SetState(2045) + p.SetState(2043) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17221,7 +17217,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { case PostgreSQLParserREAD: p.EnterOuterAlt(localctx, 1) { - p.SetState(2040) + p.SetState(2038) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -17229,7 +17225,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { } } { - p.SetState(2041) + p.SetState(2039) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCOMMITTED || _la == PostgreSQLParserUNCOMMITTED) { @@ -17243,7 +17239,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { case PostgreSQLParserREPEATABLE: p.EnterOuterAlt(localctx, 2) { - p.SetState(2042) + p.SetState(2040) p.Match(PostgreSQLParserREPEATABLE) if p.HasError() { // Recognition error - abort rule @@ -17251,7 +17247,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { } } { - p.SetState(2043) + p.SetState(2041) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -17262,7 +17258,7 @@ func (p *PostgreSQLParser) Iso_level() (localctx IIso_levelContext) { case PostgreSQLParserSERIALIZABLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(2044) + p.SetState(2042) p.Match(PostgreSQLParserSERIALIZABLE) if p.HasError() { // Recognition error - abort rule @@ -17398,7 +17394,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(2051) + p.SetState(2049) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17408,7 +17404,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserTRUE_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(2047) + p.SetState(2045) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -17419,7 +17415,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserFALSE_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(2048) + p.SetState(2046) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -17430,7 +17426,7 @@ func (p *PostgreSQLParser) Opt_boolean_or_string() (localctx IOpt_boolean_or_str case PostgreSQLParserON: p.EnterOuterAlt(localctx, 3) { - p.SetState(2049) + p.SetState(2047) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -17441,7 +17437,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(2050) + p.SetState(2048) p.Nonreservedword_or_sconst() } @@ -17665,7 +17661,7 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { p.EnterRule(localctx, 68, PostgreSQLParserRULE_zone_value) var _la int - p.SetState(2069) + p.SetState(2067) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17675,28 +17671,28 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2053) + p.SetState(2051) p.Sconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2054) + p.SetState(2052) p.Identifier() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2055) + p.SetState(2053) p.Constinterval() } { - p.SetState(2056) + p.SetState(2054) p.Sconst() } - p.SetState(2058) + p.SetState(2056) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17705,7 +17701,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(2057) + p.SetState(2055) p.Opt_interval() } @@ -17714,11 +17710,11 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2060) + p.SetState(2058) p.Constinterval() } { - p.SetState(2061) + p.SetState(2059) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -17726,11 +17722,11 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { } } { - p.SetState(2062) + p.SetState(2060) p.Iconst() } { - p.SetState(2063) + p.SetState(2061) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -17738,21 +17734,21 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { } } { - p.SetState(2064) + p.SetState(2062) p.Sconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2066) + p.SetState(2064) p.Numericonly() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2067) + p.SetState(2065) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -17763,7 +17759,7 @@ func (p *PostgreSQLParser) Zone_value() (localctx IZone_valueContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2068) + p.SetState(2066) p.Match(PostgreSQLParserLOCAL) if p.HasError() { // Recognition error - abort rule @@ -17888,7 +17884,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(2073) + p.SetState(2071) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -17898,14 +17894,14 @@ func (p *PostgreSQLParser) Opt_encoding() (localctx IOpt_encodingContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(2071) + p.SetState(2069) p.Sconst() } case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 2) { - p.SetState(2072) + p.SetState(2070) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -18043,7 +18039,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(2077) + p.SetState(2075) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18053,14 +18049,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(2075) + p.SetState(2073) p.Nonreservedword() } case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 2) { - p.SetState(2076) + p.SetState(2074) p.Sconst() } @@ -18184,7 +18180,7 @@ func (p *PostgreSQLParser) Variableresetstmt() (localctx IVariableresetstmtConte p.EnterRule(localctx, 74, PostgreSQLParserRULE_variableresetstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2079) + p.SetState(2077) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -18192,7 +18188,7 @@ func (p *PostgreSQLParser) Variableresetstmt() (localctx IVariableresetstmtConte } } { - p.SetState(2080) + p.SetState(2078) p.Reset_rest() } @@ -18339,7 +18335,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(2090) + p.SetState(2088) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18349,14 +18345,14 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2082) + p.SetState(2080) p.Generic_reset() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2083) + p.SetState(2081) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -18364,7 +18360,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2084) + p.SetState(2082) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -18375,7 +18371,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2085) + p.SetState(2083) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -18383,7 +18379,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2086) + p.SetState(2084) p.Match(PostgreSQLParserISOLATION) if p.HasError() { // Recognition error - abort rule @@ -18391,7 +18387,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2087) + p.SetState(2085) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -18402,7 +18398,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2088) + p.SetState(2086) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -18410,7 +18406,7 @@ func (p *PostgreSQLParser) Reset_rest() (localctx IReset_restContext) { } } { - p.SetState(2089) + p.SetState(2087) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -18535,7 +18531,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(2094) + p.SetState(2092) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18545,14 +18541,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(2092) + p.SetState(2090) p.Var_name() } case PostgreSQLParserALL: p.EnterOuterAlt(localctx, 2) { - p.SetState(2093) + p.SetState(2091) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -18695,7 +18691,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(2099) + p.SetState(2097) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18705,7 +18701,7 @@ func (p *PostgreSQLParser) Setresetclause() (localctx ISetresetclauseContext) { case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(2096) + p.SetState(2094) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -18713,14 +18709,14 @@ func (p *PostgreSQLParser) Setresetclause() (localctx ISetresetclauseContext) { } } { - p.SetState(2097) + p.SetState(2095) p.Set_rest() } case PostgreSQLParserRESET: p.EnterOuterAlt(localctx, 2) { - p.SetState(2098) + p.SetState(2096) p.Variableresetstmt() } @@ -18859,7 +18855,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(2104) + p.SetState(2102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -18869,7 +18865,7 @@ func (p *PostgreSQLParser) Functionsetresetclause() (localctx IFunctionsetresetc case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(2101) + p.SetState(2099) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -18877,14 +18873,14 @@ func (p *PostgreSQLParser) Functionsetresetclause() (localctx IFunctionsetresetc } } { - p.SetState(2102) + p.SetState(2100) p.Set_rest_more() } case PostgreSQLParserRESET: p.EnterOuterAlt(localctx, 2) { - p.SetState(2103) + p.SetState(2101) p.Variableresetstmt() } @@ -19048,14 +19044,14 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext p.EnterRule(localctx, 84, PostgreSQLParserRULE_variableshowstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2106) + p.SetState(2104) p.Match(PostgreSQLParserSHOW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2116) + p.SetState(2114) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19064,13 +19060,13 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 38, p.GetParserRuleContext()) { case 1: { - p.SetState(2107) + p.SetState(2105) p.Var_name() } case 2: { - p.SetState(2108) + p.SetState(2106) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -19078,7 +19074,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2109) + p.SetState(2107) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -19088,7 +19084,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext case 3: { - p.SetState(2110) + p.SetState(2108) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -19096,7 +19092,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2111) + p.SetState(2109) p.Match(PostgreSQLParserISOLATION) if p.HasError() { // Recognition error - abort rule @@ -19104,7 +19100,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2112) + p.SetState(2110) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -19114,7 +19110,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext case 4: { - p.SetState(2113) + p.SetState(2111) p.Match(PostgreSQLParserSESSION) if p.HasError() { // Recognition error - abort rule @@ -19122,7 +19118,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext } } { - p.SetState(2114) + p.SetState(2112) p.Match(PostgreSQLParserAUTHORIZATION) if p.HasError() { // Recognition error - abort rule @@ -19132,7 +19128,7 @@ func (p *PostgreSQLParser) Variableshowstmt() (localctx IVariableshowstmtContext case 5: { - p.SetState(2115) + p.SetState(2113) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -19281,7 +19277,7 @@ func (p *PostgreSQLParser) Constraintssetstmt() (localctx IConstraintssetstmtCon p.EnterRule(localctx, 86, PostgreSQLParserRULE_constraintssetstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2118) + p.SetState(2116) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -19289,7 +19285,7 @@ func (p *PostgreSQLParser) Constraintssetstmt() (localctx IConstraintssetstmtCon } } { - p.SetState(2119) + p.SetState(2117) p.Match(PostgreSQLParserCONSTRAINTS) if p.HasError() { // Recognition error - abort rule @@ -19297,11 +19293,11 @@ func (p *PostgreSQLParser) Constraintssetstmt() (localctx IConstraintssetstmtCon } } { - p.SetState(2120) + p.SetState(2118) p.Constraints_set_list() } { - p.SetState(2121) + p.SetState(2119) p.Constraints_set_mode() } @@ -19418,7 +19414,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(2125) + p.SetState(2123) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -19428,7 +19424,7 @@ func (p *PostgreSQLParser) Constraints_set_list() (localctx IConstraints_set_lis case PostgreSQLParserALL: p.EnterOuterAlt(localctx, 1) { - p.SetState(2123) + p.SetState(2121) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -19439,7 +19435,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(2124) + p.SetState(2122) p.Qualified_name_list() } @@ -19553,7 +19549,7 @@ func (p *PostgreSQLParser) Constraints_set_mode() (localctx IConstraints_set_mod p.EnterOuterAlt(localctx, 1) { - p.SetState(2127) + p.SetState(2125) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDEFERRED || _la == PostgreSQLParserIMMEDIATE) { @@ -19662,7 +19658,7 @@ func (p *PostgreSQLParser) Checkpointstmt() (localctx ICheckpointstmtContext) { p.EnterRule(localctx, 92, PostgreSQLParserRULE_checkpointstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2129) + p.SetState(2127) p.Match(PostgreSQLParserCHECKPOINT) if p.HasError() { // Recognition error - abort rule @@ -19795,7 +19791,7 @@ func (p *PostgreSQLParser) Discardstmt() (localctx IDiscardstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2131) + p.SetState(2129) p.Match(PostgreSQLParserDISCARD) if p.HasError() { // Recognition error - abort rule @@ -19803,7 +19799,7 @@ func (p *PostgreSQLParser) Discardstmt() (localctx IDiscardstmtContext) { } } { - p.SetState(2132) + p.SetState(2130) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserPLANS || _la == PostgreSQLParserSEQUENCES || _la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -20149,7 +20145,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { p.EnterRule(localctx, 96, PostgreSQLParserRULE_altertablestmt) var _la int - p.SetState(2246) + p.SetState(2244) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20159,7 +20155,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2134) + p.SetState(2132) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20167,19 +20163,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2135) + p.SetState(2133) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2138) + p.SetState(2136) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 40, p.GetParserRuleContext()) == 1 { { - p.SetState(2136) + p.SetState(2134) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20187,7 +20183,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2137) + p.SetState(2135) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20199,10 +20195,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2140) + p.SetState(2138) p.Relation_expr() } - p.SetState(2143) + p.SetState(2141) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20211,13 +20207,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(2141) + p.SetState(2139) p.Alter_table_cmds() } case PostgreSQLParserATTACH, PostgreSQLParserDETACH: { - p.SetState(2142) + p.SetState(2140) p.Partition_cmd() } @@ -20229,7 +20225,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2145) + p.SetState(2143) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20237,7 +20233,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2146) + p.SetState(2144) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -20245,7 +20241,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2147) + p.SetState(2145) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -20253,7 +20249,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2148) + p.SetState(2146) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -20261,7 +20257,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2149) + p.SetState(2147) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20269,10 +20265,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2150) + p.SetState(2148) p.Name() } - p.SetState(2154) + p.SetState(2152) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20281,7 +20277,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserOWNED { { - p.SetState(2151) + p.SetState(2149) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -20289,7 +20285,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2152) + p.SetState(2150) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -20297,13 +20293,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2153) + p.SetState(2151) p.Role_list() } } { - p.SetState(2156) + p.SetState(2154) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -20311,7 +20307,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2157) + p.SetState(2155) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20319,10 +20315,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2158) + p.SetState(2156) p.Name() } - p.SetState(2160) + p.SetState(2158) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20331,7 +20327,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(2159) + p.SetState(2157) p.Opt_nowait() } @@ -20340,7 +20336,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2162) + p.SetState(2160) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20348,19 +20344,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2163) + p.SetState(2161) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2166) + p.SetState(2164) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 44, p.GetParserRuleContext()) == 1 { { - p.SetState(2164) + p.SetState(2162) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20368,7 +20364,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2165) + p.SetState(2163) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20380,10 +20376,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2168) + p.SetState(2166) p.Qualified_name() } - p.SetState(2171) + p.SetState(2169) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20392,13 +20388,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(2169) + p.SetState(2167) p.Alter_table_cmds() } case PostgreSQLParserATTACH: { - p.SetState(2170) + p.SetState(2168) p.Index_partition_cmd() } @@ -20410,7 +20406,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2173) + p.SetState(2171) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20418,7 +20414,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2174) + p.SetState(2172) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -20426,7 +20422,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2175) + p.SetState(2173) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -20434,7 +20430,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2176) + p.SetState(2174) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -20442,7 +20438,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2177) + p.SetState(2175) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20450,10 +20446,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2178) + p.SetState(2176) p.Name() } - p.SetState(2182) + p.SetState(2180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20462,7 +20458,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserOWNED { { - p.SetState(2179) + p.SetState(2177) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -20470,7 +20466,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2180) + p.SetState(2178) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -20478,13 +20474,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2181) + p.SetState(2179) p.Role_list() } } { - p.SetState(2184) + p.SetState(2182) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -20492,7 +20488,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2185) + p.SetState(2183) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20500,10 +20496,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2186) + p.SetState(2184) p.Name() } - p.SetState(2188) + p.SetState(2186) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20512,7 +20508,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(2187) + p.SetState(2185) p.Opt_nowait() } @@ -20521,7 +20517,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2190) + p.SetState(2188) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20529,19 +20525,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2191) + p.SetState(2189) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2194) + p.SetState(2192) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 48, p.GetParserRuleContext()) == 1 { { - p.SetState(2192) + p.SetState(2190) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20549,7 +20545,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2193) + p.SetState(2191) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20561,18 +20557,18 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2196) + p.SetState(2194) p.Qualified_name() } { - p.SetState(2197) + p.SetState(2195) p.Alter_table_cmds() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2199) + p.SetState(2197) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20580,19 +20576,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2200) + p.SetState(2198) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2203) + p.SetState(2201) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 49, p.GetParserRuleContext()) == 1 { { - p.SetState(2201) + p.SetState(2199) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20600,7 +20596,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2202) + p.SetState(2200) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20612,18 +20608,18 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2205) + p.SetState(2203) p.Qualified_name() } { - p.SetState(2206) + p.SetState(2204) p.Alter_table_cmds() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2208) + p.SetState(2206) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20631,7 +20627,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2209) + p.SetState(2207) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -20639,19 +20635,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2210) + p.SetState(2208) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2213) + p.SetState(2211) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 50, p.GetParserRuleContext()) == 1 { { - p.SetState(2211) + p.SetState(2209) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20659,7 +20655,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2212) + p.SetState(2210) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20671,18 +20667,18 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2215) + p.SetState(2213) p.Qualified_name() } { - p.SetState(2216) + p.SetState(2214) p.Alter_table_cmds() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2218) + p.SetState(2216) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20690,7 +20686,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2219) + p.SetState(2217) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -20698,7 +20694,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2220) + p.SetState(2218) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -20706,7 +20702,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2221) + p.SetState(2219) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -20714,7 +20710,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2222) + p.SetState(2220) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -20722,7 +20718,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2223) + p.SetState(2221) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20730,10 +20726,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2224) + p.SetState(2222) p.Name() } - p.SetState(2228) + p.SetState(2226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20742,7 +20738,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserOWNED { { - p.SetState(2225) + p.SetState(2223) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -20750,7 +20746,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2226) + p.SetState(2224) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -20758,13 +20754,13 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2227) + p.SetState(2225) p.Role_list() } } { - p.SetState(2230) + p.SetState(2228) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -20772,7 +20768,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2231) + p.SetState(2229) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -20780,10 +20776,10 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2232) + p.SetState(2230) p.Name() } - p.SetState(2234) + p.SetState(2232) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -20792,7 +20788,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(2233) + p.SetState(2231) p.Opt_nowait() } @@ -20801,7 +20797,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2236) + p.SetState(2234) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -20809,7 +20805,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2237) + p.SetState(2235) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -20817,19 +20813,19 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2238) + p.SetState(2236) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2241) + p.SetState(2239) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 53, p.GetParserRuleContext()) == 1 { { - p.SetState(2239) + p.SetState(2237) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -20837,7 +20833,7 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { } } { - p.SetState(2240) + p.SetState(2238) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -20849,11 +20845,11 @@ func (p *PostgreSQLParser) Altertablestmt() (localctx IAltertablestmtContext) { goto errorExit } { - p.SetState(2243) + p.SetState(2241) p.Relation_expr() } { - p.SetState(2244) + p.SetState(2242) p.Alter_table_cmds() } @@ -21009,10 +21005,10 @@ func (p *PostgreSQLParser) Alter_table_cmds() (localctx IAlter_table_cmdsContext p.EnterOuterAlt(localctx, 1) { - p.SetState(2248) + p.SetState(2246) p.Alter_table_cmd() } - p.SetState(2253) + p.SetState(2251) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21021,7 +21017,7 @@ func (p *PostgreSQLParser) Alter_table_cmds() (localctx IAlter_table_cmdsContext for _la == PostgreSQLParserCOMMA { { - p.SetState(2249) + p.SetState(2247) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -21029,11 +21025,11 @@ func (p *PostgreSQLParser) Alter_table_cmds() (localctx IAlter_table_cmdsContext } } { - p.SetState(2250) + p.SetState(2248) p.Alter_table_cmd() } - p.SetState(2255) + p.SetState(2253) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21181,7 +21177,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(2264) + p.SetState(2262) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -21191,7 +21187,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { case PostgreSQLParserATTACH: p.EnterOuterAlt(localctx, 1) { - p.SetState(2256) + p.SetState(2254) p.Match(PostgreSQLParserATTACH) if p.HasError() { // Recognition error - abort rule @@ -21199,7 +21195,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2257) + p.SetState(2255) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -21207,18 +21203,18 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2258) + p.SetState(2256) p.Qualified_name() } { - p.SetState(2259) + p.SetState(2257) p.Partitionboundspec() } case PostgreSQLParserDETACH: p.EnterOuterAlt(localctx, 2) { - p.SetState(2261) + p.SetState(2259) p.Match(PostgreSQLParserDETACH) if p.HasError() { // Recognition error - abort rule @@ -21226,7 +21222,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2262) + p.SetState(2260) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -21234,7 +21230,7 @@ func (p *PostgreSQLParser) Partition_cmd() (localctx IPartition_cmdContext) { } } { - p.SetState(2263) + p.SetState(2261) p.Qualified_name() } @@ -21363,7 +21359,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(2266) + p.SetState(2264) p.Match(PostgreSQLParserATTACH) if p.HasError() { // Recognition error - abort rule @@ -21371,7 +21367,7 @@ func (p *PostgreSQLParser) Index_partition_cmd() (localctx IIndex_partition_cmdC } } { - p.SetState(2267) + p.SetState(2265) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -21379,7 +21375,7 @@ func (p *PostgreSQLParser) Index_partition_cmd() (localctx IIndex_partition_cmdC } } { - p.SetState(2268) + p.SetState(2266) p.Qualified_name() } @@ -22118,7 +22114,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) p.EnterRule(localctx, 104, PostgreSQLParserRULE_alter_table_cmd) var _la int - p.SetState(2572) + p.SetState(2570) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22128,7 +22124,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2270) + p.SetState(2268) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22136,14 +22132,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2271) + p.SetState(2269) p.ColumnDef() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2272) + p.SetState(2270) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22151,7 +22147,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2273) + p.SetState(2271) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22159,7 +22155,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2274) + p.SetState(2272) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22167,7 +22163,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2275) + p.SetState(2273) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22175,14 +22171,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2276) + p.SetState(2274) p.ColumnDef() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2277) + p.SetState(2275) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22190,7 +22186,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2278) + p.SetState(2276) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22198,14 +22194,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2279) + p.SetState(2277) p.ColumnDef() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2280) + p.SetState(2278) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22213,7 +22209,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2281) + p.SetState(2279) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -22221,7 +22217,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2282) + p.SetState(2280) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22229,7 +22225,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2283) + p.SetState(2281) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22237,7 +22233,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2284) + p.SetState(2282) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22245,26 +22241,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2285) + p.SetState(2283) p.ColumnDef() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2286) + p.SetState(2284) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2288) + p.SetState(2286) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 57, p.GetParserRuleContext()) == 1 { { - p.SetState(2287) + p.SetState(2285) p.Opt_column() } @@ -22272,30 +22268,30 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2290) + p.SetState(2288) p.Colid() } { - p.SetState(2291) + p.SetState(2289) p.Alter_column_default() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2293) + p.SetState(2291) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2295) + p.SetState(2293) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 58, p.GetParserRuleContext()) == 1 { { - p.SetState(2294) + p.SetState(2292) p.Opt_column() } @@ -22303,11 +22299,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2297) + p.SetState(2295) p.Colid() } { - p.SetState(2298) + p.SetState(2296) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22315,7 +22311,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2299) + p.SetState(2297) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22323,7 +22319,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2300) + p.SetState(2298) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -22334,19 +22330,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2302) + p.SetState(2300) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2304) + p.SetState(2302) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 59, p.GetParserRuleContext()) == 1 { { - p.SetState(2303) + p.SetState(2301) p.Opt_column() } @@ -22354,11 +22350,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2306) + p.SetState(2304) p.Colid() } { - p.SetState(2307) + p.SetState(2305) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22366,7 +22362,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2308) + p.SetState(2306) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -22374,7 +22370,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2309) + p.SetState(2307) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -22385,19 +22381,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2311) + p.SetState(2309) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2313) + p.SetState(2311) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 60, p.GetParserRuleContext()) == 1 { { - p.SetState(2312) + p.SetState(2310) p.Opt_column() } @@ -22405,11 +22401,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2315) + p.SetState(2313) p.Colid() } { - p.SetState(2316) + p.SetState(2314) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22417,7 +22413,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2317) + p.SetState(2315) p.Match(PostgreSQLParserEXPRESSION) if p.HasError() { // Recognition error - abort rule @@ -22428,19 +22424,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2319) + p.SetState(2317) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2321) + p.SetState(2319) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 61, p.GetParserRuleContext()) == 1 { { - p.SetState(2320) + p.SetState(2318) p.Opt_column() } @@ -22448,11 +22444,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2323) + p.SetState(2321) p.Colid() } { - p.SetState(2324) + p.SetState(2322) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22460,7 +22456,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2325) + p.SetState(2323) p.Match(PostgreSQLParserEXPRESSION) if p.HasError() { // Recognition error - abort rule @@ -22468,7 +22464,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2326) + p.SetState(2324) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22476,7 +22472,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2327) + p.SetState(2325) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22487,19 +22483,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(2329) + p.SetState(2327) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2331) + p.SetState(2329) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 62, p.GetParserRuleContext()) == 1 { { - p.SetState(2330) + p.SetState(2328) p.Opt_column() } @@ -22507,11 +22503,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2333) + p.SetState(2331) p.Colid() } { - p.SetState(2334) + p.SetState(2332) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22519,7 +22515,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2335) + p.SetState(2333) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -22527,21 +22523,21 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2336) + p.SetState(2334) p.Signediconst() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(2338) + p.SetState(2336) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2340) + p.SetState(2338) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22550,17 +22546,17 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCOLUMN { { - p.SetState(2339) + p.SetState(2337) p.Opt_column() } } { - p.SetState(2342) + p.SetState(2340) p.Iconst() } { - p.SetState(2343) + p.SetState(2341) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22568,7 +22564,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2344) + p.SetState(2342) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -22576,26 +22572,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2345) + p.SetState(2343) p.Signediconst() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(2347) + p.SetState(2345) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2349) + p.SetState(2347) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 64, p.GetParserRuleContext()) == 1 { { - p.SetState(2348) + p.SetState(2346) p.Opt_column() } @@ -22603,11 +22599,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2351) + p.SetState(2349) p.Colid() } { - p.SetState(2352) + p.SetState(2350) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22615,26 +22611,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2353) + p.SetState(2351) p.Reloptions() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(2355) + p.SetState(2353) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2357) + p.SetState(2355) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 65, p.GetParserRuleContext()) == 1 { { - p.SetState(2356) + p.SetState(2354) p.Opt_column() } @@ -22642,11 +22638,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2359) + p.SetState(2357) p.Colid() } { - p.SetState(2360) + p.SetState(2358) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -22654,26 +22650,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2361) + p.SetState(2359) p.Reloptions() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(2363) + p.SetState(2361) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2365) + p.SetState(2363) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 66, p.GetParserRuleContext()) == 1 { { - p.SetState(2364) + p.SetState(2362) p.Opt_column() } @@ -22681,11 +22677,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2367) + p.SetState(2365) p.Colid() } { - p.SetState(2368) + p.SetState(2366) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -22693,7 +22689,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2369) + p.SetState(2367) p.Match(PostgreSQLParserSTORAGE) if p.HasError() { // Recognition error - abort rule @@ -22701,26 +22697,26 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2370) + p.SetState(2368) p.Colid() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(2372) + p.SetState(2370) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2374) + p.SetState(2372) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 67, p.GetParserRuleContext()) == 1 { { - p.SetState(2373) + p.SetState(2371) p.Opt_column() } @@ -22728,11 +22724,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2376) + p.SetState(2374) p.Colid() } { - p.SetState(2377) + p.SetState(2375) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -22740,7 +22736,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2378) + p.SetState(2376) p.Match(PostgreSQLParserGENERATED) if p.HasError() { // Recognition error - abort rule @@ -22748,11 +22744,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2379) + p.SetState(2377) p.Generated_when() } { - p.SetState(2380) + p.SetState(2378) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -22760,19 +22756,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2381) + p.SetState(2379) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2383) + p.SetState(2381) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 68, p.GetParserRuleContext()) == 1 { { - p.SetState(2382) + p.SetState(2380) p.Optparenthesizedseqoptlist() } @@ -22783,19 +22779,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(2385) + p.SetState(2383) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2387) + p.SetState(2385) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 69, p.GetParserRuleContext()) == 1 { { - p.SetState(2386) + p.SetState(2384) p.Opt_column() } @@ -22803,30 +22799,30 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2389) + p.SetState(2387) p.Colid() } { - p.SetState(2390) + p.SetState(2388) p.Alter_identity_column_option_list() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(2392) + p.SetState(2390) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2394) + p.SetState(2392) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 70, p.GetParserRuleContext()) == 1 { { - p.SetState(2393) + p.SetState(2391) p.Opt_column() } @@ -22834,11 +22830,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2396) + p.SetState(2394) p.Colid() } { - p.SetState(2397) + p.SetState(2395) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22846,7 +22842,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2398) + p.SetState(2396) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -22857,19 +22853,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(2400) + p.SetState(2398) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2402) + p.SetState(2400) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 71, p.GetParserRuleContext()) == 1 { { - p.SetState(2401) + p.SetState(2399) p.Opt_column() } @@ -22877,11 +22873,11 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2404) + p.SetState(2402) p.Colid() } { - p.SetState(2405) + p.SetState(2403) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -22889,7 +22885,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2406) + p.SetState(2404) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -22897,7 +22893,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2407) + p.SetState(2405) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22905,7 +22901,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2408) + p.SetState(2406) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22916,14 +22912,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(2410) + p.SetState(2408) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2412) + p.SetState(2410) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22932,13 +22928,13 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCOLUMN { { - p.SetState(2411) + p.SetState(2409) p.Opt_column() } } { - p.SetState(2414) + p.SetState(2412) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -22946,7 +22942,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2415) + p.SetState(2413) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -22954,10 +22950,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2416) + p.SetState(2414) p.Colid() } - p.SetState(2418) + p.SetState(2416) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -22966,7 +22962,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2417) + p.SetState(2415) p.Opt_drop_behavior() } @@ -22975,19 +22971,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(2420) + p.SetState(2418) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2422) + p.SetState(2420) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 74, p.GetParserRuleContext()) == 1 { { - p.SetState(2421) + p.SetState(2419) p.Opt_column() } @@ -22995,10 +22991,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2424) + p.SetState(2422) p.Colid() } - p.SetState(2426) + p.SetState(2424) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23007,7 +23003,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2425) + p.SetState(2423) p.Opt_drop_behavior() } @@ -23016,19 +23012,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(2428) + p.SetState(2426) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2430) + p.SetState(2428) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 76, p.GetParserRuleContext()) == 1 { { - p.SetState(2429) + p.SetState(2427) p.Opt_column() } @@ -23036,10 +23032,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2432) + p.SetState(2430) p.Colid() } - p.SetState(2434) + p.SetState(2432) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23048,13 +23044,13 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserSET { { - p.SetState(2433) + p.SetState(2431) p.Opt_set_data() } } { - p.SetState(2436) + p.SetState(2434) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -23062,10 +23058,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2437) + p.SetState(2435) p.Typename() } - p.SetState(2439) + p.SetState(2437) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23074,12 +23070,12 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCOLLATE { { - p.SetState(2438) + p.SetState(2436) p.Opt_collate_clause() } } - p.SetState(2442) + p.SetState(2440) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23088,7 +23084,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserUSING { { - p.SetState(2441) + p.SetState(2439) p.Alter_using() } @@ -23097,19 +23093,19 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(2444) + p.SetState(2442) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2446) + p.SetState(2444) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 80, p.GetParserRuleContext()) == 1 { { - p.SetState(2445) + p.SetState(2443) p.Opt_column() } @@ -23117,18 +23113,18 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) goto errorExit } { - p.SetState(2448) + p.SetState(2446) p.Colid() } { - p.SetState(2449) + p.SetState(2447) p.Alter_generic_options() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(2451) + p.SetState(2449) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -23136,14 +23132,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2452) + p.SetState(2450) p.Tableconstraint() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(2453) + p.SetState(2451) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -23151,7 +23147,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2454) + p.SetState(2452) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23159,18 +23155,18 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2455) + p.SetState(2453) p.Name() } { - p.SetState(2456) + p.SetState(2454) p.Constraintattributespec() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(2458) + p.SetState(2456) p.Match(PostgreSQLParserVALIDATE) if p.HasError() { // Recognition error - abort rule @@ -23178,7 +23174,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2459) + p.SetState(2457) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23186,14 +23182,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2460) + p.SetState(2458) p.Name() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(2461) + p.SetState(2459) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -23201,7 +23197,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2462) + p.SetState(2460) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23209,7 +23205,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2463) + p.SetState(2461) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -23217,7 +23213,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2464) + p.SetState(2462) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -23225,10 +23221,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2465) + p.SetState(2463) p.Name() } - p.SetState(2467) + p.SetState(2465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23237,7 +23233,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2466) + p.SetState(2464) p.Opt_drop_behavior() } @@ -23246,7 +23242,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(2469) + p.SetState(2467) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -23254,7 +23250,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2470) + p.SetState(2468) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -23262,10 +23258,10 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2471) + p.SetState(2469) p.Name() } - p.SetState(2473) + p.SetState(2471) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -23274,7 +23270,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2472) + p.SetState(2470) p.Opt_drop_behavior() } @@ -23283,7 +23279,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(2475) + p.SetState(2473) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23291,7 +23287,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2476) + p.SetState(2474) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -23299,7 +23295,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2477) + p.SetState(2475) p.Match(PostgreSQLParserOIDS) if p.HasError() { // Recognition error - abort rule @@ -23310,7 +23306,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(2478) + p.SetState(2476) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule @@ -23318,7 +23314,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2479) + p.SetState(2477) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -23326,14 +23322,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2480) + p.SetState(2478) p.Name() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(2481) + p.SetState(2479) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23341,7 +23337,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2482) + p.SetState(2480) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -23349,7 +23345,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2483) + p.SetState(2481) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule @@ -23360,7 +23356,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(2484) + p.SetState(2482) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23368,7 +23364,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2485) + p.SetState(2483) p.Match(PostgreSQLParserLOGGED) if p.HasError() { // Recognition error - abort rule @@ -23379,7 +23375,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(2486) + p.SetState(2484) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23387,7 +23383,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2487) + p.SetState(2485) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -23398,7 +23394,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(2488) + p.SetState(2486) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23406,7 +23402,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2489) + p.SetState(2487) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23414,14 +23410,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2490) + p.SetState(2488) p.Name() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(2491) + p.SetState(2489) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23429,7 +23425,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2492) + p.SetState(2490) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -23437,7 +23433,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2493) + p.SetState(2491) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23445,14 +23441,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2494) + p.SetState(2492) p.Name() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(2495) + p.SetState(2493) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23460,7 +23456,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2496) + p.SetState(2494) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -23468,7 +23464,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2497) + p.SetState(2495) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23476,14 +23472,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2498) + p.SetState(2496) p.Name() } case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(2499) + p.SetState(2497) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23491,7 +23487,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2500) + p.SetState(2498) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23499,7 +23495,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2501) + p.SetState(2499) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -23510,7 +23506,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(2502) + p.SetState(2500) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23518,7 +23514,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2503) + p.SetState(2501) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23526,7 +23522,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2504) + p.SetState(2502) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -23537,7 +23533,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(2505) + p.SetState(2503) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23545,7 +23541,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2506) + p.SetState(2504) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23553,14 +23549,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2507) + p.SetState(2505) p.Name() } case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(2508) + p.SetState(2506) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23568,7 +23564,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2509) + p.SetState(2507) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23576,7 +23572,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2510) + p.SetState(2508) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -23587,7 +23583,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(2511) + p.SetState(2509) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23595,7 +23591,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2512) + p.SetState(2510) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -23603,7 +23599,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2513) + p.SetState(2511) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -23614,7 +23610,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(2514) + p.SetState(2512) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23622,7 +23618,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2515) + p.SetState(2513) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23630,14 +23626,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2516) + p.SetState(2514) p.Name() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(2517) + p.SetState(2515) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23645,7 +23641,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2518) + p.SetState(2516) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -23653,7 +23649,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2519) + p.SetState(2517) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23661,14 +23657,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2520) + p.SetState(2518) p.Name() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(2521) + p.SetState(2519) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23676,7 +23672,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2522) + p.SetState(2520) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -23684,7 +23680,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2523) + p.SetState(2521) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23692,14 +23688,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2524) + p.SetState(2522) p.Name() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(2525) + p.SetState(2523) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23707,7 +23703,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2526) + p.SetState(2524) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -23715,14 +23711,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2527) + p.SetState(2525) p.Name() } case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(2528) + p.SetState(2526) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -23730,14 +23726,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2529) + p.SetState(2527) p.Qualified_name() } case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(2530) + p.SetState(2528) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -23745,7 +23741,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2531) + p.SetState(2529) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -23753,14 +23749,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2532) + p.SetState(2530) p.Qualified_name() } case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(2533) + p.SetState(2531) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -23768,14 +23764,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2534) + p.SetState(2532) p.Any_name() } case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(2535) + p.SetState(2533) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -23783,7 +23779,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2536) + p.SetState(2534) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -23794,7 +23790,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(2537) + p.SetState(2535) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -23802,7 +23798,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2538) + p.SetState(2536) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -23810,14 +23806,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2539) + p.SetState(2537) p.Rolespec() } case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(2540) + p.SetState(2538) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23825,7 +23821,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2541) + p.SetState(2539) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -23833,7 +23829,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2542) + p.SetState(2540) p.Match(PostgreSQLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -23841,14 +23837,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2543) + p.SetState(2541) p.Name() } case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(2544) + p.SetState(2542) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23856,7 +23852,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2545) + p.SetState(2543) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -23864,14 +23860,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2546) + p.SetState(2544) p.Name() } case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(2547) + p.SetState(2545) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -23879,14 +23875,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2548) + p.SetState(2546) p.Reloptions() } case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(2549) + p.SetState(2547) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -23894,14 +23890,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2550) + p.SetState(2548) p.Reloptions() } case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(2551) + p.SetState(2549) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -23909,7 +23905,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2552) + p.SetState(2550) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -23917,14 +23913,14 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2553) + p.SetState(2551) p.Replica_identity() } case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(2554) + p.SetState(2552) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23932,7 +23928,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2555) + p.SetState(2553) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -23940,7 +23936,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2556) + p.SetState(2554) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -23948,7 +23944,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2557) + p.SetState(2555) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -23959,7 +23955,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(2558) + p.SetState(2556) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -23967,7 +23963,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2559) + p.SetState(2557) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -23975,7 +23971,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2560) + p.SetState(2558) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -23983,7 +23979,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2561) + p.SetState(2559) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -23994,7 +23990,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 57: p.EnterOuterAlt(localctx, 57) { - p.SetState(2562) + p.SetState(2560) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -24002,7 +23998,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2563) + p.SetState(2561) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -24010,7 +24006,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2564) + p.SetState(2562) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -24018,7 +24014,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2565) + p.SetState(2563) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -24029,7 +24025,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 58: p.EnterOuterAlt(localctx, 58) { - p.SetState(2566) + p.SetState(2564) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -24037,7 +24033,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2567) + p.SetState(2565) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -24045,7 +24041,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2568) + p.SetState(2566) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -24053,7 +24049,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2569) + p.SetState(2567) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -24061,7 +24057,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) } } { - p.SetState(2570) + p.SetState(2568) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -24072,7 +24068,7 @@ func (p *PostgreSQLParser) Alter_table_cmd() (localctx IAlter_table_cmdContext) case 59: p.EnterOuterAlt(localctx, 59) { - p.SetState(2571) + p.SetState(2569) p.Alter_generic_options() } @@ -24203,7 +24199,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(2579) + p.SetState(2577) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24213,7 +24209,7 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(2574) + p.SetState(2572) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -24221,7 +24217,7 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul } } { - p.SetState(2575) + p.SetState(2573) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -24229,14 +24225,14 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul } } { - p.SetState(2576) + p.SetState(2574) p.A_expr() } case PostgreSQLParserDROP: p.EnterOuterAlt(localctx, 2) { - p.SetState(2577) + p.SetState(2575) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -24244,7 +24240,7 @@ func (p *PostgreSQLParser) Alter_column_default() (localctx IAlter_column_defaul } } { - p.SetState(2578) + p.SetState(2576) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -24362,7 +24358,7 @@ func (p *PostgreSQLParser) Opt_drop_behavior() (localctx IOpt_drop_behaviorConte p.EnterOuterAlt(localctx, 1) { - p.SetState(2581) + p.SetState(2579) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT) { @@ -24488,7 +24484,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(2583) + p.SetState(2581) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -24496,7 +24492,7 @@ func (p *PostgreSQLParser) Opt_collate_clause() (localctx IOpt_collate_clauseCon } } { - p.SetState(2584) + p.SetState(2582) p.Any_name() } @@ -24615,7 +24611,7 @@ func (p *PostgreSQLParser) Alter_using() (localctx IAlter_usingContext) { p.EnterRule(localctx, 112, PostgreSQLParserRULE_alter_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(2586) + p.SetState(2584) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -24623,7 +24619,7 @@ func (p *PostgreSQLParser) Alter_using() (localctx IAlter_usingContext) { } } { - p.SetState(2587) + p.SetState(2585) p.A_expr() } @@ -24760,7 +24756,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(2595) + p.SetState(2593) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -24770,7 +24766,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserNOTHING: p.EnterOuterAlt(localctx, 1) { - p.SetState(2589) + p.SetState(2587) p.Match(PostgreSQLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -24781,7 +24777,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserFULL: p.EnterOuterAlt(localctx, 2) { - p.SetState(2590) + p.SetState(2588) p.Match(PostgreSQLParserFULL) if p.HasError() { // Recognition error - abort rule @@ -24792,7 +24788,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 3) { - p.SetState(2591) + p.SetState(2589) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -24803,7 +24799,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext case PostgreSQLParserUSING: p.EnterOuterAlt(localctx, 4) { - p.SetState(2592) + p.SetState(2590) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -24811,7 +24807,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext } } { - p.SetState(2593) + p.SetState(2591) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -24819,7 +24815,7 @@ func (p *PostgreSQLParser) Replica_identity() (localctx IReplica_identityContext } } { - p.SetState(2594) + p.SetState(2592) p.Name() } @@ -24948,7 +24944,7 @@ func (p *PostgreSQLParser) Reloptions() (localctx IReloptionsContext) { p.EnterRule(localctx, 116, PostgreSQLParserRULE_reloptions) p.EnterOuterAlt(localctx, 1) { - p.SetState(2597) + p.SetState(2595) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -24956,11 +24952,11 @@ func (p *PostgreSQLParser) Reloptions() (localctx IReloptionsContext) { } } { - p.SetState(2598) + p.SetState(2596) p.Reloption_list() } { - p.SetState(2599) + p.SetState(2597) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -25083,7 +25079,7 @@ func (p *PostgreSQLParser) Opt_reloptions() (localctx IOpt_reloptionsContext) { p.EnterRule(localctx, 118, PostgreSQLParserRULE_opt_reloptions) p.EnterOuterAlt(localctx, 1) { - p.SetState(2601) + p.SetState(2599) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -25091,7 +25087,7 @@ func (p *PostgreSQLParser) Opt_reloptions() (localctx IOpt_reloptionsContext) { } } { - p.SetState(2602) + p.SetState(2600) p.Reloptions() } @@ -25243,10 +25239,10 @@ func (p *PostgreSQLParser) Reloption_list() (localctx IReloption_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2604) + p.SetState(2602) p.Reloption_elem() } - p.SetState(2609) + p.SetState(2607) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25255,7 +25251,7 @@ func (p *PostgreSQLParser) Reloption_list() (localctx IReloption_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(2605) + p.SetState(2603) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -25263,11 +25259,11 @@ func (p *PostgreSQLParser) Reloption_list() (localctx IReloption_listContext) { } } { - p.SetState(2606) + p.SetState(2604) p.Reloption_elem() } - p.SetState(2611) + p.SetState(2609) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25440,10 +25436,10 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2612) + p.SetState(2610) p.Collabel() } - p.SetState(2621) + p.SetState(2619) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25451,7 +25447,7 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserEQUAL: { - p.SetState(2613) + p.SetState(2611) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -25459,13 +25455,13 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { } } { - p.SetState(2614) + p.SetState(2612) p.Def_arg() } case PostgreSQLParserDOT: { - p.SetState(2615) + p.SetState(2613) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -25473,10 +25469,10 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { } } { - p.SetState(2616) + p.SetState(2614) p.Collabel() } - p.SetState(2619) + p.SetState(2617) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25485,7 +25481,7 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { if _la == PostgreSQLParserEQUAL { { - p.SetState(2617) + p.SetState(2615) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -25493,7 +25489,7 @@ func (p *PostgreSQLParser) Reloption_elem() (localctx IReloption_elemContext) { } } { - p.SetState(2618) + p.SetState(2616) p.Def_arg() } @@ -25641,7 +25637,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option_list() (localctx IAlter_ var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(2624) + p.SetState(2622) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25651,7 +25647,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option_list() (localctx IAlter_ switch _alt { case 1: { - p.SetState(2623) + p.SetState(2621) p.Alter_identity_column_option() } @@ -25660,7 +25656,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option_list() (localctx IAlter_ goto errorExit } - p.SetState(2626) + p.SetState(2624) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 89, p.GetParserRuleContext()) if p.HasError() { @@ -25844,7 +25840,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(2641) + p.SetState(2639) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25854,18 +25850,18 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident case PostgreSQLParserRESTART: p.EnterOuterAlt(localctx, 1) { - p.SetState(2628) + p.SetState(2626) p.Match(PostgreSQLParserRESTART) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2633) + p.SetState(2631) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 91, p.GetParserRuleContext()) == 1 { - p.SetState(2630) + p.SetState(2628) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25874,13 +25870,13 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident if _la == PostgreSQLParserWITH { { - p.SetState(2629) + p.SetState(2627) p.Opt_with() } } { - p.SetState(2632) + p.SetState(2630) p.Numericonly() } @@ -25891,14 +25887,14 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 2) { - p.SetState(2635) + p.SetState(2633) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2639) + p.SetState(2637) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -25907,13 +25903,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(2636) + p.SetState(2634) p.Seqoptelem() } case PostgreSQLParserGENERATED: { - p.SetState(2637) + p.SetState(2635) p.Match(PostgreSQLParserGENERATED) if p.HasError() { // Recognition error - abort rule @@ -25921,7 +25917,7 @@ func (p *PostgreSQLParser) Alter_identity_column_option() (localctx IAlter_ident } } { - p.SetState(2638) + p.SetState(2636) p.Generated_when() } @@ -26141,7 +26137,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(2669) + p.SetState(2667) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26151,7 +26147,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2643) + p.SetState(2641) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26159,7 +26155,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2644) + p.SetState(2642) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -26167,7 +26163,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2645) + p.SetState(2643) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -26175,7 +26171,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2646) + p.SetState(2644) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26183,11 +26179,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2647) + p.SetState(2645) p.Hash_partbound() } { - p.SetState(2648) + p.SetState(2646) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26198,7 +26194,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2650) + p.SetState(2648) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26206,7 +26202,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2651) + p.SetState(2649) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -26214,7 +26210,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2652) + p.SetState(2650) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -26222,7 +26218,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2653) + p.SetState(2651) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26230,11 +26226,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2654) + p.SetState(2652) p.Expr_list() } { - p.SetState(2655) + p.SetState(2653) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26245,7 +26241,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2657) + p.SetState(2655) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -26253,7 +26249,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2658) + p.SetState(2656) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -26261,7 +26257,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2659) + p.SetState(2657) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -26269,7 +26265,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2660) + p.SetState(2658) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26277,11 +26273,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2661) + p.SetState(2659) p.Expr_list() } { - p.SetState(2662) + p.SetState(2660) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26289,7 +26285,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2663) + p.SetState(2661) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -26297,7 +26293,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2664) + p.SetState(2662) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26305,11 +26301,11 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon } } { - p.SetState(2665) + p.SetState(2663) p.Expr_list() } { - p.SetState(2666) + p.SetState(2664) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -26320,7 +26316,7 @@ func (p *PostgreSQLParser) Partitionboundspec() (localctx IPartitionboundspecCon case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2668) + p.SetState(2666) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -26459,11 +26455,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(2671) + p.SetState(2669) p.Nonreservedword() } { - p.SetState(2672) + p.SetState(2670) p.Iconst() } @@ -26615,10 +26611,10 @@ func (p *PostgreSQLParser) Hash_partbound() (localctx IHash_partboundContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2674) + p.SetState(2672) p.Hash_partbound_elem() } - p.SetState(2679) + p.SetState(2677) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26627,7 +26623,7 @@ func (p *PostgreSQLParser) Hash_partbound() (localctx IHash_partboundContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(2675) + p.SetState(2673) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -26635,11 +26631,11 @@ func (p *PostgreSQLParser) Hash_partbound() (localctx IHash_partboundContext) { } } { - p.SetState(2676) + p.SetState(2674) p.Hash_partbound_elem() } - p.SetState(2681) + p.SetState(2679) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26784,7 +26780,7 @@ func (p *PostgreSQLParser) Altercompositetypestmt() (localctx IAltercompositetyp p.EnterRule(localctx, 134, PostgreSQLParserRULE_altercompositetypestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2682) + p.SetState(2680) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -26792,7 +26788,7 @@ func (p *PostgreSQLParser) Altercompositetypestmt() (localctx IAltercompositetyp } } { - p.SetState(2683) + p.SetState(2681) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -26800,11 +26796,11 @@ func (p *PostgreSQLParser) Altercompositetypestmt() (localctx IAltercompositetyp } } { - p.SetState(2684) + p.SetState(2682) p.Any_name() } { - p.SetState(2685) + p.SetState(2683) p.Alter_type_cmds() } @@ -26956,10 +26952,10 @@ func (p *PostgreSQLParser) Alter_type_cmds() (localctx IAlter_type_cmdsContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(2687) + p.SetState(2685) p.Alter_type_cmd() } - p.SetState(2692) + p.SetState(2690) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -26968,7 +26964,7 @@ func (p *PostgreSQLParser) Alter_type_cmds() (localctx IAlter_type_cmdsContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(2688) + p.SetState(2686) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -26976,11 +26972,11 @@ func (p *PostgreSQLParser) Alter_type_cmds() (localctx IAlter_type_cmdsContext) } } { - p.SetState(2689) + p.SetState(2687) p.Alter_type_cmd() } - p.SetState(2694) + p.SetState(2692) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27218,7 +27214,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { p.EnterRule(localctx, 138, PostgreSQLParserRULE_alter_type_cmd) var _la int - p.SetState(2725) + p.SetState(2723) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27228,7 +27224,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { case PostgreSQLParserADD_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(2695) + p.SetState(2693) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -27236,7 +27232,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2696) + p.SetState(2694) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -27244,10 +27240,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2697) + p.SetState(2695) p.Tablefuncelement() } - p.SetState(2699) + p.SetState(2697) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27256,7 +27252,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2698) + p.SetState(2696) p.Opt_drop_behavior() } @@ -27265,7 +27261,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { case PostgreSQLParserDROP: p.EnterOuterAlt(localctx, 2) { - p.SetState(2701) + p.SetState(2699) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -27273,19 +27269,19 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2702) + p.SetState(2700) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2705) + p.SetState(2703) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 98, p.GetParserRuleContext()) == 1 { { - p.SetState(2703) + p.SetState(2701) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -27293,7 +27289,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2704) + p.SetState(2702) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -27305,10 +27301,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { goto errorExit } { - p.SetState(2707) + p.SetState(2705) p.Colid() } - p.SetState(2709) + p.SetState(2707) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27317,7 +27313,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2708) + p.SetState(2706) p.Opt_drop_behavior() } @@ -27326,7 +27322,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { case PostgreSQLParserALTER: p.EnterOuterAlt(localctx, 3) { - p.SetState(2711) + p.SetState(2709) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -27334,7 +27330,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2712) + p.SetState(2710) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -27342,10 +27338,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2713) + p.SetState(2711) p.Colid() } - p.SetState(2715) + p.SetState(2713) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27354,13 +27350,13 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserSET { { - p.SetState(2714) + p.SetState(2712) p.Opt_set_data() } } { - p.SetState(2717) + p.SetState(2715) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -27368,10 +27364,10 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { } } { - p.SetState(2718) + p.SetState(2716) p.Typename() } - p.SetState(2720) + p.SetState(2718) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27380,12 +27376,12 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCOLLATE { { - p.SetState(2719) + p.SetState(2717) p.Opt_collate_clause() } } - p.SetState(2723) + p.SetState(2721) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27394,7 +27390,7 @@ func (p *PostgreSQLParser) Alter_type_cmd() (localctx IAlter_type_cmdContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(2722) + p.SetState(2720) p.Opt_drop_behavior() } @@ -27525,14 +27521,14 @@ func (p *PostgreSQLParser) Closeportalstmt() (localctx ICloseportalstmtContext) p.EnterRule(localctx, 140, PostgreSQLParserRULE_closeportalstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(2727) + p.SetState(2725) p.Match(PostgreSQLParserCLOSE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2730) + p.SetState(2728) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27541,13 +27537,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(2728) + p.SetState(2726) p.Cursor_name() } case PostgreSQLParserALL: { - p.SetState(2729) + p.SetState(2727) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -27860,7 +27856,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { p.EnterRule(localctx, 142, PostgreSQLParserRULE_copystmt) var _la int - p.SetState(2769) + p.SetState(2767) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27870,14 +27866,14 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2732) + p.SetState(2730) p.Match(PostgreSQLParserCOPY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2734) + p.SetState(2732) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27886,16 +27882,16 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserBINARY { { - p.SetState(2733) + p.SetState(2731) p.Opt_binary() } } { - p.SetState(2736) + p.SetState(2734) p.Qualified_name() } - p.SetState(2738) + p.SetState(2736) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27904,16 +27900,16 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(2737) + p.SetState(2735) p.Opt_column_list() } } { - p.SetState(2740) + p.SetState(2738) p.Copy_from() } - p.SetState(2742) + p.SetState(2740) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27922,16 +27918,16 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserPROGRAM { { - p.SetState(2741) + p.SetState(2739) p.Opt_program() } } { - p.SetState(2744) + p.SetState(2742) p.Copy_file_name() } - p.SetState(2746) + p.SetState(2744) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27940,17 +27936,17 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserUSING || _la == PostgreSQLParserDELIMITERS { { - p.SetState(2745) + p.SetState(2743) p.Copy_delimiter() } } - p.SetState(2749) + p.SetState(2747) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 109, p.GetParserRuleContext()) == 1 { { - p.SetState(2748) + p.SetState(2746) p.Opt_with() } @@ -27958,10 +27954,10 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { goto errorExit } { - p.SetState(2751) + p.SetState(2749) p.Copy_options() } - p.SetState(2753) + p.SetState(2751) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -27970,7 +27966,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(2752) + p.SetState(2750) p.Where_clause() } @@ -27979,7 +27975,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2755) + p.SetState(2753) p.Match(PostgreSQLParserCOPY) if p.HasError() { // Recognition error - abort rule @@ -27987,7 +27983,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { } } { - p.SetState(2756) + p.SetState(2754) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -27995,11 +27991,11 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { } } { - p.SetState(2757) + p.SetState(2755) p.Preparablestmt() } { - p.SetState(2758) + p.SetState(2756) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -28007,14 +28003,14 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { } } { - p.SetState(2759) + p.SetState(2757) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2761) + p.SetState(2759) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28023,21 +28019,21 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { if _la == PostgreSQLParserPROGRAM { { - p.SetState(2760) + p.SetState(2758) p.Opt_program() } } { - p.SetState(2763) + p.SetState(2761) p.Copy_file_name() } - p.SetState(2765) + p.SetState(2763) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 112, p.GetParserRuleContext()) == 1 { { - p.SetState(2764) + p.SetState(2762) p.Opt_with() } @@ -28045,7 +28041,7 @@ func (p *PostgreSQLParser) Copystmt() (localctx ICopystmtContext) { goto errorExit } { - p.SetState(2767) + p.SetState(2765) p.Copy_options() } @@ -28158,7 +28154,7 @@ func (p *PostgreSQLParser) Copy_from() (localctx ICopy_fromContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2771) + p.SetState(2769) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFROM || _la == PostgreSQLParserTO) { @@ -28267,7 +28263,7 @@ func (p *PostgreSQLParser) Opt_program() (localctx IOpt_programContext) { p.EnterRule(localctx, 146, PostgreSQLParserRULE_opt_program) p.EnterOuterAlt(localctx, 1) { - p.SetState(2773) + p.SetState(2771) p.Match(PostgreSQLParserPROGRAM) if p.HasError() { // Recognition error - abort rule @@ -28393,7 +28389,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(2778) + p.SetState(2776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28403,14 +28399,14 @@ func (p *PostgreSQLParser) Copy_file_name() (localctx ICopy_file_nameContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(2775) + p.SetState(2773) p.Sconst() } case PostgreSQLParserSTDIN: p.EnterOuterAlt(localctx, 2) { - p.SetState(2776) + p.SetState(2774) p.Match(PostgreSQLParserSTDIN) if p.HasError() { // Recognition error - abort rule @@ -28421,7 +28417,7 @@ func (p *PostgreSQLParser) Copy_file_name() (localctx ICopy_file_nameContext) { case PostgreSQLParserSTDOUT: p.EnterOuterAlt(localctx, 3) { - p.SetState(2777) + p.SetState(2775) p.Match(PostgreSQLParserSTDOUT) if p.HasError() { // Recognition error - abort rule @@ -28569,7 +28565,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(2785) + p.SetState(2783) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28579,14 +28575,14 @@ func (p *PostgreSQLParser) Copy_options() (localctx ICopy_optionsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2780) + p.SetState(2778) p.Copy_opt_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2781) + p.SetState(2779) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -28594,11 +28590,11 @@ func (p *PostgreSQLParser) Copy_options() (localctx ICopy_optionsContext) { } } { - p.SetState(2782) + p.SetState(2780) p.Copy_generic_opt_list() } { - p.SetState(2783) + p.SetState(2781) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -28747,7 +28743,7 @@ func (p *PostgreSQLParser) Copy_opt_list() (localctx ICopy_opt_listContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2790) + p.SetState(2788) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28756,11 +28752,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(2787) + p.SetState(2785) p.Copy_opt_item() } - p.SetState(2792) + p.SetState(2790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28972,7 +28968,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { p.EnterRule(localctx, 154, PostgreSQLParserRULE_copy_opt_item) var _la int - p.SetState(2832) + p.SetState(2830) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -28982,7 +28978,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2793) + p.SetState(2791) p.Match(PostgreSQLParserBINARY) if p.HasError() { // Recognition error - abort rule @@ -28993,7 +28989,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2794) + p.SetState(2792) p.Match(PostgreSQLParserFREEZE) if p.HasError() { // Recognition error - abort rule @@ -29004,14 +29000,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2795) + p.SetState(2793) p.Match(PostgreSQLParserDELIMITER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2797) + p.SetState(2795) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29020,27 +29016,27 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2796) + p.SetState(2794) p.Opt_as() } } { - p.SetState(2799) + p.SetState(2797) p.Sconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(2800) + p.SetState(2798) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2802) + p.SetState(2800) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29049,20 +29045,20 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2801) + p.SetState(2799) p.Opt_as() } } { - p.SetState(2804) + p.SetState(2802) p.Sconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(2805) + p.SetState(2803) p.Match(PostgreSQLParserCSV) if p.HasError() { // Recognition error - abort rule @@ -29073,7 +29069,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(2806) + p.SetState(2804) p.Match(PostgreSQLParserHEADER_P) if p.HasError() { // Recognition error - abort rule @@ -29084,14 +29080,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(2807) + p.SetState(2805) p.Match(PostgreSQLParserQUOTE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2809) + p.SetState(2807) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29100,27 +29096,27 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2808) + p.SetState(2806) p.Opt_as() } } { - p.SetState(2811) + p.SetState(2809) p.Sconst() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(2812) + p.SetState(2810) p.Match(PostgreSQLParserESCAPE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2814) + p.SetState(2812) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29129,20 +29125,20 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(2813) + p.SetState(2811) p.Opt_as() } } { - p.SetState(2816) + p.SetState(2814) p.Sconst() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(2817) + p.SetState(2815) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29150,7 +29146,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2818) + p.SetState(2816) p.Match(PostgreSQLParserQUOTE) if p.HasError() { // Recognition error - abort rule @@ -29158,14 +29154,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2819) + p.SetState(2817) p.Columnlist() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(2820) + p.SetState(2818) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29173,7 +29169,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2821) + p.SetState(2819) p.Match(PostgreSQLParserQUOTE) if p.HasError() { // Recognition error - abort rule @@ -29181,7 +29177,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2822) + p.SetState(2820) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -29192,7 +29188,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(2823) + p.SetState(2821) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29200,7 +29196,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2824) + p.SetState(2822) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -29208,7 +29204,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2825) + p.SetState(2823) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -29216,14 +29212,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2826) + p.SetState(2824) p.Columnlist() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(2827) + p.SetState(2825) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -29231,7 +29227,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2828) + p.SetState(2826) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -29239,14 +29235,14 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2829) + p.SetState(2827) p.Columnlist() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(2830) + p.SetState(2828) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -29254,7 +29250,7 @@ func (p *PostgreSQLParser) Copy_opt_item() (localctx ICopy_opt_itemContext) { } } { - p.SetState(2831) + p.SetState(2829) p.Sconst() } @@ -29360,7 +29356,7 @@ func (p *PostgreSQLParser) Opt_binary() (localctx IOpt_binaryContext) { p.EnterRule(localctx, 156, PostgreSQLParserRULE_opt_binary) p.EnterOuterAlt(localctx, 1) { - p.SetState(2834) + p.SetState(2832) p.Match(PostgreSQLParserBINARY) if p.HasError() { // Recognition error - abort rule @@ -29501,7 +29497,7 @@ func (p *PostgreSQLParser) Copy_delimiter() (localctx ICopy_delimiterContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(2837) + p.SetState(2835) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29510,13 +29506,13 @@ func (p *PostgreSQLParser) Copy_delimiter() (localctx ICopy_delimiterContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2836) + p.SetState(2834) p.Opt_using() } } { - p.SetState(2839) + p.SetState(2837) p.Match(PostgreSQLParserDELIMITERS) if p.HasError() { // Recognition error - abort rule @@ -29524,7 +29520,7 @@ func (p *PostgreSQLParser) Copy_delimiter() (localctx ICopy_delimiterContext) { } } { - p.SetState(2840) + p.SetState(2838) p.Sconst() } @@ -29626,7 +29622,7 @@ func (p *PostgreSQLParser) Opt_using() (localctx IOpt_usingContext) { p.EnterRule(localctx, 160, PostgreSQLParserRULE_opt_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(2842) + p.SetState(2840) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -29782,10 +29778,10 @@ func (p *PostgreSQLParser) Copy_generic_opt_list() (localctx ICopy_generic_opt_l p.EnterOuterAlt(localctx, 1) { - p.SetState(2844) + p.SetState(2842) p.Copy_generic_opt_elem() } - p.SetState(2849) + p.SetState(2847) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29794,7 +29790,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_list() (localctx ICopy_generic_opt_l for _la == PostgreSQLParserCOMMA { { - p.SetState(2845) + p.SetState(2843) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -29802,11 +29798,11 @@ func (p *PostgreSQLParser) Copy_generic_opt_list() (localctx ICopy_generic_opt_l } } { - p.SetState(2846) + p.SetState(2844) p.Copy_generic_opt_elem() } - p.SetState(2851) + p.SetState(2849) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29943,10 +29939,10 @@ func (p *PostgreSQLParser) Copy_generic_opt_elem() (localctx ICopy_generic_opt_e p.EnterOuterAlt(localctx, 1) { - p.SetState(2852) + p.SetState(2850) p.Collabel() } - p.SetState(2854) + p.SetState(2852) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -29955,7 +29951,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(2853) + p.SetState(2851) p.Copy_generic_opt_arg() } @@ -30118,7 +30114,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(2863) + p.SetState(2861) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30128,21 +30124,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(2856) + p.SetState(2854) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(2857) + p.SetState(2855) p.Numericonly() } case PostgreSQLParserSTAR: p.EnterOuterAlt(localctx, 3) { - p.SetState(2858) + p.SetState(2856) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -30153,7 +30149,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg() (localctx ICopy_generic_opt_ar case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 4) { - p.SetState(2859) + p.SetState(2857) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -30161,11 +30157,11 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg() (localctx ICopy_generic_opt_ar } } { - p.SetState(2860) + p.SetState(2858) p.Copy_generic_opt_arg_list() } { - p.SetState(2861) + p.SetState(2859) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -30326,10 +30322,10 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list() (localctx ICopy_generic_o p.EnterOuterAlt(localctx, 1) { - p.SetState(2865) + p.SetState(2863) p.Copy_generic_opt_arg_list_item() } - p.SetState(2870) + p.SetState(2868) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30338,7 +30334,7 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list() (localctx ICopy_generic_o for _la == PostgreSQLParserCOMMA { { - p.SetState(2866) + p.SetState(2864) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -30346,11 +30342,11 @@ func (p *PostgreSQLParser) Copy_generic_opt_arg_list() (localctx ICopy_generic_o } } { - p.SetState(2867) + p.SetState(2865) p.Copy_generic_opt_arg_list_item() } - p.SetState(2872) + p.SetState(2870) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30468,7 +30464,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(2873) + p.SetState(2871) p.Opt_boolean_or_string() } @@ -30842,14 +30838,14 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2875) + p.SetState(2873) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2877) + p.SetState(2875) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30858,25 +30854,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(2876) + p.SetState(2874) p.Opttemp() } } { - p.SetState(2879) + p.SetState(2877) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2883) + p.SetState(2881) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 128, p.GetParserRuleContext()) == 1 { { - p.SetState(2880) + p.SetState(2878) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -30884,7 +30880,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2881) + p.SetState(2879) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -30892,7 +30888,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2882) + p.SetState(2880) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -30904,10 +30900,10 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { goto errorExit } { - p.SetState(2885) + p.SetState(2883) p.Qualified_name() } - p.SetState(2951) + p.SetState(2949) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30916,14 +30912,14 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(2886) + p.SetState(2884) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2888) + p.SetState(2886) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30932,20 +30928,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(2887) + p.SetState(2885) p.Opttableelementlist() } } { - p.SetState(2890) + p.SetState(2888) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(2892) + p.SetState(2890) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30954,12 +30950,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserINHERITS { { - p.SetState(2891) + p.SetState(2889) p.Optinherit() } } - p.SetState(2895) + p.SetState(2893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30968,12 +30964,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserPARTITION { { - p.SetState(2894) + p.SetState(2892) p.Optpartitionspec() } } - p.SetState(2898) + p.SetState(2896) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -30982,24 +30978,24 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2897) + p.SetState(2895) p.Table_access_method_clause() } } - p.SetState(2901) + p.SetState(2899) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 133, p.GetParserRuleContext()) == 1 { { - p.SetState(2900) + p.SetState(2898) p.Optwith() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2904) + p.SetState(2902) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31008,12 +31004,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserON { { - p.SetState(2903) + p.SetState(2901) p.Oncommitoption() } } - p.SetState(2907) + p.SetState(2905) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31022,7 +31018,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(2906) + p.SetState(2904) p.Opttablespace() } @@ -31030,7 +31026,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { case PostgreSQLParserOF: { - p.SetState(2909) + p.SetState(2907) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -31038,22 +31034,22 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2910) + p.SetState(2908) p.Any_name() } - p.SetState(2912) + p.SetState(2910) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 136, p.GetParserRuleContext()) == 1 { { - p.SetState(2911) + p.SetState(2909) p.Opttypedtableelementlist() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2915) + p.SetState(2913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31062,12 +31058,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserPARTITION { { - p.SetState(2914) + p.SetState(2912) p.Optpartitionspec() } } - p.SetState(2918) + p.SetState(2916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31076,24 +31072,24 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2917) + p.SetState(2915) p.Table_access_method_clause() } } - p.SetState(2921) + p.SetState(2919) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 139, p.GetParserRuleContext()) == 1 { { - p.SetState(2920) + p.SetState(2918) p.Optwith() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2924) + p.SetState(2922) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31102,12 +31098,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserON { { - p.SetState(2923) + p.SetState(2921) p.Oncommitoption() } } - p.SetState(2927) + p.SetState(2925) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31116,7 +31112,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(2926) + p.SetState(2924) p.Opttablespace() } @@ -31124,7 +31120,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { case PostgreSQLParserPARTITION: { - p.SetState(2929) + p.SetState(2927) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -31132,7 +31128,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2930) + p.SetState(2928) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -31140,10 +31136,10 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { } } { - p.SetState(2931) + p.SetState(2929) p.Qualified_name() } - p.SetState(2933) + p.SetState(2931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31152,16 +31148,16 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(2932) + p.SetState(2930) p.Opttypedtableelementlist() } } { - p.SetState(2935) + p.SetState(2933) p.Partitionboundspec() } - p.SetState(2937) + p.SetState(2935) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31170,12 +31166,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserPARTITION { { - p.SetState(2936) + p.SetState(2934) p.Optpartitionspec() } } - p.SetState(2940) + p.SetState(2938) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31184,24 +31180,24 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(2939) + p.SetState(2937) p.Table_access_method_clause() } } - p.SetState(2943) + p.SetState(2941) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 145, p.GetParserRuleContext()) == 1 { { - p.SetState(2942) + p.SetState(2940) p.Optwith() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(2946) + p.SetState(2944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31210,12 +31206,12 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserON { { - p.SetState(2945) + p.SetState(2943) p.Oncommitoption() } } - p.SetState(2949) + p.SetState(2947) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31224,7 +31220,7 @@ func (p *PostgreSQLParser) Createstmt() (localctx ICreatestmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(2948) + p.SetState(2946) p.Opttablespace() } @@ -31353,7 +31349,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { p.EnterRule(localctx, 174, PostgreSQLParserRULE_opttemp) var _la int - p.SetState(2960) + p.SetState(2958) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31363,7 +31359,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserTEMPORARY: p.EnterOuterAlt(localctx, 1) { - p.SetState(2953) + p.SetState(2951) p.Match(PostgreSQLParserTEMPORARY) if p.HasError() { // Recognition error - abort rule @@ -31374,7 +31370,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserTEMP: p.EnterOuterAlt(localctx, 2) { - p.SetState(2954) + p.SetState(2952) p.Match(PostgreSQLParserTEMP) if p.HasError() { // Recognition error - abort rule @@ -31385,7 +31381,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserLOCAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(2955) + p.SetState(2953) p.Match(PostgreSQLParserLOCAL) if p.HasError() { // Recognition error - abort rule @@ -31393,7 +31389,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { } } { - p.SetState(2956) + p.SetState(2954) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -31407,7 +31403,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserGLOBAL: p.EnterOuterAlt(localctx, 4) { - p.SetState(2957) + p.SetState(2955) p.Match(PostgreSQLParserGLOBAL) if p.HasError() { // Recognition error - abort rule @@ -31415,7 +31411,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { } } { - p.SetState(2958) + p.SetState(2956) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -31429,7 +31425,7 @@ func (p *PostgreSQLParser) Opttemp() (localctx IOpttempContext) { case PostgreSQLParserUNLOGGED: p.EnterOuterAlt(localctx, 5) { - p.SetState(2959) + p.SetState(2957) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -31552,7 +31548,7 @@ func (p *PostgreSQLParser) Opttableelementlist() (localctx IOpttableelementlistC p.EnterRule(localctx, 176, PostgreSQLParserRULE_opttableelementlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(2962) + p.SetState(2960) p.Tableelementlist() } @@ -31676,7 +31672,7 @@ func (p *PostgreSQLParser) Opttypedtableelementlist() (localctx IOpttypedtableel p.EnterRule(localctx, 178, PostgreSQLParserRULE_opttypedtableelementlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(2964) + p.SetState(2962) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -31684,11 +31680,11 @@ func (p *PostgreSQLParser) Opttypedtableelementlist() (localctx IOpttypedtableel } } { - p.SetState(2965) + p.SetState(2963) p.Typedtableelementlist() } { - p.SetState(2966) + p.SetState(2964) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -31844,10 +31840,10 @@ func (p *PostgreSQLParser) Tableelementlist() (localctx ITableelementlistContext p.EnterOuterAlt(localctx, 1) { - p.SetState(2968) + p.SetState(2966) p.Tableelement() } - p.SetState(2973) + p.SetState(2971) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -31856,7 +31852,7 @@ func (p *PostgreSQLParser) Tableelementlist() (localctx ITableelementlistContext for _la == PostgreSQLParserCOMMA { { - p.SetState(2969) + p.SetState(2967) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -31864,11 +31860,11 @@ func (p *PostgreSQLParser) Tableelementlist() (localctx ITableelementlistContext } } { - p.SetState(2970) + p.SetState(2968) p.Tableelement() } - p.SetState(2975) + p.SetState(2973) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32024,10 +32020,10 @@ func (p *PostgreSQLParser) Typedtableelementlist() (localctx ITypedtableelementl p.EnterOuterAlt(localctx, 1) { - p.SetState(2976) + p.SetState(2974) p.Typedtableelement() } - p.SetState(2981) + p.SetState(2979) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32036,7 +32032,7 @@ func (p *PostgreSQLParser) Typedtableelementlist() (localctx ITypedtableelementl for _la == PostgreSQLParserCOMMA { { - p.SetState(2977) + p.SetState(2975) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -32044,11 +32040,11 @@ func (p *PostgreSQLParser) Typedtableelementlist() (localctx ITypedtableelementl } } { - p.SetState(2978) + p.SetState(2976) p.Typedtableelement() } - p.SetState(2983) + p.SetState(2981) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32198,7 +32194,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(2987) + p.SetState(2985) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32208,21 +32204,21 @@ func (p *PostgreSQLParser) Tableelement() (localctx ITableelementContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2984) + p.SetState(2982) p.Tableconstraint() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2985) + p.SetState(2983) p.Tablelikeclause() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(2986) + p.SetState(2984) p.ColumnDef() } @@ -32355,7 +32351,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(2991) + p.SetState(2989) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32365,14 +32361,14 @@ func (p *PostgreSQLParser) Typedtableelement() (localctx ITypedtableelementConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(2989) + p.SetState(2987) p.ColumnOptions() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(2990) + p.SetState(2988) p.Tableconstraint() } @@ -32543,14 +32539,14 @@ func (p *PostgreSQLParser) ColumnDef() (localctx IColumnDefContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(2993) + p.SetState(2991) p.Colid() } { - p.SetState(2994) + p.SetState(2992) p.Typename() } - p.SetState(2996) + p.SetState(2994) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32559,13 +32555,13 @@ func (p *PostgreSQLParser) ColumnDef() (localctx IColumnDefContext) { if _la == PostgreSQLParserOPTIONS { { - p.SetState(2995) + p.SetState(2993) p.Create_generic_options() } } { - p.SetState(2998) + p.SetState(2996) p.Colquallist() } @@ -32708,10 +32704,10 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3000) + p.SetState(2998) p.Colid() } - p.SetState(3003) + p.SetState(3001) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32720,7 +32716,7 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { if _la == PostgreSQLParserWITH { { - p.SetState(3001) + p.SetState(2999) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -32728,7 +32724,7 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { } } { - p.SetState(3002) + p.SetState(3000) p.Match(PostgreSQLParserOPTIONS) if p.HasError() { // Recognition error - abort rule @@ -32738,7 +32734,7 @@ func (p *PostgreSQLParser) ColumnOptions() (localctx IColumnOptionsContext) { } { - p.SetState(3005) + p.SetState(3003) p.Colquallist() } @@ -32879,7 +32875,7 @@ func (p *PostgreSQLParser) Colquallist() (localctx IColquallistContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3010) + p.SetState(3008) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -32888,11 +32884,11 @@ func (p *PostgreSQLParser) Colquallist() (localctx IColquallistContext) { for ((int64((_la-42)) & ^0x3f) == 0 && ((int64(1)<<(_la-42))&72084085530433547) != 0) || _la == PostgreSQLParserGENERATED { { - p.SetState(3007) + p.SetState(3005) p.Colconstraint() } - p.SetState(3012) + p.SetState(3010) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33069,7 +33065,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(3021) + p.SetState(3019) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33079,7 +33075,7 @@ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3013) + p.SetState(3011) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -33087,32 +33083,32 @@ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { } } { - p.SetState(3014) + p.SetState(3012) p.Name() } { - p.SetState(3015) + p.SetState(3013) p.Colconstraintelem() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3017) + p.SetState(3015) p.Colconstraintelem() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3018) + p.SetState(3016) p.Constraintattr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3019) + p.SetState(3017) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -33120,7 +33116,7 @@ func (p *PostgreSQLParser) Colconstraint() (localctx IColconstraintContext) { } } { - p.SetState(3020) + p.SetState(3018) p.Any_name() } @@ -33495,7 +33491,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte p.EnterRule(localctx, 196, PostgreSQLParserRULE_colconstraintelem) var _la int - p.SetState(3078) + p.SetState(3076) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33505,7 +33501,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserNOT: p.EnterOuterAlt(localctx, 1) { - p.SetState(3023) + p.SetState(3021) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -33513,7 +33509,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3024) + p.SetState(3022) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -33524,7 +33520,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(3025) + p.SetState(3023) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -33535,14 +33531,14 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserUNIQUE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3026) + p.SetState(3024) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3028) + p.SetState(3026) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33551,24 +33547,24 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserNULLS_P { { - p.SetState(3027) + p.SetState(3025) p.Opt_unique_null_treatment() } } - p.SetState(3031) + p.SetState(3029) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 159, p.GetParserRuleContext()) == 1 { { - p.SetState(3030) + p.SetState(3028) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3034) + p.SetState(3032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33577,7 +33573,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserUSING { { - p.SetState(3033) + p.SetState(3031) p.Optconstablespace() } @@ -33586,7 +33582,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserPRIMARY: p.EnterOuterAlt(localctx, 4) { - p.SetState(3036) + p.SetState(3034) p.Match(PostgreSQLParserPRIMARY) if p.HasError() { // Recognition error - abort rule @@ -33594,26 +33590,26 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3037) + p.SetState(3035) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3039) + p.SetState(3037) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 161, p.GetParserRuleContext()) == 1 { { - p.SetState(3038) + p.SetState(3036) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3042) + p.SetState(3040) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33622,7 +33618,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserUSING { { - p.SetState(3041) + p.SetState(3039) p.Optconstablespace() } @@ -33631,7 +33627,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserCHECK: p.EnterOuterAlt(localctx, 5) { - p.SetState(3044) + p.SetState(3042) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -33639,7 +33635,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3045) + p.SetState(3043) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -33647,18 +33643,18 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3046) + p.SetState(3044) p.A_expr() } { - p.SetState(3047) + p.SetState(3045) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3049) + p.SetState(3047) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33667,7 +33663,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserNO { { - p.SetState(3048) + p.SetState(3046) p.Opt_no_inherit() } @@ -33676,7 +33672,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 6) { - p.SetState(3051) + p.SetState(3049) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -33684,14 +33680,14 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3052) + p.SetState(3050) p.b_expr(0) } case PostgreSQLParserGENERATED: p.EnterOuterAlt(localctx, 7) { - p.SetState(3053) + p.SetState(3051) p.Match(PostgreSQLParserGENERATED) if p.HasError() { // Recognition error - abort rule @@ -33699,18 +33695,18 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3054) + p.SetState(3052) p.Generated_when() } { - p.SetState(3055) + p.SetState(3053) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3065) + p.SetState(3063) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33719,19 +33715,19 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte switch p.GetTokenStream().LA(1) { case PostgreSQLParserIDENTITY_P: { - p.SetState(3056) + p.SetState(3054) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3058) + p.SetState(3056) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 164, p.GetParserRuleContext()) == 1 { { - p.SetState(3057) + p.SetState(3055) p.Optparenthesizedseqoptlist() } @@ -33741,7 +33737,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserOPEN_PAREN: { - p.SetState(3060) + p.SetState(3058) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -33749,11 +33745,11 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3061) + p.SetState(3059) p.A_expr() } { - p.SetState(3062) + p.SetState(3060) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -33761,7 +33757,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3063) + p.SetState(3061) p.Match(PostgreSQLParserSTORED) if p.HasError() { // Recognition error - abort rule @@ -33777,7 +33773,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte case PostgreSQLParserREFERENCES: p.EnterOuterAlt(localctx, 8) { - p.SetState(3067) + p.SetState(3065) p.Match(PostgreSQLParserREFERENCES) if p.HasError() { // Recognition error - abort rule @@ -33785,22 +33781,22 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte } } { - p.SetState(3068) + p.SetState(3066) p.Qualified_name() } - p.SetState(3070) + p.SetState(3068) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 166, p.GetParserRuleContext()) == 1 { { - p.SetState(3069) + p.SetState(3067) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3073) + p.SetState(3071) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33809,12 +33805,12 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserMATCH { { - p.SetState(3072) + p.SetState(3070) p.Key_match() } } - p.SetState(3076) + p.SetState(3074) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33823,7 +33819,7 @@ func (p *PostgreSQLParser) Colconstraintelem() (localctx IColconstraintelemConte if _la == PostgreSQLParserON { { - p.SetState(3075) + p.SetState(3073) p.Key_actions() } @@ -33944,14 +33940,14 @@ func (p *PostgreSQLParser) Opt_unique_null_treatment() (localctx IOpt_unique_nul p.EnterOuterAlt(localctx, 1) { - p.SetState(3080) + p.SetState(3078) p.Match(PostgreSQLParserNULLS_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3082) + p.SetState(3080) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -33960,7 +33956,7 @@ func (p *PostgreSQLParser) Opt_unique_null_treatment() (localctx IOpt_unique_nul if _la == PostgreSQLParserNOT { { - p.SetState(3081) + p.SetState(3079) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -33970,7 +33966,7 @@ func (p *PostgreSQLParser) Opt_unique_null_treatment() (localctx IOpt_unique_nul } { - p.SetState(3084) + p.SetState(3082) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -34084,7 +34080,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(3089) + p.SetState(3087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34094,7 +34090,7 @@ func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { case PostgreSQLParserALWAYS: p.EnterOuterAlt(localctx, 1) { - p.SetState(3086) + p.SetState(3084) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -34105,7 +34101,7 @@ func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { case PostgreSQLParserBY: p.EnterOuterAlt(localctx, 2) { - p.SetState(3087) + p.SetState(3085) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -34113,7 +34109,7 @@ func (p *PostgreSQLParser) Generated_when() (localctx IGenerated_whenContext) { } } { - p.SetState(3088) + p.SetState(3086) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -34244,7 +34240,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { p.EnterRule(localctx, 202, PostgreSQLParserRULE_constraintattr) var _la int - p.SetState(3096) + p.SetState(3094) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34254,7 +34250,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { case PostgreSQLParserDEFERRABLE: p.EnterOuterAlt(localctx, 1) { - p.SetState(3091) + p.SetState(3089) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -34265,7 +34261,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { case PostgreSQLParserNOT: p.EnterOuterAlt(localctx, 2) { - p.SetState(3092) + p.SetState(3090) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -34273,7 +34269,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { } } { - p.SetState(3093) + p.SetState(3091) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -34284,7 +34280,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { case PostgreSQLParserINITIALLY: p.EnterOuterAlt(localctx, 3) { - p.SetState(3094) + p.SetState(3092) p.Match(PostgreSQLParserINITIALLY) if p.HasError() { // Recognition error - abort rule @@ -34292,7 +34288,7 @@ func (p *PostgreSQLParser) Constraintattr() (localctx IConstraintattrContext) { } } { - p.SetState(3095) + p.SetState(3093) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDEFERRED || _la == PostgreSQLParserIMMEDIATE) { @@ -34440,7 +34436,7 @@ func (p *PostgreSQLParser) Tablelikeclause() (localctx ITablelikeclauseContext) p.EnterRule(localctx, 204, PostgreSQLParserRULE_tablelikeclause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3098) + p.SetState(3096) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -34448,11 +34444,11 @@ func (p *PostgreSQLParser) Tablelikeclause() (localctx ITablelikeclauseContext) } } { - p.SetState(3099) + p.SetState(3097) p.Qualified_name() } { - p.SetState(3100) + p.SetState(3098) p.Tablelikeoptionlist() } @@ -34613,7 +34609,7 @@ func (p *PostgreSQLParser) Tablelikeoptionlist() (localctx ITablelikeoptionlistC var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3106) + p.SetState(3104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34622,7 +34618,7 @@ func (p *PostgreSQLParser) Tablelikeoptionlist() (localctx ITablelikeoptionlistC for _la == PostgreSQLParserEXCLUDING || _la == PostgreSQLParserINCLUDING { { - p.SetState(3102) + p.SetState(3100) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCLUDING || _la == PostgreSQLParserINCLUDING) { @@ -34633,11 +34629,11 @@ func (p *PostgreSQLParser) Tablelikeoptionlist() (localctx ITablelikeoptionlistC } } { - p.SetState(3103) + p.SetState(3101) p.Tablelikeoption() } - p.SetState(3108) + p.SetState(3106) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34785,7 +34781,7 @@ func (p *PostgreSQLParser) Tablelikeoption() (localctx ITablelikeoptionContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3109) + p.SetState(3107) _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) { @@ -34926,7 +34922,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(3116) + p.SetState(3114) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -34936,7 +34932,7 @@ func (p *PostgreSQLParser) Tableconstraint() (localctx ITableconstraintContext) case PostgreSQLParserCONSTRAINT: p.EnterOuterAlt(localctx, 1) { - p.SetState(3111) + p.SetState(3109) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -34944,18 +34940,18 @@ func (p *PostgreSQLParser) Tableconstraint() (localctx ITableconstraintContext) } } { - p.SetState(3112) + p.SetState(3110) p.Name() } { - p.SetState(3113) + p.SetState(3111) p.Constraintelem() } case PostgreSQLParserCHECK, PostgreSQLParserFOREIGN, PostgreSQLParserPRIMARY, PostgreSQLParserUNIQUE, PostgreSQLParserEXCLUDE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3115) + p.SetState(3113) p.Constraintelem() } @@ -35357,7 +35353,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { p.EnterRule(localctx, 212, PostgreSQLParserRULE_constraintelem) var _la int - p.SetState(3207) + p.SetState(3205) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35367,7 +35363,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { case PostgreSQLParserCHECK: p.EnterOuterAlt(localctx, 1) { - p.SetState(3118) + p.SetState(3116) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -35375,7 +35371,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3119) + p.SetState(3117) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35383,11 +35379,11 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3120) + p.SetState(3118) p.A_expr() } { - p.SetState(3121) + p.SetState(3119) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35395,21 +35391,21 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3122) + p.SetState(3120) p.Constraintattributespec() } case PostgreSQLParserUNIQUE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3124) + p.SetState(3122) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3126) + p.SetState(3124) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35418,12 +35414,12 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserNULLS_P { { - p.SetState(3125) + p.SetState(3123) p.Opt_unique_null_treatment() } } - p.SetState(3145) + p.SetState(3143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35432,7 +35428,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(3128) + p.SetState(3126) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35440,18 +35436,18 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3129) + p.SetState(3127) p.Columnlist() } { - p.SetState(3130) + p.SetState(3128) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3132) + p.SetState(3130) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35460,24 +35456,24 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(3131) + p.SetState(3129) p.Opt_c_include() } } - p.SetState(3135) + p.SetState(3133) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 177, p.GetParserRuleContext()) == 1 { { - p.SetState(3134) + p.SetState(3132) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3138) + p.SetState(3136) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35486,23 +35482,23 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3137) + p.SetState(3135) p.Optconstablespace() } } { - p.SetState(3140) + p.SetState(3138) p.Constraintattributespec() } case PostgreSQLParserUSING: { - p.SetState(3142) + p.SetState(3140) p.Existingindex() } { - p.SetState(3143) + p.SetState(3141) p.Constraintattributespec() } @@ -35514,7 +35510,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { case PostgreSQLParserPRIMARY: p.EnterOuterAlt(localctx, 3) { - p.SetState(3147) + p.SetState(3145) p.Match(PostgreSQLParserPRIMARY) if p.HasError() { // Recognition error - abort rule @@ -35522,14 +35518,14 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3148) + p.SetState(3146) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3166) + p.SetState(3164) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35538,7 +35534,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(3149) + p.SetState(3147) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35546,18 +35542,18 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3150) + p.SetState(3148) p.Columnlist() } { - p.SetState(3151) + p.SetState(3149) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3153) + p.SetState(3151) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35566,24 +35562,24 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(3152) + p.SetState(3150) p.Opt_c_include() } } - p.SetState(3156) + p.SetState(3154) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 181, p.GetParserRuleContext()) == 1 { { - p.SetState(3155) + p.SetState(3153) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3159) + p.SetState(3157) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35592,23 +35588,23 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3158) + p.SetState(3156) p.Optconstablespace() } } { - p.SetState(3161) + p.SetState(3159) p.Constraintattributespec() } case PostgreSQLParserUSING: { - p.SetState(3163) + p.SetState(3161) p.Existingindex() } { - p.SetState(3164) + p.SetState(3162) p.Constraintattributespec() } @@ -35620,14 +35616,14 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { case PostgreSQLParserEXCLUDE: p.EnterOuterAlt(localctx, 4) { - p.SetState(3168) + p.SetState(3166) p.Match(PostgreSQLParserEXCLUDE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3170) + p.SetState(3168) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35636,13 +35632,13 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3169) + p.SetState(3167) p.Access_method_clause() } } { - p.SetState(3172) + p.SetState(3170) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35650,18 +35646,18 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3173) + p.SetState(3171) p.Exclusionconstraintlist() } { - p.SetState(3174) + p.SetState(3172) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3176) + p.SetState(3174) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35670,24 +35666,24 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(3175) + p.SetState(3173) p.Opt_c_include() } } - p.SetState(3179) + p.SetState(3177) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 186, p.GetParserRuleContext()) == 1 { { - p.SetState(3178) + p.SetState(3176) p.Opt_definition() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3182) + p.SetState(3180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35696,12 +35692,12 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserUSING { { - p.SetState(3181) + p.SetState(3179) p.Optconstablespace() } } - p.SetState(3185) + p.SetState(3183) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35710,20 +35706,20 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(3184) + p.SetState(3182) p.Exclusionwhereclause() } } { - p.SetState(3187) + p.SetState(3185) p.Constraintattributespec() } case PostgreSQLParserFOREIGN: p.EnterOuterAlt(localctx, 5) { - p.SetState(3189) + p.SetState(3187) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -35731,7 +35727,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3190) + p.SetState(3188) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule @@ -35739,7 +35735,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3191) + p.SetState(3189) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35747,11 +35743,11 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3192) + p.SetState(3190) p.Columnlist() } { - p.SetState(3193) + p.SetState(3191) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -35759,7 +35755,7 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3194) + p.SetState(3192) p.Match(PostgreSQLParserREFERENCES) if p.HasError() { // Recognition error - abort rule @@ -35767,22 +35763,22 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { } } { - p.SetState(3195) + p.SetState(3193) p.Qualified_name() } - p.SetState(3197) + p.SetState(3195) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 189, p.GetParserRuleContext()) == 1 { { - p.SetState(3196) + p.SetState(3194) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3200) + p.SetState(3198) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35791,12 +35787,12 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserMATCH { { - p.SetState(3199) + p.SetState(3197) p.Key_match() } } - p.SetState(3203) + p.SetState(3201) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -35805,13 +35801,13 @@ func (p *PostgreSQLParser) Constraintelem() (localctx IConstraintelemContext) { if _la == PostgreSQLParserON { { - p.SetState(3202) + p.SetState(3200) p.Key_actions() } } { - p.SetState(3205) + p.SetState(3203) p.Constraintattributespec() } @@ -35923,7 +35919,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(3209) + p.SetState(3207) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -35931,7 +35927,7 @@ func (p *PostgreSQLParser) Opt_no_inherit() (localctx IOpt_no_inheritContext) { } } { - p.SetState(3210) + p.SetState(3208) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -36059,7 +36055,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(3212) + p.SetState(3210) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36067,11 +36063,11 @@ func (p *PostgreSQLParser) Opt_column_list() (localctx IOpt_column_listContext) } } { - p.SetState(3213) + p.SetState(3211) p.Columnlist() } { - p.SetState(3214) + p.SetState(3212) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36227,10 +36223,10 @@ func (p *PostgreSQLParser) Columnlist() (localctx IColumnlistContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3216) + p.SetState(3214) p.ColumnElem() } - p.SetState(3221) + p.SetState(3219) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36239,7 +36235,7 @@ func (p *PostgreSQLParser) Columnlist() (localctx IColumnlistContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(3217) + p.SetState(3215) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -36247,11 +36243,11 @@ func (p *PostgreSQLParser) Columnlist() (localctx IColumnlistContext) { } } { - p.SetState(3218) + p.SetState(3216) p.ColumnElem() } - p.SetState(3223) + p.SetState(3221) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36369,7 +36365,7 @@ func (p *PostgreSQLParser) ColumnElem() (localctx IColumnElemContext) { p.EnterRule(localctx, 220, PostgreSQLParserRULE_columnElem) p.EnterOuterAlt(localctx, 1) { - p.SetState(3224) + p.SetState(3222) p.Colid() } @@ -36498,7 +36494,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(3226) + p.SetState(3224) p.Match(PostgreSQLParserINCLUDE) if p.HasError() { // Recognition error - abort rule @@ -36506,7 +36502,7 @@ func (p *PostgreSQLParser) Opt_c_include() (localctx IOpt_c_includeContext) { } } { - p.SetState(3227) + p.SetState(3225) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36514,11 +36510,11 @@ func (p *PostgreSQLParser) Opt_c_include() (localctx IOpt_c_includeContext) { } } { - p.SetState(3228) + p.SetState(3226) p.Columnlist() } { - p.SetState(3229) + p.SetState(3227) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -36641,7 +36637,7 @@ func (p *PostgreSQLParser) Key_match() (localctx IKey_matchContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3231) + p.SetState(3229) p.Match(PostgreSQLParserMATCH) if p.HasError() { // Recognition error - abort rule @@ -36649,7 +36645,7 @@ func (p *PostgreSQLParser) Key_match() (localctx IKey_matchContext) { } } { - p.SetState(3232) + p.SetState(3230) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFULL || _la == PostgreSQLParserPARTIAL || _la == PostgreSQLParserSIMPLE) { @@ -36808,10 +36804,10 @@ func (p *PostgreSQLParser) Exclusionconstraintlist() (localctx IExclusionconstra p.EnterOuterAlt(localctx, 1) { - p.SetState(3234) + p.SetState(3232) p.Exclusionconstraintelem() } - p.SetState(3239) + p.SetState(3237) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36820,7 +36816,7 @@ func (p *PostgreSQLParser) Exclusionconstraintlist() (localctx IExclusionconstra for _la == PostgreSQLParserCOMMA { { - p.SetState(3235) + p.SetState(3233) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -36828,11 +36824,11 @@ func (p *PostgreSQLParser) Exclusionconstraintlist() (localctx IExclusionconstra } } { - p.SetState(3236) + p.SetState(3234) p.Exclusionconstraintelem() } - p.SetState(3241) + p.SetState(3239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -36987,18 +36983,18 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra p.EnterRule(localctx, 228, PostgreSQLParserRULE_exclusionconstraintelem) p.EnterOuterAlt(localctx, 1) { - p.SetState(3242) + p.SetState(3240) p.Index_elem() } { - p.SetState(3243) + p.SetState(3241) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3250) + p.SetState(3248) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37007,13 +37003,13 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 195, p.GetParserRuleContext()) { case 1: { - p.SetState(3244) + p.SetState(3242) p.Any_operator() } case 2: { - p.SetState(3245) + p.SetState(3243) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -37021,7 +37017,7 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra } } { - p.SetState(3246) + p.SetState(3244) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37029,11 +37025,11 @@ func (p *PostgreSQLParser) Exclusionconstraintelem() (localctx IExclusionconstra } } { - p.SetState(3247) + p.SetState(3245) p.Any_operator() } { - p.SetState(3248) + p.SetState(3246) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37170,7 +37166,7 @@ func (p *PostgreSQLParser) Exclusionwhereclause() (localctx IExclusionwhereclaus p.EnterRule(localctx, 230, PostgreSQLParserRULE_exclusionwhereclause) p.EnterOuterAlt(localctx, 1) { - p.SetState(3252) + p.SetState(3250) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -37178,7 +37174,7 @@ func (p *PostgreSQLParser) Exclusionwhereclause() (localctx IExclusionwhereclaus } } { - p.SetState(3253) + p.SetState(3251) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37186,11 +37182,11 @@ func (p *PostgreSQLParser) Exclusionwhereclause() (localctx IExclusionwhereclaus } } { - p.SetState(3254) + p.SetState(3252) p.A_expr() } { - p.SetState(3255) + p.SetState(3253) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -37323,7 +37319,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(3265) + p.SetState(3263) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37333,36 +37329,36 @@ func (p *PostgreSQLParser) Key_actions() (localctx IKey_actionsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3257) + p.SetState(3255) p.Key_update() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3258) + p.SetState(3256) p.Key_delete() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3259) + p.SetState(3257) p.Key_update() } { - p.SetState(3260) + p.SetState(3258) p.Key_delete() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3262) + p.SetState(3260) p.Key_delete() } { - p.SetState(3263) + p.SetState(3261) p.Key_update() } @@ -37490,7 +37486,7 @@ func (p *PostgreSQLParser) Key_update() (localctx IKey_updateContext) { p.EnterRule(localctx, 234, PostgreSQLParserRULE_key_update) p.EnterOuterAlt(localctx, 1) { - p.SetState(3267) + p.SetState(3265) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -37498,7 +37494,7 @@ func (p *PostgreSQLParser) Key_update() (localctx IKey_updateContext) { } } { - p.SetState(3268) + p.SetState(3266) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -37506,7 +37502,7 @@ func (p *PostgreSQLParser) Key_update() (localctx IKey_updateContext) { } } { - p.SetState(3269) + p.SetState(3267) p.Key_action() } @@ -37630,7 +37626,7 @@ func (p *PostgreSQLParser) Key_delete() (localctx IKey_deleteContext) { p.EnterRule(localctx, 236, PostgreSQLParserRULE_key_delete) p.EnterOuterAlt(localctx, 1) { - p.SetState(3271) + p.SetState(3269) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -37638,7 +37634,7 @@ func (p *PostgreSQLParser) Key_delete() (localctx IKey_deleteContext) { } } { - p.SetState(3272) + p.SetState(3270) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -37646,7 +37642,7 @@ func (p *PostgreSQLParser) Key_delete() (localctx IKey_deleteContext) { } } { - p.SetState(3273) + p.SetState(3271) p.Key_action() } @@ -37795,7 +37791,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { p.EnterRule(localctx, 238, PostgreSQLParserRULE_key_action) var _la int - p.SetState(3284) + p.SetState(3282) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -37805,7 +37801,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 1) { - p.SetState(3275) + p.SetState(3273) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -37813,7 +37809,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { } } { - p.SetState(3276) + p.SetState(3274) p.Match(PostgreSQLParserACTION) if p.HasError() { // Recognition error - abort rule @@ -37824,7 +37820,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserRESTRICT: p.EnterOuterAlt(localctx, 2) { - p.SetState(3277) + p.SetState(3275) p.Match(PostgreSQLParserRESTRICT) if p.HasError() { // Recognition error - abort rule @@ -37835,7 +37831,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserCASCADE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3278) + p.SetState(3276) p.Match(PostgreSQLParserCASCADE) if p.HasError() { // Recognition error - abort rule @@ -37846,7 +37842,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 4) { - p.SetState(3279) + p.SetState(3277) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -37854,7 +37850,7 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { } } { - p.SetState(3280) + p.SetState(3278) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDEFAULT || _la == PostgreSQLParserNULL_P) { @@ -37864,12 +37860,12 @@ func (p *PostgreSQLParser) Key_action() (localctx IKey_actionContext) { p.Consume() } } - p.SetState(3282) + p.SetState(3280) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 197, p.GetParserRuleContext()) == 1 { { - p.SetState(3281) + p.SetState(3279) p.Opt_column_list() } @@ -38007,7 +38003,7 @@ func (p *PostgreSQLParser) Optinherit() (localctx IOptinheritContext) { p.EnterRule(localctx, 240, PostgreSQLParserRULE_optinherit) p.EnterOuterAlt(localctx, 1) { - p.SetState(3286) + p.SetState(3284) p.Match(PostgreSQLParserINHERITS) if p.HasError() { // Recognition error - abort rule @@ -38015,7 +38011,7 @@ func (p *PostgreSQLParser) Optinherit() (localctx IOptinheritContext) { } } { - p.SetState(3287) + p.SetState(3285) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38023,11 +38019,11 @@ func (p *PostgreSQLParser) Optinherit() (localctx IOptinheritContext) { } } { - p.SetState(3288) + p.SetState(3286) p.Qualified_name_list() } { - p.SetState(3289) + p.SetState(3287) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38145,7 +38141,7 @@ func (p *PostgreSQLParser) Optpartitionspec() (localctx IOptpartitionspecContext p.EnterRule(localctx, 242, PostgreSQLParserRULE_optpartitionspec) p.EnterOuterAlt(localctx, 1) { - p.SetState(3291) + p.SetState(3289) p.Partitionspec() } @@ -38296,7 +38292,7 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { p.EnterRule(localctx, 244, PostgreSQLParserRULE_partitionspec) p.EnterOuterAlt(localctx, 1) { - p.SetState(3293) + p.SetState(3291) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -38304,7 +38300,7 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { } } { - p.SetState(3294) + p.SetState(3292) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -38312,11 +38308,11 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { } } { - p.SetState(3295) + p.SetState(3293) p.Colid() } { - p.SetState(3296) + p.SetState(3294) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38324,11 +38320,11 @@ func (p *PostgreSQLParser) Partitionspec() (localctx IPartitionspecContext) { } } { - p.SetState(3297) + p.SetState(3295) p.Part_params() } { - p.SetState(3298) + p.SetState(3296) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38484,10 +38480,10 @@ func (p *PostgreSQLParser) Part_params() (localctx IPart_paramsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3300) + p.SetState(3298) p.Part_elem() } - p.SetState(3305) + p.SetState(3303) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38496,7 +38492,7 @@ func (p *PostgreSQLParser) Part_params() (localctx IPart_paramsContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(3301) + p.SetState(3299) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -38504,11 +38500,11 @@ func (p *PostgreSQLParser) Part_params() (localctx IPart_paramsContext) { } } { - p.SetState(3302) + p.SetState(3300) p.Part_elem() } - p.SetState(3307) + p.SetState(3305) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38704,7 +38700,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { p.EnterRule(localctx, 248, PostgreSQLParserRULE_part_elem) var _la int - p.SetState(3331) + p.SetState(3329) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38714,22 +38710,22 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3308) + p.SetState(3306) p.Colid() } - p.SetState(3310) + p.SetState(3308) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 200, p.GetParserRuleContext()) == 1 { { - p.SetState(3309) + p.SetState(3307) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3313) + p.SetState(3311) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38738,7 +38734,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(3312) + p.SetState(3310) p.Opt_class() } @@ -38747,22 +38743,22 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3315) + p.SetState(3313) p.Func_expr_windowless() } - p.SetState(3317) + p.SetState(3315) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 202, p.GetParserRuleContext()) == 1 { { - p.SetState(3316) + p.SetState(3314) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3320) + p.SetState(3318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38771,7 +38767,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(3319) + p.SetState(3317) p.Opt_class() } @@ -38780,7 +38776,7 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3322) + p.SetState(3320) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -38788,30 +38784,30 @@ func (p *PostgreSQLParser) Part_elem() (localctx IPart_elemContext) { } } { - p.SetState(3323) + p.SetState(3321) p.A_expr() } { - p.SetState(3324) + p.SetState(3322) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3326) + p.SetState(3324) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 204, p.GetParserRuleContext()) == 1 { { - p.SetState(3325) + p.SetState(3323) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3329) + p.SetState(3327) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -38820,7 +38816,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(3328) + p.SetState(3326) p.Opt_class() } @@ -38945,7 +38941,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(3333) + p.SetState(3331) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -38953,7 +38949,7 @@ func (p *PostgreSQLParser) Table_access_method_clause() (localctx ITable_access_ } } { - p.SetState(3334) + p.SetState(3332) p.Name() } @@ -39080,7 +39076,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(3340) + p.SetState(3338) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39090,7 +39086,7 @@ func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(3336) + p.SetState(3334) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -39098,14 +39094,14 @@ func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { } } { - p.SetState(3337) + p.SetState(3335) p.Reloptions() } case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(3338) + p.SetState(3336) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -39113,7 +39109,7 @@ func (p *PostgreSQLParser) Optwith() (localctx IOptwithContext) { } } { - p.SetState(3339) + p.SetState(3337) p.Match(PostgreSQLParserOIDS) if p.HasError() { // Recognition error - abort rule @@ -39249,7 +39245,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { p.EnterRule(localctx, 254, PostgreSQLParserRULE_oncommitoption) p.EnterOuterAlt(localctx, 1) { - p.SetState(3342) + p.SetState(3340) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -39257,14 +39253,14 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { } } { - p.SetState(3343) + p.SetState(3341) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3349) + p.SetState(3347) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -39273,7 +39269,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserDROP: { - p.SetState(3344) + p.SetState(3342) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -39283,7 +39279,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { case PostgreSQLParserDELETE_P: { - p.SetState(3345) + p.SetState(3343) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -39291,7 +39287,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { } } { - p.SetState(3346) + p.SetState(3344) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -39301,7 +39297,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { case PostgreSQLParserPRESERVE: { - p.SetState(3347) + p.SetState(3345) p.Match(PostgreSQLParserPRESERVE) if p.HasError() { // Recognition error - abort rule @@ -39309,7 +39305,7 @@ func (p *PostgreSQLParser) Oncommitoption() (localctx IOncommitoptionContext) { } } { - p.SetState(3348) + p.SetState(3346) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -39437,7 +39433,7 @@ func (p *PostgreSQLParser) Opttablespace() (localctx IOpttablespaceContext) { p.EnterRule(localctx, 256, PostgreSQLParserRULE_opttablespace) p.EnterOuterAlt(localctx, 1) { - p.SetState(3351) + p.SetState(3349) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -39445,7 +39441,7 @@ func (p *PostgreSQLParser) Opttablespace() (localctx IOpttablespaceContext) { } } { - p.SetState(3352) + p.SetState(3350) p.Name() } @@ -39574,7 +39570,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte p.EnterRule(localctx, 258, PostgreSQLParserRULE_optconstablespace) p.EnterOuterAlt(localctx, 1) { - p.SetState(3354) + p.SetState(3352) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -39582,7 +39578,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte } } { - p.SetState(3355) + p.SetState(3353) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -39590,7 +39586,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte } } { - p.SetState(3356) + p.SetState(3354) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -39598,7 +39594,7 @@ func (p *PostgreSQLParser) Optconstablespace() (localctx IOptconstablespaceConte } } { - p.SetState(3357) + p.SetState(3355) p.Name() } @@ -39722,7 +39718,7 @@ func (p *PostgreSQLParser) Existingindex() (localctx IExistingindexContext) { p.EnterRule(localctx, 260, PostgreSQLParserRULE_existingindex) p.EnterOuterAlt(localctx, 1) { - p.SetState(3359) + p.SetState(3357) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -39730,7 +39726,7 @@ func (p *PostgreSQLParser) Existingindex() (localctx IExistingindexContext) { } } { - p.SetState(3360) + p.SetState(3358) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -39738,7 +39734,7 @@ func (p *PostgreSQLParser) Existingindex() (localctx IExistingindexContext) { } } { - p.SetState(3361) + p.SetState(3359) p.Name() } @@ -39940,7 +39936,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3363) + p.SetState(3361) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -39948,19 +39944,19 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3364) + p.SetState(3362) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3368) + p.SetState(3366) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 209, p.GetParserRuleContext()) == 1 { { - p.SetState(3365) + p.SetState(3363) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -39968,7 +39964,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3366) + p.SetState(3364) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -39976,7 +39972,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3367) + p.SetState(3365) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -39988,10 +39984,10 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) goto errorExit } { - p.SetState(3370) + p.SetState(3368) p.Any_name() } - p.SetState(3372) + p.SetState(3370) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40000,13 +39996,13 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3371) + p.SetState(3369) p.Opt_name_list() } } { - p.SetState(3374) + p.SetState(3372) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -40014,11 +40010,11 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3375) + p.SetState(3373) p.Expr_list() } { - p.SetState(3376) + p.SetState(3374) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -40026,7 +40022,7 @@ func (p *PostgreSQLParser) Createstatsstmt() (localctx ICreatestatsstmtContext) } } { - p.SetState(3377) + p.SetState(3375) p.From_list() } @@ -40187,7 +40183,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { p.EnterRule(localctx, 264, PostgreSQLParserRULE_alterstatsstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3379) + p.SetState(3377) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -40195,19 +40191,19 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3380) + p.SetState(3378) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3383) + p.SetState(3381) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 211, p.GetParserRuleContext()) == 1 { { - p.SetState(3381) + p.SetState(3379) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -40215,7 +40211,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3382) + p.SetState(3380) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -40227,11 +40223,11 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { goto errorExit } { - p.SetState(3385) + p.SetState(3383) p.Any_name() } { - p.SetState(3386) + p.SetState(3384) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -40239,7 +40235,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3387) + p.SetState(3385) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -40247,7 +40243,7 @@ func (p *PostgreSQLParser) Alterstatsstmt() (localctx IAlterstatsstmtContext) { } } { - p.SetState(3388) + p.SetState(3386) p.Signediconst() } @@ -40444,14 +40440,14 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3390) + p.SetState(3388) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3392) + p.SetState(3390) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40460,25 +40456,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(3391) + p.SetState(3389) p.Opttemp() } } { - p.SetState(3394) + p.SetState(3392) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3398) + p.SetState(3396) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 213, p.GetParserRuleContext()) == 1 { { - p.SetState(3395) + p.SetState(3393) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -40486,7 +40482,7 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { } } { - p.SetState(3396) + p.SetState(3394) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -40494,7 +40490,7 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { } } { - p.SetState(3397) + p.SetState(3395) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -40506,11 +40502,11 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { goto errorExit } { - p.SetState(3400) + p.SetState(3398) p.Create_as_target() } { - p.SetState(3401) + p.SetState(3399) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -40518,15 +40514,15 @@ func (p *PostgreSQLParser) Createasstmt() (localctx ICreateasstmtContext) { } } { - p.SetState(3402) + p.SetState(3400) p.Selectstmt() } - p.SetState(3404) + p.SetState(3402) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 214, p.GetParserRuleContext()) == 1 { { - p.SetState(3403) + p.SetState(3401) p.Opt_with_data() } @@ -40731,10 +40727,10 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext p.EnterOuterAlt(localctx, 1) { - p.SetState(3406) + p.SetState(3404) p.Qualified_name() } - p.SetState(3408) + p.SetState(3406) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40743,12 +40739,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3407) + p.SetState(3405) p.Opt_column_list() } } - p.SetState(3411) + p.SetState(3409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40757,12 +40753,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserUSING { { - p.SetState(3410) + p.SetState(3408) p.Table_access_method_clause() } } - p.SetState(3414) + p.SetState(3412) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40771,12 +40767,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(3413) + p.SetState(3411) p.Optwith() } } - p.SetState(3417) + p.SetState(3415) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40785,12 +40781,12 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserON { { - p.SetState(3416) + p.SetState(3414) p.Oncommitoption() } } - p.SetState(3420) + p.SetState(3418) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40799,7 +40795,7 @@ func (p *PostgreSQLParser) Create_as_target() (localctx ICreate_as_targetContext if _la == PostgreSQLParserTABLESPACE { { - p.SetState(3419) + p.SetState(3417) p.Opttablespace() } @@ -40913,14 +40909,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(3422) + p.SetState(3420) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3426) + p.SetState(3424) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -40929,7 +40925,7 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserDATA_P: { - p.SetState(3423) + p.SetState(3421) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -40939,7 +40935,7 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { case PostgreSQLParserNO: { - p.SetState(3424) + p.SetState(3422) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -40947,7 +40943,7 @@ func (p *PostgreSQLParser) Opt_with_data() (localctx IOpt_with_dataContext) { } } { - p.SetState(3425) + p.SetState(3423) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -41158,14 +41154,14 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(3428) + p.SetState(3426) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3430) + p.SetState(3428) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41174,13 +41170,13 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte if _la == PostgreSQLParserUNLOGGED { { - p.SetState(3429) + p.SetState(3427) p.Optnolog() } } { - p.SetState(3432) + p.SetState(3430) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -41188,19 +41184,19 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3433) + p.SetState(3431) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3437) + p.SetState(3435) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 222, p.GetParserRuleContext()) == 1 { { - p.SetState(3434) + p.SetState(3432) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -41208,7 +41204,7 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3435) + p.SetState(3433) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -41216,7 +41212,7 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3436) + p.SetState(3434) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -41228,11 +41224,11 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte goto errorExit } { - p.SetState(3439) + p.SetState(3437) p.Create_mv_target() } { - p.SetState(3440) + p.SetState(3438) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -41240,15 +41236,15 @@ func (p *PostgreSQLParser) Creatematviewstmt() (localctx ICreatematviewstmtConte } } { - p.SetState(3441) + p.SetState(3439) p.Selectstmt() } - p.SetState(3443) + p.SetState(3441) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 223, p.GetParserRuleContext()) == 1 { { - p.SetState(3442) + p.SetState(3440) p.Opt_with_data() } @@ -41436,10 +41432,10 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext p.EnterOuterAlt(localctx, 1) { - p.SetState(3445) + p.SetState(3443) p.Qualified_name() } - p.SetState(3447) + p.SetState(3445) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41448,12 +41444,12 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3446) + p.SetState(3444) p.Opt_column_list() } } - p.SetState(3450) + p.SetState(3448) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41462,12 +41458,12 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserUSING { { - p.SetState(3449) + p.SetState(3447) p.Table_access_method_clause() } } - p.SetState(3453) + p.SetState(3451) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41476,12 +41472,12 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserWITH { { - p.SetState(3452) + p.SetState(3450) p.Opt_reloptions() } } - p.SetState(3456) + p.SetState(3454) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41490,7 +41486,7 @@ func (p *PostgreSQLParser) Create_mv_target() (localctx ICreate_mv_targetContext if _la == PostgreSQLParserTABLESPACE { { - p.SetState(3455) + p.SetState(3453) p.Opttablespace() } @@ -41594,7 +41590,7 @@ func (p *PostgreSQLParser) Optnolog() (localctx IOptnologContext) { p.EnterRule(localctx, 276, PostgreSQLParserRULE_optnolog) p.EnterOuterAlt(localctx, 1) { - p.SetState(3458) + p.SetState(3456) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -41763,7 +41759,7 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon p.EnterOuterAlt(localctx, 1) { - p.SetState(3460) + p.SetState(3458) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -41771,7 +41767,7 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon } } { - p.SetState(3461) + p.SetState(3459) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -41779,14 +41775,14 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon } } { - p.SetState(3462) + p.SetState(3460) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3464) + p.SetState(3462) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -41795,21 +41791,21 @@ func (p *PostgreSQLParser) Refreshmatviewstmt() (localctx IRefreshmatviewstmtCon if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(3463) + p.SetState(3461) p.Opt_concurrently() } } { - p.SetState(3466) + p.SetState(3464) p.Qualified_name() } - p.SetState(3468) + p.SetState(3466) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 229, p.GetParserRuleContext()) == 1 { { - p.SetState(3467) + p.SetState(3465) p.Opt_with_data() } @@ -41988,14 +41984,14 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3470) + p.SetState(3468) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3472) + p.SetState(3470) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42004,25 +42000,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(3471) + p.SetState(3469) p.Opttemp() } } { - p.SetState(3474) + p.SetState(3472) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3478) + p.SetState(3476) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 231, p.GetParserRuleContext()) == 1 { { - p.SetState(3475) + p.SetState(3473) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -42030,7 +42026,7 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { } } { - p.SetState(3476) + p.SetState(3474) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -42038,7 +42034,7 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { } } { - p.SetState(3477) + p.SetState(3475) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -42050,15 +42046,15 @@ func (p *PostgreSQLParser) Createseqstmt() (localctx ICreateseqstmtContext) { goto errorExit } { - p.SetState(3480) + p.SetState(3478) p.Qualified_name() } - p.SetState(3482) + p.SetState(3480) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 232, p.GetParserRuleContext()) == 1 { { - p.SetState(3481) + p.SetState(3479) p.Optseqoptlist() } @@ -42213,7 +42209,7 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { p.EnterRule(localctx, 282, PostgreSQLParserRULE_alterseqstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3484) + p.SetState(3482) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -42221,19 +42217,19 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { } } { - p.SetState(3485) + p.SetState(3483) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3488) + p.SetState(3486) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 233, p.GetParserRuleContext()) == 1 { { - p.SetState(3486) + p.SetState(3484) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -42241,7 +42237,7 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { } } { - p.SetState(3487) + p.SetState(3485) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -42253,11 +42249,11 @@ func (p *PostgreSQLParser) Alterseqstmt() (localctx IAlterseqstmtContext) { goto errorExit } { - p.SetState(3490) + p.SetState(3488) p.Qualified_name() } { - p.SetState(3491) + p.SetState(3489) p.Seqoptlist() } @@ -42371,7 +42367,7 @@ func (p *PostgreSQLParser) Optseqoptlist() (localctx IOptseqoptlistContext) { p.EnterRule(localctx, 284, PostgreSQLParserRULE_optseqoptlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(3493) + p.SetState(3491) p.Seqoptlist() } @@ -42495,7 +42491,7 @@ func (p *PostgreSQLParser) Optparenthesizedseqoptlist() (localctx IOptparenthesi p.EnterRule(localctx, 286, PostgreSQLParserRULE_optparenthesizedseqoptlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(3495) + p.SetState(3493) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -42503,11 +42499,11 @@ func (p *PostgreSQLParser) Optparenthesizedseqoptlist() (localctx IOptparenthesi } } { - p.SetState(3496) + p.SetState(3494) p.Seqoptlist() } { - p.SetState(3497) + p.SetState(3495) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -42652,7 +42648,7 @@ func (p *PostgreSQLParser) Seqoptlist() (localctx ISeqoptlistContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(3500) + p.SetState(3498) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42662,7 +42658,7 @@ func (p *PostgreSQLParser) Seqoptlist() (localctx ISeqoptlistContext) { switch _alt { case 1: { - p.SetState(3499) + p.SetState(3497) p.Seqoptelem() } @@ -42671,7 +42667,7 @@ func (p *PostgreSQLParser) Seqoptlist() (localctx ISeqoptlistContext) { goto errorExit } - p.SetState(3502) + p.SetState(3500) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 234, p.GetParserRuleContext()) if p.HasError() { @@ -42932,7 +42928,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { p.EnterRule(localctx, 290, PostgreSQLParserRULE_seqoptelem) var _la int - p.SetState(3540) + p.SetState(3538) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42942,7 +42938,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserAS: p.EnterOuterAlt(localctx, 1) { - p.SetState(3504) + p.SetState(3502) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -42950,14 +42946,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3505) + p.SetState(3503) p.Simpletypename() } case PostgreSQLParserCACHE: p.EnterOuterAlt(localctx, 2) { - p.SetState(3506) + p.SetState(3504) p.Match(PostgreSQLParserCACHE) if p.HasError() { // Recognition error - abort rule @@ -42965,14 +42961,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3507) + p.SetState(3505) p.Numericonly() } case PostgreSQLParserCYCLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(3508) + p.SetState(3506) p.Match(PostgreSQLParserCYCLE) if p.HasError() { // Recognition error - abort rule @@ -42983,14 +42979,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserINCREMENT: p.EnterOuterAlt(localctx, 4) { - p.SetState(3509) + p.SetState(3507) p.Match(PostgreSQLParserINCREMENT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3511) + p.SetState(3509) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -42999,20 +42995,20 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { if _la == PostgreSQLParserBY { { - p.SetState(3510) + p.SetState(3508) p.Opt_by() } } { - p.SetState(3513) + p.SetState(3511) p.Numericonly() } case PostgreSQLParserLOGGED: p.EnterOuterAlt(localctx, 5) { - p.SetState(3514) + p.SetState(3512) p.Match(PostgreSQLParserLOGGED) if p.HasError() { // Recognition error - abort rule @@ -43023,7 +43019,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserMAXVALUE: p.EnterOuterAlt(localctx, 6) { - p.SetState(3515) + p.SetState(3513) p.Match(PostgreSQLParserMAXVALUE) if p.HasError() { // Recognition error - abort rule @@ -43031,14 +43027,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3516) + p.SetState(3514) p.Numericonly() } case PostgreSQLParserMINVALUE: p.EnterOuterAlt(localctx, 7) { - p.SetState(3517) + p.SetState(3515) p.Match(PostgreSQLParserMINVALUE) if p.HasError() { // Recognition error - abort rule @@ -43046,14 +43042,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3518) + p.SetState(3516) p.Numericonly() } case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 8) { - p.SetState(3519) + p.SetState(3517) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -43061,7 +43057,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3520) + p.SetState(3518) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCYCLE || _la == PostgreSQLParserMAXVALUE || _la == PostgreSQLParserMINVALUE) { @@ -43075,7 +43071,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserOWNED: p.EnterOuterAlt(localctx, 9) { - p.SetState(3521) + p.SetState(3519) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -43083,7 +43079,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3522) + p.SetState(3520) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -43091,14 +43087,14 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3523) + p.SetState(3521) p.Any_name() } case PostgreSQLParserSEQUENCE: p.EnterOuterAlt(localctx, 10) { - p.SetState(3524) + p.SetState(3522) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -43106,7 +43102,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3525) + p.SetState(3523) p.Match(PostgreSQLParserNAME_P) if p.HasError() { // Recognition error - abort rule @@ -43114,21 +43110,21 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { } } { - p.SetState(3526) + p.SetState(3524) p.Any_name() } case PostgreSQLParserSTART: p.EnterOuterAlt(localctx, 11) { - p.SetState(3527) + p.SetState(3525) p.Match(PostgreSQLParserSTART) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3529) + p.SetState(3527) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43137,39 +43133,39 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { if _la == PostgreSQLParserWITH { { - p.SetState(3528) + p.SetState(3526) p.Opt_with() } } { - p.SetState(3531) + p.SetState(3529) p.Numericonly() } case PostgreSQLParserRESTART: p.EnterOuterAlt(localctx, 12) { - p.SetState(3532) + p.SetState(3530) p.Match(PostgreSQLParserRESTART) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3534) + p.SetState(3532) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 237, p.GetParserRuleContext()) == 1 { { - p.SetState(3533) + p.SetState(3531) p.Opt_with() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(3537) + p.SetState(3535) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43178,7 +43174,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { if _la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS || _la == PostgreSQLParserIntegral || _la == PostgreSQLParserNumeric { { - p.SetState(3536) + p.SetState(3534) p.Numericonly() } @@ -43187,7 +43183,7 @@ func (p *PostgreSQLParser) Seqoptelem() (localctx ISeqoptelemContext) { case PostgreSQLParserUNLOGGED: p.EnterOuterAlt(localctx, 13) { - p.SetState(3539) + p.SetState(3537) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule @@ -43298,7 +43294,7 @@ func (p *PostgreSQLParser) Opt_by() (localctx IOpt_byContext) { p.EnterRule(localctx, 292, PostgreSQLParserRULE_opt_by) p.EnterOuterAlt(localctx, 1) { - p.SetState(3542) + p.SetState(3540) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -43441,7 +43437,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(3550) + p.SetState(3548) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43451,14 +43447,14 @@ func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3544) + p.SetState(3542) p.Fconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3545) + p.SetState(3543) p.Match(PostgreSQLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -43466,14 +43462,14 @@ func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { } } { - p.SetState(3546) + p.SetState(3544) p.Fconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3547) + p.SetState(3545) p.Match(PostgreSQLParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -43481,14 +43477,14 @@ func (p *PostgreSQLParser) Numericonly() (localctx INumericonlyContext) { } } { - p.SetState(3548) + p.SetState(3546) p.Fconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3549) + p.SetState(3547) p.Signediconst() } @@ -43644,10 +43640,10 @@ func (p *PostgreSQLParser) Numericonly_list() (localctx INumericonly_listContext p.EnterOuterAlt(localctx, 1) { - p.SetState(3552) + p.SetState(3550) p.Numericonly() } - p.SetState(3557) + p.SetState(3555) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43656,7 +43652,7 @@ func (p *PostgreSQLParser) Numericonly_list() (localctx INumericonly_listContext for _la == PostgreSQLParserCOMMA { { - p.SetState(3553) + p.SetState(3551) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -43664,11 +43660,11 @@ func (p *PostgreSQLParser) Numericonly_list() (localctx INumericonly_listContext } } { - p.SetState(3554) + p.SetState(3552) p.Numericonly() } - p.SetState(3559) + p.SetState(3557) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43905,14 +43901,14 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(3560) + p.SetState(3558) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3562) + p.SetState(3560) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43921,12 +43917,12 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserOR { { - p.SetState(3561) + p.SetState(3559) p.Opt_or_replace() } } - p.SetState(3565) + p.SetState(3563) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43935,12 +43931,12 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserTRUSTED { { - p.SetState(3564) + p.SetState(3562) p.Opt_trusted() } } - p.SetState(3568) + p.SetState(3566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43949,13 +43945,13 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(3567) + p.SetState(3565) p.Opt_procedural() } } { - p.SetState(3570) + p.SetState(3568) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -43963,10 +43959,10 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) } } { - p.SetState(3571) + p.SetState(3569) p.Name() } - p.SetState(3580) + p.SetState(3578) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43975,7 +43971,7 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserHANDLER { { - p.SetState(3572) + p.SetState(3570) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -43983,10 +43979,10 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) } } { - p.SetState(3573) + p.SetState(3571) p.Handler_name() } - p.SetState(3575) + p.SetState(3573) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -43995,12 +43991,12 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserINLINE_P { { - p.SetState(3574) + p.SetState(3572) p.Opt_inline_handler() } } - p.SetState(3578) + p.SetState(3576) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44009,7 +44005,7 @@ func (p *PostgreSQLParser) Createplangstmt() (localctx ICreateplangstmtContext) if _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3577) + p.SetState(3575) p.Opt_validator() } @@ -44115,7 +44111,7 @@ func (p *PostgreSQLParser) Opt_trusted() (localctx IOpt_trustedContext) { p.EnterRule(localctx, 300, PostgreSQLParserRULE_opt_trusted) p.EnterOuterAlt(localctx, 1) { - p.SetState(3582) + p.SetState(3580) p.Match(PostgreSQLParserTRUSTED) if p.HasError() { // Recognition error - abort rule @@ -44252,10 +44248,10 @@ func (p *PostgreSQLParser) Handler_name() (localctx IHandler_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3584) + p.SetState(3582) p.Name() } - p.SetState(3586) + p.SetState(3584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44264,7 +44260,7 @@ func (p *PostgreSQLParser) Handler_name() (localctx IHandler_nameContext) { if _la == PostgreSQLParserDOT { { - p.SetState(3585) + p.SetState(3583) p.Attrs() } @@ -44385,7 +44381,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(3588) + p.SetState(3586) p.Match(PostgreSQLParserINLINE_P) if p.HasError() { // Recognition error - abort rule @@ -44393,7 +44389,7 @@ func (p *PostgreSQLParser) Opt_inline_handler() (localctx IOpt_inline_handlerCon } } { - p.SetState(3589) + p.SetState(3587) p.Handler_name() } @@ -44515,7 +44511,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(3595) + p.SetState(3593) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44525,7 +44521,7 @@ func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext case PostgreSQLParserVALIDATOR: p.EnterOuterAlt(localctx, 1) { - p.SetState(3591) + p.SetState(3589) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -44533,14 +44529,14 @@ func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext } } { - p.SetState(3592) + p.SetState(3590) p.Handler_name() } case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 2) { - p.SetState(3593) + p.SetState(3591) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -44548,7 +44544,7 @@ func (p *PostgreSQLParser) Validator_clause() (localctx IValidator_clauseContext } } { - p.SetState(3594) + p.SetState(3592) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -44671,7 +44667,7 @@ func (p *PostgreSQLParser) Opt_validator() (localctx IOpt_validatorContext) { p.EnterRule(localctx, 308, PostgreSQLParserRULE_opt_validator) p.EnterOuterAlt(localctx, 1) { - p.SetState(3597) + p.SetState(3595) p.Validator_clause() } @@ -44773,7 +44769,7 @@ func (p *PostgreSQLParser) Opt_procedural() (localctx IOpt_proceduralContext) { p.EnterRule(localctx, 310, PostgreSQLParserRULE_opt_procedural) p.EnterOuterAlt(localctx, 1) { - p.SetState(3599) + p.SetState(3597) p.Match(PostgreSQLParserPROCEDURAL) if p.HasError() { // Recognition error - abort rule @@ -44959,7 +44955,7 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm p.EnterOuterAlt(localctx, 1) { - p.SetState(3601) + p.SetState(3599) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -44967,7 +44963,7 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm } } { - p.SetState(3602) + p.SetState(3600) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -44975,10 +44971,10 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm } } { - p.SetState(3603) + p.SetState(3601) p.Name() } - p.SetState(3605) + p.SetState(3603) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -44987,13 +44983,13 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm if _la == PostgreSQLParserOWNER { { - p.SetState(3604) + p.SetState(3602) p.Opttablespaceowner() } } { - p.SetState(3607) + p.SetState(3605) p.Match(PostgreSQLParserLOCATION) if p.HasError() { // Recognition error - abort rule @@ -45001,15 +44997,15 @@ func (p *PostgreSQLParser) Createtablespacestmt() (localctx ICreatetablespacestm } } { - p.SetState(3608) + p.SetState(3606) p.Sconst() } - p.SetState(3610) + p.SetState(3608) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 251, p.GetParserRuleContext()) == 1 { { - p.SetState(3609) + p.SetState(3607) p.Opt_reloptions() } @@ -45132,7 +45128,7 @@ func (p *PostgreSQLParser) Opttablespaceowner() (localctx IOpttablespaceownerCon p.EnterRule(localctx, 314, PostgreSQLParserRULE_opttablespaceowner) p.EnterOuterAlt(localctx, 1) { - p.SetState(3612) + p.SetState(3610) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -45140,7 +45136,7 @@ func (p *PostgreSQLParser) Opttablespaceowner() (localctx IOpttablespaceownerCon } } { - p.SetState(3613) + p.SetState(3611) p.Rolespec() } @@ -45274,7 +45270,7 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon p.EnterRule(localctx, 316, PostgreSQLParserRULE_droptablespacestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3615) + p.SetState(3613) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -45282,19 +45278,19 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon } } { - p.SetState(3616) + p.SetState(3614) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3619) + p.SetState(3617) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 252, p.GetParserRuleContext()) == 1 { { - p.SetState(3617) + p.SetState(3615) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -45302,7 +45298,7 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon } } { - p.SetState(3618) + p.SetState(3616) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -45314,7 +45310,7 @@ func (p *PostgreSQLParser) Droptablespacestmt() (localctx IDroptablespacestmtCon goto errorExit } { - p.SetState(3621) + p.SetState(3619) p.Name() } @@ -45487,7 +45483,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC p.EnterRule(localctx, 318, PostgreSQLParserRULE_createextensionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3623) + p.SetState(3621) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -45495,19 +45491,19 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC } } { - p.SetState(3624) + p.SetState(3622) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3628) + p.SetState(3626) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 253, p.GetParserRuleContext()) == 1 { { - p.SetState(3625) + p.SetState(3623) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -45515,7 +45511,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC } } { - p.SetState(3626) + p.SetState(3624) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -45523,7 +45519,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC } } { - p.SetState(3627) + p.SetState(3625) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -45535,15 +45531,15 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC goto errorExit } { - p.SetState(3630) + p.SetState(3628) p.Name() } - p.SetState(3632) + p.SetState(3630) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 254, p.GetParserRuleContext()) == 1 { { - p.SetState(3631) + p.SetState(3629) p.Opt_with() } @@ -45551,7 +45547,7 @@ func (p *PostgreSQLParser) Createextensionstmt() (localctx ICreateextensionstmtC goto errorExit } { - p.SetState(3634) + p.SetState(3632) p.Create_extension_opt_list() } @@ -45692,7 +45688,7 @@ func (p *PostgreSQLParser) Create_extension_opt_list() (localctx ICreate_extensi var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3639) + p.SetState(3637) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45701,11 +45697,11 @@ func (p *PostgreSQLParser) Create_extension_opt_list() (localctx ICreate_extensi for _la == PostgreSQLParserFROM || _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserSCHEMA || _la == PostgreSQLParserVERSION_P { { - p.SetState(3636) + p.SetState(3634) p.Create_extension_opt_item() } - p.SetState(3641) + p.SetState(3639) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45858,7 +45854,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(3649) + p.SetState(3647) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -45868,7 +45864,7 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi case PostgreSQLParserSCHEMA: p.EnterOuterAlt(localctx, 1) { - p.SetState(3642) + p.SetState(3640) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -45876,14 +45872,14 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi } } { - p.SetState(3643) + p.SetState(3641) p.Name() } case PostgreSQLParserVERSION_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(3644) + p.SetState(3642) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -45891,14 +45887,14 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi } } { - p.SetState(3645) + p.SetState(3643) p.Nonreservedword_or_sconst() } case PostgreSQLParserFROM: p.EnterOuterAlt(localctx, 3) { - p.SetState(3646) + p.SetState(3644) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -45906,14 +45902,14 @@ func (p *PostgreSQLParser) Create_extension_opt_item() (localctx ICreate_extensi } } { - p.SetState(3647) + p.SetState(3645) p.Nonreservedword_or_sconst() } case PostgreSQLParserCASCADE: p.EnterOuterAlt(localctx, 4) { - p.SetState(3648) + p.SetState(3646) p.Match(PostgreSQLParserCASCADE) if p.HasError() { // Recognition error - abort rule @@ -46068,7 +46064,7 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon p.EnterRule(localctx, 324, PostgreSQLParserRULE_alterextensionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(3651) + p.SetState(3649) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46076,7 +46072,7 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon } } { - p.SetState(3652) + p.SetState(3650) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46084,11 +46080,11 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon } } { - p.SetState(3653) + p.SetState(3651) p.Name() } { - p.SetState(3654) + p.SetState(3652) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -46096,7 +46092,7 @@ func (p *PostgreSQLParser) Alterextensionstmt() (localctx IAlterextensionstmtCon } } { - p.SetState(3655) + p.SetState(3653) p.Alter_extension_opt_list() } @@ -46237,7 +46233,7 @@ func (p *PostgreSQLParser) Alter_extension_opt_list() (localctx IAlter_extension var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3660) + p.SetState(3658) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46246,11 +46242,11 @@ func (p *PostgreSQLParser) Alter_extension_opt_list() (localctx IAlter_extension for _la == PostgreSQLParserTO { { - p.SetState(3657) + p.SetState(3655) p.Alter_extension_opt_item() } - p.SetState(3662) + p.SetState(3660) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46373,7 +46369,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(3663) + p.SetState(3661) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -46381,7 +46377,7 @@ func (p *PostgreSQLParser) Alter_extension_opt_item() (localctx IAlter_extension } } { - p.SetState(3664) + p.SetState(3662) p.Nonreservedword_or_sconst() } @@ -46776,7 +46772,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(3770) + p.SetState(3768) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -46786,7 +46782,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3666) + p.SetState(3664) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46794,7 +46790,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3667) + p.SetState(3665) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46802,26 +46798,26 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3668) + p.SetState(3666) p.Name() } { - p.SetState(3669) + p.SetState(3667) p.Add_drop() } { - p.SetState(3670) + p.SetState(3668) p.Object_type_name() } { - p.SetState(3671) + p.SetState(3669) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3673) + p.SetState(3671) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46829,7 +46825,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3674) + p.SetState(3672) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46837,26 +46833,26 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3675) + p.SetState(3673) p.Name() } { - p.SetState(3676) + p.SetState(3674) p.Add_drop() } { - p.SetState(3677) + p.SetState(3675) p.Object_type_any_name() } { - p.SetState(3678) + p.SetState(3676) p.Any_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3680) + p.SetState(3678) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46864,7 +46860,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3681) + p.SetState(3679) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46872,15 +46868,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3682) + p.SetState(3680) p.Name() } { - p.SetState(3683) + p.SetState(3681) p.Add_drop() } { - p.SetState(3684) + p.SetState(3682) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -46888,14 +46884,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3685) + p.SetState(3683) p.Aggregate_with_argtypes() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3687) + p.SetState(3685) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46903,7 +46899,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3688) + p.SetState(3686) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46911,15 +46907,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3689) + p.SetState(3687) p.Name() } { - p.SetState(3690) + p.SetState(3688) p.Add_drop() } { - p.SetState(3691) + p.SetState(3689) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -46927,7 +46923,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3692) + p.SetState(3690) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -46935,11 +46931,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3693) + p.SetState(3691) p.Typename() } { - p.SetState(3694) + p.SetState(3692) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -46947,11 +46943,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3695) + p.SetState(3693) p.Typename() } { - p.SetState(3696) + p.SetState(3694) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -46962,7 +46958,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(3698) + p.SetState(3696) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -46970,7 +46966,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3699) + p.SetState(3697) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -46978,15 +46974,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3700) + p.SetState(3698) p.Name() } { - p.SetState(3701) + p.SetState(3699) p.Add_drop() } { - p.SetState(3702) + p.SetState(3700) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -46994,14 +46990,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3703) + p.SetState(3701) p.Typename() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(3705) + p.SetState(3703) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47009,7 +47005,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3706) + p.SetState(3704) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47017,15 +47013,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3707) + p.SetState(3705) p.Name() } { - p.SetState(3708) + p.SetState(3706) p.Add_drop() } { - p.SetState(3709) + p.SetState(3707) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -47033,14 +47029,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3710) + p.SetState(3708) p.Function_with_argtypes() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(3712) + p.SetState(3710) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47048,7 +47044,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3713) + p.SetState(3711) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47056,15 +47052,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3714) + p.SetState(3712) p.Name() } { - p.SetState(3715) + p.SetState(3713) p.Add_drop() } { - p.SetState(3716) + p.SetState(3714) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -47072,14 +47068,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3717) + p.SetState(3715) p.Operator_with_argtypes() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(3719) + p.SetState(3717) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47087,7 +47083,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3720) + p.SetState(3718) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47095,15 +47091,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3721) + p.SetState(3719) p.Name() } { - p.SetState(3722) + p.SetState(3720) p.Add_drop() } { - p.SetState(3723) + p.SetState(3721) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -47111,7 +47107,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3724) + p.SetState(3722) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -47119,11 +47115,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3725) + p.SetState(3723) p.Any_name() } { - p.SetState(3726) + p.SetState(3724) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -47131,14 +47127,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3727) + p.SetState(3725) p.Name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(3729) + p.SetState(3727) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47146,7 +47142,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3730) + p.SetState(3728) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47154,15 +47150,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3731) + p.SetState(3729) p.Name() } { - p.SetState(3732) + p.SetState(3730) p.Add_drop() } { - p.SetState(3733) + p.SetState(3731) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -47170,7 +47166,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3734) + p.SetState(3732) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -47178,11 +47174,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3735) + p.SetState(3733) p.Any_name() } { - p.SetState(3736) + p.SetState(3734) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -47190,14 +47186,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3737) + p.SetState(3735) p.Name() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(3739) + p.SetState(3737) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47205,7 +47201,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3740) + p.SetState(3738) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47213,15 +47209,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3741) + p.SetState(3739) p.Name() } { - p.SetState(3742) + p.SetState(3740) p.Add_drop() } { - p.SetState(3743) + p.SetState(3741) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -47229,14 +47225,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3744) + p.SetState(3742) p.Function_with_argtypes() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(3746) + p.SetState(3744) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47244,7 +47240,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3747) + p.SetState(3745) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47252,15 +47248,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3748) + p.SetState(3746) p.Name() } { - p.SetState(3749) + p.SetState(3747) p.Add_drop() } { - p.SetState(3750) + p.SetState(3748) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -47268,14 +47264,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3751) + p.SetState(3749) p.Function_with_argtypes() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(3753) + p.SetState(3751) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47283,7 +47279,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3754) + p.SetState(3752) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47291,15 +47287,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3755) + p.SetState(3753) p.Name() } { - p.SetState(3756) + p.SetState(3754) p.Add_drop() } { - p.SetState(3757) + p.SetState(3755) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -47307,7 +47303,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3758) + p.SetState(3756) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -47315,11 +47311,11 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3759) + p.SetState(3757) p.Typename() } { - p.SetState(3760) + p.SetState(3758) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -47327,14 +47323,14 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3761) + p.SetState(3759) p.Name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(3763) + p.SetState(3761) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -47342,7 +47338,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3764) + p.SetState(3762) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -47350,15 +47346,15 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3765) + p.SetState(3763) p.Name() } { - p.SetState(3766) + p.SetState(3764) p.Add_drop() } { - p.SetState(3767) + p.SetState(3765) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -47366,7 +47362,7 @@ func (p *PostgreSQLParser) Alterextensioncontentsstmt() (localctx IAlterextensio } } { - p.SetState(3768) + p.SetState(3766) p.Typename() } @@ -47540,7 +47536,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(3772) + p.SetState(3770) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -47548,7 +47544,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3773) + p.SetState(3771) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -47556,7 +47552,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3774) + p.SetState(3772) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -47564,7 +47560,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3775) + p.SetState(3773) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -47572,10 +47568,10 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { } } { - p.SetState(3776) + p.SetState(3774) p.Name() } - p.SetState(3778) + p.SetState(3776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47584,12 +47580,12 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { if _la == PostgreSQLParserHANDLER || _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3777) + p.SetState(3775) p.Opt_fdw_options() } } - p.SetState(3781) + p.SetState(3779) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47598,7 +47594,7 @@ func (p *PostgreSQLParser) Createfdwstmt() (localctx ICreatefdwstmtContext) { if _la == PostgreSQLParserOPTIONS { { - p.SetState(3780) + p.SetState(3778) p.Create_generic_options() } @@ -47727,7 +47723,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(3791) + p.SetState(3789) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47737,7 +47733,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3783) + p.SetState(3781) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -47745,14 +47741,14 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3784) + p.SetState(3782) p.Handler_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3785) + p.SetState(3783) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -47760,7 +47756,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3786) + p.SetState(3784) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -47771,7 +47767,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3787) + p.SetState(3785) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -47779,14 +47775,14 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3788) + p.SetState(3786) p.Handler_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3789) + p.SetState(3787) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -47794,7 +47790,7 @@ func (p *PostgreSQLParser) Fdw_option() (localctx IFdw_optionContext) { } } { - p.SetState(3790) + p.SetState(3788) p.Match(PostgreSQLParserVALIDATOR) if p.HasError() { // Recognition error - abort rule @@ -47943,7 +47939,7 @@ func (p *PostgreSQLParser) Fdw_options() (localctx IFdw_optionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(3794) + p.SetState(3792) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -47952,11 +47948,11 @@ func (p *PostgreSQLParser) Fdw_options() (localctx IFdw_optionsContext) { for ok := true; ok; ok = _la == PostgreSQLParserHANDLER || _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3793) + p.SetState(3791) p.Fdw_option() } - p.SetState(3796) + p.SetState(3794) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48074,7 +48070,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(3798) + p.SetState(3796) p.Fdw_options() } @@ -48259,7 +48255,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { p.EnterRule(localctx, 340, PostgreSQLParserRULE_alterfdwstmt) var _la int - p.SetState(3817) + p.SetState(3815) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48269,7 +48265,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3800) + p.SetState(3798) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -48277,7 +48273,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3801) + p.SetState(3799) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -48285,7 +48281,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3802) + p.SetState(3800) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -48293,7 +48289,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3803) + p.SetState(3801) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -48301,10 +48297,10 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3804) + p.SetState(3802) p.Name() } - p.SetState(3806) + p.SetState(3804) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48313,20 +48309,20 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { if _la == PostgreSQLParserHANDLER || _la == PostgreSQLParserNO || _la == PostgreSQLParserVALIDATOR { { - p.SetState(3805) + p.SetState(3803) p.Opt_fdw_options() } } { - p.SetState(3808) + p.SetState(3806) p.Alter_generic_options() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3810) + p.SetState(3808) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -48334,7 +48330,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3811) + p.SetState(3809) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -48342,7 +48338,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3812) + p.SetState(3810) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -48350,7 +48346,7 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3813) + p.SetState(3811) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -48358,11 +48354,11 @@ func (p *PostgreSQLParser) Alterfdwstmt() (localctx IAlterfdwstmtContext) { } } { - p.SetState(3814) + p.SetState(3812) p.Name() } { - p.SetState(3815) + p.SetState(3813) p.Fdw_options() } @@ -48495,7 +48491,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(3819) + p.SetState(3817) p.Match(PostgreSQLParserOPTIONS) if p.HasError() { // Recognition error - abort rule @@ -48503,7 +48499,7 @@ func (p *PostgreSQLParser) Create_generic_options() (localctx ICreate_generic_op } } { - p.SetState(3820) + p.SetState(3818) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -48511,11 +48507,11 @@ func (p *PostgreSQLParser) Create_generic_options() (localctx ICreate_generic_op } } { - p.SetState(3821) + p.SetState(3819) p.Generic_option_list() } { - p.SetState(3822) + p.SetState(3820) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -48671,10 +48667,10 @@ func (p *PostgreSQLParser) Generic_option_list() (localctx IGeneric_option_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(3824) + p.SetState(3822) p.Generic_option_elem() } - p.SetState(3829) + p.SetState(3827) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48683,7 +48679,7 @@ func (p *PostgreSQLParser) Generic_option_list() (localctx IGeneric_option_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(3825) + p.SetState(3823) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -48691,11 +48687,11 @@ func (p *PostgreSQLParser) Generic_option_list() (localctx IGeneric_option_listC } } { - p.SetState(3826) + p.SetState(3824) p.Generic_option_elem() } - p.SetState(3831) + p.SetState(3829) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -48828,7 +48824,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(3832) + p.SetState(3830) p.Match(PostgreSQLParserOPTIONS) if p.HasError() { // Recognition error - abort rule @@ -48836,7 +48832,7 @@ func (p *PostgreSQLParser) Alter_generic_options() (localctx IAlter_generic_opti } } { - p.SetState(3833) + p.SetState(3831) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -48844,11 +48840,11 @@ func (p *PostgreSQLParser) Alter_generic_options() (localctx IAlter_generic_opti } } { - p.SetState(3834) + p.SetState(3832) p.Alter_generic_option_list() } { - p.SetState(3835) + p.SetState(3833) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -49004,10 +49000,10 @@ func (p *PostgreSQLParser) Alter_generic_option_list() (localctx IAlter_generic_ p.EnterOuterAlt(localctx, 1) { - p.SetState(3837) + p.SetState(3835) p.Alter_generic_option_elem() } - p.SetState(3842) + p.SetState(3840) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49016,7 +49012,7 @@ func (p *PostgreSQLParser) Alter_generic_option_list() (localctx IAlter_generic_ for _la == PostgreSQLParserCOMMA { { - p.SetState(3838) + p.SetState(3836) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -49024,11 +49020,11 @@ func (p *PostgreSQLParser) Alter_generic_option_list() (localctx IAlter_generic_ } } { - p.SetState(3839) + p.SetState(3837) p.Alter_generic_option_elem() } - p.SetState(3844) + p.SetState(3842) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49176,7 +49172,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(3852) + p.SetState(3850) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49186,14 +49182,14 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3845) + p.SetState(3843) p.Generic_option_elem() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3846) + p.SetState(3844) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -49201,14 +49197,14 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ } } { - p.SetState(3847) + p.SetState(3845) p.Generic_option_elem() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3848) + p.SetState(3846) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -49216,14 +49212,14 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ } } { - p.SetState(3849) + p.SetState(3847) p.Generic_option_elem() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3850) + p.SetState(3848) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -49231,7 +49227,7 @@ func (p *PostgreSQLParser) Alter_generic_option_elem() (localctx IAlter_generic_ } } { - p.SetState(3851) + p.SetState(3849) p.Generic_option_name() } @@ -49366,11 +49362,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(3854) + p.SetState(3852) p.Generic_option_name() } { - p.SetState(3855) + p.SetState(3853) p.Generic_option_arg() } @@ -49484,7 +49480,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(3857) + p.SetState(3855) p.Collabel() } @@ -49598,7 +49594,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(3859) + p.SetState(3857) p.Sconst() } @@ -49829,7 +49825,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser p.EnterRule(localctx, 358, PostgreSQLParserRULE_createforeignserverstmt) var _la int - p.SetState(3896) + p.SetState(3894) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49839,7 +49835,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3861) + p.SetState(3859) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -49847,7 +49843,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3862) + p.SetState(3860) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -49855,10 +49851,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3863) + p.SetState(3861) p.Name() } - p.SetState(3865) + p.SetState(3863) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49867,12 +49863,12 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserTYPE_P { { - p.SetState(3864) + p.SetState(3862) p.Opt_type() } } - p.SetState(3868) + p.SetState(3866) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49881,13 +49877,13 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserVERSION_P { { - p.SetState(3867) + p.SetState(3865) p.Opt_foreign_server_version() } } { - p.SetState(3870) + p.SetState(3868) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -49895,7 +49891,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3871) + p.SetState(3869) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -49903,7 +49899,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3872) + p.SetState(3870) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -49911,10 +49907,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3873) + p.SetState(3871) p.Name() } - p.SetState(3875) + p.SetState(3873) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49923,7 +49919,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserOPTIONS { { - p.SetState(3874) + p.SetState(3872) p.Create_generic_options() } @@ -49932,7 +49928,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3877) + p.SetState(3875) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -49940,7 +49936,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3878) + p.SetState(3876) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -49948,7 +49944,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3879) + p.SetState(3877) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -49956,7 +49952,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3880) + p.SetState(3878) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -49964,7 +49960,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3881) + p.SetState(3879) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -49972,10 +49968,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3882) + p.SetState(3880) p.Name() } - p.SetState(3884) + p.SetState(3882) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49984,12 +49980,12 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserTYPE_P { { - p.SetState(3883) + p.SetState(3881) p.Opt_type() } } - p.SetState(3887) + p.SetState(3885) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -49998,13 +49994,13 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserVERSION_P { { - p.SetState(3886) + p.SetState(3884) p.Opt_foreign_server_version() } } { - p.SetState(3889) + p.SetState(3887) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -50012,7 +50008,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3890) + p.SetState(3888) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -50020,7 +50016,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3891) + p.SetState(3889) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -50028,10 +50024,10 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser } } { - p.SetState(3892) + p.SetState(3890) p.Name() } - p.SetState(3894) + p.SetState(3892) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50040,7 +50036,7 @@ func (p *PostgreSQLParser) Createforeignserverstmt() (localctx ICreateforeignser if _la == PostgreSQLParserOPTIONS { { - p.SetState(3893) + p.SetState(3891) p.Create_generic_options() } @@ -50165,7 +50161,7 @@ func (p *PostgreSQLParser) Opt_type() (localctx IOpt_typeContext) { p.EnterRule(localctx, 360, PostgreSQLParserRULE_opt_type) p.EnterOuterAlt(localctx, 1) { - p.SetState(3898) + p.SetState(3896) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -50173,7 +50169,7 @@ func (p *PostgreSQLParser) Opt_type() (localctx IOpt_typeContext) { } } { - p.SetState(3899) + p.SetState(3897) p.Sconst() } @@ -50297,14 +50293,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(3901) + p.SetState(3899) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3904) + p.SetState(3902) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50313,13 +50309,13 @@ func (p *PostgreSQLParser) Foreign_server_version() (localctx IForeign_server_ve switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(3902) + p.SetState(3900) p.Sconst() } case PostgreSQLParserNULL_P: { - p.SetState(3903) + p.SetState(3901) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -50442,7 +50438,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(3906) + p.SetState(3904) p.Foreign_server_version() } @@ -50602,7 +50598,7 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve p.EnterOuterAlt(localctx, 1) { - p.SetState(3908) + p.SetState(3906) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -50610,7 +50606,7 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve } } { - p.SetState(3909) + p.SetState(3907) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -50618,10 +50614,10 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve } } { - p.SetState(3910) + p.SetState(3908) p.Name() } - p.SetState(3916) + p.SetState(3914) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50630,16 +50626,16 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPTIONS: { - p.SetState(3911) + p.SetState(3909) p.Alter_generic_options() } case PostgreSQLParserVERSION_P: { - p.SetState(3912) + p.SetState(3910) p.Foreign_server_version() } - p.SetState(3914) + p.SetState(3912) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50648,7 +50644,7 @@ func (p *PostgreSQLParser) Alterforeignserverstmt() (localctx IAlterforeignserve if _la == PostgreSQLParserOPTIONS { { - p.SetState(3913) + p.SetState(3911) p.Alter_generic_options() } @@ -50952,7 +50948,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl p.EnterRule(localctx, 368, PostgreSQLParserRULE_createforeigntablestmt) var _la int - p.SetState(3990) + p.SetState(3988) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -50962,7 +50958,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(3918) + p.SetState(3916) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -50970,7 +50966,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3919) + p.SetState(3917) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -50978,7 +50974,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3920) + p.SetState(3918) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -50986,18 +50982,18 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3921) + p.SetState(3919) p.Qualified_name() } { - p.SetState(3922) + p.SetState(3920) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3924) + p.SetState(3922) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51006,20 +51002,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(3923) + p.SetState(3921) p.Opttableelementlist() } } { - p.SetState(3926) + p.SetState(3924) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3928) + p.SetState(3926) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51028,13 +51024,13 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserINHERITS { { - p.SetState(3927) + p.SetState(3925) p.Optinherit() } } { - p.SetState(3930) + p.SetState(3928) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51042,10 +51038,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3931) + p.SetState(3929) p.Name() } - p.SetState(3933) + p.SetState(3931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51054,7 +51050,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3932) + p.SetState(3930) p.Create_generic_options() } @@ -51063,7 +51059,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(3935) + p.SetState(3933) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -51071,7 +51067,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3936) + p.SetState(3934) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51079,7 +51075,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3937) + p.SetState(3935) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -51087,7 +51083,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3938) + p.SetState(3936) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -51095,7 +51091,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3939) + p.SetState(3937) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -51103,7 +51099,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3940) + p.SetState(3938) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -51111,18 +51107,18 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3941) + p.SetState(3939) p.Qualified_name() } { - p.SetState(3942) + p.SetState(3940) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3944) + p.SetState(3942) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51131,20 +51127,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(3943) + p.SetState(3941) p.Opttableelementlist() } } { - p.SetState(3946) + p.SetState(3944) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(3948) + p.SetState(3946) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51153,13 +51149,13 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserINHERITS { { - p.SetState(3947) + p.SetState(3945) p.Optinherit() } } { - p.SetState(3950) + p.SetState(3948) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51167,10 +51163,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3951) + p.SetState(3949) p.Name() } - p.SetState(3953) + p.SetState(3951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51179,7 +51175,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3952) + p.SetState(3950) p.Create_generic_options() } @@ -51188,7 +51184,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(3955) + p.SetState(3953) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -51196,7 +51192,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3956) + p.SetState(3954) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51204,7 +51200,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3957) + p.SetState(3955) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -51212,11 +51208,11 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3958) + p.SetState(3956) p.Qualified_name() } { - p.SetState(3959) + p.SetState(3957) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -51224,7 +51220,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3960) + p.SetState(3958) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -51232,10 +51228,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3961) + p.SetState(3959) p.Qualified_name() } - p.SetState(3963) + p.SetState(3961) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51244,17 +51240,17 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3962) + p.SetState(3960) p.Opttypedtableelementlist() } } { - p.SetState(3965) + p.SetState(3963) p.Partitionboundspec() } { - p.SetState(3966) + p.SetState(3964) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51262,10 +51258,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3967) + p.SetState(3965) p.Name() } - p.SetState(3969) + p.SetState(3967) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51274,7 +51270,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3968) + p.SetState(3966) p.Create_generic_options() } @@ -51283,7 +51279,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(3971) + p.SetState(3969) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -51291,7 +51287,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3972) + p.SetState(3970) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51299,7 +51295,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3973) + p.SetState(3971) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -51307,7 +51303,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3974) + p.SetState(3972) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -51315,7 +51311,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3975) + p.SetState(3973) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -51323,7 +51319,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3976) + p.SetState(3974) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -51331,11 +51327,11 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3977) + p.SetState(3975) p.Qualified_name() } { - p.SetState(3978) + p.SetState(3976) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -51343,7 +51339,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3979) + p.SetState(3977) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -51351,10 +51347,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3980) + p.SetState(3978) p.Qualified_name() } - p.SetState(3982) + p.SetState(3980) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51363,17 +51359,17 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(3981) + p.SetState(3979) p.Opttypedtableelementlist() } } { - p.SetState(3984) + p.SetState(3982) p.Partitionboundspec() } { - p.SetState(3985) + p.SetState(3983) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51381,10 +51377,10 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl } } { - p.SetState(3986) + p.SetState(3984) p.Name() } - p.SetState(3988) + p.SetState(3986) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51393,7 +51389,7 @@ func (p *PostgreSQLParser) Createforeigntablestmt() (localctx ICreateforeigntabl if _la == PostgreSQLParserOPTIONS { { - p.SetState(3987) + p.SetState(3985) p.Create_generic_options() } @@ -51605,7 +51601,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch p.EnterOuterAlt(localctx, 1) { - p.SetState(3992) + p.SetState(3990) p.Match(PostgreSQLParserIMPORT_P) if p.HasError() { // Recognition error - abort rule @@ -51613,7 +51609,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3993) + p.SetState(3991) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -51621,7 +51617,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3994) + p.SetState(3992) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -51629,10 +51625,10 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(3995) + p.SetState(3993) p.Name() } - p.SetState(3997) + p.SetState(3995) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51641,13 +51637,13 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch if _la == PostgreSQLParserEXCEPT || _la == PostgreSQLParserLIMIT { { - p.SetState(3996) + p.SetState(3994) p.Import_qualification() } } { - p.SetState(3999) + p.SetState(3997) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -51655,7 +51651,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(4000) + p.SetState(3998) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -51663,11 +51659,11 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(4001) + p.SetState(3999) p.Name() } { - p.SetState(4002) + p.SetState(4000) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -51675,10 +51671,10 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch } } { - p.SetState(4003) + p.SetState(4001) p.Name() } - p.SetState(4005) + p.SetState(4003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51687,7 +51683,7 @@ func (p *PostgreSQLParser) Importforeignschemastmt() (localctx IImportforeignsch if _la == PostgreSQLParserOPTIONS { { - p.SetState(4004) + p.SetState(4002) p.Create_generic_options() } @@ -51799,7 +51795,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(4010) + p.SetState(4008) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -51809,7 +51805,7 @@ func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualifi case PostgreSQLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(4007) + p.SetState(4005) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -51817,7 +51813,7 @@ func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualifi } } { - p.SetState(4008) + p.SetState(4006) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -51828,7 +51824,7 @@ func (p *PostgreSQLParser) Import_qualification_type() (localctx IImport_qualifi case PostgreSQLParserEXCEPT: p.EnterOuterAlt(localctx, 2) { - p.SetState(4009) + p.SetState(4007) p.Match(PostgreSQLParserEXCEPT) if p.HasError() { // Recognition error - abort rule @@ -51978,11 +51974,11 @@ func (p *PostgreSQLParser) Import_qualification() (localctx IImport_qualificatio p.EnterRule(localctx, 374, PostgreSQLParserRULE_import_qualification) p.EnterOuterAlt(localctx, 1) { - p.SetState(4012) + p.SetState(4010) p.Import_qualification_type() } { - p.SetState(4013) + p.SetState(4011) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -51990,11 +51986,11 @@ func (p *PostgreSQLParser) Import_qualification() (localctx IImport_qualificatio } } { - p.SetState(4014) + p.SetState(4012) p.Relation_expr_list() } { - p.SetState(4015) + p.SetState(4013) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -52186,7 +52182,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings p.EnterRule(localctx, 376, PostgreSQLParserRULE_createusermappingstmt) var _la int - p.SetState(4040) + p.SetState(4038) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52196,7 +52192,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4017) + p.SetState(4015) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -52204,7 +52200,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4018) + p.SetState(4016) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52212,7 +52208,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4019) + p.SetState(4017) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52220,7 +52216,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4020) + p.SetState(4018) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52228,11 +52224,11 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4021) + p.SetState(4019) p.Auth_ident() } { - p.SetState(4022) + p.SetState(4020) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52240,10 +52236,10 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4023) + p.SetState(4021) p.Name() } - p.SetState(4025) + p.SetState(4023) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52252,7 +52248,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings if _la == PostgreSQLParserOPTIONS { { - p.SetState(4024) + p.SetState(4022) p.Create_generic_options() } @@ -52261,7 +52257,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4027) + p.SetState(4025) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -52269,7 +52265,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4028) + p.SetState(4026) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52277,7 +52273,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4029) + p.SetState(4027) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52285,7 +52281,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4030) + p.SetState(4028) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -52293,7 +52289,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4031) + p.SetState(4029) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -52301,7 +52297,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4032) + p.SetState(4030) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -52309,7 +52305,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4033) + p.SetState(4031) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52317,11 +52313,11 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4034) + p.SetState(4032) p.Auth_ident() } { - p.SetState(4035) + p.SetState(4033) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52329,10 +52325,10 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings } } { - p.SetState(4036) + p.SetState(4034) p.Name() } - p.SetState(4038) + p.SetState(4036) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52341,7 +52337,7 @@ func (p *PostgreSQLParser) Createusermappingstmt() (localctx ICreateusermappings if _la == PostgreSQLParserOPTIONS { { - p.SetState(4037) + p.SetState(4035) p.Create_generic_options() } @@ -52464,7 +52460,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(4044) + p.SetState(4042) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52474,14 +52470,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(4042) + p.SetState(4040) p.Rolespec() } case PostgreSQLParserUSER: p.EnterOuterAlt(localctx, 2) { - p.SetState(4043) + p.SetState(4041) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52654,7 +52650,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(4064) + p.SetState(4062) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -52664,7 +52660,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4046) + p.SetState(4044) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -52672,7 +52668,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4047) + p.SetState(4045) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52680,7 +52676,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4048) + p.SetState(4046) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52688,7 +52684,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4049) + p.SetState(4047) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52696,11 +52692,11 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4050) + p.SetState(4048) p.Auth_ident() } { - p.SetState(4051) + p.SetState(4049) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52708,14 +52704,14 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4052) + p.SetState(4050) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4054) + p.SetState(4052) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -52723,7 +52719,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4055) + p.SetState(4053) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52731,7 +52727,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4056) + p.SetState(4054) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52739,7 +52735,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4057) + p.SetState(4055) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -52747,7 +52743,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4058) + p.SetState(4056) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -52755,7 +52751,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4059) + p.SetState(4057) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52763,11 +52759,11 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4060) + p.SetState(4058) p.Auth_ident() } { - p.SetState(4061) + p.SetState(4059) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52775,7 +52771,7 @@ func (p *PostgreSQLParser) Dropusermappingstmt() (localctx IDropusermappingstmtC } } { - p.SetState(4062) + p.SetState(4060) p.Name() } @@ -52952,7 +52948,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm p.EnterRule(localctx, 382, PostgreSQLParserRULE_alterusermappingstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4066) + p.SetState(4064) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -52960,7 +52956,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4067) + p.SetState(4065) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -52968,7 +52964,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4068) + p.SetState(4066) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -52976,7 +52972,7 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4069) + p.SetState(4067) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -52984,11 +52980,11 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4070) + p.SetState(4068) p.Auth_ident() } { - p.SetState(4071) + p.SetState(4069) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -52996,11 +52992,11 @@ func (p *PostgreSQLParser) Alterusermappingstmt() (localctx IAlterusermappingstm } } { - p.SetState(4072) + p.SetState(4070) p.Name() } { - p.SetState(4073) + p.SetState(4071) p.Alter_generic_options() } @@ -53233,7 +53229,7 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(4075) + p.SetState(4073) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -53241,7 +53237,7 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext } } { - p.SetState(4076) + p.SetState(4074) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -53249,11 +53245,11 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext } } { - p.SetState(4077) + p.SetState(4075) p.Name() } { - p.SetState(4078) + p.SetState(4076) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -53261,10 +53257,10 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext } } { - p.SetState(4079) + p.SetState(4077) p.Qualified_name() } - p.SetState(4081) + p.SetState(4079) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53273,12 +53269,12 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserAS { { - p.SetState(4080) + p.SetState(4078) p.Rowsecuritydefaultpermissive() } } - p.SetState(4084) + p.SetState(4082) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53287,12 +53283,12 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserFOR { { - p.SetState(4083) + p.SetState(4081) p.Rowsecuritydefaultforcmd() } } - p.SetState(4087) + p.SetState(4085) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53301,12 +53297,12 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserTO { { - p.SetState(4086) + p.SetState(4084) p.Rowsecuritydefaulttorole() } } - p.SetState(4090) + p.SetState(4088) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53315,17 +53311,17 @@ func (p *PostgreSQLParser) Createpolicystmt() (localctx ICreatepolicystmtContext if _la == PostgreSQLParserUSING { { - p.SetState(4089) + p.SetState(4087) p.Rowsecurityoptionalexpr() } } - p.SetState(4093) + p.SetState(4091) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 301, p.GetParserRuleContext()) == 1 { { - p.SetState(4092) + p.SetState(4090) p.Rowsecurityoptionalwithcheck() } @@ -53528,7 +53524,7 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(4095) + p.SetState(4093) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -53536,7 +53532,7 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) } } { - p.SetState(4096) + p.SetState(4094) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -53544,11 +53540,11 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) } } { - p.SetState(4097) + p.SetState(4095) p.Name() } { - p.SetState(4098) + p.SetState(4096) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -53556,10 +53552,10 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) } } { - p.SetState(4099) + p.SetState(4097) p.Qualified_name() } - p.SetState(4101) + p.SetState(4099) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53568,12 +53564,12 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) if _la == PostgreSQLParserTO { { - p.SetState(4100) + p.SetState(4098) p.Rowsecurityoptionaltorole() } } - p.SetState(4104) + p.SetState(4102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -53582,17 +53578,17 @@ func (p *PostgreSQLParser) Alterpolicystmt() (localctx IAlterpolicystmtContext) if _la == PostgreSQLParserUSING { { - p.SetState(4103) + p.SetState(4101) p.Rowsecurityoptionalexpr() } } - p.SetState(4107) + p.SetState(4105) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 304, p.GetParserRuleContext()) == 1 { { - p.SetState(4106) + p.SetState(4104) p.Rowsecurityoptionalwithcheck() } @@ -53725,7 +53721,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalexpr() (localctx IRowsecurityoptio p.EnterRule(localctx, 388, PostgreSQLParserRULE_rowsecurityoptionalexpr) p.EnterOuterAlt(localctx, 1) { - p.SetState(4109) + p.SetState(4107) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -53733,7 +53729,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalexpr() (localctx IRowsecurityoptio } } { - p.SetState(4110) + p.SetState(4108) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -53741,11 +53737,11 @@ func (p *PostgreSQLParser) Rowsecurityoptionalexpr() (localctx IRowsecurityoptio } } { - p.SetState(4111) + p.SetState(4109) p.A_expr() } { - p.SetState(4112) + p.SetState(4110) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -53883,7 +53879,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity p.EnterRule(localctx, 390, PostgreSQLParserRULE_rowsecurityoptionalwithcheck) p.EnterOuterAlt(localctx, 1) { - p.SetState(4114) + p.SetState(4112) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -53891,7 +53887,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity } } { - p.SetState(4115) + p.SetState(4113) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -53899,7 +53895,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity } } { - p.SetState(4116) + p.SetState(4114) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -53907,11 +53903,11 @@ func (p *PostgreSQLParser) Rowsecurityoptionalwithcheck() (localctx IRowsecurity } } { - p.SetState(4117) + p.SetState(4115) p.A_expr() } { - p.SetState(4118) + p.SetState(4116) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -54034,7 +54030,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaulttorole() (localctx IRowsecuritydefa p.EnterRule(localctx, 392, PostgreSQLParserRULE_rowsecuritydefaulttorole) p.EnterOuterAlt(localctx, 1) { - p.SetState(4120) + p.SetState(4118) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -54042,7 +54038,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaulttorole() (localctx IRowsecuritydefa } } { - p.SetState(4121) + p.SetState(4119) p.Role_list() } @@ -54161,7 +54157,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionaltorole() (localctx IRowsecurityopt p.EnterRule(localctx, 394, PostgreSQLParserRULE_rowsecurityoptionaltorole) p.EnterOuterAlt(localctx, 1) { - p.SetState(4123) + p.SetState(4121) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -54169,7 +54165,7 @@ func (p *PostgreSQLParser) Rowsecurityoptionaltorole() (localctx IRowsecurityopt } } { - p.SetState(4124) + p.SetState(4122) p.Role_list() } @@ -54288,7 +54284,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultpermissive() (localctx IRowsecurity p.EnterRule(localctx, 396, PostgreSQLParserRULE_rowsecuritydefaultpermissive) p.EnterOuterAlt(localctx, 1) { - p.SetState(4126) + p.SetState(4124) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -54296,7 +54292,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultpermissive() (localctx IRowsecurity } } { - p.SetState(4127) + p.SetState(4125) p.Identifier() } @@ -54415,7 +54411,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultforcmd() (localctx IRowsecuritydefa p.EnterRule(localctx, 398, PostgreSQLParserRULE_rowsecuritydefaultforcmd) p.EnterOuterAlt(localctx, 1) { - p.SetState(4129) + p.SetState(4127) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -54423,7 +54419,7 @@ func (p *PostgreSQLParser) Rowsecuritydefaultforcmd() (localctx IRowsecuritydefa } } { - p.SetState(4130) + p.SetState(4128) p.Row_security_cmd() } @@ -54547,7 +54543,7 @@ func (p *PostgreSQLParser) Row_security_cmd() (localctx IRow_security_cmdContext p.EnterOuterAlt(localctx, 1) { - p.SetState(4132) + p.SetState(4130) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserSELECT || _la == PostgreSQLParserDELETE_P || _la == PostgreSQLParserINSERT || _la == PostgreSQLParserUPDATE) { @@ -54727,7 +54723,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { p.EnterRule(localctx, 402, PostgreSQLParserRULE_createamstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4134) + p.SetState(4132) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -54735,7 +54731,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4135) + p.SetState(4133) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -54743,7 +54739,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4136) + p.SetState(4134) p.Match(PostgreSQLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -54751,11 +54747,11 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4137) + p.SetState(4135) p.Name() } { - p.SetState(4138) + p.SetState(4136) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -54763,11 +54759,11 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4139) + p.SetState(4137) p.Am_type() } { - p.SetState(4140) + p.SetState(4138) p.Match(PostgreSQLParserHANDLER) if p.HasError() { // Recognition error - abort rule @@ -54775,7 +54771,7 @@ func (p *PostgreSQLParser) Createamstmt() (localctx ICreateamstmtContext) { } } { - p.SetState(4141) + p.SetState(4139) p.Handler_name() } @@ -54884,7 +54880,7 @@ func (p *PostgreSQLParser) Am_type() (localctx IAm_typeContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4143) + p.SetState(4141) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTABLE || _la == PostgreSQLParserINDEX) { @@ -55247,7 +55243,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { p.EnterRule(localctx, 406, PostgreSQLParserRULE_createtrigstmt) var _la int - p.SetState(4193) + p.SetState(4191) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55257,7 +55253,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4145) + p.SetState(4143) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -55265,7 +55261,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4146) + p.SetState(4144) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -55273,19 +55269,19 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4147) + p.SetState(4145) p.Name() } { - p.SetState(4148) + p.SetState(4146) p.Triggeractiontime() } { - p.SetState(4149) + p.SetState(4147) p.Triggerevents() } { - p.SetState(4150) + p.SetState(4148) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -55293,10 +55289,10 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4151) + p.SetState(4149) p.Qualified_name() } - p.SetState(4153) + p.SetState(4151) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55305,12 +55301,12 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserREFERENCING { { - p.SetState(4152) + p.SetState(4150) p.Triggerreferencing() } } - p.SetState(4156) + p.SetState(4154) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55319,12 +55315,12 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(4155) + p.SetState(4153) p.Triggerforspec() } } - p.SetState(4159) + p.SetState(4157) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55333,13 +55329,13 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(4158) + p.SetState(4156) p.Triggerwhen() } } { - p.SetState(4161) + p.SetState(4159) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -55347,15 +55343,15 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4162) + p.SetState(4160) p.Function_or_procedure() } { - p.SetState(4163) + p.SetState(4161) p.Func_name() } { - p.SetState(4164) + p.SetState(4162) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55363,11 +55359,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4165) + p.SetState(4163) p.Triggerfuncargs() } { - p.SetState(4166) + p.SetState(4164) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55378,7 +55374,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4168) + p.SetState(4166) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -55386,7 +55382,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4169) + p.SetState(4167) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -55394,7 +55390,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4170) + p.SetState(4168) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -55402,11 +55398,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4171) + p.SetState(4169) p.Name() } { - p.SetState(4172) + p.SetState(4170) p.Match(PostgreSQLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -55414,11 +55410,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4173) + p.SetState(4171) p.Triggerevents() } { - p.SetState(4174) + p.SetState(4172) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -55426,10 +55422,10 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4175) + p.SetState(4173) p.Qualified_name() } - p.SetState(4177) + p.SetState(4175) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55438,17 +55434,17 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserFROM { { - p.SetState(4176) + p.SetState(4174) p.Optconstrfromtable() } } { - p.SetState(4179) + p.SetState(4177) p.Constraintattributespec() } { - p.SetState(4180) + p.SetState(4178) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -55456,7 +55452,7 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4181) + p.SetState(4179) p.Match(PostgreSQLParserEACH) if p.HasError() { // Recognition error - abort rule @@ -55464,14 +55460,14 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4182) + p.SetState(4180) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4184) + p.SetState(4182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55480,13 +55476,13 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(4183) + p.SetState(4181) p.Triggerwhen() } } { - p.SetState(4186) + p.SetState(4184) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -55494,15 +55490,15 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4187) + p.SetState(4185) p.Function_or_procedure() } { - p.SetState(4188) + p.SetState(4186) p.Func_name() } { - p.SetState(4189) + p.SetState(4187) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55510,11 +55506,11 @@ func (p *PostgreSQLParser) Createtrigstmt() (localctx ICreatetrigstmtContext) { } } { - p.SetState(4190) + p.SetState(4188) p.Triggerfuncargs() } { - p.SetState(4191) + p.SetState(4189) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -55637,7 +55633,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(4199) + p.SetState(4197) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55647,7 +55643,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte case PostgreSQLParserBEFORE: p.EnterOuterAlt(localctx, 1) { - p.SetState(4195) + p.SetState(4193) p.Match(PostgreSQLParserBEFORE) if p.HasError() { // Recognition error - abort rule @@ -55658,7 +55654,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte case PostgreSQLParserAFTER: p.EnterOuterAlt(localctx, 2) { - p.SetState(4196) + p.SetState(4194) p.Match(PostgreSQLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -55669,7 +55665,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte case PostgreSQLParserINSTEAD: p.EnterOuterAlt(localctx, 3) { - p.SetState(4197) + p.SetState(4195) p.Match(PostgreSQLParserINSTEAD) if p.HasError() { // Recognition error - abort rule @@ -55677,7 +55673,7 @@ func (p *PostgreSQLParser) Triggeractiontime() (localctx ITriggeractiontimeConte } } { - p.SetState(4198) + p.SetState(4196) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -55838,10 +55834,10 @@ func (p *PostgreSQLParser) Triggerevents() (localctx ITriggereventsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4201) + p.SetState(4199) p.Triggeroneevent() } - p.SetState(4206) + p.SetState(4204) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -55850,7 +55846,7 @@ func (p *PostgreSQLParser) Triggerevents() (localctx ITriggereventsContext) { for _la == PostgreSQLParserOR { { - p.SetState(4202) + p.SetState(4200) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -55858,11 +55854,11 @@ func (p *PostgreSQLParser) Triggerevents() (localctx ITriggereventsContext) { } } { - p.SetState(4203) + p.SetState(4201) p.Triggeroneevent() } - p.SetState(4208) + p.SetState(4206) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56003,7 +55999,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(4216) + p.SetState(4214) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56013,7 +56009,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4209) + p.SetState(4207) p.Match(PostgreSQLParserINSERT) if p.HasError() { // Recognition error - abort rule @@ -56024,7 +56020,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4210) + p.SetState(4208) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -56035,7 +56031,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4211) + p.SetState(4209) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -56046,7 +56042,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4212) + p.SetState(4210) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -56054,7 +56050,7 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) } } { - p.SetState(4213) + p.SetState(4211) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -56062,14 +56058,14 @@ func (p *PostgreSQLParser) Triggeroneevent() (localctx ITriggeroneeventContext) } } { - p.SetState(4214) + p.SetState(4212) p.Columnlist() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4215) + p.SetState(4213) p.Match(PostgreSQLParserTRUNCATE) if p.HasError() { // Recognition error - abort rule @@ -56196,7 +56192,7 @@ func (p *PostgreSQLParser) Triggerreferencing() (localctx ITriggerreferencingCon p.EnterRule(localctx, 414, PostgreSQLParserRULE_triggerreferencing) p.EnterOuterAlt(localctx, 1) { - p.SetState(4218) + p.SetState(4216) p.Match(PostgreSQLParserREFERENCING) if p.HasError() { // Recognition error - abort rule @@ -56204,7 +56200,7 @@ func (p *PostgreSQLParser) Triggerreferencing() (localctx ITriggerreferencingCon } } { - p.SetState(4219) + p.SetState(4217) p.Triggertransitions() } @@ -56345,7 +56341,7 @@ func (p *PostgreSQLParser) Triggertransitions() (localctx ITriggertransitionsCon var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4222) + p.SetState(4220) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56354,11 +56350,11 @@ func (p *PostgreSQLParser) Triggertransitions() (localctx ITriggertransitionsCon for ok := true; ok; ok = _la == PostgreSQLParserNEW || _la == PostgreSQLParserOLD { { - p.SetState(4221) + p.SetState(4219) p.Triggertransition() } - p.SetState(4224) + p.SetState(4222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56529,14 +56525,14 @@ func (p *PostgreSQLParser) Triggertransition() (localctx ITriggertransitionConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4226) + p.SetState(4224) p.Transitionoldornew() } { - p.SetState(4227) + p.SetState(4225) p.Transitionrowortable() } - p.SetState(4229) + p.SetState(4227) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -56545,13 +56541,13 @@ func (p *PostgreSQLParser) Triggertransition() (localctx ITriggertransitionConte if _la == PostgreSQLParserAS { { - p.SetState(4228) + p.SetState(4226) p.Opt_as() } } { - p.SetState(4231) + p.SetState(4229) p.Transitionrelname() } @@ -56660,7 +56656,7 @@ func (p *PostgreSQLParser) Transitionoldornew() (localctx ITransitionoldornewCon p.EnterOuterAlt(localctx, 1) { - p.SetState(4233) + p.SetState(4231) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserNEW || _la == PostgreSQLParserOLD) { @@ -56776,7 +56772,7 @@ func (p *PostgreSQLParser) Transitionrowortable() (localctx ITransitionrowortabl p.EnterOuterAlt(localctx, 1) { - p.SetState(4235) + p.SetState(4233) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTABLE || _la == PostgreSQLParserROW) { @@ -56897,7 +56893,7 @@ func (p *PostgreSQLParser) Transitionrelname() (localctx ITransitionrelnameConte p.EnterRule(localctx, 424, PostgreSQLParserRULE_transitionrelname) p.EnterOuterAlt(localctx, 1) { - p.SetState(4237) + p.SetState(4235) p.Colid() } @@ -57035,14 +57031,14 @@ func (p *PostgreSQLParser) Triggerforspec() (localctx ITriggerforspecContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4239) + p.SetState(4237) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4241) + p.SetState(4239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57051,13 +57047,13 @@ func (p *PostgreSQLParser) Triggerforspec() (localctx ITriggerforspecContext) { if _la == PostgreSQLParserEACH { { - p.SetState(4240) + p.SetState(4238) p.Triggerforopteach() } } { - p.SetState(4243) + p.SetState(4241) p.Triggerfortype() } @@ -57159,7 +57155,7 @@ func (p *PostgreSQLParser) Triggerforopteach() (localctx ITriggerforopteachConte p.EnterRule(localctx, 428, PostgreSQLParserRULE_triggerforopteach) p.EnterOuterAlt(localctx, 1) { - p.SetState(4245) + p.SetState(4243) p.Match(PostgreSQLParserEACH) if p.HasError() { // Recognition error - abort rule @@ -57272,7 +57268,7 @@ func (p *PostgreSQLParser) Triggerfortype() (localctx ITriggerfortypeContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4247) + p.SetState(4245) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserSTATEMENT || _la == PostgreSQLParserROW) { @@ -57408,7 +57404,7 @@ func (p *PostgreSQLParser) Triggerwhen() (localctx ITriggerwhenContext) { p.EnterRule(localctx, 432, PostgreSQLParserRULE_triggerwhen) p.EnterOuterAlt(localctx, 1) { - p.SetState(4249) + p.SetState(4247) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -57416,7 +57412,7 @@ func (p *PostgreSQLParser) Triggerwhen() (localctx ITriggerwhenContext) { } } { - p.SetState(4250) + p.SetState(4248) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -57424,11 +57420,11 @@ func (p *PostgreSQLParser) Triggerwhen() (localctx ITriggerwhenContext) { } } { - p.SetState(4251) + p.SetState(4249) p.A_expr() } { - p.SetState(4252) + p.SetState(4250) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -57541,7 +57537,7 @@ func (p *PostgreSQLParser) Function_or_procedure() (localctx IFunction_or_proced p.EnterOuterAlt(localctx, 1) { - p.SetState(4254) + p.SetState(4252) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTION || _la == PostgreSQLParserPROCEDURE) { @@ -57699,7 +57695,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4258) + p.SetState(4256) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57708,7 +57704,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(4256) + p.SetState(4254) p.Triggerfuncarg() } @@ -57718,7 +57714,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(4264) + p.SetState(4262) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57727,7 +57723,7 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(4260) + p.SetState(4258) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -57735,11 +57731,11 @@ func (p *PostgreSQLParser) Triggerfuncargs() (localctx ITriggerfuncargsContext) } } { - p.SetState(4261) + p.SetState(4259) p.Triggerfuncarg() } - p.SetState(4266) + p.SetState(4264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57906,7 +57902,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(4271) + p.SetState(4269) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -57916,28 +57912,28 @@ func (p *PostgreSQLParser) Triggerfuncarg() (localctx ITriggerfuncargContext) { case PostgreSQLParserIntegral: p.EnterOuterAlt(localctx, 1) { - p.SetState(4267) + p.SetState(4265) p.Iconst() } case PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(4268) + p.SetState(4266) p.Fconst() } case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 3) { - p.SetState(4269) + p.SetState(4267) 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(4270) + p.SetState(4268) p.Collabel() } @@ -58061,7 +58057,7 @@ func (p *PostgreSQLParser) Optconstrfromtable() (localctx IOptconstrfromtableCon p.EnterRule(localctx, 440, PostgreSQLParserRULE_optconstrfromtable) p.EnterOuterAlt(localctx, 1) { - p.SetState(4273) + p.SetState(4271) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -58069,7 +58065,7 @@ func (p *PostgreSQLParser) Optconstrfromtable() (localctx IOptconstrfromtableCon } } { - p.SetState(4274) + p.SetState(4272) p.Qualified_name() } @@ -58210,7 +58206,7 @@ func (p *PostgreSQLParser) Constraintattributespec() (localctx IConstraintattrib var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(4279) + p.SetState(4277) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58219,11 +58215,11 @@ func (p *PostgreSQLParser) Constraintattributespec() (localctx IConstraintattrib for ((int64((_la-54)) & ^0x3f) == 0 && ((int64(1)<<(_la-54))&8421377) != 0) || _la == PostgreSQLParserNO { { - p.SetState(4276) + p.SetState(4274) p.ConstraintattributeElem() } - p.SetState(4281) + p.SetState(4279) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58362,7 +58358,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(4293) + p.SetState(4291) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58372,7 +58368,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4282) + p.SetState(4280) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -58380,7 +58376,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4283) + p.SetState(4281) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -58391,7 +58387,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4284) + p.SetState(4282) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -58402,7 +58398,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4285) + p.SetState(4283) p.Match(PostgreSQLParserINITIALLY) if p.HasError() { // Recognition error - abort rule @@ -58410,7 +58406,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4286) + p.SetState(4284) p.Match(PostgreSQLParserIMMEDIATE) if p.HasError() { // Recognition error - abort rule @@ -58421,7 +58417,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4287) + p.SetState(4285) p.Match(PostgreSQLParserINITIALLY) if p.HasError() { // Recognition error - abort rule @@ -58429,7 +58425,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4288) + p.SetState(4286) p.Match(PostgreSQLParserDEFERRED) if p.HasError() { // Recognition error - abort rule @@ -58440,7 +58436,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4289) + p.SetState(4287) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -58448,7 +58444,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4290) + p.SetState(4288) p.Match(PostgreSQLParserVALID) if p.HasError() { // Recognition error - abort rule @@ -58459,7 +58455,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4291) + p.SetState(4289) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -58467,7 +58463,7 @@ func (p *PostgreSQLParser) ConstraintattributeElem() (localctx IConstraintattrib } } { - p.SetState(4292) + p.SetState(4290) p.Match(PostgreSQLParserINHERIT) if p.HasError() { // Recognition error - abort rule @@ -58695,7 +58691,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(4321) + p.SetState(4319) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -58705,7 +58701,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4295) + p.SetState(4293) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -58713,7 +58709,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4296) + p.SetState(4294) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -58721,7 +58717,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4297) + p.SetState(4295) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -58729,11 +58725,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4298) + p.SetState(4296) p.Name() } { - p.SetState(4299) + p.SetState(4297) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -58741,11 +58737,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4300) + p.SetState(4298) p.Collabel() } { - p.SetState(4301) + p.SetState(4299) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -58753,15 +58749,15 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4302) + p.SetState(4300) p.Function_or_procedure() } { - p.SetState(4303) + p.SetState(4301) p.Func_name() } { - p.SetState(4304) + p.SetState(4302) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -58769,7 +58765,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4305) + p.SetState(4303) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -58780,7 +58776,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4307) + p.SetState(4305) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -58788,7 +58784,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4308) + p.SetState(4306) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -58796,7 +58792,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4309) + p.SetState(4307) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -58804,11 +58800,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4310) + p.SetState(4308) p.Name() } { - p.SetState(4311) + p.SetState(4309) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -58816,11 +58812,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4312) + p.SetState(4310) p.Collabel() } { - p.SetState(4313) + p.SetState(4311) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -58828,11 +58824,11 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4314) + p.SetState(4312) p.Event_trigger_when_list() } { - p.SetState(4315) + p.SetState(4313) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -58840,15 +58836,15 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4316) + p.SetState(4314) p.Function_or_procedure() } { - p.SetState(4317) + p.SetState(4315) p.Func_name() } { - p.SetState(4318) + p.SetState(4316) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -58856,7 +58852,7 @@ func (p *PostgreSQLParser) Createeventtrigstmt() (localctx ICreateeventtrigstmtC } } { - p.SetState(4319) + p.SetState(4317) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59016,10 +59012,10 @@ func (p *PostgreSQLParser) Event_trigger_when_list() (localctx IEvent_trigger_wh p.EnterOuterAlt(localctx, 1) { - p.SetState(4323) + p.SetState(4321) p.Event_trigger_when_item() } - p.SetState(4328) + p.SetState(4326) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59028,7 +59024,7 @@ func (p *PostgreSQLParser) Event_trigger_when_list() (localctx IEvent_trigger_wh for _la == PostgreSQLParserAND { { - p.SetState(4324) + p.SetState(4322) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -59036,11 +59032,11 @@ func (p *PostgreSQLParser) Event_trigger_when_list() (localctx IEvent_trigger_wh } } { - p.SetState(4325) + p.SetState(4323) p.Event_trigger_when_item() } - p.SetState(4330) + p.SetState(4328) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59190,11 +59186,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(4331) + p.SetState(4329) p.Colid() } { - p.SetState(4332) + p.SetState(4330) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -59202,7 +59198,7 @@ func (p *PostgreSQLParser) Event_trigger_when_item() (localctx IEvent_trigger_wh } } { - p.SetState(4333) + p.SetState(4331) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59210,11 +59206,11 @@ func (p *PostgreSQLParser) Event_trigger_when_item() (localctx IEvent_trigger_wh } } { - p.SetState(4334) + p.SetState(4332) p.Event_trigger_value_list() } { - p.SetState(4335) + p.SetState(4333) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59370,10 +59366,10 @@ func (p *PostgreSQLParser) Event_trigger_value_list() (localctx IEvent_trigger_v p.EnterOuterAlt(localctx, 1) { - p.SetState(4337) + p.SetState(4335) p.Sconst() } - p.SetState(4342) + p.SetState(4340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59382,7 +59378,7 @@ func (p *PostgreSQLParser) Event_trigger_value_list() (localctx IEvent_trigger_v for _la == PostgreSQLParserCOMMA { { - p.SetState(4338) + p.SetState(4336) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -59390,11 +59386,11 @@ func (p *PostgreSQLParser) Event_trigger_value_list() (localctx IEvent_trigger_v } } { - p.SetState(4339) + p.SetState(4337) p.Sconst() } - p.SetState(4344) + p.SetState(4342) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59544,7 +59540,7 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon p.EnterRule(localctx, 454, PostgreSQLParserRULE_altereventtrigstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4345) + p.SetState(4343) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -59552,7 +59548,7 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon } } { - p.SetState(4346) + p.SetState(4344) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -59560,7 +59556,7 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon } } { - p.SetState(4347) + p.SetState(4345) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -59568,11 +59564,11 @@ func (p *PostgreSQLParser) Altereventtrigstmt() (localctx IAltereventtrigstmtCon } } { - p.SetState(4348) + p.SetState(4346) p.Name() } { - p.SetState(4349) + p.SetState(4347) p.Enable_trigger() } @@ -59687,7 +59683,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(4357) + p.SetState(4355) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -59697,7 +59693,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4351) + p.SetState(4349) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59708,7 +59704,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4352) + p.SetState(4350) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59716,7 +59712,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { } } { - p.SetState(4353) + p.SetState(4351) p.Match(PostgreSQLParserREPLICA) if p.HasError() { // Recognition error - abort rule @@ -59727,7 +59723,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4354) + p.SetState(4352) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59735,7 +59731,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { } } { - p.SetState(4355) + p.SetState(4353) p.Match(PostgreSQLParserALWAYS) if p.HasError() { // Recognition error - abort rule @@ -59746,7 +59742,7 @@ func (p *PostgreSQLParser) Enable_trigger() (localctx IEnable_triggerContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4356) + p.SetState(4354) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -59927,7 +59923,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC p.EnterRule(localctx, 458, PostgreSQLParserRULE_createassertionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4359) + p.SetState(4357) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -59935,7 +59931,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4360) + p.SetState(4358) p.Match(PostgreSQLParserASSERTION) if p.HasError() { // Recognition error - abort rule @@ -59943,11 +59939,11 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4361) + p.SetState(4359) p.Any_name() } { - p.SetState(4362) + p.SetState(4360) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -59955,7 +59951,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4363) + p.SetState(4361) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59963,11 +59959,11 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4364) + p.SetState(4362) p.A_expr() } { - p.SetState(4365) + p.SetState(4363) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -59975,7 +59971,7 @@ func (p *PostgreSQLParser) Createassertionstmt() (localctx ICreateassertionstmtC } } { - p.SetState(4366) + p.SetState(4364) p.Constraintattributespec() } @@ -60351,7 +60347,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { p.EnterRule(localctx, 460, PostgreSQLParserRULE_definestmt) var _la int - p.SetState(4482) + p.SetState(4480) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60361,14 +60357,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4368) + p.SetState(4366) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4370) + p.SetState(4368) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60377,13 +60373,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(4369) + p.SetState(4367) p.Opt_or_replace() } } { - p.SetState(4372) + p.SetState(4370) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -60391,29 +60387,29 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4373) + p.SetState(4371) p.Func_name() } { - p.SetState(4374) + p.SetState(4372) p.Aggr_args() } { - p.SetState(4375) + p.SetState(4373) p.Definition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4377) + p.SetState(4375) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4379) + p.SetState(4377) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60422,13 +60418,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(4378) + p.SetState(4376) p.Opt_or_replace() } } { - p.SetState(4381) + p.SetState(4379) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -60436,18 +60432,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4382) + p.SetState(4380) p.Func_name() } { - p.SetState(4383) + p.SetState(4381) p.Old_aggr_definition() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4385) + p.SetState(4383) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60455,7 +60451,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4386) + p.SetState(4384) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -60463,18 +60459,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4387) + p.SetState(4385) p.Any_operator() } { - p.SetState(4388) + p.SetState(4386) p.Definition() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4390) + p.SetState(4388) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60482,7 +60478,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4391) + p.SetState(4389) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60490,18 +60486,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4392) + p.SetState(4390) p.Any_name() } { - p.SetState(4393) + p.SetState(4391) p.Definition() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4395) + p.SetState(4393) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60509,7 +60505,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4396) + p.SetState(4394) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60517,14 +60513,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4397) + p.SetState(4395) p.Any_name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4398) + p.SetState(4396) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60532,7 +60528,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4399) + p.SetState(4397) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60540,11 +60536,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4400) + p.SetState(4398) p.Any_name() } { - p.SetState(4401) + p.SetState(4399) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -60552,14 +60548,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4402) + p.SetState(4400) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4404) + p.SetState(4402) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60568,13 +60564,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(4403) + p.SetState(4401) p.Opttablefuncelementlist() } } { - p.SetState(4406) + p.SetState(4404) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -60585,7 +60581,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4408) + p.SetState(4406) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60593,7 +60589,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4409) + p.SetState(4407) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60601,11 +60597,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4410) + p.SetState(4408) p.Any_name() } { - p.SetState(4411) + p.SetState(4409) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -60613,7 +60609,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4412) + p.SetState(4410) p.Match(PostgreSQLParserENUM_P) if p.HasError() { // Recognition error - abort rule @@ -60621,14 +60617,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4413) + p.SetState(4411) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4415) + p.SetState(4413) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -60637,13 +60633,13 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { if (int64((_la-673)) & ^0x3f) == 0 && ((int64(1)<<(_la-673))&67108885) != 0 { { - p.SetState(4414) + p.SetState(4412) p.Opt_enum_val_list() } } { - p.SetState(4417) + p.SetState(4415) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -60654,7 +60650,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4419) + p.SetState(4417) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60662,7 +60658,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4420) + p.SetState(4418) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -60670,11 +60666,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4421) + p.SetState(4419) p.Any_name() } { - p.SetState(4422) + p.SetState(4420) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -60682,7 +60678,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4423) + p.SetState(4421) p.Match(PostgreSQLParserRANGE) if p.HasError() { // Recognition error - abort rule @@ -60690,14 +60686,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4424) + p.SetState(4422) p.Definition() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4426) + p.SetState(4424) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60705,7 +60701,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4427) + p.SetState(4425) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60713,7 +60709,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4428) + p.SetState(4426) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60721,7 +60717,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4429) + p.SetState(4427) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -60729,18 +60725,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4430) + p.SetState(4428) p.Any_name() } { - p.SetState(4431) + p.SetState(4429) p.Definition() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4433) + p.SetState(4431) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60748,7 +60744,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4434) + p.SetState(4432) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60756,7 +60752,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4435) + p.SetState(4433) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60764,7 +60760,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4436) + p.SetState(4434) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -60772,18 +60768,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4437) + p.SetState(4435) p.Any_name() } { - p.SetState(4438) + p.SetState(4436) p.Definition() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4440) + p.SetState(4438) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60791,7 +60787,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4441) + p.SetState(4439) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60799,7 +60795,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4442) + p.SetState(4440) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60807,7 +60803,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4443) + p.SetState(4441) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -60815,18 +60811,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4444) + p.SetState(4442) p.Any_name() } { - p.SetState(4445) + p.SetState(4443) p.Definition() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4447) + p.SetState(4445) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60834,7 +60830,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4448) + p.SetState(4446) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -60842,7 +60838,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4449) + p.SetState(4447) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -60850,7 +60846,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4450) + p.SetState(4448) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -60858,18 +60854,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4451) + p.SetState(4449) p.Any_name() } { - p.SetState(4452) + p.SetState(4450) p.Definition() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(4454) + p.SetState(4452) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60877,7 +60873,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4455) + p.SetState(4453) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60885,18 +60881,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4456) + p.SetState(4454) p.Any_name() } { - p.SetState(4457) + p.SetState(4455) p.Definition() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(4459) + p.SetState(4457) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60904,7 +60900,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4460) + p.SetState(4458) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60912,7 +60908,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4461) + p.SetState(4459) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -60920,7 +60916,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4462) + p.SetState(4460) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -60928,7 +60924,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4463) + p.SetState(4461) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -60936,18 +60932,18 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4464) + p.SetState(4462) p.Any_name() } { - p.SetState(4465) + p.SetState(4463) p.Definition() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(4467) + p.SetState(4465) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60955,7 +60951,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4468) + p.SetState(4466) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60963,11 +60959,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4469) + p.SetState(4467) p.Any_name() } { - p.SetState(4470) + p.SetState(4468) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -60975,14 +60971,14 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4471) + p.SetState(4469) p.Any_name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(4473) + p.SetState(4471) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -60990,7 +60986,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4474) + p.SetState(4472) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -60998,7 +60994,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4475) + p.SetState(4473) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -61006,7 +61002,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4476) + p.SetState(4474) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -61014,7 +61010,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4477) + p.SetState(4475) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -61022,11 +61018,11 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4478) + p.SetState(4476) p.Any_name() } { - p.SetState(4479) + p.SetState(4477) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -61034,7 +61030,7 @@ func (p *PostgreSQLParser) Definestmt() (localctx IDefinestmtContext) { } } { - p.SetState(4480) + p.SetState(4478) p.Any_name() } @@ -61162,7 +61158,7 @@ func (p *PostgreSQLParser) Definition() (localctx IDefinitionContext) { p.EnterRule(localctx, 462, PostgreSQLParserRULE_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(4484) + p.SetState(4482) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -61170,11 +61166,11 @@ func (p *PostgreSQLParser) Definition() (localctx IDefinitionContext) { } } { - p.SetState(4485) + p.SetState(4483) p.Def_list() } { - p.SetState(4486) + p.SetState(4484) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -61330,10 +61326,10 @@ func (p *PostgreSQLParser) Def_list() (localctx IDef_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4488) + p.SetState(4486) p.Def_elem() } - p.SetState(4493) + p.SetState(4491) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61342,7 +61338,7 @@ func (p *PostgreSQLParser) Def_list() (localctx IDef_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4489) + p.SetState(4487) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -61350,11 +61346,11 @@ func (p *PostgreSQLParser) Def_list() (localctx IDef_listContext) { } } { - p.SetState(4490) + p.SetState(4488) p.Def_elem() } - p.SetState(4495) + p.SetState(4493) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61496,10 +61492,10 @@ func (p *PostgreSQLParser) Def_elem() (localctx IDef_elemContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4496) + p.SetState(4494) p.Collabel() } - p.SetState(4499) + p.SetState(4497) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61508,7 +61504,7 @@ func (p *PostgreSQLParser) Def_elem() (localctx IDef_elemContext) { if _la == PostgreSQLParserEQUAL { { - p.SetState(4497) + p.SetState(4495) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -61516,7 +61512,7 @@ func (p *PostgreSQLParser) Def_elem() (localctx IDef_elemContext) { } } { - p.SetState(4498) + p.SetState(4496) p.Def_arg() } @@ -61703,7 +61699,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(4507) + p.SetState(4505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -61713,42 +61709,42 @@ func (p *PostgreSQLParser) Def_arg() (localctx IDef_argContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4501) + p.SetState(4499) p.Func_type() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4502) + p.SetState(4500) p.Reserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4503) + p.SetState(4501) p.Qual_all_op() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4504) + p.SetState(4502) p.Numericonly() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4505) + p.SetState(4503) p.Sconst() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4506) + p.SetState(4504) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -61880,7 +61876,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(4509) + p.SetState(4507) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -61888,11 +61884,11 @@ func (p *PostgreSQLParser) Old_aggr_definition() (localctx IOld_aggr_definitionC } } { - p.SetState(4510) + p.SetState(4508) p.Old_aggr_list() } { - p.SetState(4511) + p.SetState(4509) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -62048,10 +62044,10 @@ func (p *PostgreSQLParser) Old_aggr_list() (localctx IOld_aggr_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4513) + p.SetState(4511) p.Old_aggr_elem() } - p.SetState(4518) + p.SetState(4516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62060,7 +62056,7 @@ func (p *PostgreSQLParser) Old_aggr_list() (localctx IOld_aggr_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4514) + p.SetState(4512) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -62068,11 +62064,11 @@ func (p *PostgreSQLParser) Old_aggr_list() (localctx IOld_aggr_listContext) { } } { - p.SetState(4515) + p.SetState(4513) p.Old_aggr_elem() } - p.SetState(4520) + p.SetState(4518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62212,11 +62208,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(4521) + p.SetState(4519) p.Identifier() } { - p.SetState(4522) + p.SetState(4520) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -62224,7 +62220,7 @@ func (p *PostgreSQLParser) Old_aggr_elem() (localctx IOld_aggr_elemContext) { } } { - p.SetState(4523) + p.SetState(4521) p.Def_arg() } @@ -62338,7 +62334,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(4525) + p.SetState(4523) p.Enum_val_list() } @@ -62490,10 +62486,10 @@ func (p *PostgreSQLParser) Enum_val_list() (localctx IEnum_val_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4527) + p.SetState(4525) p.Sconst() } - p.SetState(4532) + p.SetState(4530) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62502,7 +62498,7 @@ func (p *PostgreSQLParser) Enum_val_list() (localctx IEnum_val_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4528) + p.SetState(4526) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -62510,11 +62506,11 @@ func (p *PostgreSQLParser) Enum_val_list() (localctx IEnum_val_listContext) { } } { - p.SetState(4529) + p.SetState(4527) p.Sconst() } - p.SetState(4534) + p.SetState(4532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62732,7 +62728,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { p.EnterRule(localctx, 480, PostgreSQLParserRULE_alterenumstmt) var _la int - p.SetState(4578) + p.SetState(4576) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62742,7 +62738,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4535) + p.SetState(4533) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62750,7 +62746,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4536) + p.SetState(4534) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62758,11 +62754,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4537) + p.SetState(4535) p.Any_name() } { - p.SetState(4538) + p.SetState(4536) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -62770,14 +62766,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4539) + p.SetState(4537) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4541) + p.SetState(4539) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62786,20 +62782,20 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(4540) + p.SetState(4538) p.Opt_if_not_exists() } } { - p.SetState(4543) + p.SetState(4541) p.Sconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4545) + p.SetState(4543) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62807,7 +62803,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4546) + p.SetState(4544) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62815,11 +62811,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4547) + p.SetState(4545) p.Any_name() } { - p.SetState(4548) + p.SetState(4546) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -62827,14 +62823,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4549) + p.SetState(4547) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4551) + p.SetState(4549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62843,17 +62839,17 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(4550) + p.SetState(4548) p.Opt_if_not_exists() } } { - p.SetState(4553) + p.SetState(4551) p.Sconst() } { - p.SetState(4554) + p.SetState(4552) p.Match(PostgreSQLParserBEFORE) if p.HasError() { // Recognition error - abort rule @@ -62861,14 +62857,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4555) + p.SetState(4553) p.Sconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4557) + p.SetState(4555) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62876,7 +62872,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4558) + p.SetState(4556) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62884,11 +62880,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4559) + p.SetState(4557) p.Any_name() } { - p.SetState(4560) + p.SetState(4558) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -62896,14 +62892,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4561) + p.SetState(4559) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4563) + p.SetState(4561) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -62912,17 +62908,17 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(4562) + p.SetState(4560) p.Opt_if_not_exists() } } { - p.SetState(4565) + p.SetState(4563) p.Sconst() } { - p.SetState(4566) + p.SetState(4564) p.Match(PostgreSQLParserAFTER) if p.HasError() { // Recognition error - abort rule @@ -62930,14 +62926,14 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4567) + p.SetState(4565) p.Sconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4569) + p.SetState(4567) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -62945,7 +62941,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4570) + p.SetState(4568) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -62953,11 +62949,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4571) + p.SetState(4569) p.Any_name() } { - p.SetState(4572) + p.SetState(4570) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -62965,7 +62961,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4573) + p.SetState(4571) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -62973,11 +62969,11 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4574) + p.SetState(4572) p.Sconst() } { - p.SetState(4575) + p.SetState(4573) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -62985,7 +62981,7 @@ func (p *PostgreSQLParser) Alterenumstmt() (localctx IAlterenumstmtContext) { } } { - p.SetState(4576) + p.SetState(4574) p.Sconst() } @@ -63101,7 +63097,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(4580) + p.SetState(4578) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -63109,7 +63105,7 @@ func (p *PostgreSQLParser) Opt_if_not_exists() (localctx IOpt_if_not_existsConte } } { - p.SetState(4581) + p.SetState(4579) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -63117,7 +63113,7 @@ func (p *PostgreSQLParser) Opt_if_not_exists() (localctx IOpt_if_not_existsConte } } { - p.SetState(4582) + p.SetState(4580) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -63357,7 +63353,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4584) + p.SetState(4582) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -63365,7 +63361,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4585) + p.SetState(4583) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -63373,7 +63369,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4586) + p.SetState(4584) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -63381,10 +63377,10 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4587) + p.SetState(4585) p.Any_name() } - p.SetState(4589) + p.SetState(4587) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63393,13 +63389,13 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte if _la == PostgreSQLParserDEFAULT { { - p.SetState(4588) + p.SetState(4586) p.Opt_default() } } { - p.SetState(4591) + p.SetState(4589) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -63407,7 +63403,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4592) + p.SetState(4590) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -63415,11 +63411,11 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4593) + p.SetState(4591) p.Typename() } { - p.SetState(4594) + p.SetState(4592) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -63427,10 +63423,10 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4595) + p.SetState(4593) p.Name() } - p.SetState(4597) + p.SetState(4595) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63439,13 +63435,13 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte if _la == PostgreSQLParserFAMILY { { - p.SetState(4596) + p.SetState(4594) p.Opt_opfamily() } } { - p.SetState(4599) + p.SetState(4597) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -63453,7 +63449,7 @@ func (p *PostgreSQLParser) Createopclassstmt() (localctx ICreateopclassstmtConte } } { - p.SetState(4600) + p.SetState(4598) p.Opclass_item_list() } @@ -63605,10 +63601,10 @@ func (p *PostgreSQLParser) Opclass_item_list() (localctx IOpclass_item_listConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4602) + p.SetState(4600) p.Opclass_item() } - p.SetState(4607) + p.SetState(4605) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63617,7 +63613,7 @@ func (p *PostgreSQLParser) Opclass_item_list() (localctx IOpclass_item_listConte for _la == PostgreSQLParserCOMMA { { - p.SetState(4603) + p.SetState(4601) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -63625,11 +63621,11 @@ func (p *PostgreSQLParser) Opclass_item_list() (localctx IOpclass_item_listConte } } { - p.SetState(4604) + p.SetState(4602) p.Opclass_item() } - p.SetState(4609) + p.SetState(4607) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63891,7 +63887,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { p.EnterRule(localctx, 488, PostgreSQLParserRULE_opclass_item) var _la int - p.SetState(4641) + p.SetState(4639) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63901,7 +63897,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4610) + p.SetState(4608) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -63909,14 +63905,14 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4611) + p.SetState(4609) p.Iconst() } { - p.SetState(4612) + p.SetState(4610) p.Any_operator() } - p.SetState(4614) + p.SetState(4612) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63925,12 +63921,12 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserFOR { { - p.SetState(4613) + p.SetState(4611) p.Opclass_purpose() } } - p.SetState(4617) + p.SetState(4615) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63939,7 +63935,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserRECHECK { { - p.SetState(4616) + p.SetState(4614) p.Opt_recheck() } @@ -63948,7 +63944,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4619) + p.SetState(4617) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -63956,14 +63952,14 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4620) + p.SetState(4618) p.Iconst() } { - p.SetState(4621) + p.SetState(4619) p.Operator_with_argtypes() } - p.SetState(4623) + p.SetState(4621) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63972,12 +63968,12 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserFOR { { - p.SetState(4622) + p.SetState(4620) p.Opclass_purpose() } } - p.SetState(4626) + p.SetState(4624) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -63986,7 +63982,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { if _la == PostgreSQLParserRECHECK { { - p.SetState(4625) + p.SetState(4623) p.Opt_recheck() } @@ -63995,7 +63991,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4628) + p.SetState(4626) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -64003,18 +63999,18 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4629) + p.SetState(4627) p.Iconst() } { - p.SetState(4630) + p.SetState(4628) p.Function_with_argtypes() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4632) + p.SetState(4630) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -64022,11 +64018,11 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4633) + p.SetState(4631) p.Iconst() } { - p.SetState(4634) + p.SetState(4632) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -64034,11 +64030,11 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4635) + p.SetState(4633) p.Type_list() } { - p.SetState(4636) + p.SetState(4634) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -64046,14 +64042,14 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4637) + p.SetState(4635) p.Function_with_argtypes() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4639) + p.SetState(4637) p.Match(PostgreSQLParserSTORAGE) if p.HasError() { // Recognition error - abort rule @@ -64061,7 +64057,7 @@ func (p *PostgreSQLParser) Opclass_item() (localctx IOpclass_itemContext) { } } { - p.SetState(4640) + p.SetState(4638) p.Typename() } @@ -64167,7 +64163,7 @@ func (p *PostgreSQLParser) Opt_default() (localctx IOpt_defaultContext) { p.EnterRule(localctx, 490, PostgreSQLParserRULE_opt_default) p.EnterOuterAlt(localctx, 1) { - p.SetState(4643) + p.SetState(4641) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -64290,7 +64286,7 @@ func (p *PostgreSQLParser) Opt_opfamily() (localctx IOpt_opfamilyContext) { p.EnterRule(localctx, 492, PostgreSQLParserRULE_opt_opfamily) p.EnterOuterAlt(localctx, 1) { - p.SetState(4645) + p.SetState(4643) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -64298,7 +64294,7 @@ func (p *PostgreSQLParser) Opt_opfamily() (localctx IOpt_opfamilyContext) { } } { - p.SetState(4646) + p.SetState(4644) p.Any_name() } @@ -64430,7 +64426,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(4654) + p.SetState(4652) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64440,7 +64436,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4648) + p.SetState(4646) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -64448,7 +64444,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4649) + p.SetState(4647) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -64459,7 +64455,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4650) + p.SetState(4648) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -64467,7 +64463,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4651) + p.SetState(4649) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -64475,7 +64471,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4652) + p.SetState(4650) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -64483,7 +64479,7 @@ func (p *PostgreSQLParser) Opclass_purpose() (localctx IOpclass_purposeContext) } } { - p.SetState(4653) + p.SetState(4651) p.Any_name() } @@ -64589,7 +64585,7 @@ func (p *PostgreSQLParser) Opt_recheck() (localctx IOpt_recheckContext) { p.EnterRule(localctx, 496, PostgreSQLParserRULE_opt_recheck) p.EnterOuterAlt(localctx, 1) { - p.SetState(4656) + p.SetState(4654) p.Match(PostgreSQLParserRECHECK) if p.HasError() { // Recognition error - abort rule @@ -64744,7 +64740,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon p.EnterRule(localctx, 498, PostgreSQLParserRULE_createopfamilystmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4658) + p.SetState(4656) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -64752,7 +64748,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4659) + p.SetState(4657) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -64760,7 +64756,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4660) + p.SetState(4658) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -64768,11 +64764,11 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4661) + p.SetState(4659) p.Any_name() } { - p.SetState(4662) + p.SetState(4660) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -64780,7 +64776,7 @@ func (p *PostgreSQLParser) Createopfamilystmt() (localctx ICreateopfamilystmtCon } } { - p.SetState(4663) + p.SetState(4661) p.Name() } @@ -64973,7 +64969,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(4683) + p.SetState(4681) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -64983,7 +64979,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4665) + p.SetState(4663) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -64991,7 +64987,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4666) + p.SetState(4664) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -64999,7 +64995,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4667) + p.SetState(4665) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -65007,11 +65003,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4668) + p.SetState(4666) p.Any_name() } { - p.SetState(4669) + p.SetState(4667) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65019,11 +65015,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4670) + p.SetState(4668) p.Name() } { - p.SetState(4671) + p.SetState(4669) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -65031,14 +65027,14 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4672) + p.SetState(4670) p.Opclass_item_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4674) + p.SetState(4672) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -65046,7 +65042,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4675) + p.SetState(4673) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65054,7 +65050,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4676) + p.SetState(4674) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -65062,11 +65058,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4677) + p.SetState(4675) p.Any_name() } { - p.SetState(4678) + p.SetState(4676) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65074,11 +65070,11 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4679) + p.SetState(4677) p.Name() } { - p.SetState(4680) + p.SetState(4678) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -65086,7 +65082,7 @@ func (p *PostgreSQLParser) Alteropfamilystmt() (localctx IAlteropfamilystmtConte } } { - p.SetState(4681) + p.SetState(4679) p.Opclass_drop_list() } @@ -65242,10 +65238,10 @@ func (p *PostgreSQLParser) Opclass_drop_list() (localctx IOpclass_drop_listConte p.EnterOuterAlt(localctx, 1) { - p.SetState(4685) + p.SetState(4683) p.Opclass_drop() } - p.SetState(4690) + p.SetState(4688) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65254,7 +65250,7 @@ func (p *PostgreSQLParser) Opclass_drop_list() (localctx IOpclass_drop_listConte for _la == PostgreSQLParserCOMMA { { - p.SetState(4686) + p.SetState(4684) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -65262,11 +65258,11 @@ func (p *PostgreSQLParser) Opclass_drop_list() (localctx IOpclass_drop_listConte } } { - p.SetState(4687) + p.SetState(4685) p.Opclass_drop() } - p.SetState(4692) + p.SetState(4690) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65419,7 +65415,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(4705) + p.SetState(4703) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65429,7 +65425,7 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { case PostgreSQLParserOPERATOR: p.EnterOuterAlt(localctx, 1) { - p.SetState(4693) + p.SetState(4691) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65437,11 +65433,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4694) + p.SetState(4692) p.Iconst() } { - p.SetState(4695) + p.SetState(4693) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65449,11 +65445,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4696) + p.SetState(4694) p.Type_list() } { - p.SetState(4697) + p.SetState(4695) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65464,7 +65460,7 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { case PostgreSQLParserFUNCTION: p.EnterOuterAlt(localctx, 2) { - p.SetState(4699) + p.SetState(4697) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -65472,11 +65468,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4700) + p.SetState(4698) p.Iconst() } { - p.SetState(4701) + p.SetState(4699) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65484,11 +65480,11 @@ func (p *PostgreSQLParser) Opclass_drop() (localctx IOpclass_dropContext) { } } { - p.SetState(4702) + p.SetState(4700) p.Type_list() } { - p.SetState(4703) + p.SetState(4701) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -65675,7 +65671,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) p.EnterRule(localctx, 506, PostgreSQLParserRULE_dropopclassstmt) var _la int - p.SetState(4727) + p.SetState(4725) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65685,7 +65681,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4707) + p.SetState(4705) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -65693,7 +65689,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4708) + p.SetState(4706) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65701,7 +65697,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4709) + p.SetState(4707) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -65709,11 +65705,11 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4710) + p.SetState(4708) p.Any_name() } { - p.SetState(4711) + p.SetState(4709) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65721,10 +65717,10 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4712) + p.SetState(4710) p.Name() } - p.SetState(4714) + p.SetState(4712) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65733,7 +65729,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4713) + p.SetState(4711) p.Opt_drop_behavior() } @@ -65742,7 +65738,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4716) + p.SetState(4714) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -65750,7 +65746,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4717) + p.SetState(4715) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -65758,7 +65754,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4718) + p.SetState(4716) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -65766,7 +65762,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4719) + p.SetState(4717) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -65774,7 +65770,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4720) + p.SetState(4718) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -65782,11 +65778,11 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4721) + p.SetState(4719) p.Any_name() } { - p.SetState(4722) + p.SetState(4720) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -65794,10 +65790,10 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) } } { - p.SetState(4723) + p.SetState(4721) p.Name() } - p.SetState(4725) + p.SetState(4723) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -65806,7 +65802,7 @@ func (p *PostgreSQLParser) Dropopclassstmt() (localctx IDropopclassstmtContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4724) + p.SetState(4722) p.Opt_drop_behavior() } @@ -65990,7 +65986,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext p.EnterRule(localctx, 508, PostgreSQLParserRULE_dropopfamilystmt) var _la int - p.SetState(4749) + p.SetState(4747) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66000,7 +65996,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4729) + p.SetState(4727) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66008,7 +66004,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4730) + p.SetState(4728) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -66016,7 +66012,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4731) + p.SetState(4729) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -66024,11 +66020,11 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4732) + p.SetState(4730) p.Any_name() } { - p.SetState(4733) + p.SetState(4731) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -66036,10 +66032,10 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4734) + p.SetState(4732) p.Name() } - p.SetState(4736) + p.SetState(4734) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66048,7 +66044,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4735) + p.SetState(4733) p.Opt_drop_behavior() } @@ -66057,7 +66053,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4738) + p.SetState(4736) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66065,7 +66061,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4739) + p.SetState(4737) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -66073,7 +66069,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4740) + p.SetState(4738) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -66081,7 +66077,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4741) + p.SetState(4739) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -66089,7 +66085,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4742) + p.SetState(4740) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -66097,11 +66093,11 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4743) + p.SetState(4741) p.Any_name() } { - p.SetState(4744) + p.SetState(4742) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -66109,10 +66105,10 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext } } { - p.SetState(4745) + p.SetState(4743) p.Name() } - p.SetState(4747) + p.SetState(4745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66121,7 +66117,7 @@ func (p *PostgreSQLParser) Dropopfamilystmt() (localctx IDropopfamilystmtContext if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4746) + p.SetState(4744) p.Opt_drop_behavior() } @@ -66275,7 +66271,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4751) + p.SetState(4749) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66283,7 +66279,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { } } { - p.SetState(4752) + p.SetState(4750) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -66291,7 +66287,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { } } { - p.SetState(4753) + p.SetState(4751) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -66299,10 +66295,10 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { } } { - p.SetState(4754) + p.SetState(4752) p.Role_list() } - p.SetState(4756) + p.SetState(4754) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66311,7 +66307,7 @@ func (p *PostgreSQLParser) Dropownedstmt() (localctx IDropownedstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4755) + p.SetState(4753) p.Opt_drop_behavior() } @@ -66464,7 +66460,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte p.EnterRule(localctx, 512, PostgreSQLParserRULE_reassignownedstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(4758) + p.SetState(4756) p.Match(PostgreSQLParserREASSIGN) if p.HasError() { // Recognition error - abort rule @@ -66472,7 +66468,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4759) + p.SetState(4757) p.Match(PostgreSQLParserOWNED) if p.HasError() { // Recognition error - abort rule @@ -66480,7 +66476,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4760) + p.SetState(4758) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -66488,11 +66484,11 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4761) + p.SetState(4759) p.Role_list() } { - p.SetState(4762) + p.SetState(4760) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -66500,7 +66496,7 @@ func (p *PostgreSQLParser) Reassignownedstmt() (localctx IReassignownedstmtConte } } { - p.SetState(4763) + p.SetState(4761) p.Rolespec() } @@ -66790,7 +66786,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { p.EnterRule(localctx, 514, PostgreSQLParserRULE_dropstmt) var _la int - p.SetState(4855) + p.SetState(4853) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66800,7 +66796,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4765) + p.SetState(4763) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66808,11 +66804,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4766) + p.SetState(4764) p.Object_type_any_name() } { - p.SetState(4767) + p.SetState(4765) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -66820,7 +66816,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4768) + p.SetState(4766) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -66828,10 +66824,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4769) + p.SetState(4767) p.Any_name_list() } - p.SetState(4771) + p.SetState(4769) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66840,7 +66836,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4770) + p.SetState(4768) p.Opt_drop_behavior() } @@ -66849,7 +66845,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4773) + p.SetState(4771) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66857,14 +66853,14 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4774) + p.SetState(4772) p.Object_type_any_name() } { - p.SetState(4775) + p.SetState(4773) p.Any_name_list() } - p.SetState(4777) + p.SetState(4775) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66873,7 +66869,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4776) + p.SetState(4774) p.Opt_drop_behavior() } @@ -66882,7 +66878,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4779) + p.SetState(4777) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66890,11 +66886,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4780) + p.SetState(4778) p.Drop_type_name() } { - p.SetState(4781) + p.SetState(4779) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -66902,7 +66898,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4782) + p.SetState(4780) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -66910,10 +66906,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4783) + p.SetState(4781) p.Name_list() } - p.SetState(4785) + p.SetState(4783) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66922,7 +66918,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4784) + p.SetState(4782) p.Opt_drop_behavior() } @@ -66931,7 +66927,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4787) + p.SetState(4785) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66939,14 +66935,14 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4788) + p.SetState(4786) p.Drop_type_name() } { - p.SetState(4789) + p.SetState(4787) p.Name_list() } - p.SetState(4791) + p.SetState(4789) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -66955,7 +66951,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4790) + p.SetState(4788) p.Opt_drop_behavior() } @@ -66964,7 +66960,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4793) + p.SetState(4791) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -66972,15 +66968,15 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4794) + p.SetState(4792) p.Object_type_name_on_any_name() } { - p.SetState(4795) + p.SetState(4793) p.Name() } { - p.SetState(4796) + p.SetState(4794) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -66988,10 +66984,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4797) + p.SetState(4795) p.Any_name() } - p.SetState(4799) + p.SetState(4797) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67000,7 +66996,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4798) + p.SetState(4796) p.Opt_drop_behavior() } @@ -67009,7 +67005,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4801) + p.SetState(4799) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67017,11 +67013,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4802) + p.SetState(4800) p.Object_type_name_on_any_name() } { - p.SetState(4803) + p.SetState(4801) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67029,7 +67025,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4804) + p.SetState(4802) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67037,11 +67033,11 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4805) + p.SetState(4803) p.Name() } { - p.SetState(4806) + p.SetState(4804) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -67049,10 +67045,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4807) + p.SetState(4805) p.Any_name() } - p.SetState(4809) + p.SetState(4807) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67061,7 +67057,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4808) + p.SetState(4806) p.Opt_drop_behavior() } @@ -67070,7 +67066,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4811) + p.SetState(4809) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67078,7 +67074,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4812) + p.SetState(4810) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -67086,10 +67082,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4813) + p.SetState(4811) p.Type_name_list() } - p.SetState(4815) + p.SetState(4813) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67098,7 +67094,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4814) + p.SetState(4812) p.Opt_drop_behavior() } @@ -67107,7 +67103,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4817) + p.SetState(4815) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67115,7 +67111,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4818) + p.SetState(4816) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -67123,7 +67119,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4819) + p.SetState(4817) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67131,7 +67127,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4820) + p.SetState(4818) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67139,10 +67135,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4821) + p.SetState(4819) p.Type_name_list() } - p.SetState(4823) + p.SetState(4821) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67151,7 +67147,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4822) + p.SetState(4820) p.Opt_drop_behavior() } @@ -67160,7 +67156,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4825) + p.SetState(4823) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67168,7 +67164,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4826) + p.SetState(4824) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -67176,10 +67172,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4827) + p.SetState(4825) p.Type_name_list() } - p.SetState(4829) + p.SetState(4827) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67188,7 +67184,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4828) + p.SetState(4826) p.Opt_drop_behavior() } @@ -67197,7 +67193,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4831) + p.SetState(4829) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67205,7 +67201,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4832) + p.SetState(4830) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -67213,7 +67209,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4833) + p.SetState(4831) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67221,7 +67217,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4834) + p.SetState(4832) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67229,10 +67225,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4835) + p.SetState(4833) p.Type_name_list() } - p.SetState(4837) + p.SetState(4835) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67241,7 +67237,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4836) + p.SetState(4834) p.Opt_drop_behavior() } @@ -67250,7 +67246,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4839) + p.SetState(4837) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67258,7 +67254,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4840) + p.SetState(4838) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -67266,7 +67262,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4841) + p.SetState(4839) p.Match(PostgreSQLParserCONCURRENTLY) if p.HasError() { // Recognition error - abort rule @@ -67274,10 +67270,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4842) + p.SetState(4840) p.Any_name_list() } - p.SetState(4844) + p.SetState(4842) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67286,7 +67282,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4843) + p.SetState(4841) p.Opt_drop_behavior() } @@ -67295,7 +67291,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4846) + p.SetState(4844) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -67303,7 +67299,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4847) + p.SetState(4845) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -67311,7 +67307,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4848) + p.SetState(4846) p.Match(PostgreSQLParserCONCURRENTLY) if p.HasError() { // Recognition error - abort rule @@ -67319,7 +67315,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4849) + p.SetState(4847) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -67327,7 +67323,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4850) + p.SetState(4848) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -67335,10 +67331,10 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { } } { - p.SetState(4851) + p.SetState(4849) p.Any_name_list() } - p.SetState(4853) + p.SetState(4851) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67347,7 +67343,7 @@ func (p *PostgreSQLParser) Dropstmt() (localctx IDropstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4852) + p.SetState(4850) p.Opt_drop_behavior() } @@ -67523,7 +67519,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(4880) + p.SetState(4878) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67533,7 +67529,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4857) + p.SetState(4855) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -67544,7 +67540,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4858) + p.SetState(4856) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -67555,7 +67551,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4859) + p.SetState(4857) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -67566,7 +67562,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4860) + p.SetState(4858) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -67574,7 +67570,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4861) + p.SetState(4859) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -67585,7 +67581,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4862) + p.SetState(4860) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -67596,7 +67592,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4863) + p.SetState(4861) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -67604,7 +67600,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4864) + p.SetState(4862) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -67615,7 +67611,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4865) + p.SetState(4863) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -67626,7 +67622,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(4866) + p.SetState(4864) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -67637,7 +67633,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(4867) + p.SetState(4865) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -67648,7 +67644,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(4868) + p.SetState(4866) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67656,7 +67652,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4869) + p.SetState(4867) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67664,7 +67660,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4870) + p.SetState(4868) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -67675,7 +67671,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(4871) + p.SetState(4869) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67683,7 +67679,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4872) + p.SetState(4870) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67691,7 +67687,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4873) + p.SetState(4871) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -67702,7 +67698,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(4874) + p.SetState(4872) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67710,7 +67706,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4875) + p.SetState(4873) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67718,7 +67714,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4876) + p.SetState(4874) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -67729,7 +67725,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(4877) + p.SetState(4875) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -67737,7 +67733,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4878) + p.SetState(4876) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -67745,7 +67741,7 @@ func (p *PostgreSQLParser) Object_type_any_name() (localctx IObject_type_any_nam } } { - p.SetState(4879) + p.SetState(4877) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -67885,7 +67881,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(4887) + p.SetState(4885) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -67895,14 +67891,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(4882) + p.SetState(4880) p.Drop_type_name() } case PostgreSQLParserDATABASE: p.EnterOuterAlt(localctx, 2) { - p.SetState(4883) + p.SetState(4881) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -67913,7 +67909,7 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserROLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(4884) + p.SetState(4882) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -67924,7 +67920,7 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserSUBSCRIPTION: p.EnterOuterAlt(localctx, 4) { - p.SetState(4885) + p.SetState(4883) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -67935,7 +67931,7 @@ func (p *PostgreSQLParser) Object_type_name() (localctx IObject_type_nameContext case PostgreSQLParserTABLESPACE: p.EnterOuterAlt(localctx, 5) { - p.SetState(4886) + p.SetState(4884) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -68118,7 +68114,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { p.EnterRule(localctx, 520, PostgreSQLParserRULE_drop_type_name) var _la int - p.SetState(4904) + p.SetState(4902) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68128,7 +68124,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserACCESS: p.EnterOuterAlt(localctx, 1) { - p.SetState(4889) + p.SetState(4887) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -68136,7 +68132,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4890) + p.SetState(4888) p.Match(PostgreSQLParserMETHOD) if p.HasError() { // Recognition error - abort rule @@ -68147,7 +68143,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserEVENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(4891) + p.SetState(4889) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -68155,7 +68151,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4892) + p.SetState(4890) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -68166,7 +68162,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserEXTENSION: p.EnterOuterAlt(localctx, 3) { - p.SetState(4893) + p.SetState(4891) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -68177,7 +68173,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserFOREIGN: p.EnterOuterAlt(localctx, 4) { - p.SetState(4894) + p.SetState(4892) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -68185,7 +68181,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4895) + p.SetState(4893) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -68193,7 +68189,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { } } { - p.SetState(4896) + p.SetState(4894) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -68203,7 +68199,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserLANGUAGE, PostgreSQLParserPROCEDURAL: p.EnterOuterAlt(localctx, 5) - p.SetState(4898) + p.SetState(4896) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68212,13 +68208,13 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(4897) + p.SetState(4895) p.Opt_procedural() } } { - p.SetState(4900) + p.SetState(4898) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -68229,7 +68225,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserPUBLICATION: p.EnterOuterAlt(localctx, 6) { - p.SetState(4901) + p.SetState(4899) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -68240,7 +68236,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserSCHEMA: p.EnterOuterAlt(localctx, 7) { - p.SetState(4902) + p.SetState(4900) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -68251,7 +68247,7 @@ func (p *PostgreSQLParser) Drop_type_name() (localctx IDrop_type_nameContext) { case PostgreSQLParserSERVER: p.EnterOuterAlt(localctx, 8) { - p.SetState(4903) + p.SetState(4901) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -68374,7 +68370,7 @@ func (p *PostgreSQLParser) Object_type_name_on_any_name() (localctx IObject_type p.EnterOuterAlt(localctx, 1) { - p.SetState(4906) + p.SetState(4904) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserRULE || _la == PostgreSQLParserTRIGGER || _la == PostgreSQLParserPOLICY) { @@ -68533,10 +68529,10 @@ func (p *PostgreSQLParser) Any_name_list() (localctx IAny_name_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4908) + p.SetState(4906) p.Any_name() } - p.SetState(4913) + p.SetState(4911) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68545,7 +68541,7 @@ func (p *PostgreSQLParser) Any_name_list() (localctx IAny_name_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4909) + p.SetState(4907) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -68553,11 +68549,11 @@ func (p *PostgreSQLParser) Any_name_list() (localctx IAny_name_listContext) { } } { - p.SetState(4910) + p.SetState(4908) p.Any_name() } - p.SetState(4915) + p.SetState(4913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68694,10 +68690,10 @@ func (p *PostgreSQLParser) Any_name() (localctx IAny_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4916) + p.SetState(4914) p.Colid() } - p.SetState(4918) + p.SetState(4916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68706,7 +68702,7 @@ func (p *PostgreSQLParser) Any_name() (localctx IAny_nameContext) { if _la == PostgreSQLParserDOT { { - p.SetState(4917) + p.SetState(4915) p.Attrs() } @@ -68859,7 +68855,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(4922) + p.SetState(4920) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -68869,7 +68865,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { switch _alt { case 1: { - p.SetState(4920) + p.SetState(4918) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -68877,7 +68873,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { } } { - p.SetState(4921) + p.SetState(4919) p.Attr_name() } @@ -68886,7 +68882,7 @@ func (p *PostgreSQLParser) Attrs() (localctx IAttrsContext) { goto errorExit } - p.SetState(4924) + p.SetState(4922) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 378, p.GetParserRuleContext()) if p.HasError() { @@ -69042,10 +69038,10 @@ func (p *PostgreSQLParser) Type_name_list() (localctx IType_name_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4926) + p.SetState(4924) p.Typename() } - p.SetState(4931) + p.SetState(4929) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69054,7 +69050,7 @@ func (p *PostgreSQLParser) Type_name_list() (localctx IType_name_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(4927) + p.SetState(4925) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -69062,11 +69058,11 @@ func (p *PostgreSQLParser) Type_name_list() (localctx IType_name_listContext) { } } { - p.SetState(4928) + p.SetState(4926) p.Typename() } - p.SetState(4933) + p.SetState(4931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69242,19 +69238,19 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(4934) + p.SetState(4932) p.Match(PostgreSQLParserTRUNCATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(4936) + p.SetState(4934) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 380, p.GetParserRuleContext()) == 1 { { - p.SetState(4935) + p.SetState(4933) p.Opt_table() } @@ -69262,10 +69258,10 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { goto errorExit } { - p.SetState(4938) + p.SetState(4936) p.Relation_expr_list() } - p.SetState(4940) + p.SetState(4938) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69274,12 +69270,12 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { if _la == PostgreSQLParserCONTINUE_P || _la == PostgreSQLParserRESTART { { - p.SetState(4939) + p.SetState(4937) p.Opt_restart_seqs() } } - p.SetState(4943) + p.SetState(4941) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69288,7 +69284,7 @@ func (p *PostgreSQLParser) Truncatestmt() (localctx ITruncatestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(4942) + p.SetState(4940) p.Opt_drop_behavior() } @@ -69400,7 +69396,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(4949) + p.SetState(4947) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69410,7 +69406,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext case PostgreSQLParserCONTINUE_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(4945) + p.SetState(4943) p.Match(PostgreSQLParserCONTINUE_P) if p.HasError() { // Recognition error - abort rule @@ -69418,7 +69414,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext } } { - p.SetState(4946) + p.SetState(4944) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -69429,7 +69425,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext case PostgreSQLParserRESTART: p.EnterOuterAlt(localctx, 2) { - p.SetState(4947) + p.SetState(4945) p.Match(PostgreSQLParserRESTART) if p.HasError() { // Recognition error - abort rule @@ -69437,7 +69433,7 @@ func (p *PostgreSQLParser) Opt_restart_seqs() (localctx IOpt_restart_seqsContext } } { - p.SetState(4948) + p.SetState(4946) p.Match(PostgreSQLParserIDENTITY_P) if p.HasError() { // Recognition error - abort rule @@ -69879,7 +69875,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(5098) + p.SetState(5096) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -69889,7 +69885,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(4951) + p.SetState(4949) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69897,7 +69893,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4952) + p.SetState(4950) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -69905,15 +69901,15 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4953) + p.SetState(4951) p.Object_type_any_name() } { - p.SetState(4954) + p.SetState(4952) p.Any_name() } { - p.SetState(4955) + p.SetState(4953) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -69921,14 +69917,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4956) + p.SetState(4954) p.Comment_text() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(4958) + p.SetState(4956) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69936,7 +69932,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4959) + p.SetState(4957) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -69944,7 +69940,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4960) + p.SetState(4958) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -69952,11 +69948,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4961) + p.SetState(4959) p.Any_name() } { - p.SetState(4962) + p.SetState(4960) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -69964,14 +69960,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4963) + p.SetState(4961) p.Comment_text() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(4965) + p.SetState(4963) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -69979,7 +69975,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4966) + p.SetState(4964) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -69987,15 +69983,15 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4967) + p.SetState(4965) p.Object_type_name() } { - p.SetState(4968) + p.SetState(4966) p.Name() } { - p.SetState(4969) + p.SetState(4967) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70003,14 +69999,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4970) + p.SetState(4968) p.Comment_text() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(4972) + p.SetState(4970) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70018,7 +70014,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4973) + p.SetState(4971) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70026,7 +70022,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4974) + p.SetState(4972) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -70034,11 +70030,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4975) + p.SetState(4973) p.Typename() } { - p.SetState(4976) + p.SetState(4974) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70046,14 +70042,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4977) + p.SetState(4975) p.Comment_text() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(4979) + p.SetState(4977) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70061,7 +70057,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4980) + p.SetState(4978) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70069,7 +70065,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4981) + p.SetState(4979) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -70077,11 +70073,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4982) + p.SetState(4980) p.Typename() } { - p.SetState(4983) + p.SetState(4981) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70089,14 +70085,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4984) + p.SetState(4982) p.Comment_text() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(4986) + p.SetState(4984) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70104,7 +70100,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4987) + p.SetState(4985) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70112,7 +70108,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4988) + p.SetState(4986) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -70120,11 +70116,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4989) + p.SetState(4987) p.Aggregate_with_argtypes() } { - p.SetState(4990) + p.SetState(4988) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70132,14 +70128,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4991) + p.SetState(4989) p.Comment_text() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(4993) + p.SetState(4991) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70147,7 +70143,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4994) + p.SetState(4992) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70155,7 +70151,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4995) + p.SetState(4993) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -70163,11 +70159,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4996) + p.SetState(4994) p.Function_with_argtypes() } { - p.SetState(4997) + p.SetState(4995) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70175,14 +70171,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(4998) + p.SetState(4996) p.Comment_text() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5000) + p.SetState(4998) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70190,7 +70186,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5001) + p.SetState(4999) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70198,7 +70194,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5002) + p.SetState(5000) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -70206,11 +70202,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5003) + p.SetState(5001) p.Operator_with_argtypes() } { - p.SetState(5004) + p.SetState(5002) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70218,14 +70214,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5005) + p.SetState(5003) p.Comment_text() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5007) + p.SetState(5005) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70233,7 +70229,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5008) + p.SetState(5006) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70241,7 +70237,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5009) + p.SetState(5007) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -70249,11 +70245,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5010) + p.SetState(5008) p.Name() } { - p.SetState(5011) + p.SetState(5009) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70261,11 +70257,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5012) + p.SetState(5010) p.Any_name() } { - p.SetState(5013) + p.SetState(5011) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70273,14 +70269,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5014) + p.SetState(5012) p.Comment_text() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5016) + p.SetState(5014) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70288,7 +70284,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5017) + p.SetState(5015) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70296,7 +70292,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5018) + p.SetState(5016) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -70304,11 +70300,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5019) + p.SetState(5017) p.Name() } { - p.SetState(5020) + p.SetState(5018) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70316,7 +70312,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5021) + p.SetState(5019) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -70324,11 +70320,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5022) + p.SetState(5020) p.Any_name() } { - p.SetState(5023) + p.SetState(5021) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70336,14 +70332,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5024) + p.SetState(5022) p.Comment_text() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5026) + p.SetState(5024) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70351,7 +70347,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5027) + p.SetState(5025) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70359,15 +70355,15 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5028) + p.SetState(5026) p.Object_type_name_on_any_name() } { - p.SetState(5029) + p.SetState(5027) p.Name() } { - p.SetState(5030) + p.SetState(5028) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70375,11 +70371,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5031) + p.SetState(5029) p.Any_name() } { - p.SetState(5032) + p.SetState(5030) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70387,14 +70383,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5033) + p.SetState(5031) p.Comment_text() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5035) + p.SetState(5033) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70402,7 +70398,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5036) + p.SetState(5034) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70410,7 +70406,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5037) + p.SetState(5035) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -70418,11 +70414,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5038) + p.SetState(5036) p.Function_with_argtypes() } { - p.SetState(5039) + p.SetState(5037) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70430,14 +70426,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5040) + p.SetState(5038) p.Comment_text() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5042) + p.SetState(5040) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70445,7 +70441,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5043) + p.SetState(5041) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70453,7 +70449,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5044) + p.SetState(5042) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -70461,11 +70457,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5045) + p.SetState(5043) p.Function_with_argtypes() } { - p.SetState(5046) + p.SetState(5044) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70473,14 +70469,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5047) + p.SetState(5045) p.Comment_text() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5049) + p.SetState(5047) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70488,7 +70484,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5050) + p.SetState(5048) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70496,7 +70492,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5051) + p.SetState(5049) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -70504,7 +70500,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5052) + p.SetState(5050) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -70512,11 +70508,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5053) + p.SetState(5051) p.Typename() } { - p.SetState(5054) + p.SetState(5052) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -70524,11 +70520,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5055) + p.SetState(5053) p.Name() } { - p.SetState(5056) + p.SetState(5054) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70536,14 +70532,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5057) + p.SetState(5055) p.Comment_text() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5059) + p.SetState(5057) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70551,7 +70547,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5060) + p.SetState(5058) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70559,7 +70555,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5061) + p.SetState(5059) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -70567,7 +70563,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5062) + p.SetState(5060) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -70575,11 +70571,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5063) + p.SetState(5061) p.Any_name() } { - p.SetState(5064) + p.SetState(5062) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -70587,11 +70583,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5065) + p.SetState(5063) p.Name() } { - p.SetState(5066) + p.SetState(5064) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70599,14 +70595,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5067) + p.SetState(5065) p.Comment_text() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5069) + p.SetState(5067) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70614,7 +70610,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5070) + p.SetState(5068) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70622,7 +70618,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5071) + p.SetState(5069) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -70630,7 +70626,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5072) + p.SetState(5070) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -70638,11 +70634,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5073) + p.SetState(5071) p.Any_name() } { - p.SetState(5074) + p.SetState(5072) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -70650,11 +70646,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5075) + p.SetState(5073) p.Name() } { - p.SetState(5076) + p.SetState(5074) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70662,14 +70658,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5077) + p.SetState(5075) p.Comment_text() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5079) + p.SetState(5077) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70677,7 +70673,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5080) + p.SetState(5078) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70685,7 +70681,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5081) + p.SetState(5079) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -70693,7 +70689,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5082) + p.SetState(5080) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -70701,11 +70697,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5083) + p.SetState(5081) p.Numericonly() } { - p.SetState(5084) + p.SetState(5082) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70713,14 +70709,14 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5085) + p.SetState(5083) p.Comment_text() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(5087) + p.SetState(5085) p.Match(PostgreSQLParserCOMMENT) if p.HasError() { // Recognition error - abort rule @@ -70728,7 +70724,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5088) + p.SetState(5086) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -70736,7 +70732,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5089) + p.SetState(5087) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -70744,7 +70740,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5090) + p.SetState(5088) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -70752,11 +70748,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5091) + p.SetState(5089) p.Typename() } { - p.SetState(5092) + p.SetState(5090) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -70764,11 +70760,11 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5093) + p.SetState(5091) p.Typename() } { - p.SetState(5094) + p.SetState(5092) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -70776,7 +70772,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5095) + p.SetState(5093) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -70784,7 +70780,7 @@ func (p *PostgreSQLParser) Commentstmt() (localctx ICommentstmtContext) { } } { - p.SetState(5096) + p.SetState(5094) p.Comment_text() } @@ -70905,7 +70901,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(5102) + p.SetState(5100) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -70915,14 +70911,14 @@ func (p *PostgreSQLParser) Comment_text() (localctx IComment_textContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(5100) + p.SetState(5098) p.Sconst() } case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5101) + p.SetState(5099) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -71263,7 +71259,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { p.EnterRule(localctx, 540, PostgreSQLParserRULE_seclabelstmt) var _la int - p.SetState(5215) + p.SetState(5213) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71273,7 +71269,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5104) + p.SetState(5102) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71281,14 +71277,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5105) + p.SetState(5103) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5107) + p.SetState(5105) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71297,13 +71293,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5106) + p.SetState(5104) p.Opt_provider() } } { - p.SetState(5109) + p.SetState(5107) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71311,15 +71307,15 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5110) + p.SetState(5108) p.Object_type_any_name() } { - p.SetState(5111) + p.SetState(5109) p.Any_name() } { - p.SetState(5112) + p.SetState(5110) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71327,14 +71323,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5113) + p.SetState(5111) p.Security_label() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5115) + p.SetState(5113) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71342,14 +71338,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5116) + p.SetState(5114) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5118) + p.SetState(5116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71358,13 +71354,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5117) + p.SetState(5115) p.Opt_provider() } } { - p.SetState(5120) + p.SetState(5118) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71372,7 +71368,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5121) + p.SetState(5119) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -71380,11 +71376,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5122) + p.SetState(5120) p.Any_name() } { - p.SetState(5123) + p.SetState(5121) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71392,14 +71388,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5124) + p.SetState(5122) p.Security_label() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5126) + p.SetState(5124) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71407,14 +71403,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5127) + p.SetState(5125) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5129) + p.SetState(5127) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71423,13 +71419,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5128) + p.SetState(5126) p.Opt_provider() } } { - p.SetState(5131) + p.SetState(5129) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71437,15 +71433,15 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5132) + p.SetState(5130) p.Object_type_name() } { - p.SetState(5133) + p.SetState(5131) p.Name() } { - p.SetState(5134) + p.SetState(5132) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71453,14 +71449,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5135) + p.SetState(5133) p.Security_label() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5137) + p.SetState(5135) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71468,14 +71464,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5138) + p.SetState(5136) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5140) + p.SetState(5138) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71484,13 +71480,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5139) + p.SetState(5137) p.Opt_provider() } } { - p.SetState(5142) + p.SetState(5140) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71498,7 +71494,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5143) + p.SetState(5141) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -71506,11 +71502,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5144) + p.SetState(5142) p.Typename() } { - p.SetState(5145) + p.SetState(5143) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71518,14 +71514,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5146) + p.SetState(5144) p.Security_label() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5148) + p.SetState(5146) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71533,14 +71529,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5149) + p.SetState(5147) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5151) + p.SetState(5149) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71549,13 +71545,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5150) + p.SetState(5148) p.Opt_provider() } } { - p.SetState(5153) + p.SetState(5151) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71563,7 +71559,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5154) + p.SetState(5152) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -71571,11 +71567,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5155) + p.SetState(5153) p.Typename() } { - p.SetState(5156) + p.SetState(5154) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71583,14 +71579,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5157) + p.SetState(5155) p.Security_label() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5159) + p.SetState(5157) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71598,14 +71594,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5160) + p.SetState(5158) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5162) + p.SetState(5160) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71614,13 +71610,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5161) + p.SetState(5159) p.Opt_provider() } } { - p.SetState(5164) + p.SetState(5162) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71628,7 +71624,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5165) + p.SetState(5163) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -71636,11 +71632,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5166) + p.SetState(5164) p.Aggregate_with_argtypes() } { - p.SetState(5167) + p.SetState(5165) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71648,14 +71644,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5168) + p.SetState(5166) p.Security_label() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5170) + p.SetState(5168) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71663,14 +71659,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5171) + p.SetState(5169) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5173) + p.SetState(5171) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71679,13 +71675,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5172) + p.SetState(5170) p.Opt_provider() } } { - p.SetState(5175) + p.SetState(5173) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71693,7 +71689,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5176) + p.SetState(5174) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -71701,11 +71697,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5177) + p.SetState(5175) p.Function_with_argtypes() } { - p.SetState(5178) + p.SetState(5176) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71713,14 +71709,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5179) + p.SetState(5177) p.Security_label() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5181) + p.SetState(5179) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71728,14 +71724,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5182) + p.SetState(5180) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5184) + p.SetState(5182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71744,13 +71740,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5183) + p.SetState(5181) p.Opt_provider() } } { - p.SetState(5186) + p.SetState(5184) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71758,7 +71754,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5187) + p.SetState(5185) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -71766,7 +71762,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5188) + p.SetState(5186) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -71774,11 +71770,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5189) + p.SetState(5187) p.Numericonly() } { - p.SetState(5190) + p.SetState(5188) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71786,14 +71782,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5191) + p.SetState(5189) p.Security_label() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5193) + p.SetState(5191) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71801,14 +71797,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5194) + p.SetState(5192) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5196) + p.SetState(5194) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71817,13 +71813,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5195) + p.SetState(5193) p.Opt_provider() } } { - p.SetState(5198) + p.SetState(5196) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71831,7 +71827,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5199) + p.SetState(5197) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -71839,11 +71835,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5200) + p.SetState(5198) p.Function_with_argtypes() } { - p.SetState(5201) + p.SetState(5199) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71851,14 +71847,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5202) + p.SetState(5200) p.Security_label() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5204) + p.SetState(5202) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -71866,14 +71862,14 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5205) + p.SetState(5203) p.Match(PostgreSQLParserLABEL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5207) + p.SetState(5205) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -71882,13 +71878,13 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { if _la == PostgreSQLParserFOR { { - p.SetState(5206) + p.SetState(5204) p.Opt_provider() } } { - p.SetState(5209) + p.SetState(5207) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -71896,7 +71892,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5210) + p.SetState(5208) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -71904,11 +71900,11 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5211) + p.SetState(5209) p.Function_with_argtypes() } { - p.SetState(5212) + p.SetState(5210) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule @@ -71916,7 +71912,7 @@ func (p *PostgreSQLParser) Seclabelstmt() (localctx ISeclabelstmtContext) { } } { - p.SetState(5213) + p.SetState(5211) p.Security_label() } @@ -72039,7 +72035,7 @@ func (p *PostgreSQLParser) Opt_provider() (localctx IOpt_providerContext) { p.EnterRule(localctx, 542, PostgreSQLParserRULE_opt_provider) p.EnterOuterAlt(localctx, 1) { - p.SetState(5217) + p.SetState(5215) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -72047,7 +72043,7 @@ func (p *PostgreSQLParser) Opt_provider() (localctx IOpt_providerContext) { } } { - p.SetState(5218) + p.SetState(5216) p.Nonreservedword_or_sconst() } @@ -72164,7 +72160,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(5222) + p.SetState(5220) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72174,14 +72170,14 @@ func (p *PostgreSQLParser) Security_label() (localctx ISecurity_labelContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(5220) + p.SetState(5218) p.Sconst() } case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5221) + p.SetState(5219) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -72312,7 +72308,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(5228) + p.SetState(5226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72322,7 +72318,7 @@ func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { case PostgreSQLParserFETCH: p.EnterOuterAlt(localctx, 1) { - p.SetState(5224) + p.SetState(5222) p.Match(PostgreSQLParserFETCH) if p.HasError() { // Recognition error - abort rule @@ -72330,14 +72326,14 @@ func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { } } { - p.SetState(5225) + p.SetState(5223) p.Fetch_args() } case PostgreSQLParserMOVE: p.EnterOuterAlt(localctx, 2) { - p.SetState(5226) + p.SetState(5224) p.Match(PostgreSQLParserMOVE) if p.HasError() { // Recognition error - abort rule @@ -72345,7 +72341,7 @@ func (p *PostgreSQLParser) Fetchstmt() (localctx IFetchstmtContext) { } } { - p.SetState(5227) + p.SetState(5225) p.Fetch_args() } @@ -72560,7 +72556,7 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { p.EnterRule(localctx, 548, PostgreSQLParserRULE_fetch_args) var _la int - p.SetState(5315) + p.SetState(5313) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72570,32 +72566,32 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5230) + p.SetState(5228) p.Cursor_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5231) + p.SetState(5229) p.From_in() } { - p.SetState(5232) + p.SetState(5230) p.Cursor_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5234) + p.SetState(5232) p.Match(PostgreSQLParserNEXT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5236) + p.SetState(5234) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72604,27 +72600,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5235) + p.SetState(5233) p.Opt_from_in() } } { - p.SetState(5238) + p.SetState(5236) p.Cursor_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5239) + p.SetState(5237) p.Match(PostgreSQLParserPRIOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5241) + p.SetState(5239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72633,27 +72629,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5240) + p.SetState(5238) p.Opt_from_in() } } { - p.SetState(5243) + p.SetState(5241) p.Cursor_name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5244) + p.SetState(5242) p.Match(PostgreSQLParserFIRST_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5246) + p.SetState(5244) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72662,27 +72658,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5245) + p.SetState(5243) p.Opt_from_in() } } { - p.SetState(5248) + p.SetState(5246) p.Cursor_name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5249) + p.SetState(5247) p.Match(PostgreSQLParserLAST_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5251) + p.SetState(5249) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72691,20 +72687,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5250) + p.SetState(5248) p.Opt_from_in() } } { - p.SetState(5253) + p.SetState(5251) p.Cursor_name() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5254) + p.SetState(5252) p.Match(PostgreSQLParserABSOLUTE_P) if p.HasError() { // Recognition error - abort rule @@ -72712,10 +72708,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5255) + p.SetState(5253) p.Signediconst() } - p.SetState(5257) + p.SetState(5255) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72724,20 +72720,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5256) + p.SetState(5254) p.Opt_from_in() } } { - p.SetState(5259) + p.SetState(5257) p.Cursor_name() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5261) + p.SetState(5259) p.Match(PostgreSQLParserRELATIVE_P) if p.HasError() { // Recognition error - abort rule @@ -72745,10 +72741,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5262) + p.SetState(5260) p.Signediconst() } - p.SetState(5264) + p.SetState(5262) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72757,23 +72753,23 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5263) + p.SetState(5261) p.Opt_from_in() } } { - p.SetState(5266) + p.SetState(5264) p.Cursor_name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5268) + p.SetState(5266) p.Signediconst() } - p.SetState(5270) + p.SetState(5268) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72782,27 +72778,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5269) + p.SetState(5267) p.Opt_from_in() } } { - p.SetState(5272) + p.SetState(5270) p.Cursor_name() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5274) + p.SetState(5272) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5276) + p.SetState(5274) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72811,27 +72807,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5275) + p.SetState(5273) p.Opt_from_in() } } { - p.SetState(5278) + p.SetState(5276) p.Cursor_name() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5279) + p.SetState(5277) p.Match(PostgreSQLParserFORWARD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5281) + p.SetState(5279) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72840,20 +72836,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5280) + p.SetState(5278) p.Opt_from_in() } } { - p.SetState(5283) + p.SetState(5281) p.Cursor_name() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5284) + p.SetState(5282) p.Match(PostgreSQLParserFORWARD) if p.HasError() { // Recognition error - abort rule @@ -72861,10 +72857,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5285) + p.SetState(5283) p.Signediconst() } - p.SetState(5287) + p.SetState(5285) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72873,20 +72869,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5286) + p.SetState(5284) p.Opt_from_in() } } { - p.SetState(5289) + p.SetState(5287) p.Cursor_name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5291) + p.SetState(5289) p.Match(PostgreSQLParserFORWARD) if p.HasError() { // Recognition error - abort rule @@ -72894,14 +72890,14 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5292) + p.SetState(5290) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5294) + p.SetState(5292) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72910,27 +72906,27 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5293) + p.SetState(5291) p.Opt_from_in() } } { - p.SetState(5296) + p.SetState(5294) p.Cursor_name() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5297) + p.SetState(5295) p.Match(PostgreSQLParserBACKWARD) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5299) + p.SetState(5297) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72939,20 +72935,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5298) + p.SetState(5296) p.Opt_from_in() } } { - p.SetState(5301) + p.SetState(5299) p.Cursor_name() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5302) + p.SetState(5300) p.Match(PostgreSQLParserBACKWARD) if p.HasError() { // Recognition error - abort rule @@ -72960,10 +72956,10 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5303) + p.SetState(5301) p.Signediconst() } - p.SetState(5305) + p.SetState(5303) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -72972,20 +72968,20 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5304) + p.SetState(5302) p.Opt_from_in() } } { - p.SetState(5307) + p.SetState(5305) p.Cursor_name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5309) + p.SetState(5307) p.Match(PostgreSQLParserBACKWARD) if p.HasError() { // Recognition error - abort rule @@ -72993,14 +72989,14 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { } } { - p.SetState(5310) + p.SetState(5308) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5312) + p.SetState(5310) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73009,13 +73005,13 @@ func (p *PostgreSQLParser) Fetch_args() (localctx IFetch_argsContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(5311) + p.SetState(5309) p.Opt_from_in() } } { - p.SetState(5314) + p.SetState(5312) p.Cursor_name() } @@ -73128,7 +73124,7 @@ func (p *PostgreSQLParser) From_in() (localctx IFrom_inContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5317) + p.SetState(5315) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P) { @@ -73249,7 +73245,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(5319) + p.SetState(5317) p.From_in() } @@ -73429,7 +73425,7 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { p.EnterRule(localctx, 554, PostgreSQLParserRULE_grantstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(5321) + p.SetState(5319) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -73437,11 +73433,11 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { } } { - p.SetState(5322) + p.SetState(5320) p.Privileges() } { - p.SetState(5323) + p.SetState(5321) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -73449,11 +73445,11 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { } } { - p.SetState(5324) + p.SetState(5322) p.Privilege_target() } { - p.SetState(5325) + p.SetState(5323) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -73461,15 +73457,15 @@ func (p *PostgreSQLParser) Grantstmt() (localctx IGrantstmtContext) { } } { - p.SetState(5326) + p.SetState(5324) p.Grantee_list() } - p.SetState(5328) + p.SetState(5326) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 414, p.GetParserRuleContext()) == 1 { { - p.SetState(5327) + p.SetState(5325) p.Opt_grant_grant_option() } @@ -73668,7 +73664,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { p.EnterRule(localctx, 556, PostgreSQLParserRULE_revokestmt) var _la int - p.SetState(5351) + p.SetState(5349) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73678,7 +73674,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5330) + p.SetState(5328) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -73686,11 +73682,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5331) + p.SetState(5329) p.Privileges() } { - p.SetState(5332) + p.SetState(5330) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -73698,11 +73694,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5333) + p.SetState(5331) p.Privilege_target() } { - p.SetState(5334) + p.SetState(5332) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -73710,10 +73706,10 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5335) + p.SetState(5333) p.Grantee_list() } - p.SetState(5337) + p.SetState(5335) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73722,7 +73718,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5336) + p.SetState(5334) p.Opt_drop_behavior() } @@ -73731,7 +73727,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5339) + p.SetState(5337) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -73739,7 +73735,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5340) + p.SetState(5338) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -73747,7 +73743,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5341) + p.SetState(5339) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -73755,7 +73751,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5342) + p.SetState(5340) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -73763,11 +73759,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5343) + p.SetState(5341) p.Privileges() } { - p.SetState(5344) + p.SetState(5342) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -73775,11 +73771,11 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5345) + p.SetState(5343) p.Privilege_target() } { - p.SetState(5346) + p.SetState(5344) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -73787,10 +73783,10 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { } } { - p.SetState(5347) + p.SetState(5345) p.Grantee_list() } - p.SetState(5349) + p.SetState(5347) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73799,7 +73795,7 @@ func (p *PostgreSQLParser) Revokestmt() (localctx IRevokestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5348) + p.SetState(5346) p.Opt_drop_behavior() } @@ -73954,7 +73950,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(5368) + p.SetState(5366) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -73964,14 +73960,14 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5353) + p.SetState(5351) p.Privilege_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5354) + p.SetState(5352) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -73982,7 +73978,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5355) + p.SetState(5353) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -73990,7 +73986,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5356) + p.SetState(5354) p.Match(PostgreSQLParserPRIVILEGES) if p.HasError() { // Recognition error - abort rule @@ -74001,7 +73997,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5357) + p.SetState(5355) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -74009,7 +74005,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5358) + p.SetState(5356) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74017,11 +74013,11 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5359) + p.SetState(5357) p.Columnlist() } { - p.SetState(5360) + p.SetState(5358) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74032,7 +74028,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5362) + p.SetState(5360) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -74040,7 +74036,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5363) + p.SetState(5361) p.Match(PostgreSQLParserPRIVILEGES) if p.HasError() { // Recognition error - abort rule @@ -74048,7 +74044,7 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5364) + p.SetState(5362) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74056,11 +74052,11 @@ func (p *PostgreSQLParser) Privileges() (localctx IPrivilegesContext) { } } { - p.SetState(5365) + p.SetState(5363) p.Columnlist() } { - p.SetState(5366) + p.SetState(5364) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -74220,10 +74216,10 @@ func (p *PostgreSQLParser) Privilege_list() (localctx IPrivilege_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5370) + p.SetState(5368) p.Privilege() } - p.SetState(5375) + p.SetState(5373) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74232,7 +74228,7 @@ func (p *PostgreSQLParser) Privilege_list() (localctx IPrivilege_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5371) + p.SetState(5369) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -74240,11 +74236,11 @@ func (p *PostgreSQLParser) Privilege_list() (localctx IPrivilege_listContext) { } } { - p.SetState(5372) + p.SetState(5370) p.Privilege() } - p.SetState(5377) + p.SetState(5375) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74404,7 +74400,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { p.EnterRule(localctx, 562, PostgreSQLParserRULE_privilege) var _la int - p.SetState(5396) + p.SetState(5394) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74414,14 +74410,14 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5378) + p.SetState(5376) p.Match(PostgreSQLParserSELECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5380) + p.SetState(5378) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74430,7 +74426,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5379) + p.SetState(5377) p.Opt_column_list() } @@ -74439,14 +74435,14 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5382) + p.SetState(5380) p.Match(PostgreSQLParserREFERENCES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5384) + p.SetState(5382) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74455,7 +74451,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5383) + p.SetState(5381) p.Opt_column_list() } @@ -74464,14 +74460,14 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5386) + p.SetState(5384) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5388) + p.SetState(5386) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74480,7 +74476,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5387) + p.SetState(5385) p.Opt_column_list() } @@ -74489,7 +74485,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5390) + p.SetState(5388) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -74497,7 +74493,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { } } { - p.SetState(5391) + p.SetState(5389) p.Match(PostgreSQLParserSYSTEM_P) if p.HasError() { // Recognition error - abort rule @@ -74508,10 +74504,10 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5392) + p.SetState(5390) p.Colid() } - p.SetState(5394) + p.SetState(5392) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74520,7 +74516,7 @@ func (p *PostgreSQLParser) Privilege() (localctx IPrivilegeContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(5393) + p.SetState(5391) p.Opt_column_list() } @@ -74848,7 +74844,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(5458) + p.SetState(5456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -74858,14 +74854,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5398) + p.SetState(5396) p.Qualified_name_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5399) + p.SetState(5397) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -74873,14 +74869,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5400) + p.SetState(5398) p.Qualified_name_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5401) + p.SetState(5399) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -74888,14 +74884,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5402) + p.SetState(5400) p.Qualified_name_list() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5403) + p.SetState(5401) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -74903,7 +74899,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5404) + p.SetState(5402) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -74911,7 +74907,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5405) + p.SetState(5403) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -74919,14 +74915,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5406) + p.SetState(5404) p.Name_list() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5407) + p.SetState(5405) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -74934,7 +74930,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5408) + p.SetState(5406) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -74942,14 +74938,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5409) + p.SetState(5407) p.Name_list() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5410) + p.SetState(5408) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -74957,14 +74953,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5411) + p.SetState(5409) p.Function_with_argtypes_list() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5412) + p.SetState(5410) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -74972,14 +74968,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5413) + p.SetState(5411) p.Function_with_argtypes_list() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5414) + p.SetState(5412) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -74987,14 +74983,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5415) + p.SetState(5413) p.Function_with_argtypes_list() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5416) + p.SetState(5414) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -75002,14 +74998,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5417) + p.SetState(5415) p.Name_list() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5418) + p.SetState(5416) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -75017,14 +75013,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5419) + p.SetState(5417) p.Any_name_list() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5420) + p.SetState(5418) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -75032,14 +75028,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5421) + p.SetState(5419) p.Name_list() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5422) + p.SetState(5420) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -75047,7 +75043,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5423) + p.SetState(5421) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -75055,14 +75051,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5424) + p.SetState(5422) p.Numericonly_list() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5425) + p.SetState(5423) p.Match(PostgreSQLParserPARAMETER) if p.HasError() { // Recognition error - abort rule @@ -75070,14 +75066,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5426) + p.SetState(5424) p.Parameter_name_list() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5427) + p.SetState(5425) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75085,14 +75081,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5428) + p.SetState(5426) p.Name_list() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5429) + p.SetState(5427) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -75100,14 +75096,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5430) + p.SetState(5428) p.Name_list() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5431) + p.SetState(5429) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -75115,14 +75111,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5432) + p.SetState(5430) p.Any_name_list() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5433) + p.SetState(5431) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75130,7 +75126,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5434) + p.SetState(5432) p.Match(PostgreSQLParserTABLES) if p.HasError() { // Recognition error - abort rule @@ -75138,7 +75134,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5435) + p.SetState(5433) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75146,7 +75142,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5436) + p.SetState(5434) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75154,14 +75150,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5437) + p.SetState(5435) p.Name_list() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(5438) + p.SetState(5436) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75169,7 +75165,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5439) + p.SetState(5437) p.Match(PostgreSQLParserSEQUENCES) if p.HasError() { // Recognition error - abort rule @@ -75177,7 +75173,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5440) + p.SetState(5438) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75185,7 +75181,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5441) + p.SetState(5439) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75193,14 +75189,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5442) + p.SetState(5440) p.Name_list() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(5443) + p.SetState(5441) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75208,7 +75204,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5444) + p.SetState(5442) p.Match(PostgreSQLParserFUNCTIONS) if p.HasError() { // Recognition error - abort rule @@ -75216,7 +75212,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5445) + p.SetState(5443) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75224,7 +75220,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5446) + p.SetState(5444) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75232,14 +75228,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5447) + p.SetState(5445) p.Name_list() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(5448) + p.SetState(5446) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75247,7 +75243,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5449) + p.SetState(5447) p.Match(PostgreSQLParserPROCEDURES) if p.HasError() { // Recognition error - abort rule @@ -75255,7 +75251,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5450) + p.SetState(5448) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75263,7 +75259,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5451) + p.SetState(5449) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75271,14 +75267,14 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5452) + p.SetState(5450) p.Name_list() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(5453) + p.SetState(5451) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -75286,7 +75282,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5454) + p.SetState(5452) p.Match(PostgreSQLParserROUTINES) if p.HasError() { // Recognition error - abort rule @@ -75294,7 +75290,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5455) + p.SetState(5453) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -75302,7 +75298,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5456) + p.SetState(5454) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -75310,7 +75306,7 @@ func (p *PostgreSQLParser) Privilege_target() (localctx IPrivilege_targetContext } } { - p.SetState(5457) + p.SetState(5455) p.Name_list() } @@ -75466,10 +75462,10 @@ func (p *PostgreSQLParser) Parameter_name_list() (localctx IParameter_name_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(5460) + p.SetState(5458) p.Parameter_name() } - p.SetState(5465) + p.SetState(5463) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75478,7 +75474,7 @@ func (p *PostgreSQLParser) Parameter_name_list() (localctx IParameter_name_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(5461) + p.SetState(5459) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -75486,11 +75482,11 @@ func (p *PostgreSQLParser) Parameter_name_list() (localctx IParameter_name_listC } } { - p.SetState(5462) + p.SetState(5460) p.Parameter_name() } - p.SetState(5467) + p.SetState(5465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75641,10 +75637,10 @@ func (p *PostgreSQLParser) Parameter_name() (localctx IParameter_nameContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5468) + p.SetState(5466) p.Colid() } - p.SetState(5471) + p.SetState(5469) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75653,7 +75649,7 @@ func (p *PostgreSQLParser) Parameter_name() (localctx IParameter_nameContext) { if _la == PostgreSQLParserDOT { { - p.SetState(5469) + p.SetState(5467) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -75661,7 +75657,7 @@ func (p *PostgreSQLParser) Parameter_name() (localctx IParameter_nameContext) { } } { - p.SetState(5470) + p.SetState(5468) p.Colid() } @@ -75815,10 +75811,10 @@ func (p *PostgreSQLParser) Grantee_list() (localctx IGrantee_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5473) + p.SetState(5471) p.Grantee() } - p.SetState(5478) + p.SetState(5476) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75827,7 +75823,7 @@ func (p *PostgreSQLParser) Grantee_list() (localctx IGrantee_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5474) + p.SetState(5472) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -75835,11 +75831,11 @@ func (p *PostgreSQLParser) Grantee_list() (localctx IGrantee_listContext) { } } { - p.SetState(5475) + p.SetState(5473) p.Grantee() } - p.SetState(5480) + p.SetState(5478) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75960,7 +75956,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(5484) + p.SetState(5482) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -75970,14 +75966,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(5481) + p.SetState(5479) p.Rolespec() } case PostgreSQLParserGROUP_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5482) + p.SetState(5480) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -75985,7 +75981,7 @@ func (p *PostgreSQLParser) Grantee() (localctx IGranteeContext) { } } { - p.SetState(5483) + p.SetState(5481) p.Rolespec() } @@ -76102,7 +76098,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(5486) + p.SetState(5484) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -76110,7 +76106,7 @@ func (p *PostgreSQLParser) Opt_grant_grant_option() (localctx IOpt_grant_grant_o } } { - p.SetState(5487) + p.SetState(5485) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -76118,7 +76114,7 @@ func (p *PostgreSQLParser) Opt_grant_grant_option() (localctx IOpt_grant_grant_o } } { - p.SetState(5488) + p.SetState(5486) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -76299,7 +76295,7 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5490) + p.SetState(5488) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -76307,11 +76303,11 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { } } { - p.SetState(5491) + p.SetState(5489) p.Privilege_list() } { - p.SetState(5492) + p.SetState(5490) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -76319,22 +76315,22 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { } } { - p.SetState(5493) + p.SetState(5491) p.Role_list() } - p.SetState(5495) + p.SetState(5493) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 430, p.GetParserRuleContext()) == 1 { { - p.SetState(5494) + p.SetState(5492) p.Opt_grant_admin_option() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5498) + p.SetState(5496) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76343,7 +76339,7 @@ func (p *PostgreSQLParser) Grantrolestmt() (localctx IGrantrolestmtContext) { if _la == PostgreSQLParserGRANTED { { - p.SetState(5497) + p.SetState(5495) p.Opt_granted_by() } @@ -76535,7 +76531,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { p.EnterRule(localctx, 578, PostgreSQLParserRULE_revokerolestmt) var _la int - p.SetState(5523) + p.SetState(5521) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76545,7 +76541,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5500) + p.SetState(5498) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -76553,11 +76549,11 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5501) + p.SetState(5499) p.Privilege_list() } { - p.SetState(5502) + p.SetState(5500) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -76565,10 +76561,10 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5503) + p.SetState(5501) p.Role_list() } - p.SetState(5505) + p.SetState(5503) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76577,12 +76573,12 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserGRANTED { { - p.SetState(5504) + p.SetState(5502) p.Opt_granted_by() } } - p.SetState(5508) + p.SetState(5506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76591,7 +76587,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5507) + p.SetState(5505) p.Opt_drop_behavior() } @@ -76600,7 +76596,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5510) + p.SetState(5508) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -76608,7 +76604,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5511) + p.SetState(5509) p.Match(PostgreSQLParserADMIN) if p.HasError() { // Recognition error - abort rule @@ -76616,7 +76612,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5512) + p.SetState(5510) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -76624,7 +76620,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5513) + p.SetState(5511) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -76632,11 +76628,11 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5514) + p.SetState(5512) p.Privilege_list() } { - p.SetState(5515) + p.SetState(5513) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -76644,10 +76640,10 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { } } { - p.SetState(5516) + p.SetState(5514) p.Role_list() } - p.SetState(5518) + p.SetState(5516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76656,12 +76652,12 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserGRANTED { { - p.SetState(5517) + p.SetState(5515) p.Opt_granted_by() } } - p.SetState(5521) + p.SetState(5519) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -76670,7 +76666,7 @@ func (p *PostgreSQLParser) Revokerolestmt() (localctx IRevokerolestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5520) + p.SetState(5518) p.Opt_drop_behavior() } @@ -76788,7 +76784,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(5525) + p.SetState(5523) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -76796,7 +76792,7 @@ func (p *PostgreSQLParser) Opt_grant_admin_option() (localctx IOpt_grant_admin_o } } { - p.SetState(5526) + p.SetState(5524) p.Match(PostgreSQLParserADMIN) if p.HasError() { // Recognition error - abort rule @@ -76804,7 +76800,7 @@ func (p *PostgreSQLParser) Opt_grant_admin_option() (localctx IOpt_grant_admin_o } } { - p.SetState(5527) + p.SetState(5525) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -76932,7 +76928,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(5529) + p.SetState(5527) p.Match(PostgreSQLParserGRANTED) if p.HasError() { // Recognition error - abort rule @@ -76940,7 +76936,7 @@ func (p *PostgreSQLParser) Opt_granted_by() (localctx IOpt_granted_byContext) { } } { - p.SetState(5530) + p.SetState(5528) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -76948,7 +76944,7 @@ func (p *PostgreSQLParser) Opt_granted_by() (localctx IOpt_granted_byContext) { } } { - p.SetState(5531) + p.SetState(5529) p.Rolespec() } @@ -77094,7 +77090,7 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp p.EnterRule(localctx, 584, PostgreSQLParserRULE_alterdefaultprivilegesstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(5533) + p.SetState(5531) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -77102,7 +77098,7 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp } } { - p.SetState(5534) + p.SetState(5532) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -77110,7 +77106,7 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp } } { - p.SetState(5535) + p.SetState(5533) p.Match(PostgreSQLParserPRIVILEGES) if p.HasError() { // Recognition error - abort rule @@ -77118,11 +77114,11 @@ func (p *PostgreSQLParser) Alterdefaultprivilegesstmt() (localctx IAlterdefaultp } } { - p.SetState(5536) + p.SetState(5534) p.Defacloptionlist() } { - p.SetState(5537) + p.SetState(5535) p.Defaclaction() } @@ -77263,7 +77259,7 @@ func (p *PostgreSQLParser) Defacloptionlist() (localctx IDefacloptionlistContext var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(5542) + p.SetState(5540) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77272,11 +77268,11 @@ func (p *PostgreSQLParser) Defacloptionlist() (localctx IDefacloptionlistContext for _la == PostgreSQLParserFOR || _la == PostgreSQLParserIN_P { { - p.SetState(5539) + p.SetState(5537) p.Defacloption() } - p.SetState(5544) + p.SetState(5542) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77434,7 +77430,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(5554) + p.SetState(5552) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77444,7 +77440,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5545) + p.SetState(5543) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -77452,7 +77448,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5546) + p.SetState(5544) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -77460,14 +77456,14 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5547) + p.SetState(5545) p.Name_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5548) + p.SetState(5546) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -77475,7 +77471,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5549) + p.SetState(5547) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -77483,14 +77479,14 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5550) + p.SetState(5548) p.Role_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5551) + p.SetState(5549) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -77498,7 +77494,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5552) + p.SetState(5550) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -77506,7 +77502,7 @@ func (p *PostgreSQLParser) Defacloption() (localctx IDefacloptionContext) { } } { - p.SetState(5553) + p.SetState(5551) p.Role_list() } @@ -77727,7 +77723,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { p.EnterRule(localctx, 590, PostgreSQLParserRULE_defaclaction) var _la int - p.SetState(5586) + p.SetState(5584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77737,7 +77733,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5556) + p.SetState(5554) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -77745,11 +77741,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5557) + p.SetState(5555) p.Privileges() } { - p.SetState(5558) + p.SetState(5556) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -77757,11 +77753,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5559) + p.SetState(5557) p.Defacl_privilege_target() } { - p.SetState(5560) + p.SetState(5558) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -77769,15 +77765,15 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5561) + p.SetState(5559) p.Grantee_list() } - p.SetState(5563) + p.SetState(5561) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 439, p.GetParserRuleContext()) == 1 { { - p.SetState(5562) + p.SetState(5560) p.Opt_grant_grant_option() } @@ -77788,7 +77784,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5565) + p.SetState(5563) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -77796,11 +77792,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5566) + p.SetState(5564) p.Privileges() } { - p.SetState(5567) + p.SetState(5565) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -77808,11 +77804,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5568) + p.SetState(5566) p.Defacl_privilege_target() } { - p.SetState(5569) + p.SetState(5567) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -77820,10 +77816,10 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5570) + p.SetState(5568) p.Grantee_list() } - p.SetState(5572) + p.SetState(5570) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77832,7 +77828,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5571) + p.SetState(5569) p.Opt_drop_behavior() } @@ -77841,7 +77837,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5574) + p.SetState(5572) p.Match(PostgreSQLParserREVOKE) if p.HasError() { // Recognition error - abort rule @@ -77849,7 +77845,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5575) + p.SetState(5573) p.Match(PostgreSQLParserGRANT) if p.HasError() { // Recognition error - abort rule @@ -77857,7 +77853,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5576) + p.SetState(5574) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -77865,7 +77861,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5577) + p.SetState(5575) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -77873,11 +77869,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5578) + p.SetState(5576) p.Privileges() } { - p.SetState(5579) + p.SetState(5577) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -77885,11 +77881,11 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5580) + p.SetState(5578) p.Defacl_privilege_target() } { - p.SetState(5581) + p.SetState(5579) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -77897,10 +77893,10 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { } } { - p.SetState(5582) + p.SetState(5580) p.Grantee_list() } - p.SetState(5584) + p.SetState(5582) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -77909,7 +77905,7 @@ func (p *PostgreSQLParser) Defaclaction() (localctx IDefaclactionContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5583) + p.SetState(5581) p.Opt_drop_behavior() } @@ -78044,7 +78040,7 @@ func (p *PostgreSQLParser) Defacl_privilege_target() (localctx IDefacl_privilege p.EnterOuterAlt(localctx, 1) { - p.SetState(5588) + p.SetState(5586) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTIONS || ((int64((_la-341)) & ^0x3f) == 0 && ((int64(1)<<(_la-341))&4297064449) != 0) || _la == PostgreSQLParserROUTINES || _la == PostgreSQLParserSCHEMAS) { @@ -78377,14 +78373,14 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5590) + p.SetState(5588) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5592) + p.SetState(5590) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78393,20 +78389,20 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserUNIQUE { { - p.SetState(5591) + p.SetState(5589) p.Opt_unique() } } { - p.SetState(5594) + p.SetState(5592) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5596) + p.SetState(5594) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78415,12 +78411,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(5595) + p.SetState(5593) p.Opt_concurrently() } } - p.SetState(5604) + p.SetState(5602) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78428,12 +78424,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(5601) + p.SetState(5599) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 445, p.GetParserRuleContext()) == 1 { { - p.SetState(5598) + p.SetState(5596) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -78441,7 +78437,7 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5599) + p.SetState(5597) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -78449,7 +78445,7 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5600) + p.SetState(5598) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -78461,13 +78457,13 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { goto errorExit } { - p.SetState(5603) + p.SetState(5601) p.Name() } } { - p.SetState(5606) + p.SetState(5604) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -78475,10 +78471,10 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5607) + p.SetState(5605) p.Relation_expr() } - p.SetState(5609) + p.SetState(5607) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78487,13 +78483,13 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(5608) + p.SetState(5606) p.Access_method_clause() } } { - p.SetState(5611) + p.SetState(5609) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -78501,18 +78497,18 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { } } { - p.SetState(5612) + p.SetState(5610) p.Index_params() } { - p.SetState(5613) + p.SetState(5611) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5615) + p.SetState(5613) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78521,12 +78517,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserINCLUDE { { - p.SetState(5614) + p.SetState(5612) p.Opt_include() } } - p.SetState(5618) + p.SetState(5616) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78535,24 +78531,24 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserNULLS_P { { - p.SetState(5617) + p.SetState(5615) p.Opt_unique_null_treatment() } } - p.SetState(5621) + p.SetState(5619) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 450, p.GetParserRuleContext()) == 1 { { - p.SetState(5620) + p.SetState(5618) p.Opt_reloptions() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5624) + p.SetState(5622) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78561,12 +78557,12 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserTABLESPACE { { - p.SetState(5623) + p.SetState(5621) p.Opttablespace() } } - p.SetState(5627) + p.SetState(5625) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -78575,7 +78571,7 @@ func (p *PostgreSQLParser) Indexstmt() (localctx IIndexstmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(5626) + p.SetState(5624) p.Where_clause() } @@ -78679,7 +78675,7 @@ func (p *PostgreSQLParser) Opt_unique() (localctx IOpt_uniqueContext) { p.EnterRule(localctx, 596, PostgreSQLParserRULE_opt_unique) p.EnterOuterAlt(localctx, 1) { - p.SetState(5629) + p.SetState(5627) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule @@ -78785,7 +78781,7 @@ func (p *PostgreSQLParser) Opt_concurrently() (localctx IOpt_concurrentlyContext p.EnterRule(localctx, 598, PostgreSQLParserRULE_opt_concurrently) p.EnterOuterAlt(localctx, 1) { - p.SetState(5631) + p.SetState(5629) p.Match(PostgreSQLParserCONCURRENTLY) if p.HasError() { // Recognition error - abort rule @@ -78903,7 +78899,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(5633) + p.SetState(5631) p.Name() } @@ -79022,7 +79018,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(5635) + p.SetState(5633) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -79030,7 +79026,7 @@ func (p *PostgreSQLParser) Access_method_clause() (localctx IAccess_method_claus } } { - p.SetState(5636) + p.SetState(5634) p.Name() } @@ -79182,10 +79178,10 @@ func (p *PostgreSQLParser) Index_params() (localctx IIndex_paramsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5638) + p.SetState(5636) p.Index_elem() } - p.SetState(5643) + p.SetState(5641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79194,7 +79190,7 @@ func (p *PostgreSQLParser) Index_params() (localctx IIndex_paramsContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5639) + p.SetState(5637) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -79202,11 +79198,11 @@ func (p *PostgreSQLParser) Index_params() (localctx IIndex_paramsContext) { } } { - p.SetState(5640) + p.SetState(5638) p.Index_elem() } - p.SetState(5645) + p.SetState(5643) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79409,7 +79405,7 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon p.EnterRule(localctx, 606, PostgreSQLParserRULE_index_elem_options) var _la int - p.SetState(5669) + p.SetState(5667) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79418,31 +79414,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(5647) + p.SetState(5645) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 454, p.GetParserRuleContext()) == 1 { { - p.SetState(5646) + p.SetState(5644) p.Opt_collate() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5650) + p.SetState(5648) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 455, p.GetParserRuleContext()) == 1 { { - p.SetState(5649) + p.SetState(5647) p.Opt_class() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(5653) + p.SetState(5651) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79451,12 +79447,12 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserASC || _la == PostgreSQLParserDESC { { - p.SetState(5652) + p.SetState(5650) p.Opt_asc_desc() } } - p.SetState(5656) + p.SetState(5654) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79465,7 +79461,7 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserNULLS_P { { - p.SetState(5655) + p.SetState(5653) p.Opt_nulls_order() } @@ -79473,12 +79469,12 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(5659) + p.SetState(5657) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 458, p.GetParserRuleContext()) == 1 { { - p.SetState(5658) + p.SetState(5656) p.Opt_collate() } @@ -79486,14 +79482,14 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon goto errorExit } { - p.SetState(5661) + p.SetState(5659) p.Any_name() } { - p.SetState(5662) + p.SetState(5660) p.Reloptions() } - p.SetState(5664) + p.SetState(5662) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79502,12 +79498,12 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserASC || _la == PostgreSQLParserDESC { { - p.SetState(5663) + p.SetState(5661) p.Opt_asc_desc() } } - p.SetState(5667) + p.SetState(5665) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79516,7 +79512,7 @@ func (p *PostgreSQLParser) Index_elem_options() (localctx IIndex_elem_optionsCon if _la == PostgreSQLParserNULLS_P { { - p.SetState(5666) + p.SetState(5664) p.Opt_nulls_order() } @@ -79695,7 +79691,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(5682) + p.SetState(5680) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -79705,29 +79701,29 @@ func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5671) + p.SetState(5669) p.Colid() } { - p.SetState(5672) + p.SetState(5670) p.Index_elem_options() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5674) + p.SetState(5672) p.Func_expr_windowless() } { - p.SetState(5675) + p.SetState(5673) p.Index_elem_options() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5677) + p.SetState(5675) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -79735,11 +79731,11 @@ func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { } } { - p.SetState(5678) + p.SetState(5676) p.A_expr() } { - p.SetState(5679) + p.SetState(5677) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -79747,7 +79743,7 @@ func (p *PostgreSQLParser) Index_elem() (localctx IIndex_elemContext) { } } { - p.SetState(5680) + p.SetState(5678) p.Index_elem_options() } @@ -79880,7 +79876,7 @@ func (p *PostgreSQLParser) Opt_include() (localctx IOpt_includeContext) { p.EnterRule(localctx, 610, PostgreSQLParserRULE_opt_include) p.EnterOuterAlt(localctx, 1) { - p.SetState(5684) + p.SetState(5682) p.Match(PostgreSQLParserINCLUDE) if p.HasError() { // Recognition error - abort rule @@ -79888,7 +79884,7 @@ func (p *PostgreSQLParser) Opt_include() (localctx IOpt_includeContext) { } } { - p.SetState(5685) + p.SetState(5683) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -79896,11 +79892,11 @@ func (p *PostgreSQLParser) Opt_include() (localctx IOpt_includeContext) { } } { - p.SetState(5686) + p.SetState(5684) p.Index_including_params() } { - p.SetState(5687) + p.SetState(5685) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -80056,10 +80052,10 @@ func (p *PostgreSQLParser) Index_including_params() (localctx IIndex_including_p p.EnterOuterAlt(localctx, 1) { - p.SetState(5689) + p.SetState(5687) p.Index_elem() } - p.SetState(5694) + p.SetState(5692) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80068,7 +80064,7 @@ func (p *PostgreSQLParser) Index_including_params() (localctx IIndex_including_p for _la == PostgreSQLParserCOMMA { { - p.SetState(5690) + p.SetState(5688) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -80076,11 +80072,11 @@ func (p *PostgreSQLParser) Index_including_params() (localctx IIndex_including_p } } { - p.SetState(5691) + p.SetState(5689) p.Index_elem() } - p.SetState(5696) + p.SetState(5694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80203,7 +80199,7 @@ func (p *PostgreSQLParser) Opt_collate() (localctx IOpt_collateContext) { p.EnterRule(localctx, 614, PostgreSQLParserRULE_opt_collate) p.EnterOuterAlt(localctx, 1) { - p.SetState(5697) + p.SetState(5695) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -80211,7 +80207,7 @@ func (p *PostgreSQLParser) Opt_collate() (localctx IOpt_collateContext) { } } { - p.SetState(5698) + p.SetState(5696) p.Any_name() } @@ -80325,7 +80321,7 @@ func (p *PostgreSQLParser) Opt_class() (localctx IOpt_classContext) { p.EnterRule(localctx, 616, PostgreSQLParserRULE_opt_class) p.EnterOuterAlt(localctx, 1) { - p.SetState(5700) + p.SetState(5698) p.Any_name() } @@ -80434,7 +80430,7 @@ func (p *PostgreSQLParser) Opt_asc_desc() (localctx IOpt_asc_descContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5702) + p.SetState(5700) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserASC || _la == PostgreSQLParserDESC) { @@ -80551,7 +80547,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(5708) + p.SetState(5706) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80561,7 +80557,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5704) + p.SetState(5702) p.Match(PostgreSQLParserNULLS_P) if p.HasError() { // Recognition error - abort rule @@ -80569,7 +80565,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) } } { - p.SetState(5705) + p.SetState(5703) p.Match(PostgreSQLParserFIRST_P) if p.HasError() { // Recognition error - abort rule @@ -80580,7 +80576,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5706) + p.SetState(5704) p.Match(PostgreSQLParserNULLS_P) if p.HasError() { // Recognition error - abort rule @@ -80588,7 +80584,7 @@ func (p *PostgreSQLParser) Opt_nulls_order() (localctx IOpt_nulls_orderContext) } } { - p.SetState(5707) + p.SetState(5705) p.Match(PostgreSQLParserLAST_P) if p.HasError() { // Recognition error - abort rule @@ -80832,14 +80828,14 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon p.EnterOuterAlt(localctx, 1) { - p.SetState(5710) + p.SetState(5708) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5712) + p.SetState(5710) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80848,13 +80844,13 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon if _la == PostgreSQLParserOR { { - p.SetState(5711) + p.SetState(5709) p.Opt_or_replace() } } { - p.SetState(5714) + p.SetState(5712) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTION || _la == PostgreSQLParserPROCEDURE) { @@ -80865,26 +80861,26 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon } } { - p.SetState(5715) + p.SetState(5713) p.Func_name() } { - p.SetState(5716) + p.SetState(5714) p.Func_args_with_defaults() } - p.SetState(5726) + p.SetState(5724) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 467, p.GetParserRuleContext()) == 1 { { - p.SetState(5717) + p.SetState(5715) p.Match(PostgreSQLParserRETURNS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5724) + p.SetState(5722) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -80893,13 +80889,13 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 466, p.GetParserRuleContext()) { case 1: { - p.SetState(5718) + p.SetState(5716) p.Func_return() } case 2: { - p.SetState(5719) + p.SetState(5717) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -80907,7 +80903,7 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon } } { - p.SetState(5720) + p.SetState(5718) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -80915,11 +80911,11 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon } } { - p.SetState(5721) + p.SetState(5719) p.Table_func_column_list() } { - p.SetState(5722) + p.SetState(5720) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -80935,7 +80931,7 @@ func (p *PostgreSQLParser) Createfunctionstmt() (localctx ICreatefunctionstmtCon goto errorExit } { - p.SetState(5728) + p.SetState(5726) p.Createfunc_opt_list() } @@ -81042,7 +81038,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(5730) + p.SetState(5728) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -81050,7 +81046,7 @@ func (p *PostgreSQLParser) Opt_or_replace() (localctx IOpt_or_replaceContext) { } } { - p.SetState(5731) + p.SetState(5729) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -81180,14 +81176,14 @@ func (p *PostgreSQLParser) Func_args() (localctx IFunc_argsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5733) + p.SetState(5731) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5735) + p.SetState(5733) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81196,13 +81192,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(5734) + p.SetState(5732) p.Func_args_list() } } { - p.SetState(5737) + p.SetState(5735) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -81358,10 +81354,10 @@ func (p *PostgreSQLParser) Func_args_list() (localctx IFunc_args_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5739) + p.SetState(5737) p.Func_arg() } - p.SetState(5744) + p.SetState(5742) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81370,7 +81366,7 @@ func (p *PostgreSQLParser) Func_args_list() (localctx IFunc_args_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5740) + p.SetState(5738) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -81378,11 +81374,11 @@ func (p *PostgreSQLParser) Func_args_list() (localctx IFunc_args_listContext) { } } { - p.SetState(5741) + p.SetState(5739) p.Func_arg() } - p.SetState(5746) + p.SetState(5744) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81538,10 +81534,10 @@ func (p *PostgreSQLParser) Function_with_argtypes_list() (localctx IFunction_wit p.EnterOuterAlt(localctx, 1) { - p.SetState(5747) + p.SetState(5745) p.Function_with_argtypes() } - p.SetState(5752) + p.SetState(5750) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81550,7 +81546,7 @@ func (p *PostgreSQLParser) Function_with_argtypes_list() (localctx IFunction_wit for _la == PostgreSQLParserCOMMA { { - p.SetState(5748) + p.SetState(5746) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -81558,11 +81554,11 @@ func (p *PostgreSQLParser) Function_with_argtypes_list() (localctx IFunction_wit } } { - p.SetState(5749) + p.SetState(5747) p.Function_with_argtypes() } - p.SetState(5754) + p.SetState(5752) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81748,7 +81744,7 @@ func (p *PostgreSQLParser) Function_with_argtypes() (localctx IFunction_with_arg p.EnterRule(localctx, 632, PostgreSQLParserRULE_function_with_argtypes) var _la int - p.SetState(5763) + p.SetState(5761) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81758,28 +81754,28 @@ func (p *PostgreSQLParser) Function_with_argtypes() (localctx IFunction_with_arg case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5755) + p.SetState(5753) p.Func_name() } { - p.SetState(5756) + p.SetState(5754) p.Func_args() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5758) + p.SetState(5756) p.Type_func_name_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5759) + p.SetState(5757) p.Colid() } - p.SetState(5761) + p.SetState(5759) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81788,7 +81784,7 @@ func (p *PostgreSQLParser) Function_with_argtypes() (localctx IFunction_with_arg if _la == PostgreSQLParserOPEN_BRACKET || _la == PostgreSQLParserDOT { { - p.SetState(5760) + p.SetState(5758) p.Indirection() } @@ -81920,14 +81916,14 @@ func (p *PostgreSQLParser) Func_args_with_defaults() (localctx IFunc_args_with_d p.EnterOuterAlt(localctx, 1) { - p.SetState(5765) + p.SetState(5763) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5767) + p.SetState(5765) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -81936,13 +81932,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(5766) + p.SetState(5764) p.Func_args_with_defaults_list() } } { - p.SetState(5769) + p.SetState(5767) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -82098,10 +82094,10 @@ func (p *PostgreSQLParser) Func_args_with_defaults_list() (localctx IFunc_args_w p.EnterOuterAlt(localctx, 1) { - p.SetState(5771) + p.SetState(5769) p.Func_arg_with_default() } - p.SetState(5776) + p.SetState(5774) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82110,7 +82106,7 @@ func (p *PostgreSQLParser) Func_args_with_defaults_list() (localctx IFunc_args_w for _la == PostgreSQLParserCOMMA { { - p.SetState(5772) + p.SetState(5770) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -82118,11 +82114,11 @@ func (p *PostgreSQLParser) Func_args_with_defaults_list() (localctx IFunc_args_w } } { - p.SetState(5773) + p.SetState(5771) p.Func_arg_with_default() } - p.SetState(5778) + p.SetState(5776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82272,7 +82268,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(5792) + p.SetState(5790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82282,15 +82278,15 @@ func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5779) + p.SetState(5777) p.Arg_class() } - p.SetState(5781) + p.SetState(5779) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 475, p.GetParserRuleContext()) == 1 { { - p.SetState(5780) + p.SetState(5778) p.Param_name() } @@ -82298,22 +82294,22 @@ func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { goto errorExit } { - p.SetState(5783) + p.SetState(5781) p.Func_type() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5785) + p.SetState(5783) p.Param_name() } - p.SetState(5787) + p.SetState(5785) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 476, p.GetParserRuleContext()) == 1 { { - p.SetState(5786) + p.SetState(5784) p.Arg_class() } @@ -82321,14 +82317,14 @@ func (p *PostgreSQLParser) Func_arg() (localctx IFunc_argContext) { goto errorExit } { - p.SetState(5789) + p.SetState(5787) p.Func_type() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5791) + p.SetState(5789) p.Func_type() } @@ -82447,7 +82443,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(5801) + p.SetState(5799) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82457,19 +82453,19 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserIN_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(5794) + p.SetState(5792) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5796) + p.SetState(5794) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 478, p.GetParserRuleContext()) == 1 { { - p.SetState(5795) + p.SetState(5793) p.Match(PostgreSQLParserOUT_P) if p.HasError() { // Recognition error - abort rule @@ -82484,7 +82480,7 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserOUT_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5798) + p.SetState(5796) p.Match(PostgreSQLParserOUT_P) if p.HasError() { // Recognition error - abort rule @@ -82495,7 +82491,7 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserINOUT: p.EnterOuterAlt(localctx, 3) { - p.SetState(5799) + p.SetState(5797) p.Match(PostgreSQLParserINOUT) if p.HasError() { // Recognition error - abort rule @@ -82506,7 +82502,7 @@ func (p *PostgreSQLParser) Arg_class() (localctx IArg_classContext) { case PostgreSQLParserVARIADIC: p.EnterOuterAlt(localctx, 4) { - p.SetState(5800) + p.SetState(5798) p.Match(PostgreSQLParserVARIADIC) if p.HasError() { // Recognition error - abort rule @@ -82654,7 +82650,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(5807) + p.SetState(5805) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -82664,21 +82660,21 @@ func (p *PostgreSQLParser) Param_name() (localctx IParam_nameContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5803) + p.SetState(5801) p.Type_function_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5804) + p.SetState(5802) p.Builtin_function_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5805) + p.SetState(5803) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -82689,7 +82685,7 @@ func (p *PostgreSQLParser) Param_name() (localctx IParam_nameContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5806) + p.SetState(5804) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -82811,7 +82807,7 @@ func (p *PostgreSQLParser) Func_return() (localctx IFunc_returnContext) { p.EnterRule(localctx, 644, PostgreSQLParserRULE_func_return) p.EnterOuterAlt(localctx, 1) { - p.SetState(5809) + p.SetState(5807) p.Func_type() } @@ -83001,7 +82997,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { p.EnterRule(localctx, 646, PostgreSQLParserRULE_func_type) var _la int - p.SetState(5825) + p.SetState(5823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83011,13 +83007,13 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5811) + p.SetState(5809) p.Typename() } case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(5813) + p.SetState(5811) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83026,7 +83022,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { if _la == PostgreSQLParserSETOF { { - p.SetState(5812) + p.SetState(5810) p.Match(PostgreSQLParserSETOF) if p.HasError() { // Recognition error - abort rule @@ -83035,7 +83031,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { } } - p.SetState(5819) + p.SetState(5817) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83044,19 +83040,19 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 482, p.GetParserRuleContext()) { case 1: { - p.SetState(5815) + p.SetState(5813) p.Builtin_function_name() } case 2: { - p.SetState(5816) + p.SetState(5814) p.Type_function_name() } case 3: { - p.SetState(5817) + p.SetState(5815) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -83066,7 +83062,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { case 4: { - p.SetState(5818) + p.SetState(5816) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -83078,11 +83074,11 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { goto errorExit } { - p.SetState(5821) + p.SetState(5819) p.Attrs() } { - p.SetState(5822) + p.SetState(5820) p.Match(PostgreSQLParserPERCENT) if p.HasError() { // Recognition error - abort rule @@ -83090,7 +83086,7 @@ func (p *PostgreSQLParser) Func_type() (localctx IFunc_typeContext) { } } { - p.SetState(5823) + p.SetState(5821) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -83241,10 +83237,10 @@ func (p *PostgreSQLParser) Func_arg_with_default() (localctx IFunc_arg_with_defa p.EnterOuterAlt(localctx, 1) { - p.SetState(5827) + p.SetState(5825) p.Func_arg() } - p.SetState(5830) + p.SetState(5828) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83253,7 +83249,7 @@ func (p *PostgreSQLParser) Func_arg_with_default() (localctx IFunc_arg_with_defa if _la == PostgreSQLParserEQUAL || _la == PostgreSQLParserDEFAULT { { - p.SetState(5828) + p.SetState(5826) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEQUAL || _la == PostgreSQLParserDEFAULT) { @@ -83264,7 +83260,7 @@ func (p *PostgreSQLParser) Func_arg_with_default() (localctx IFunc_arg_with_defa } } { - p.SetState(5829) + p.SetState(5827) p.A_expr() } @@ -83380,7 +83376,7 @@ func (p *PostgreSQLParser) Aggr_arg() (localctx IAggr_argContext) { p.EnterRule(localctx, 650, PostgreSQLParserRULE_aggr_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(5832) + p.SetState(5830) p.Func_arg() } @@ -83545,14 +83541,14 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { p.EnterRule(localctx, 652, PostgreSQLParserRULE_aggr_args) p.EnterOuterAlt(localctx, 1) { - p.SetState(5834) + p.SetState(5832) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(5845) + p.SetState(5843) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83561,7 +83557,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 485, p.GetParserRuleContext()) { case 1: { - p.SetState(5835) + p.SetState(5833) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -83571,13 +83567,13 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { case 2: { - p.SetState(5836) + p.SetState(5834) p.Aggr_args_list() } case 3: { - p.SetState(5837) + p.SetState(5835) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -83585,7 +83581,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5838) + p.SetState(5836) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -83593,17 +83589,17 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5839) + p.SetState(5837) p.Aggr_args_list() } case 4: { - p.SetState(5840) + p.SetState(5838) p.Aggr_args_list() } { - p.SetState(5841) + p.SetState(5839) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -83611,7 +83607,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5842) + p.SetState(5840) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -83619,7 +83615,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { } } { - p.SetState(5843) + p.SetState(5841) p.Aggr_args_list() } @@ -83627,7 +83623,7 @@ func (p *PostgreSQLParser) Aggr_args() (localctx IAggr_argsContext) { goto errorExit } { - p.SetState(5847) + p.SetState(5845) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -83783,10 +83779,10 @@ func (p *PostgreSQLParser) Aggr_args_list() (localctx IAggr_args_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(5849) + p.SetState(5847) p.Aggr_arg() } - p.SetState(5854) + p.SetState(5852) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83795,7 +83791,7 @@ func (p *PostgreSQLParser) Aggr_args_list() (localctx IAggr_args_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(5850) + p.SetState(5848) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -83803,11 +83799,11 @@ func (p *PostgreSQLParser) Aggr_args_list() (localctx IAggr_args_listContext) { } } { - p.SetState(5851) + p.SetState(5849) p.Aggr_arg() } - p.SetState(5856) + p.SetState(5854) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -83942,11 +83938,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(5857) + p.SetState(5855) p.Func_name() } { - p.SetState(5858) + p.SetState(5856) p.Aggr_args() } @@ -84098,10 +84094,10 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes_list() (localctx IAggregate_w p.EnterOuterAlt(localctx, 1) { - p.SetState(5860) + p.SetState(5858) p.Aggregate_with_argtypes() } - p.SetState(5865) + p.SetState(5863) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84110,7 +84106,7 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes_list() (localctx IAggregate_w for _la == PostgreSQLParserCOMMA { { - p.SetState(5861) + p.SetState(5859) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -84118,11 +84114,11 @@ func (p *PostgreSQLParser) Aggregate_with_argtypes_list() (localctx IAggregate_w } } { - p.SetState(5862) + p.SetState(5860) p.Aggregate_with_argtypes() } - p.SetState(5867) + p.SetState(5865) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84267,7 +84263,7 @@ func (p *PostgreSQLParser) Createfunc_opt_list() (localctx ICreatefunc_opt_listC var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(5869) + p.SetState(5867) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84277,7 +84273,7 @@ func (p *PostgreSQLParser) Createfunc_opt_list() (localctx ICreatefunc_opt_listC switch _alt { case 1: { - p.SetState(5868) + p.SetState(5866) p.Createfunc_opt_item() } @@ -84286,7 +84282,7 @@ func (p *PostgreSQLParser) Createfunc_opt_list() (localctx ICreatefunc_opt_listC goto errorExit } - p.SetState(5871) + p.SetState(5869) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 488, p.GetParserRuleContext()) if p.HasError() { @@ -84555,7 +84551,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(5910) + p.SetState(5908) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -84565,7 +84561,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5875) + p.SetState(5873) p.Match(PostgreSQLParserCALLED) if p.HasError() { // Recognition error - abort rule @@ -84573,7 +84569,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5876) + p.SetState(5874) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -84581,7 +84577,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5877) + p.SetState(5875) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -84589,7 +84585,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5878) + p.SetState(5876) p.Match(PostgreSQLParserINPUT_P) if p.HasError() { // Recognition error - abort rule @@ -84600,7 +84596,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5879) + p.SetState(5877) p.Match(PostgreSQLParserRETURNS) if p.HasError() { // Recognition error - abort rule @@ -84608,7 +84604,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5880) + p.SetState(5878) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -84616,7 +84612,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5881) + p.SetState(5879) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -84624,7 +84620,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5882) + p.SetState(5880) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -84632,7 +84628,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5883) + p.SetState(5881) p.Match(PostgreSQLParserINPUT_P) if p.HasError() { // Recognition error - abort rule @@ -84643,7 +84639,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5884) + p.SetState(5882) p.Match(PostgreSQLParserSTRICT_P) if p.HasError() { // Recognition error - abort rule @@ -84654,7 +84650,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5885) + p.SetState(5883) p.Match(PostgreSQLParserIMMUTABLE) if p.HasError() { // Recognition error - abort rule @@ -84665,7 +84661,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(5886) + p.SetState(5884) p.Match(PostgreSQLParserSTABLE) if p.HasError() { // Recognition error - abort rule @@ -84676,7 +84672,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(5887) + p.SetState(5885) p.Match(PostgreSQLParserVOLATILE) if p.HasError() { // Recognition error - abort rule @@ -84687,7 +84683,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(5888) + p.SetState(5886) p.Match(PostgreSQLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -84695,7 +84691,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5889) + p.SetState(5887) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84703,7 +84699,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5890) + p.SetState(5888) p.Match(PostgreSQLParserDEFINER) if p.HasError() { // Recognition error - abort rule @@ -84714,7 +84710,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(5891) + p.SetState(5889) p.Match(PostgreSQLParserEXTERNAL) if p.HasError() { // Recognition error - abort rule @@ -84722,7 +84718,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5892) + p.SetState(5890) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84730,7 +84726,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5893) + p.SetState(5891) p.Match(PostgreSQLParserINVOKER) if p.HasError() { // Recognition error - abort rule @@ -84741,7 +84737,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(5894) + p.SetState(5892) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84749,7 +84745,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5895) + p.SetState(5893) p.Match(PostgreSQLParserDEFINER) if p.HasError() { // Recognition error - abort rule @@ -84760,7 +84756,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(5896) + p.SetState(5894) p.Match(PostgreSQLParserSECURITY) if p.HasError() { // Recognition error - abort rule @@ -84768,7 +84764,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5897) + p.SetState(5895) p.Match(PostgreSQLParserINVOKER) if p.HasError() { // Recognition error - abort rule @@ -84779,7 +84775,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(5898) + p.SetState(5896) p.Match(PostgreSQLParserLEAKPROOF) if p.HasError() { // Recognition error - abort rule @@ -84790,7 +84786,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(5899) + p.SetState(5897) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -84798,7 +84794,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5900) + p.SetState(5898) p.Match(PostgreSQLParserLEAKPROOF) if p.HasError() { // Recognition error - abort rule @@ -84809,7 +84805,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(5901) + p.SetState(5899) p.Match(PostgreSQLParserCOST) if p.HasError() { // Recognition error - abort rule @@ -84817,14 +84813,14 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5902) + p.SetState(5900) p.Numericonly() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(5903) + p.SetState(5901) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -84832,14 +84828,14 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5904) + p.SetState(5902) p.Numericonly() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(5905) + p.SetState(5903) p.Match(PostgreSQLParserSUPPORT) if p.HasError() { // Recognition error - abort rule @@ -84847,21 +84843,21 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5906) + p.SetState(5904) p.Any_name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(5907) + p.SetState(5905) p.Functionsetresetclause() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(5908) + p.SetState(5906) p.Match(PostgreSQLParserPARALLEL) if p.HasError() { // Recognition error - abort rule @@ -84869,7 +84865,7 @@ func (p *PostgreSQLParser) Common_func_opt_item() (localctx ICommon_func_opt_ite } } { - p.SetState(5909) + p.SetState(5907) p.Colid() } @@ -85088,7 +85084,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(5925) + p.SetState(5923) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85098,7 +85094,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC case PostgreSQLParserAS: p.EnterOuterAlt(localctx, 1) { - p.SetState(5912) + p.SetState(5910) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -85106,14 +85102,14 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5913) + p.SetState(5911) p.Func_as() } case PostgreSQLParserBEGIN_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(5914) + p.SetState(5912) p.Match(PostgreSQLParserBEGIN_P) if p.HasError() { // Recognition error - abort rule @@ -85121,7 +85117,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5915) + p.SetState(5913) p.Match(PostgreSQLParserATOMIC_P) if p.HasError() { // Recognition error - abort rule @@ -85129,11 +85125,11 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5916) + p.SetState(5914) p.Stmtmulti() } { - p.SetState(5917) + p.SetState(5915) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -85144,7 +85140,7 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC case PostgreSQLParserLANGUAGE: p.EnterOuterAlt(localctx, 3) { - p.SetState(5919) + p.SetState(5917) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -85152,14 +85148,14 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5920) + p.SetState(5918) p.Nonreservedword_or_sconst() } case PostgreSQLParserTRANSFORM: p.EnterOuterAlt(localctx, 4) { - p.SetState(5921) + p.SetState(5919) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -85167,14 +85163,14 @@ func (p *PostgreSQLParser) Createfunc_opt_item() (localctx ICreatefunc_opt_itemC } } { - p.SetState(5922) + p.SetState(5920) p.Transform_type_list() } case PostgreSQLParserWINDOW: p.EnterOuterAlt(localctx, 5) { - p.SetState(5923) + p.SetState(5921) p.Match(PostgreSQLParserWINDOW) if p.HasError() { // Recognition error - abort rule @@ -85185,7 +85181,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(5924) + p.SetState(5922) p.Common_func_opt_item() } @@ -85355,7 +85351,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(5932) + p.SetState(5930) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85365,7 +85361,7 @@ func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5927) + p.SetState(5925) var _x = p.Sconst() @@ -85375,11 +85371,11 @@ func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5928) + p.SetState(5926) p.Sconst() } { - p.SetState(5929) + p.SetState(5927) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -85387,7 +85383,7 @@ func (p *PostgreSQLParser) Func_as() (localctx IFunc_asContext) { } } { - p.SetState(5930) + p.SetState(5928) p.Sconst() } @@ -85563,7 +85559,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(5934) + p.SetState(5932) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -85571,7 +85567,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5935) + p.SetState(5933) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -85579,10 +85575,10 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5936) + p.SetState(5934) p.Typename() } - p.SetState(5943) + p.SetState(5941) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85591,7 +85587,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(5937) + p.SetState(5935) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -85599,7 +85595,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5938) + p.SetState(5936) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -85607,7 +85603,7 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5939) + p.SetState(5937) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -85615,11 +85611,11 @@ func (p *PostgreSQLParser) Transform_type_list() (localctx ITransform_type_listC } } { - p.SetState(5940) + p.SetState(5938) p.Typename() } - p.SetState(5945) + p.SetState(5943) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -85742,7 +85738,7 @@ func (p *PostgreSQLParser) Opt_definition() (localctx IOpt_definitionContext) { p.EnterRule(localctx, 670, PostgreSQLParserRULE_opt_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(5946) + p.SetState(5944) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -85750,7 +85746,7 @@ func (p *PostgreSQLParser) Opt_definition() (localctx IOpt_definitionContext) { } } { - p.SetState(5947) + p.SetState(5945) p.Definition() } @@ -85881,11 +85877,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(5949) + p.SetState(5947) p.Param_name() } { - p.SetState(5950) + p.SetState(5948) p.Func_type() } @@ -86037,10 +86033,10 @@ func (p *PostgreSQLParser) Table_func_column_list() (localctx ITable_func_column p.EnterOuterAlt(localctx, 1) { - p.SetState(5952) + p.SetState(5950) p.Table_func_column() } - p.SetState(5957) + p.SetState(5955) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86049,7 +86045,7 @@ func (p *PostgreSQLParser) Table_func_column_list() (localctx ITable_func_column for _la == PostgreSQLParserCOMMA { { - p.SetState(5953) + p.SetState(5951) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -86057,11 +86053,11 @@ func (p *PostgreSQLParser) Table_func_column_list() (localctx ITable_func_column } } { - p.SetState(5954) + p.SetState(5952) p.Table_func_column() } - p.SetState(5959) + p.SetState(5957) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86235,7 +86231,7 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(5960) + p.SetState(5958) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -86243,7 +86239,7 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte } } { - p.SetState(5961) + p.SetState(5959) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFUNCTION || _la == PostgreSQLParserPROCEDURE || _la == PostgreSQLParserROUTINE) { @@ -86254,14 +86250,14 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte } } { - p.SetState(5962) + p.SetState(5960) p.Function_with_argtypes() } { - p.SetState(5963) + p.SetState(5961) p.Alterfunc_opt_list() } - p.SetState(5965) + p.SetState(5963) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86270,7 +86266,7 @@ func (p *PostgreSQLParser) Alterfunctionstmt() (localctx IAlterfunctionstmtConte if _la == PostgreSQLParserRESTRICT { { - p.SetState(5964) + p.SetState(5962) p.Opt_restrict() } @@ -86413,7 +86409,7 @@ func (p *PostgreSQLParser) Alterfunc_opt_list() (localctx IAlterfunc_opt_listCon var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(5968) + p.SetState(5966) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86423,7 +86419,7 @@ func (p *PostgreSQLParser) Alterfunc_opt_list() (localctx IAlterfunc_opt_listCon switch _alt { case 1: { - p.SetState(5967) + p.SetState(5965) p.Common_func_opt_item() } @@ -86432,7 +86428,7 @@ func (p *PostgreSQLParser) Alterfunc_opt_list() (localctx IAlterfunc_opt_listCon goto errorExit } - p.SetState(5970) + p.SetState(5968) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 495, p.GetParserRuleContext()) if p.HasError() { @@ -86538,7 +86534,7 @@ func (p *PostgreSQLParser) Opt_restrict() (localctx IOpt_restrictContext) { p.EnterRule(localctx, 680, PostgreSQLParserRULE_opt_restrict) p.EnterOuterAlt(localctx, 1) { - p.SetState(5972) + p.SetState(5970) p.Match(PostgreSQLParserRESTRICT) if p.HasError() { // Recognition error - abort rule @@ -86703,7 +86699,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { p.EnterRule(localctx, 682, PostgreSQLParserRULE_removefuncstmt) var _la int - p.SetState(6016) + p.SetState(6014) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86713,7 +86709,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(5974) + p.SetState(5972) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86721,7 +86717,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5975) + p.SetState(5973) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -86729,10 +86725,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5976) + p.SetState(5974) p.Function_with_argtypes_list() } - p.SetState(5978) + p.SetState(5976) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86741,7 +86737,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5977) + p.SetState(5975) p.Opt_drop_behavior() } @@ -86750,7 +86746,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(5980) + p.SetState(5978) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86758,7 +86754,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5981) + p.SetState(5979) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -86766,7 +86762,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5982) + p.SetState(5980) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -86774,7 +86770,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5983) + p.SetState(5981) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -86782,10 +86778,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5984) + p.SetState(5982) p.Function_with_argtypes_list() } - p.SetState(5986) + p.SetState(5984) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86794,7 +86790,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5985) + p.SetState(5983) p.Opt_drop_behavior() } @@ -86803,7 +86799,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(5988) + p.SetState(5986) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86811,7 +86807,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5989) + p.SetState(5987) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -86819,10 +86815,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5990) + p.SetState(5988) p.Function_with_argtypes_list() } - p.SetState(5992) + p.SetState(5990) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86831,7 +86827,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5991) + p.SetState(5989) p.Opt_drop_behavior() } @@ -86840,7 +86836,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(5994) + p.SetState(5992) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86848,7 +86844,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5995) + p.SetState(5993) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -86856,7 +86852,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5996) + p.SetState(5994) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -86864,7 +86860,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5997) + p.SetState(5995) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -86872,10 +86868,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(5998) + p.SetState(5996) p.Function_with_argtypes_list() } - p.SetState(6000) + p.SetState(5998) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86884,7 +86880,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(5999) + p.SetState(5997) p.Opt_drop_behavior() } @@ -86893,7 +86889,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6002) + p.SetState(6000) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86901,7 +86897,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6003) + p.SetState(6001) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -86909,10 +86905,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6004) + p.SetState(6002) p.Function_with_argtypes_list() } - p.SetState(6006) + p.SetState(6004) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86921,7 +86917,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6005) + p.SetState(6003) p.Opt_drop_behavior() } @@ -86930,7 +86926,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6008) + p.SetState(6006) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -86938,7 +86934,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6009) + p.SetState(6007) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -86946,7 +86942,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6010) + p.SetState(6008) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -86954,7 +86950,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6011) + p.SetState(6009) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -86962,10 +86958,10 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { } } { - p.SetState(6012) + p.SetState(6010) p.Function_with_argtypes_list() } - p.SetState(6014) + p.SetState(6012) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -86974,7 +86970,7 @@ func (p *PostgreSQLParser) Removefuncstmt() (localctx IRemovefuncstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6013) + p.SetState(6011) p.Opt_drop_behavior() } @@ -87131,7 +87127,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { p.EnterRule(localctx, 684, PostgreSQLParserRULE_removeaggrstmt) var _la int - p.SetState(6032) + p.SetState(6030) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87141,7 +87137,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6018) + p.SetState(6016) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87149,7 +87145,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6019) + p.SetState(6017) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -87157,10 +87153,10 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6020) + p.SetState(6018) p.Aggregate_with_argtypes_list() } - p.SetState(6022) + p.SetState(6020) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87169,7 +87165,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6021) + p.SetState(6019) p.Opt_drop_behavior() } @@ -87178,7 +87174,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6024) + p.SetState(6022) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87186,7 +87182,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6025) + p.SetState(6023) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -87194,7 +87190,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6026) + p.SetState(6024) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -87202,7 +87198,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6027) + p.SetState(6025) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -87210,10 +87206,10 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { } } { - p.SetState(6028) + p.SetState(6026) p.Aggregate_with_argtypes_list() } - p.SetState(6030) + p.SetState(6028) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87222,7 +87218,7 @@ func (p *PostgreSQLParser) Removeaggrstmt() (localctx IRemoveaggrstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6029) + p.SetState(6027) p.Opt_drop_behavior() } @@ -87379,7 +87375,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { p.EnterRule(localctx, 686, PostgreSQLParserRULE_removeoperstmt) var _la int - p.SetState(6048) + p.SetState(6046) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87389,7 +87385,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6034) + p.SetState(6032) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87397,7 +87393,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6035) + p.SetState(6033) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -87405,10 +87401,10 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6036) + p.SetState(6034) p.Operator_with_argtypes_list() } - p.SetState(6038) + p.SetState(6036) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87417,7 +87413,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6037) + p.SetState(6035) p.Opt_drop_behavior() } @@ -87426,7 +87422,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6040) + p.SetState(6038) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -87434,7 +87430,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6041) + p.SetState(6039) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -87442,7 +87438,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6042) + p.SetState(6040) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -87450,7 +87446,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6043) + p.SetState(6041) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -87458,10 +87454,10 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { } } { - p.SetState(6044) + p.SetState(6042) p.Operator_with_argtypes_list() } - p.SetState(6046) + p.SetState(6044) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87470,7 +87466,7 @@ func (p *PostgreSQLParser) Removeoperstmt() (localctx IRemoveoperstmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6045) + p.SetState(6043) p.Opt_drop_behavior() } @@ -87634,7 +87630,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(6072) + p.SetState(6070) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87644,7 +87640,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6050) + p.SetState(6048) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87652,11 +87648,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6051) + p.SetState(6049) p.Typename() } { - p.SetState(6052) + p.SetState(6050) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87667,7 +87663,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6054) + p.SetState(6052) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87675,11 +87671,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6055) + p.SetState(6053) p.Typename() } { - p.SetState(6056) + p.SetState(6054) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -87687,11 +87683,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6057) + p.SetState(6055) p.Typename() } { - p.SetState(6058) + p.SetState(6056) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87702,7 +87698,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6060) + p.SetState(6058) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87710,7 +87706,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6061) + p.SetState(6059) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -87718,7 +87714,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6062) + p.SetState(6060) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -87726,11 +87722,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6063) + p.SetState(6061) p.Typename() } { - p.SetState(6064) + p.SetState(6062) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87741,7 +87737,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6066) + p.SetState(6064) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87749,11 +87745,11 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6067) + p.SetState(6065) p.Typename() } { - p.SetState(6068) + p.SetState(6066) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -87761,7 +87757,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6069) + p.SetState(6067) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -87769,7 +87765,7 @@ func (p *PostgreSQLParser) Oper_argtypes() (localctx IOper_argtypesContext) { } } { - p.SetState(6070) + p.SetState(6068) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -87945,7 +87941,7 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(6079) + p.SetState(6077) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87954,11 +87950,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(6074) + p.SetState(6072) p.Colid() } { - p.SetState(6075) + p.SetState(6073) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule @@ -87966,7 +87962,7 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { } } - p.SetState(6081) + p.SetState(6079) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -87974,7 +87970,7 @@ func (p *PostgreSQLParser) Any_operator() (localctx IAny_operatorContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(6082) + p.SetState(6080) p.All_op() } @@ -88126,10 +88122,10 @@ func (p *PostgreSQLParser) Operator_with_argtypes_list() (localctx IOperator_wit p.EnterOuterAlt(localctx, 1) { - p.SetState(6084) + p.SetState(6082) p.Operator_with_argtypes() } - p.SetState(6089) + p.SetState(6087) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88138,7 +88134,7 @@ func (p *PostgreSQLParser) Operator_with_argtypes_list() (localctx IOperator_wit for _la == PostgreSQLParserCOMMA { { - p.SetState(6085) + p.SetState(6083) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -88146,11 +88142,11 @@ func (p *PostgreSQLParser) Operator_with_argtypes_list() (localctx IOperator_wit } } { - p.SetState(6086) + p.SetState(6084) p.Operator_with_argtypes() } - p.SetState(6091) + p.SetState(6089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88285,11 +88281,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(6092) + p.SetState(6090) p.Any_operator() } { - p.SetState(6093) + p.SetState(6091) p.Oper_argtypes() } @@ -88408,7 +88404,7 @@ func (p *PostgreSQLParser) Dostmt() (localctx IDostmtContext) { p.EnterRule(localctx, 696, PostgreSQLParserRULE_dostmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(6095) + p.SetState(6093) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule @@ -88416,7 +88412,7 @@ func (p *PostgreSQLParser) Dostmt() (localctx IDostmtContext) { } } { - p.SetState(6096) + p.SetState(6094) p.Dostmt_opt_list() } @@ -88557,7 +88553,7 @@ func (p *PostgreSQLParser) Dostmt_opt_list() (localctx IDostmt_opt_listContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(6099) + p.SetState(6097) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88566,11 +88562,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(6098) + p.SetState(6096) p.Dostmt_opt_item() } - p.SetState(6101) + p.SetState(6099) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88708,7 +88704,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(6106) + p.SetState(6104) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88718,14 +88714,14 @@ func (p *PostgreSQLParser) Dostmt_opt_item() (localctx IDostmt_opt_itemContext) case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(6103) + p.SetState(6101) p.Sconst() } case PostgreSQLParserLANGUAGE: p.EnterOuterAlt(localctx, 2) { - p.SetState(6104) + p.SetState(6102) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -88733,7 +88729,7 @@ func (p *PostgreSQLParser) Dostmt_opt_item() (localctx IDostmt_opt_itemContext) } } { - p.SetState(6105) + p.SetState(6103) p.Nonreservedword_or_sconst() } @@ -88957,7 +88953,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { p.EnterRule(localctx, 702, PostgreSQLParserRULE_createcaststmt) var _la int - p.SetState(6145) + p.SetState(6143) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -88967,7 +88963,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6108) + p.SetState(6106) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -88975,7 +88971,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6109) + p.SetState(6107) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -88983,7 +88979,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6110) + p.SetState(6108) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -88991,11 +88987,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6111) + p.SetState(6109) p.Typename() } { - p.SetState(6112) + p.SetState(6110) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89003,11 +88999,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6113) + p.SetState(6111) p.Typename() } { - p.SetState(6114) + p.SetState(6112) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89015,7 +89011,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6115) + p.SetState(6113) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -89023,7 +89019,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6116) + p.SetState(6114) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -89031,10 +89027,10 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6117) + p.SetState(6115) p.Function_with_argtypes() } - p.SetState(6119) + p.SetState(6117) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89043,7 +89039,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { if _la == PostgreSQLParserAS { { - p.SetState(6118) + p.SetState(6116) p.Cast_context() } @@ -89052,7 +89048,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6121) + p.SetState(6119) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -89060,7 +89056,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6122) + p.SetState(6120) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -89068,7 +89064,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6123) + p.SetState(6121) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89076,11 +89072,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6124) + p.SetState(6122) p.Typename() } { - p.SetState(6125) + p.SetState(6123) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89088,11 +89084,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6126) + p.SetState(6124) p.Typename() } { - p.SetState(6127) + p.SetState(6125) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89100,7 +89096,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6128) + p.SetState(6126) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -89108,14 +89104,14 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6129) + p.SetState(6127) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6131) + p.SetState(6129) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89124,7 +89120,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { if _la == PostgreSQLParserAS { { - p.SetState(6130) + p.SetState(6128) p.Cast_context() } @@ -89133,7 +89129,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6133) + p.SetState(6131) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -89141,7 +89137,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6134) + p.SetState(6132) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -89149,7 +89145,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6135) + p.SetState(6133) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89157,11 +89153,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6136) + p.SetState(6134) p.Typename() } { - p.SetState(6137) + p.SetState(6135) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89169,11 +89165,11 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6138) + p.SetState(6136) p.Typename() } { - p.SetState(6139) + p.SetState(6137) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89181,7 +89177,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6140) + p.SetState(6138) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -89189,14 +89185,14 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { } } { - p.SetState(6141) + p.SetState(6139) p.Match(PostgreSQLParserINOUT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6143) + p.SetState(6141) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89205,7 +89201,7 @@ func (p *PostgreSQLParser) Createcaststmt() (localctx ICreatecaststmtContext) { if _la == PostgreSQLParserAS { { - p.SetState(6142) + p.SetState(6140) p.Cast_context() } @@ -89321,7 +89317,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(6151) + p.SetState(6149) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89331,7 +89327,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6147) + p.SetState(6145) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89339,7 +89335,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { } } { - p.SetState(6148) + p.SetState(6146) p.Match(PostgreSQLParserIMPLICIT_P) if p.HasError() { // Recognition error - abort rule @@ -89350,7 +89346,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6149) + p.SetState(6147) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89358,7 +89354,7 @@ func (p *PostgreSQLParser) Cast_context() (localctx ICast_contextContext) { } } { - p.SetState(6150) + p.SetState(6148) p.Match(PostgreSQLParserASSIGNMENT) if p.HasError() { // Recognition error - abort rule @@ -89567,7 +89563,7 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(6153) + p.SetState(6151) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -89575,14 +89571,14 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { } } { - p.SetState(6154) + p.SetState(6152) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6156) + p.SetState(6154) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89591,13 +89587,13 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { if _la == PostgreSQLParserIF_P { { - p.SetState(6155) + p.SetState(6153) p.Opt_if_exists() } } { - p.SetState(6158) + p.SetState(6156) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -89605,11 +89601,11 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { } } { - p.SetState(6159) + p.SetState(6157) p.Typename() } { - p.SetState(6160) + p.SetState(6158) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -89617,18 +89613,18 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { } } { - p.SetState(6161) + p.SetState(6159) p.Typename() } { - p.SetState(6162) + p.SetState(6160) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6164) + p.SetState(6162) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89637,7 +89633,7 @@ func (p *PostgreSQLParser) Dropcaststmt() (localctx IDropcaststmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6163) + p.SetState(6161) p.Opt_drop_behavior() } @@ -89746,7 +89742,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(6166) + p.SetState(6164) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -89754,7 +89750,7 @@ func (p *PostgreSQLParser) Opt_if_exists() (localctx IOpt_if_existsContext) { } } { - p.SetState(6167) + p.SetState(6165) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -89955,14 +89951,14 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC p.EnterOuterAlt(localctx, 1) { - p.SetState(6169) + p.SetState(6167) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6171) + p.SetState(6169) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -89971,13 +89967,13 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC if _la == PostgreSQLParserOR { { - p.SetState(6170) + p.SetState(6168) p.Opt_or_replace() } } { - p.SetState(6173) + p.SetState(6171) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule @@ -89985,7 +89981,7 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6174) + p.SetState(6172) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -89993,11 +89989,11 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6175) + p.SetState(6173) p.Typename() } { - p.SetState(6176) + p.SetState(6174) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -90005,11 +90001,11 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6177) + p.SetState(6175) p.Name() } { - p.SetState(6178) + p.SetState(6176) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -90017,11 +90013,11 @@ func (p *PostgreSQLParser) Createtransformstmt() (localctx ICreatetransformstmtC } } { - p.SetState(6179) + p.SetState(6177) p.Transform_element_list() } { - p.SetState(6180) + p.SetState(6178) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -90208,7 +90204,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(6216) + p.SetState(6214) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90218,7 +90214,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6182) + p.SetState(6180) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -90226,7 +90222,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6183) + p.SetState(6181) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90234,7 +90230,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6184) + p.SetState(6182) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90242,7 +90238,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6185) + p.SetState(6183) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90250,11 +90246,11 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6186) + p.SetState(6184) p.Function_with_argtypes() } { - p.SetState(6187) + p.SetState(6185) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -90262,7 +90258,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6188) + p.SetState(6186) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -90270,7 +90266,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6189) + p.SetState(6187) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90278,7 +90274,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6190) + p.SetState(6188) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90286,7 +90282,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6191) + p.SetState(6189) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90294,14 +90290,14 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6192) + p.SetState(6190) p.Function_with_argtypes() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6194) + p.SetState(6192) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -90309,7 +90305,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6195) + p.SetState(6193) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90317,7 +90313,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6196) + p.SetState(6194) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90325,7 +90321,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6197) + p.SetState(6195) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90333,11 +90329,11 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6198) + p.SetState(6196) p.Function_with_argtypes() } { - p.SetState(6199) + p.SetState(6197) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -90345,7 +90341,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6200) + p.SetState(6198) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -90353,7 +90349,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6201) + p.SetState(6199) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90361,7 +90357,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6202) + p.SetState(6200) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90369,7 +90365,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6203) + p.SetState(6201) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90377,14 +90373,14 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6204) + p.SetState(6202) p.Function_with_argtypes() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6206) + p.SetState(6204) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -90392,7 +90388,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6207) + p.SetState(6205) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90400,7 +90396,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6208) + p.SetState(6206) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90408,7 +90404,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6209) + p.SetState(6207) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90416,14 +90412,14 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6210) + p.SetState(6208) p.Function_with_argtypes() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6211) + p.SetState(6209) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -90431,7 +90427,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6212) + p.SetState(6210) p.Match(PostgreSQLParserSQL_P) if p.HasError() { // Recognition error - abort rule @@ -90439,7 +90435,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6213) + p.SetState(6211) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -90447,7 +90443,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6214) + p.SetState(6212) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -90455,7 +90451,7 @@ func (p *PostgreSQLParser) Transform_element_list() (localctx ITransform_element } } { - p.SetState(6215) + p.SetState(6213) p.Function_with_argtypes() } @@ -90646,7 +90642,7 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(6218) + p.SetState(6216) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -90654,14 +90650,14 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte } } { - p.SetState(6219) + p.SetState(6217) p.Match(PostgreSQLParserTRANSFORM) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6221) + p.SetState(6219) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90670,13 +90666,13 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte if _la == PostgreSQLParserIF_P { { - p.SetState(6220) + p.SetState(6218) p.Opt_if_exists() } } { - p.SetState(6223) + p.SetState(6221) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -90684,11 +90680,11 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte } } { - p.SetState(6224) + p.SetState(6222) p.Typename() } { - p.SetState(6225) + p.SetState(6223) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -90696,10 +90692,10 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte } } { - p.SetState(6226) + p.SetState(6224) p.Name() } - p.SetState(6228) + p.SetState(6226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90708,7 +90704,7 @@ func (p *PostgreSQLParser) Droptransformstmt() (localctx IDroptransformstmtConte if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6227) + p.SetState(6225) p.Opt_drop_behavior() } @@ -90924,7 +90920,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { p.EnterRule(localctx, 716, PostgreSQLParserRULE_reindexstmt) var _la int - p.SetState(6264) + p.SetState(6262) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90934,7 +90930,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6230) + p.SetState(6228) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -90942,10 +90938,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6231) + p.SetState(6229) p.Reindex_target_type() } - p.SetState(6233) + p.SetState(6231) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90954,20 +90950,20 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6232) + p.SetState(6230) p.Opt_concurrently() } } { - p.SetState(6235) + p.SetState(6233) p.Qualified_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6237) + p.SetState(6235) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -90975,10 +90971,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6238) + p.SetState(6236) p.Reindex_target_multitable() } - p.SetState(6240) + p.SetState(6238) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -90987,20 +90983,20 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6239) + p.SetState(6237) p.Opt_concurrently() } } { - p.SetState(6242) + p.SetState(6240) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6244) + p.SetState(6242) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -91008,7 +91004,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6245) + p.SetState(6243) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91016,11 +91012,11 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6246) + p.SetState(6244) p.Reindex_option_list() } { - p.SetState(6247) + p.SetState(6245) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91028,10 +91024,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6248) + p.SetState(6246) p.Reindex_target_type() } - p.SetState(6250) + p.SetState(6248) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91040,20 +91036,20 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6249) + p.SetState(6247) p.Opt_concurrently() } } { - p.SetState(6252) + p.SetState(6250) p.Qualified_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6254) + p.SetState(6252) p.Match(PostgreSQLParserREINDEX) if p.HasError() { // Recognition error - abort rule @@ -91061,7 +91057,7 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6255) + p.SetState(6253) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91069,11 +91065,11 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6256) + p.SetState(6254) p.Reindex_option_list() } { - p.SetState(6257) + p.SetState(6255) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -91081,10 +91077,10 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { } } { - p.SetState(6258) + p.SetState(6256) p.Reindex_target_multitable() } - p.SetState(6260) + p.SetState(6258) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91093,13 +91089,13 @@ func (p *PostgreSQLParser) Reindexstmt() (localctx IReindexstmtContext) { if _la == PostgreSQLParserCONCURRENTLY { { - p.SetState(6259) + p.SetState(6257) p.Opt_concurrently() } } { - p.SetState(6262) + p.SetState(6260) p.Name() } @@ -91227,7 +91223,7 @@ func (p *PostgreSQLParser) Reindex_target_type() (localctx IReindex_target_typeC p.EnterOuterAlt(localctx, 1) { - p.SetState(6266) + p.SetState(6264) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTABLE || _la == PostgreSQLParserDATABASE || _la == PostgreSQLParserINDEX || _la == PostgreSQLParserSCHEMA || _la == PostgreSQLParserSYSTEM_P) { @@ -91348,7 +91344,7 @@ func (p *PostgreSQLParser) Reindex_target_multitable() (localctx IReindex_target p.EnterOuterAlt(localctx, 1) { - p.SetState(6268) + p.SetState(6266) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserDATABASE || _la == PostgreSQLParserSCHEMA || _la == PostgreSQLParserSYSTEM_P) { @@ -91507,10 +91503,10 @@ func (p *PostgreSQLParser) Reindex_option_list() (localctx IReindex_option_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(6270) + p.SetState(6268) p.Reindex_option_elem() } - p.SetState(6275) + p.SetState(6273) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91519,7 +91515,7 @@ func (p *PostgreSQLParser) Reindex_option_list() (localctx IReindex_option_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(6271) + p.SetState(6269) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -91527,11 +91523,11 @@ func (p *PostgreSQLParser) Reindex_option_list() (localctx IReindex_option_listC } } { - p.SetState(6272) + p.SetState(6270) p.Reindex_option_elem() } - p.SetState(6277) + p.SetState(6275) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91649,7 +91645,7 @@ func (p *PostgreSQLParser) Reindex_option_elem() (localctx IReindex_option_elemC p.EnterOuterAlt(localctx, 1) { - p.SetState(6278) + p.SetState(6276) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONCURRENTLY || _la == PostgreSQLParserVERBOSE || _la == PostgreSQLParserTABLESPACE) { @@ -91805,7 +91801,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(6292) + p.SetState(6290) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -91815,7 +91811,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6280) + p.SetState(6278) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -91823,7 +91819,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6281) + p.SetState(6279) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -91831,11 +91827,11 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6282) + p.SetState(6280) p.Name() } { - p.SetState(6283) + p.SetState(6281) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -91843,14 +91839,14 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6284) + p.SetState(6282) p.Reloptions() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6286) + p.SetState(6284) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -91858,7 +91854,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6287) + p.SetState(6285) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -91866,11 +91862,11 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6288) + p.SetState(6286) p.Name() } { - p.SetState(6289) + p.SetState(6287) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule @@ -91878,7 +91874,7 @@ func (p *PostgreSQLParser) Altertblspcstmt() (localctx IAltertblspcstmtContext) } } { - p.SetState(6290) + p.SetState(6288) p.Reloptions() } @@ -92446,7 +92442,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { p.EnterRule(localctx, 728, PostgreSQLParserRULE_renamestmt) var _la int - p.SetState(6781) + p.SetState(6779) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92456,7 +92452,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6294) + p.SetState(6292) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92464,7 +92460,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6295) + p.SetState(6293) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -92472,11 +92468,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6296) + p.SetState(6294) p.Aggregate_with_argtypes() } { - p.SetState(6297) + p.SetState(6295) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92484,7 +92480,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6298) + p.SetState(6296) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92492,14 +92488,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6299) + p.SetState(6297) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6301) + p.SetState(6299) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92507,7 +92503,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6302) + p.SetState(6300) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -92515,11 +92511,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6303) + p.SetState(6301) p.Any_name() } { - p.SetState(6304) + p.SetState(6302) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92527,7 +92523,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6305) + p.SetState(6303) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92535,14 +92531,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6306) + p.SetState(6304) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6308) + p.SetState(6306) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92550,7 +92546,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6309) + p.SetState(6307) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -92558,11 +92554,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6310) + p.SetState(6308) p.Any_name() } { - p.SetState(6311) + p.SetState(6309) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92570,7 +92566,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6312) + p.SetState(6310) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92578,14 +92574,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6313) + p.SetState(6311) p.Name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6315) + p.SetState(6313) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92593,7 +92589,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6316) + p.SetState(6314) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -92601,11 +92597,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6317) + p.SetState(6315) p.Name() } { - p.SetState(6318) + p.SetState(6316) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92613,7 +92609,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6319) + p.SetState(6317) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92621,14 +92617,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6320) + p.SetState(6318) p.Name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6322) + p.SetState(6320) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92636,7 +92632,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6323) + p.SetState(6321) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -92644,11 +92640,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6324) + p.SetState(6322) p.Any_name() } { - p.SetState(6325) + p.SetState(6323) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92656,7 +92652,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6326) + p.SetState(6324) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92664,14 +92660,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6327) + p.SetState(6325) p.Name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6329) + p.SetState(6327) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92679,7 +92675,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6330) + p.SetState(6328) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -92687,11 +92683,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6331) + p.SetState(6329) p.Any_name() } { - p.SetState(6332) + p.SetState(6330) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92699,7 +92695,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6333) + p.SetState(6331) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -92707,11 +92703,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6334) + p.SetState(6332) p.Name() } { - p.SetState(6335) + p.SetState(6333) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92719,14 +92715,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6336) + p.SetState(6334) p.Name() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(6338) + p.SetState(6336) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92734,7 +92730,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6339) + p.SetState(6337) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -92742,7 +92738,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6340) + p.SetState(6338) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -92750,7 +92746,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6341) + p.SetState(6339) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -92758,11 +92754,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6342) + p.SetState(6340) p.Name() } { - p.SetState(6343) + p.SetState(6341) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92770,7 +92766,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6344) + p.SetState(6342) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92778,14 +92774,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6345) + p.SetState(6343) p.Name() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(6347) + p.SetState(6345) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92793,7 +92789,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6348) + p.SetState(6346) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -92801,11 +92797,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6349) + p.SetState(6347) p.Function_with_argtypes() } { - p.SetState(6350) + p.SetState(6348) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92813,7 +92809,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6351) + p.SetState(6349) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92821,14 +92817,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6352) + p.SetState(6350) p.Name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(6354) + p.SetState(6352) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92836,7 +92832,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6355) + p.SetState(6353) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -92844,11 +92840,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6356) + p.SetState(6354) p.Roleid() } { - p.SetState(6357) + p.SetState(6355) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92856,7 +92852,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6358) + p.SetState(6356) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92864,21 +92860,21 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6359) + p.SetState(6357) p.Roleid() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(6361) + p.SetState(6359) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6363) + p.SetState(6361) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -92887,13 +92883,13 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(6362) + p.SetState(6360) p.Opt_procedural() } } { - p.SetState(6365) + p.SetState(6363) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -92901,11 +92897,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6366) + p.SetState(6364) p.Name() } { - p.SetState(6367) + p.SetState(6365) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92913,7 +92909,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6368) + p.SetState(6366) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92921,14 +92917,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6369) + p.SetState(6367) p.Name() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(6371) + p.SetState(6369) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92936,7 +92932,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6372) + p.SetState(6370) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -92944,7 +92940,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6373) + p.SetState(6371) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -92952,11 +92948,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6374) + p.SetState(6372) p.Any_name() } { - p.SetState(6375) + p.SetState(6373) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -92964,11 +92960,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6376) + p.SetState(6374) p.Name() } { - p.SetState(6377) + p.SetState(6375) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -92976,7 +92972,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6378) + p.SetState(6376) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -92984,14 +92980,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6379) + p.SetState(6377) p.Name() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(6381) + p.SetState(6379) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -92999,7 +92995,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6382) + p.SetState(6380) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -93007,7 +93003,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6383) + p.SetState(6381) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -93015,11 +93011,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6384) + p.SetState(6382) p.Any_name() } { - p.SetState(6385) + p.SetState(6383) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -93027,11 +93023,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6386) + p.SetState(6384) p.Name() } { - p.SetState(6387) + p.SetState(6385) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93039,7 +93035,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6388) + p.SetState(6386) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93047,14 +93043,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6389) + p.SetState(6387) p.Name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(6391) + p.SetState(6389) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93062,7 +93058,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6392) + p.SetState(6390) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -93070,11 +93066,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6393) + p.SetState(6391) p.Name() } { - p.SetState(6394) + p.SetState(6392) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -93082,11 +93078,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6395) + p.SetState(6393) p.Qualified_name() } { - p.SetState(6396) + p.SetState(6394) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93094,7 +93090,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6397) + p.SetState(6395) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93102,14 +93098,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6398) + p.SetState(6396) p.Name() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(6400) + p.SetState(6398) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93117,7 +93113,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6401) + p.SetState(6399) p.Match(PostgreSQLParserPOLICY) if p.HasError() { // Recognition error - abort rule @@ -93125,7 +93121,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6402) + p.SetState(6400) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93133,7 +93129,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6403) + p.SetState(6401) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93141,11 +93137,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6404) + p.SetState(6402) p.Name() } { - p.SetState(6405) + p.SetState(6403) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -93153,11 +93149,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6406) + p.SetState(6404) p.Qualified_name() } { - p.SetState(6407) + p.SetState(6405) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93165,7 +93161,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6408) + p.SetState(6406) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93173,14 +93169,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6409) + p.SetState(6407) p.Name() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(6411) + p.SetState(6409) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93188,7 +93184,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6412) + p.SetState(6410) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -93196,11 +93192,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6413) + p.SetState(6411) p.Function_with_argtypes() } { - p.SetState(6414) + p.SetState(6412) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93208,7 +93204,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6415) + p.SetState(6413) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93216,14 +93212,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6416) + p.SetState(6414) p.Name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(6418) + p.SetState(6416) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93231,7 +93227,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6419) + p.SetState(6417) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -93239,11 +93235,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6420) + p.SetState(6418) p.Name() } { - p.SetState(6421) + p.SetState(6419) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93251,7 +93247,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6422) + p.SetState(6420) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93259,14 +93255,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6423) + p.SetState(6421) p.Name() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(6425) + p.SetState(6423) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93274,7 +93270,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6426) + p.SetState(6424) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -93282,11 +93278,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6427) + p.SetState(6425) p.Function_with_argtypes() } { - p.SetState(6428) + p.SetState(6426) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93294,7 +93290,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6429) + p.SetState(6427) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93302,14 +93298,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6430) + p.SetState(6428) p.Name() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(6432) + p.SetState(6430) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93317,7 +93313,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6433) + p.SetState(6431) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -93325,11 +93321,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6434) + p.SetState(6432) p.Name() } { - p.SetState(6435) + p.SetState(6433) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93337,7 +93333,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6436) + p.SetState(6434) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93345,14 +93341,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6437) + p.SetState(6435) p.Name() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(6439) + p.SetState(6437) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93360,7 +93356,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6440) + p.SetState(6438) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -93368,11 +93364,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6441) + p.SetState(6439) p.Name() } { - p.SetState(6442) + p.SetState(6440) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93380,7 +93376,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6443) + p.SetState(6441) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93388,14 +93384,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6444) + p.SetState(6442) p.Name() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(6446) + p.SetState(6444) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93403,7 +93399,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6447) + p.SetState(6445) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -93411,11 +93407,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6448) + p.SetState(6446) p.Name() } { - p.SetState(6449) + p.SetState(6447) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93423,7 +93419,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6450) + p.SetState(6448) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93431,14 +93427,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6451) + p.SetState(6449) p.Name() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(6453) + p.SetState(6451) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93446,7 +93442,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6454) + p.SetState(6452) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -93454,11 +93450,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6455) + p.SetState(6453) p.Relation_expr() } { - p.SetState(6456) + p.SetState(6454) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93466,7 +93462,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6457) + p.SetState(6455) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93474,14 +93470,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6458) + p.SetState(6456) p.Name() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(6460) + p.SetState(6458) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93489,7 +93485,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6461) + p.SetState(6459) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -93497,7 +93493,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6462) + p.SetState(6460) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93505,7 +93501,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6463) + p.SetState(6461) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93513,11 +93509,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6464) + p.SetState(6462) p.Relation_expr() } { - p.SetState(6465) + p.SetState(6463) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93525,7 +93521,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6466) + p.SetState(6464) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93533,14 +93529,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6467) + p.SetState(6465) p.Name() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(6469) + p.SetState(6467) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93548,7 +93544,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6470) + p.SetState(6468) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -93556,11 +93552,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6471) + p.SetState(6469) p.Qualified_name() } { - p.SetState(6472) + p.SetState(6470) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93568,7 +93564,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6473) + p.SetState(6471) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93576,14 +93572,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6474) + p.SetState(6472) p.Name() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(6476) + p.SetState(6474) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93591,7 +93587,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6477) + p.SetState(6475) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -93599,7 +93595,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6478) + p.SetState(6476) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93607,7 +93603,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6479) + p.SetState(6477) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93615,11 +93611,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6480) + p.SetState(6478) p.Qualified_name() } { - p.SetState(6481) + p.SetState(6479) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93627,7 +93623,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6482) + p.SetState(6480) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93635,14 +93631,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6483) + p.SetState(6481) p.Name() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(6485) + p.SetState(6483) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93650,7 +93646,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6486) + p.SetState(6484) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93658,11 +93654,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6487) + p.SetState(6485) p.Qualified_name() } { - p.SetState(6488) + p.SetState(6486) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93670,7 +93666,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6489) + p.SetState(6487) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93678,14 +93674,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6490) + p.SetState(6488) p.Name() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(6492) + p.SetState(6490) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93693,7 +93689,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6493) + p.SetState(6491) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93701,7 +93697,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6494) + p.SetState(6492) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93709,7 +93705,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6495) + p.SetState(6493) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93717,11 +93713,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6496) + p.SetState(6494) p.Qualified_name() } { - p.SetState(6497) + p.SetState(6495) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93729,7 +93725,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6498) + p.SetState(6496) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93737,14 +93733,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6499) + p.SetState(6497) p.Name() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(6501) + p.SetState(6499) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93752,7 +93748,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6502) + p.SetState(6500) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -93760,7 +93756,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6503) + p.SetState(6501) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93768,11 +93764,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6504) + p.SetState(6502) p.Qualified_name() } { - p.SetState(6505) + p.SetState(6503) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93780,7 +93776,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6506) + p.SetState(6504) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93788,14 +93784,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6507) + p.SetState(6505) p.Name() } case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(6509) + p.SetState(6507) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93803,7 +93799,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6510) + p.SetState(6508) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -93811,7 +93807,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6511) + p.SetState(6509) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -93819,7 +93815,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6512) + p.SetState(6510) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93827,7 +93823,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6513) + p.SetState(6511) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93835,11 +93831,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6514) + p.SetState(6512) p.Qualified_name() } { - p.SetState(6515) + p.SetState(6513) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93847,7 +93843,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6516) + p.SetState(6514) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93855,14 +93851,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6517) + p.SetState(6515) p.Name() } case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(6519) + p.SetState(6517) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93870,7 +93866,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6520) + p.SetState(6518) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -93878,11 +93874,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6521) + p.SetState(6519) p.Qualified_name() } { - p.SetState(6522) + p.SetState(6520) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93890,7 +93886,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6523) + p.SetState(6521) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93898,14 +93894,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6524) + p.SetState(6522) p.Name() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(6526) + p.SetState(6524) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93913,7 +93909,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6527) + p.SetState(6525) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -93921,7 +93917,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6528) + p.SetState(6526) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -93929,7 +93925,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6529) + p.SetState(6527) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -93937,11 +93933,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6530) + p.SetState(6528) p.Qualified_name() } { - p.SetState(6531) + p.SetState(6529) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -93949,7 +93945,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6532) + p.SetState(6530) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -93957,14 +93953,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6533) + p.SetState(6531) p.Name() } case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(6535) + p.SetState(6533) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -93972,7 +93968,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6536) + p.SetState(6534) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -93980,7 +93976,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6537) + p.SetState(6535) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -93988,11 +93984,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6538) + p.SetState(6536) p.Relation_expr() } { - p.SetState(6539) + p.SetState(6537) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94000,7 +93996,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6540) + p.SetState(6538) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94008,14 +94004,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6541) + p.SetState(6539) p.Name() } case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(6543) + p.SetState(6541) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94023,7 +94019,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6544) + p.SetState(6542) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -94031,7 +94027,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6545) + p.SetState(6543) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94039,7 +94035,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6546) + p.SetState(6544) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94047,7 +94043,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6547) + p.SetState(6545) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94055,11 +94051,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6548) + p.SetState(6546) p.Relation_expr() } { - p.SetState(6549) + p.SetState(6547) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94067,7 +94063,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6550) + p.SetState(6548) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94075,14 +94071,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6551) + p.SetState(6549) p.Name() } case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(6553) + p.SetState(6551) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94090,7 +94086,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6554) + p.SetState(6552) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94098,23 +94094,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6555) + p.SetState(6553) p.Relation_expr() } { - p.SetState(6556) + p.SetState(6554) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6558) + p.SetState(6556) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 533, p.GetParserRuleContext()) == 1 { { - p.SetState(6557) + p.SetState(6555) p.Opt_column() } @@ -94122,11 +94118,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6560) + p.SetState(6558) p.Name() } { - p.SetState(6561) + p.SetState(6559) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94134,14 +94130,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6562) + p.SetState(6560) p.Name() } case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(6564) + p.SetState(6562) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94149,7 +94145,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6565) + p.SetState(6563) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94157,7 +94153,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6566) + p.SetState(6564) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94165,7 +94161,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6567) + p.SetState(6565) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94173,23 +94169,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6568) + p.SetState(6566) p.Relation_expr() } { - p.SetState(6569) + p.SetState(6567) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6571) + p.SetState(6569) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 534, p.GetParserRuleContext()) == 1 { { - p.SetState(6570) + p.SetState(6568) p.Opt_column() } @@ -94197,11 +94193,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6573) + p.SetState(6571) p.Name() } { - p.SetState(6574) + p.SetState(6572) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94209,14 +94205,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6575) + p.SetState(6573) p.Name() } case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(6577) + p.SetState(6575) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94224,7 +94220,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6578) + p.SetState(6576) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94232,23 +94228,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6579) + p.SetState(6577) p.Qualified_name() } { - p.SetState(6580) + p.SetState(6578) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6582) + p.SetState(6580) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 535, p.GetParserRuleContext()) == 1 { { - p.SetState(6581) + p.SetState(6579) p.Opt_column() } @@ -94256,11 +94252,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6584) + p.SetState(6582) p.Name() } { - p.SetState(6585) + p.SetState(6583) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94268,14 +94264,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6586) + p.SetState(6584) p.Name() } case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(6588) + p.SetState(6586) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94283,7 +94279,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6589) + p.SetState(6587) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94291,7 +94287,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6590) + p.SetState(6588) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94299,7 +94295,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6591) + p.SetState(6589) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94307,23 +94303,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6592) + p.SetState(6590) p.Qualified_name() } { - p.SetState(6593) + p.SetState(6591) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6595) + p.SetState(6593) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 536, p.GetParserRuleContext()) == 1 { { - p.SetState(6594) + p.SetState(6592) p.Opt_column() } @@ -94331,11 +94327,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6597) + p.SetState(6595) p.Name() } { - p.SetState(6598) + p.SetState(6596) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94343,14 +94339,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6599) + p.SetState(6597) p.Name() } case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(6601) + p.SetState(6599) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94358,7 +94354,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6602) + p.SetState(6600) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -94366,7 +94362,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6603) + p.SetState(6601) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94374,23 +94370,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6604) + p.SetState(6602) p.Qualified_name() } { - p.SetState(6605) + p.SetState(6603) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6607) + p.SetState(6605) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 537, p.GetParserRuleContext()) == 1 { { - p.SetState(6606) + p.SetState(6604) p.Opt_column() } @@ -94398,11 +94394,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6609) + p.SetState(6607) p.Name() } { - p.SetState(6610) + p.SetState(6608) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94410,14 +94406,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6611) + p.SetState(6609) p.Name() } case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(6613) + p.SetState(6611) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94425,7 +94421,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6614) + p.SetState(6612) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -94433,7 +94429,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6615) + p.SetState(6613) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -94441,7 +94437,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6616) + p.SetState(6614) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94449,7 +94445,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6617) + p.SetState(6615) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94457,23 +94453,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6618) + p.SetState(6616) p.Qualified_name() } { - p.SetState(6619) + p.SetState(6617) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6621) + p.SetState(6619) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 538, p.GetParserRuleContext()) == 1 { { - p.SetState(6620) + p.SetState(6618) p.Opt_column() } @@ -94481,11 +94477,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6623) + p.SetState(6621) p.Name() } { - p.SetState(6624) + p.SetState(6622) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94493,14 +94489,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6625) + p.SetState(6623) p.Name() } case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(6627) + p.SetState(6625) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94508,7 +94504,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6628) + p.SetState(6626) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94516,11 +94512,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6629) + p.SetState(6627) p.Relation_expr() } { - p.SetState(6630) + p.SetState(6628) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94528,7 +94524,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6631) + p.SetState(6629) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -94536,11 +94532,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6632) + p.SetState(6630) p.Name() } { - p.SetState(6633) + p.SetState(6631) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94548,14 +94544,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6634) + p.SetState(6632) p.Name() } case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(6636) + p.SetState(6634) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94563,7 +94559,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6637) + p.SetState(6635) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94571,7 +94567,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6638) + p.SetState(6636) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94579,7 +94575,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6639) + p.SetState(6637) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94587,11 +94583,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6640) + p.SetState(6638) p.Relation_expr() } { - p.SetState(6641) + p.SetState(6639) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94599,7 +94595,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6642) + p.SetState(6640) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -94607,11 +94603,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6643) + p.SetState(6641) p.Name() } { - p.SetState(6644) + p.SetState(6642) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94619,14 +94615,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6645) + p.SetState(6643) p.Name() } case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(6647) + p.SetState(6645) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94634,7 +94630,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6648) + p.SetState(6646) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -94642,7 +94638,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6649) + p.SetState(6647) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94650,23 +94646,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6650) + p.SetState(6648) p.Relation_expr() } { - p.SetState(6651) + p.SetState(6649) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6653) + p.SetState(6651) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 539, p.GetParserRuleContext()) == 1 { { - p.SetState(6652) + p.SetState(6650) p.Opt_column() } @@ -94674,11 +94670,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6655) + p.SetState(6653) p.Name() } { - p.SetState(6656) + p.SetState(6654) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94686,14 +94682,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6657) + p.SetState(6655) p.Name() } case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(6659) + p.SetState(6657) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94701,7 +94697,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6660) + p.SetState(6658) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -94709,7 +94705,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6661) + p.SetState(6659) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -94717,7 +94713,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6662) + p.SetState(6660) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -94725,7 +94721,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6663) + p.SetState(6661) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -94733,23 +94729,23 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6664) + p.SetState(6662) p.Relation_expr() } { - p.SetState(6665) + p.SetState(6663) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(6667) + p.SetState(6665) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 540, p.GetParserRuleContext()) == 1 { { - p.SetState(6666) + p.SetState(6664) p.Opt_column() } @@ -94757,11 +94753,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { goto errorExit } { - p.SetState(6669) + p.SetState(6667) p.Name() } { - p.SetState(6670) + p.SetState(6668) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94769,14 +94765,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6671) + p.SetState(6669) p.Name() } case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(6673) + p.SetState(6671) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94784,7 +94780,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6674) + p.SetState(6672) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -94792,11 +94788,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6675) + p.SetState(6673) p.Name() } { - p.SetState(6676) + p.SetState(6674) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -94804,11 +94800,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6677) + p.SetState(6675) p.Qualified_name() } { - p.SetState(6678) + p.SetState(6676) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94816,7 +94812,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6679) + p.SetState(6677) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94824,14 +94820,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6680) + p.SetState(6678) p.Name() } case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(6682) + p.SetState(6680) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94839,7 +94835,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6683) + p.SetState(6681) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -94847,11 +94843,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6684) + p.SetState(6682) p.Name() } { - p.SetState(6685) + p.SetState(6683) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -94859,11 +94855,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6686) + p.SetState(6684) p.Qualified_name() } { - p.SetState(6687) + p.SetState(6685) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94871,7 +94867,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6688) + p.SetState(6686) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94879,14 +94875,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6689) + p.SetState(6687) p.Name() } case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(6691) + p.SetState(6689) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94894,7 +94890,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6692) + p.SetState(6690) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -94902,7 +94898,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6693) + p.SetState(6691) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -94910,11 +94906,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6694) + p.SetState(6692) p.Name() } { - p.SetState(6695) + p.SetState(6693) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94922,7 +94918,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6696) + p.SetState(6694) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94930,14 +94926,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6697) + p.SetState(6695) p.Name() } case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(6699) + p.SetState(6697) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94945,7 +94941,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6700) + p.SetState(6698) p.Match(PostgreSQLParserROLE) if p.HasError() { // Recognition error - abort rule @@ -94953,11 +94949,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6701) + p.SetState(6699) p.Roleid() } { - p.SetState(6702) + p.SetState(6700) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -94965,7 +94961,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6703) + p.SetState(6701) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -94973,14 +94969,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6704) + p.SetState(6702) p.Roleid() } case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(6706) + p.SetState(6704) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -94988,7 +94984,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6707) + p.SetState(6705) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -94996,11 +94992,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6708) + p.SetState(6706) p.Roleid() } { - p.SetState(6709) + p.SetState(6707) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95008,7 +95004,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6710) + p.SetState(6708) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95016,14 +95012,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6711) + p.SetState(6709) p.Roleid() } case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(6713) + p.SetState(6711) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95031,7 +95027,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6714) + p.SetState(6712) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -95039,11 +95035,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6715) + p.SetState(6713) p.Name() } { - p.SetState(6716) + p.SetState(6714) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95051,7 +95047,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6717) + p.SetState(6715) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95059,14 +95055,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6718) + p.SetState(6716) p.Name() } case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(6720) + p.SetState(6718) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95074,7 +95070,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6721) + p.SetState(6719) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -95082,11 +95078,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6722) + p.SetState(6720) p.Any_name() } { - p.SetState(6723) + p.SetState(6721) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95094,7 +95090,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6724) + p.SetState(6722) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95102,14 +95098,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6725) + p.SetState(6723) p.Name() } case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(6727) + p.SetState(6725) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95117,7 +95113,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6728) + p.SetState(6726) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95125,7 +95121,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6729) + p.SetState(6727) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95133,7 +95129,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6730) + p.SetState(6728) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -95141,11 +95137,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6731) + p.SetState(6729) p.Any_name() } { - p.SetState(6732) + p.SetState(6730) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95153,7 +95149,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6733) + p.SetState(6731) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95161,14 +95157,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6734) + p.SetState(6732) p.Name() } case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(6736) + p.SetState(6734) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95176,7 +95172,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6737) + p.SetState(6735) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95184,7 +95180,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6738) + p.SetState(6736) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95192,7 +95188,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6739) + p.SetState(6737) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -95200,11 +95196,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6740) + p.SetState(6738) p.Any_name() } { - p.SetState(6741) + p.SetState(6739) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95212,7 +95208,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6742) + p.SetState(6740) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95220,14 +95216,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6743) + p.SetState(6741) p.Name() } case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(6745) + p.SetState(6743) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95235,7 +95231,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6746) + p.SetState(6744) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95243,7 +95239,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6747) + p.SetState(6745) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95251,7 +95247,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6748) + p.SetState(6746) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -95259,11 +95255,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6749) + p.SetState(6747) p.Any_name() } { - p.SetState(6750) + p.SetState(6748) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95271,7 +95267,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6751) + p.SetState(6749) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95279,14 +95275,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6752) + p.SetState(6750) p.Name() } case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(6754) + p.SetState(6752) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95294,7 +95290,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6755) + p.SetState(6753) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -95302,7 +95298,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6756) + p.SetState(6754) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -95310,7 +95306,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6757) + p.SetState(6755) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -95318,11 +95314,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6758) + p.SetState(6756) p.Any_name() } { - p.SetState(6759) + p.SetState(6757) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95330,7 +95326,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6760) + p.SetState(6758) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95338,14 +95334,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6761) + p.SetState(6759) p.Name() } case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(6763) + p.SetState(6761) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95353,7 +95349,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6764) + p.SetState(6762) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -95361,11 +95357,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6765) + p.SetState(6763) p.Any_name() } { - p.SetState(6766) + p.SetState(6764) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95373,7 +95369,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6767) + p.SetState(6765) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95381,14 +95377,14 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6768) + p.SetState(6766) p.Name() } case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(6770) + p.SetState(6768) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95396,7 +95392,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6771) + p.SetState(6769) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -95404,11 +95400,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6772) + p.SetState(6770) p.Any_name() } { - p.SetState(6773) + p.SetState(6771) p.Match(PostgreSQLParserRENAME) if p.HasError() { // Recognition error - abort rule @@ -95416,7 +95412,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6774) + p.SetState(6772) p.Match(PostgreSQLParserATTRIBUTE) if p.HasError() { // Recognition error - abort rule @@ -95424,11 +95420,11 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6775) + p.SetState(6773) p.Name() } { - p.SetState(6776) + p.SetState(6774) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -95436,10 +95432,10 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { } } { - p.SetState(6777) + p.SetState(6775) p.Name() } - p.SetState(6779) + p.SetState(6777) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -95448,7 +95444,7 @@ func (p *PostgreSQLParser) Renamestmt() (localctx IRenamestmtContext) { if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(6778) + p.SetState(6776) p.Opt_drop_behavior() } @@ -95556,7 +95552,7 @@ func (p *PostgreSQLParser) Opt_column() (localctx IOpt_columnContext) { p.EnterRule(localctx, 730, PostgreSQLParserRULE_opt_column) p.EnterOuterAlt(localctx, 1) { - p.SetState(6783) + p.SetState(6781) p.Match(PostgreSQLParserCOLUMN) if p.HasError() { // Recognition error - abort rule @@ -95667,7 +95663,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(6785) + p.SetState(6783) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -95675,7 +95671,7 @@ func (p *PostgreSQLParser) Opt_set_data() (localctx IOpt_set_dataContext) { } } { - p.SetState(6786) + p.SetState(6784) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -95930,7 +95926,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend p.EnterRule(localctx, 734, PostgreSQLParserRULE_alterobjectdependsstmt) var _la int - p.SetState(6857) + p.SetState(6855) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -95940,7 +95936,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6788) + p.SetState(6786) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -95948,7 +95944,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6789) + p.SetState(6787) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -95956,10 +95952,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6790) + p.SetState(6788) p.Function_with_argtypes() } - p.SetState(6792) + p.SetState(6790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -95968,13 +95964,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6791) + p.SetState(6789) p.Opt_no() } } { - p.SetState(6794) + p.SetState(6792) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -95982,7 +95978,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6795) + p.SetState(6793) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -95990,7 +95986,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6796) + p.SetState(6794) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -95998,14 +95994,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6797) + p.SetState(6795) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6799) + p.SetState(6797) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96013,7 +96009,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6800) + p.SetState(6798) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -96021,10 +96017,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6801) + p.SetState(6799) p.Function_with_argtypes() } - p.SetState(6803) + p.SetState(6801) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96033,13 +96029,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6802) + p.SetState(6800) p.Opt_no() } } { - p.SetState(6805) + p.SetState(6803) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96047,7 +96043,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6806) + p.SetState(6804) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96055,7 +96051,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6807) + p.SetState(6805) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96063,14 +96059,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6808) + p.SetState(6806) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6810) + p.SetState(6808) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96078,7 +96074,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6811) + p.SetState(6809) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -96086,10 +96082,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6812) + p.SetState(6810) p.Function_with_argtypes() } - p.SetState(6814) + p.SetState(6812) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96098,13 +96094,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6813) + p.SetState(6811) p.Opt_no() } } { - p.SetState(6816) + p.SetState(6814) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96112,7 +96108,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6817) + p.SetState(6815) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96120,7 +96116,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6818) + p.SetState(6816) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96128,14 +96124,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6819) + p.SetState(6817) p.Name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6821) + p.SetState(6819) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96143,7 +96139,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6822) + p.SetState(6820) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -96151,11 +96147,11 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6823) + p.SetState(6821) p.Name() } { - p.SetState(6824) + p.SetState(6822) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96163,10 +96159,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6825) + p.SetState(6823) p.Qualified_name() } - p.SetState(6827) + p.SetState(6825) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96175,13 +96171,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6826) + p.SetState(6824) p.Opt_no() } } { - p.SetState(6829) + p.SetState(6827) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96189,7 +96185,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6830) + p.SetState(6828) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96197,7 +96193,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6831) + p.SetState(6829) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96205,14 +96201,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6832) + p.SetState(6830) p.Name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6834) + p.SetState(6832) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96220,7 +96216,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6835) + p.SetState(6833) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -96228,7 +96224,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6836) + p.SetState(6834) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -96236,10 +96232,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6837) + p.SetState(6835) p.Qualified_name() } - p.SetState(6839) + p.SetState(6837) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96248,13 +96244,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6838) + p.SetState(6836) p.Opt_no() } } { - p.SetState(6841) + p.SetState(6839) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96262,7 +96258,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6842) + p.SetState(6840) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96270,7 +96266,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6843) + p.SetState(6841) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96278,14 +96274,14 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6844) + p.SetState(6842) p.Name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6846) + p.SetState(6844) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96293,7 +96289,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6847) + p.SetState(6845) p.Match(PostgreSQLParserINDEX) if p.HasError() { // Recognition error - abort rule @@ -96301,10 +96297,10 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6848) + p.SetState(6846) p.Qualified_name() } - p.SetState(6850) + p.SetState(6848) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96313,13 +96309,13 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend if _la == PostgreSQLParserNO { { - p.SetState(6849) + p.SetState(6847) p.Opt_no() } } { - p.SetState(6852) + p.SetState(6850) p.Match(PostgreSQLParserDEPENDS) if p.HasError() { // Recognition error - abort rule @@ -96327,7 +96323,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6853) + p.SetState(6851) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -96335,7 +96331,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6854) + p.SetState(6852) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -96343,7 +96339,7 @@ func (p *PostgreSQLParser) Alterobjectdependsstmt() (localctx IAlterobjectdepend } } { - p.SetState(6855) + p.SetState(6853) p.Name() } @@ -96449,7 +96445,7 @@ func (p *PostgreSQLParser) Opt_no() (localctx IOpt_noContext) { p.EnterRule(localctx, 736, PostgreSQLParserRULE_opt_no) p.EnterOuterAlt(localctx, 1) { - p.SetState(6859) + p.SetState(6857) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -96843,7 +96839,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(7078) + p.SetState(7076) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -96853,7 +96849,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(6861) + p.SetState(6859) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96861,7 +96857,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6862) + p.SetState(6860) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -96869,11 +96865,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6863) + p.SetState(6861) p.Aggregate_with_argtypes() } { - p.SetState(6864) + p.SetState(6862) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -96881,7 +96877,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6865) + p.SetState(6863) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -96889,14 +96885,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6866) + p.SetState(6864) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(6868) + p.SetState(6866) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96904,7 +96900,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6869) + p.SetState(6867) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -96912,11 +96908,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6870) + p.SetState(6868) p.Any_name() } { - p.SetState(6871) + p.SetState(6869) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -96924,7 +96920,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6872) + p.SetState(6870) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -96932,14 +96928,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6873) + p.SetState(6871) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(6875) + p.SetState(6873) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96947,7 +96943,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6876) + p.SetState(6874) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -96955,11 +96951,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6877) + p.SetState(6875) p.Any_name() } { - p.SetState(6878) + p.SetState(6876) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -96967,7 +96963,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6879) + p.SetState(6877) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -96975,14 +96971,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6880) + p.SetState(6878) p.Name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(6882) + p.SetState(6880) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -96990,7 +96986,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6883) + p.SetState(6881) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -96998,11 +96994,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6884) + p.SetState(6882) p.Any_name() } { - p.SetState(6885) + p.SetState(6883) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97010,7 +97006,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6886) + p.SetState(6884) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97018,14 +97014,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6887) + p.SetState(6885) p.Name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(6889) + p.SetState(6887) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97033,7 +97029,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6890) + p.SetState(6888) p.Match(PostgreSQLParserEXTENSION) if p.HasError() { // Recognition error - abort rule @@ -97041,11 +97037,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6891) + p.SetState(6889) p.Name() } { - p.SetState(6892) + p.SetState(6890) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97053,7 +97049,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6893) + p.SetState(6891) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97061,14 +97057,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6894) + p.SetState(6892) p.Name() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(6896) + p.SetState(6894) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97076,7 +97072,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6897) + p.SetState(6895) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -97084,11 +97080,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6898) + p.SetState(6896) p.Function_with_argtypes() } { - p.SetState(6899) + p.SetState(6897) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97096,7 +97092,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6900) + p.SetState(6898) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97104,14 +97100,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6901) + p.SetState(6899) p.Name() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(6903) + p.SetState(6901) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97119,7 +97115,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6904) + p.SetState(6902) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -97127,11 +97123,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6905) + p.SetState(6903) p.Operator_with_argtypes() } { - p.SetState(6906) + p.SetState(6904) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97139,7 +97135,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6907) + p.SetState(6905) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97147,14 +97143,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6908) + p.SetState(6906) p.Name() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(6910) + p.SetState(6908) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97162,7 +97158,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6911) + p.SetState(6909) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -97170,7 +97166,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6912) + p.SetState(6910) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -97178,11 +97174,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6913) + p.SetState(6911) p.Any_name() } { - p.SetState(6914) + p.SetState(6912) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -97190,11 +97186,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6915) + p.SetState(6913) p.Name() } { - p.SetState(6916) + p.SetState(6914) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97202,7 +97198,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6917) + p.SetState(6915) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97210,14 +97206,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6918) + p.SetState(6916) p.Name() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(6920) + p.SetState(6918) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97225,7 +97221,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6921) + p.SetState(6919) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -97233,7 +97229,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6922) + p.SetState(6920) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -97241,11 +97237,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6923) + p.SetState(6921) p.Any_name() } { - p.SetState(6924) + p.SetState(6922) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -97253,11 +97249,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6925) + p.SetState(6923) p.Name() } { - p.SetState(6926) + p.SetState(6924) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97265,7 +97261,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6927) + p.SetState(6925) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97273,14 +97269,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6928) + p.SetState(6926) p.Name() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(6930) + p.SetState(6928) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97288,7 +97284,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6931) + p.SetState(6929) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -97296,11 +97292,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6932) + p.SetState(6930) p.Function_with_argtypes() } { - p.SetState(6933) + p.SetState(6931) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97308,7 +97304,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6934) + p.SetState(6932) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97316,14 +97312,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6935) + p.SetState(6933) p.Name() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(6937) + p.SetState(6935) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97331,7 +97327,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6938) + p.SetState(6936) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -97339,11 +97335,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6939) + p.SetState(6937) p.Function_with_argtypes() } { - p.SetState(6940) + p.SetState(6938) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97351,7 +97347,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6941) + p.SetState(6939) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97359,14 +97355,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6942) + p.SetState(6940) p.Name() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(6944) + p.SetState(6942) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97374,7 +97370,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6945) + p.SetState(6943) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -97382,11 +97378,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6946) + p.SetState(6944) p.Relation_expr() } { - p.SetState(6947) + p.SetState(6945) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97394,7 +97390,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6948) + p.SetState(6946) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97402,14 +97398,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6949) + p.SetState(6947) p.Name() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(6951) + p.SetState(6949) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97417,7 +97413,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6952) + p.SetState(6950) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -97425,7 +97421,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6953) + p.SetState(6951) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -97433,7 +97429,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6954) + p.SetState(6952) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -97441,11 +97437,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6955) + p.SetState(6953) p.Relation_expr() } { - p.SetState(6956) + p.SetState(6954) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97453,7 +97449,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6957) + p.SetState(6955) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97461,14 +97457,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6958) + p.SetState(6956) p.Name() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(6960) + p.SetState(6958) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97476,7 +97472,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6961) + p.SetState(6959) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -97484,11 +97480,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6962) + p.SetState(6960) p.Any_name() } { - p.SetState(6963) + p.SetState(6961) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97496,7 +97492,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6964) + p.SetState(6962) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97504,14 +97500,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6965) + p.SetState(6963) p.Name() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(6967) + p.SetState(6965) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97519,7 +97515,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6968) + p.SetState(6966) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97527,7 +97523,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6969) + p.SetState(6967) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97535,7 +97531,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6970) + p.SetState(6968) p.Match(PostgreSQLParserPARSER) if p.HasError() { // Recognition error - abort rule @@ -97543,11 +97539,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6971) + p.SetState(6969) p.Any_name() } { - p.SetState(6972) + p.SetState(6970) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97555,7 +97551,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6973) + p.SetState(6971) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97563,14 +97559,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6974) + p.SetState(6972) p.Name() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(6976) + p.SetState(6974) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97578,7 +97574,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6977) + p.SetState(6975) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97586,7 +97582,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6978) + p.SetState(6976) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97594,7 +97590,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6979) + p.SetState(6977) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -97602,11 +97598,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6980) + p.SetState(6978) p.Any_name() } { - p.SetState(6981) + p.SetState(6979) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97614,7 +97610,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6982) + p.SetState(6980) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97622,14 +97618,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6983) + p.SetState(6981) p.Name() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(6985) + p.SetState(6983) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97637,7 +97633,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6986) + p.SetState(6984) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97645,7 +97641,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6987) + p.SetState(6985) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97653,7 +97649,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6988) + p.SetState(6986) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -97661,11 +97657,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6989) + p.SetState(6987) p.Any_name() } { - p.SetState(6990) + p.SetState(6988) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97673,7 +97669,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6991) + p.SetState(6989) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97681,14 +97677,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6992) + p.SetState(6990) p.Name() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(6994) + p.SetState(6992) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97696,7 +97692,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6995) + p.SetState(6993) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -97704,7 +97700,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6996) + p.SetState(6994) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -97712,7 +97708,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6997) + p.SetState(6995) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -97720,11 +97716,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(6998) + p.SetState(6996) p.Any_name() } { - p.SetState(6999) + p.SetState(6997) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97732,7 +97728,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7000) + p.SetState(6998) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97740,14 +97736,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7001) + p.SetState(6999) p.Name() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(7003) + p.SetState(7001) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97755,7 +97751,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7004) + p.SetState(7002) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -97763,11 +97759,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7005) + p.SetState(7003) p.Qualified_name() } { - p.SetState(7006) + p.SetState(7004) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97775,7 +97771,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7007) + p.SetState(7005) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97783,14 +97779,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7008) + p.SetState(7006) p.Name() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(7010) + p.SetState(7008) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97798,7 +97794,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7011) + p.SetState(7009) p.Match(PostgreSQLParserSEQUENCE) if p.HasError() { // Recognition error - abort rule @@ -97806,7 +97802,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7012) + p.SetState(7010) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -97814,7 +97810,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7013) + p.SetState(7011) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -97822,11 +97818,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7014) + p.SetState(7012) p.Qualified_name() } { - p.SetState(7015) + p.SetState(7013) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97834,7 +97830,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7016) + p.SetState(7014) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97842,14 +97838,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7017) + p.SetState(7015) p.Name() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(7019) + p.SetState(7017) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97857,7 +97853,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7020) + p.SetState(7018) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -97865,11 +97861,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7021) + p.SetState(7019) p.Qualified_name() } { - p.SetState(7022) + p.SetState(7020) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97877,7 +97873,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7023) + p.SetState(7021) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97885,14 +97881,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7024) + p.SetState(7022) p.Name() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(7026) + p.SetState(7024) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97900,7 +97896,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7027) + p.SetState(7025) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -97908,7 +97904,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7028) + p.SetState(7026) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -97916,7 +97912,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7029) + p.SetState(7027) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -97924,11 +97920,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7030) + p.SetState(7028) p.Qualified_name() } { - p.SetState(7031) + p.SetState(7029) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97936,7 +97932,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7032) + p.SetState(7030) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97944,14 +97940,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7033) + p.SetState(7031) p.Name() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(7035) + p.SetState(7033) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -97959,7 +97955,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7036) + p.SetState(7034) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -97967,7 +97963,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7037) + p.SetState(7035) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -97975,11 +97971,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7038) + p.SetState(7036) p.Qualified_name() } { - p.SetState(7039) + p.SetState(7037) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -97987,7 +97983,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7040) + p.SetState(7038) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -97995,14 +97991,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7041) + p.SetState(7039) p.Name() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(7043) + p.SetState(7041) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98010,7 +98006,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7044) + p.SetState(7042) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -98018,7 +98014,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7045) + p.SetState(7043) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -98026,7 +98022,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7046) + p.SetState(7044) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -98034,7 +98030,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7047) + p.SetState(7045) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -98042,11 +98038,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7048) + p.SetState(7046) p.Qualified_name() } { - p.SetState(7049) + p.SetState(7047) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98054,7 +98050,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7050) + p.SetState(7048) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98062,14 +98058,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7051) + p.SetState(7049) p.Name() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(7053) + p.SetState(7051) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98077,7 +98073,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7054) + p.SetState(7052) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -98085,7 +98081,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7055) + p.SetState(7053) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -98093,11 +98089,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7056) + p.SetState(7054) p.Relation_expr() } { - p.SetState(7057) + p.SetState(7055) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98105,7 +98101,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7058) + p.SetState(7056) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98113,14 +98109,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7059) + p.SetState(7057) p.Name() } case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(7061) + p.SetState(7059) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98128,7 +98124,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7062) + p.SetState(7060) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -98136,7 +98132,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7063) + p.SetState(7061) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -98144,7 +98140,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7064) + p.SetState(7062) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -98152,7 +98148,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7065) + p.SetState(7063) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -98160,11 +98156,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7066) + p.SetState(7064) p.Relation_expr() } { - p.SetState(7067) + p.SetState(7065) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98172,7 +98168,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7068) + p.SetState(7066) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98180,14 +98176,14 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7069) + p.SetState(7067) p.Name() } case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(7071) + p.SetState(7069) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98195,7 +98191,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7072) + p.SetState(7070) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -98203,11 +98199,11 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7073) + p.SetState(7071) p.Any_name() } { - p.SetState(7074) + p.SetState(7072) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98215,7 +98211,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7075) + p.SetState(7073) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -98223,7 +98219,7 @@ func (p *PostgreSQLParser) Alterobjectschemastmt() (localctx IAlterobjectschemas } } { - p.SetState(7076) + p.SetState(7074) p.Name() } @@ -98383,7 +98379,7 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte p.EnterRule(localctx, 740, PostgreSQLParserRULE_alteroperatorstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7080) + p.SetState(7078) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -98391,7 +98387,7 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7081) + p.SetState(7079) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -98399,11 +98395,11 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7082) + p.SetState(7080) p.Operator_with_argtypes() } { - p.SetState(7083) + p.SetState(7081) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -98411,7 +98407,7 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7084) + p.SetState(7082) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -98419,11 +98415,11 @@ func (p *PostgreSQLParser) Alteroperatorstmt() (localctx IAlteroperatorstmtConte } } { - p.SetState(7085) + p.SetState(7083) p.Operator_def_list() } { - p.SetState(7086) + p.SetState(7084) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -98579,10 +98575,10 @@ func (p *PostgreSQLParser) Operator_def_list() (localctx IOperator_def_listConte p.EnterOuterAlt(localctx, 1) { - p.SetState(7088) + p.SetState(7086) p.Operator_def_elem() } - p.SetState(7093) + p.SetState(7091) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98591,7 +98587,7 @@ func (p *PostgreSQLParser) Operator_def_list() (localctx IOperator_def_listConte for _la == PostgreSQLParserCOMMA { { - p.SetState(7089) + p.SetState(7087) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -98599,11 +98595,11 @@ func (p *PostgreSQLParser) Operator_def_list() (localctx IOperator_def_listConte } } { - p.SetState(7090) + p.SetState(7088) p.Operator_def_elem() } - p.SetState(7095) + p.SetState(7093) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98746,7 +98742,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(7104) + p.SetState(7102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98756,11 +98752,11 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7096) + p.SetState(7094) p.Collabel() } { - p.SetState(7097) + p.SetState(7095) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -98768,7 +98764,7 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte } } { - p.SetState(7098) + p.SetState(7096) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -98779,11 +98775,11 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7100) + p.SetState(7098) p.Collabel() } { - p.SetState(7101) + p.SetState(7099) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -98791,7 +98787,7 @@ func (p *PostgreSQLParser) Operator_def_elem() (localctx IOperator_def_elemConte } } { - p.SetState(7102) + p.SetState(7100) p.Operator_def_arg() } @@ -98975,7 +98971,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(7111) + p.SetState(7109) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -98985,35 +98981,35 @@ func (p *PostgreSQLParser) Operator_def_arg() (localctx IOperator_def_argContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7106) + p.SetState(7104) p.Func_type() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7107) + p.SetState(7105) p.Reserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7108) + p.SetState(7106) p.Qual_all_op() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7109) + p.SetState(7107) p.Numericonly() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7110) + p.SetState(7108) p.Sconst() } @@ -99173,7 +99169,7 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { p.EnterRule(localctx, 748, PostgreSQLParserRULE_altertypestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7113) + p.SetState(7111) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99181,7 +99177,7 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7114) + p.SetState(7112) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -99189,11 +99185,11 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7115) + p.SetState(7113) p.Any_name() } { - p.SetState(7116) + p.SetState(7114) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -99201,7 +99197,7 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7117) + p.SetState(7115) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -99209,11 +99205,11 @@ func (p *PostgreSQLParser) Altertypestmt() (localctx IAltertypestmtContext) { } } { - p.SetState(7118) + p.SetState(7116) p.Operator_def_list() } { - p.SetState(7119) + p.SetState(7117) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -99620,7 +99616,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { p.EnterRule(localctx, 750, PostgreSQLParserRULE_alterownerstmt) var _la int - p.SetState(7306) + p.SetState(7304) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -99630,7 +99626,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7121) + p.SetState(7119) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99638,7 +99634,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7122) + p.SetState(7120) p.Match(PostgreSQLParserAGGREGATE) if p.HasError() { // Recognition error - abort rule @@ -99646,11 +99642,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7123) + p.SetState(7121) p.Aggregate_with_argtypes() } { - p.SetState(7124) + p.SetState(7122) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99658,7 +99654,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7125) + p.SetState(7123) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99666,14 +99662,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7126) + p.SetState(7124) p.Rolespec() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7128) + p.SetState(7126) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99681,7 +99677,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7129) + p.SetState(7127) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -99689,11 +99685,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7130) + p.SetState(7128) p.Any_name() } { - p.SetState(7131) + p.SetState(7129) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99701,7 +99697,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7132) + p.SetState(7130) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99709,14 +99705,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7133) + p.SetState(7131) p.Rolespec() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7135) + p.SetState(7133) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99724,7 +99720,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7136) + p.SetState(7134) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -99732,11 +99728,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7137) + p.SetState(7135) p.Any_name() } { - p.SetState(7138) + p.SetState(7136) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99744,7 +99740,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7139) + p.SetState(7137) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99752,14 +99748,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7140) + p.SetState(7138) p.Rolespec() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7142) + p.SetState(7140) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99767,7 +99763,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7143) + p.SetState(7141) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -99775,11 +99771,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7144) + p.SetState(7142) p.Name() } { - p.SetState(7145) + p.SetState(7143) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99787,7 +99783,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7146) + p.SetState(7144) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99795,14 +99791,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7147) + p.SetState(7145) p.Rolespec() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7149) + p.SetState(7147) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99810,7 +99806,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7150) + p.SetState(7148) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -99818,11 +99814,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7151) + p.SetState(7149) p.Any_name() } { - p.SetState(7152) + p.SetState(7150) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99830,7 +99826,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7153) + p.SetState(7151) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99838,14 +99834,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7154) + p.SetState(7152) p.Rolespec() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7156) + p.SetState(7154) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99853,7 +99849,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7157) + p.SetState(7155) p.Match(PostgreSQLParserFUNCTION) if p.HasError() { // Recognition error - abort rule @@ -99861,11 +99857,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7158) + p.SetState(7156) p.Function_with_argtypes() } { - p.SetState(7159) + p.SetState(7157) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99873,7 +99869,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7160) + p.SetState(7158) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99881,21 +99877,21 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7161) + p.SetState(7159) p.Rolespec() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(7163) + p.SetState(7161) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7165) + p.SetState(7163) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -99904,13 +99900,13 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { if _la == PostgreSQLParserPROCEDURAL { { - p.SetState(7164) + p.SetState(7162) p.Opt_procedural() } } { - p.SetState(7167) + p.SetState(7165) p.Match(PostgreSQLParserLANGUAGE) if p.HasError() { // Recognition error - abort rule @@ -99918,11 +99914,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7168) + p.SetState(7166) p.Name() } { - p.SetState(7169) + p.SetState(7167) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99930,7 +99926,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7170) + p.SetState(7168) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99938,14 +99934,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7171) + p.SetState(7169) p.Rolespec() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(7173) + p.SetState(7171) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -99953,7 +99949,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7174) + p.SetState(7172) p.Match(PostgreSQLParserLARGE_P) if p.HasError() { // Recognition error - abort rule @@ -99961,7 +99957,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7175) + p.SetState(7173) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -99969,11 +99965,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7176) + p.SetState(7174) p.Numericonly() } { - p.SetState(7177) + p.SetState(7175) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -99981,7 +99977,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7178) + p.SetState(7176) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -99989,14 +99985,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7179) + p.SetState(7177) p.Rolespec() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(7181) + p.SetState(7179) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100004,7 +100000,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7182) + p.SetState(7180) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -100012,11 +100008,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7183) + p.SetState(7181) p.Operator_with_argtypes() } { - p.SetState(7184) + p.SetState(7182) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100024,7 +100020,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7185) + p.SetState(7183) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100032,14 +100028,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7186) + p.SetState(7184) p.Rolespec() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(7188) + p.SetState(7186) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100047,7 +100043,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7189) + p.SetState(7187) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -100055,7 +100051,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7190) + p.SetState(7188) p.Match(PostgreSQLParserCLASS) if p.HasError() { // Recognition error - abort rule @@ -100063,11 +100059,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7191) + p.SetState(7189) p.Any_name() } { - p.SetState(7192) + p.SetState(7190) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -100075,11 +100071,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7193) + p.SetState(7191) p.Name() } { - p.SetState(7194) + p.SetState(7192) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100087,7 +100083,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7195) + p.SetState(7193) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100095,14 +100091,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7196) + p.SetState(7194) p.Rolespec() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(7198) + p.SetState(7196) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100110,7 +100106,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7199) + p.SetState(7197) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -100118,7 +100114,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7200) + p.SetState(7198) p.Match(PostgreSQLParserFAMILY) if p.HasError() { // Recognition error - abort rule @@ -100126,11 +100122,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7201) + p.SetState(7199) p.Any_name() } { - p.SetState(7202) + p.SetState(7200) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -100138,11 +100134,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7203) + p.SetState(7201) p.Name() } { - p.SetState(7204) + p.SetState(7202) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100150,7 +100146,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7205) + p.SetState(7203) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100158,14 +100154,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7206) + p.SetState(7204) p.Rolespec() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(7208) + p.SetState(7206) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100173,7 +100169,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7209) + p.SetState(7207) p.Match(PostgreSQLParserPROCEDURE) if p.HasError() { // Recognition error - abort rule @@ -100181,11 +100177,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7210) + p.SetState(7208) p.Function_with_argtypes() } { - p.SetState(7211) + p.SetState(7209) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100193,7 +100189,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7212) + p.SetState(7210) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100201,14 +100197,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7213) + p.SetState(7211) p.Rolespec() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(7215) + p.SetState(7213) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100216,7 +100212,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7216) + p.SetState(7214) p.Match(PostgreSQLParserROUTINE) if p.HasError() { // Recognition error - abort rule @@ -100224,11 +100220,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7217) + p.SetState(7215) p.Function_with_argtypes() } { - p.SetState(7218) + p.SetState(7216) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100236,7 +100232,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7219) + p.SetState(7217) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100244,14 +100240,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7220) + p.SetState(7218) p.Rolespec() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(7222) + p.SetState(7220) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100259,7 +100255,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7223) + p.SetState(7221) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule @@ -100267,11 +100263,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7224) + p.SetState(7222) p.Name() } { - p.SetState(7225) + p.SetState(7223) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100279,7 +100275,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7226) + p.SetState(7224) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100287,14 +100283,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7227) + p.SetState(7225) p.Rolespec() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(7229) + p.SetState(7227) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100302,7 +100298,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7230) + p.SetState(7228) p.Match(PostgreSQLParserTYPE_P) if p.HasError() { // Recognition error - abort rule @@ -100310,11 +100306,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7231) + p.SetState(7229) p.Any_name() } { - p.SetState(7232) + p.SetState(7230) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100322,7 +100318,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7233) + p.SetState(7231) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100330,14 +100326,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7234) + p.SetState(7232) p.Rolespec() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(7236) + p.SetState(7234) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100345,7 +100341,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7237) + p.SetState(7235) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -100353,11 +100349,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7238) + p.SetState(7236) p.Name() } { - p.SetState(7239) + p.SetState(7237) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100365,7 +100361,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7240) + p.SetState(7238) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100373,14 +100369,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7241) + p.SetState(7239) p.Rolespec() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(7243) + p.SetState(7241) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100388,7 +100384,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7244) + p.SetState(7242) p.Match(PostgreSQLParserSTATISTICS) if p.HasError() { // Recognition error - abort rule @@ -100396,11 +100392,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7245) + p.SetState(7243) p.Any_name() } { - p.SetState(7246) + p.SetState(7244) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100408,7 +100404,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7247) + p.SetState(7245) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100416,14 +100412,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7248) + p.SetState(7246) p.Rolespec() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(7250) + p.SetState(7248) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100431,7 +100427,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7251) + p.SetState(7249) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -100439,7 +100435,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7252) + p.SetState(7250) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -100447,7 +100443,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7253) + p.SetState(7251) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -100455,11 +100451,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7254) + p.SetState(7252) p.Any_name() } { - p.SetState(7255) + p.SetState(7253) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100467,7 +100463,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7256) + p.SetState(7254) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100475,14 +100471,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7257) + p.SetState(7255) p.Rolespec() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(7259) + p.SetState(7257) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100490,7 +100486,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7260) + p.SetState(7258) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -100498,7 +100494,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7261) + p.SetState(7259) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -100506,7 +100502,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7262) + p.SetState(7260) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -100514,11 +100510,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7263) + p.SetState(7261) p.Any_name() } { - p.SetState(7264) + p.SetState(7262) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100526,7 +100522,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7265) + p.SetState(7263) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100534,14 +100530,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7266) + p.SetState(7264) p.Rolespec() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(7268) + p.SetState(7266) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100549,7 +100545,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7269) + p.SetState(7267) p.Match(PostgreSQLParserFOREIGN) if p.HasError() { // Recognition error - abort rule @@ -100557,7 +100553,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7270) + p.SetState(7268) p.Match(PostgreSQLParserDATA_P) if p.HasError() { // Recognition error - abort rule @@ -100565,7 +100561,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7271) + p.SetState(7269) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -100573,11 +100569,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7272) + p.SetState(7270) p.Name() } { - p.SetState(7273) + p.SetState(7271) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100585,7 +100581,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7274) + p.SetState(7272) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100593,14 +100589,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7275) + p.SetState(7273) p.Rolespec() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(7277) + p.SetState(7275) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100608,7 +100604,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7278) + p.SetState(7276) p.Match(PostgreSQLParserSERVER) if p.HasError() { // Recognition error - abort rule @@ -100616,11 +100612,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7279) + p.SetState(7277) p.Name() } { - p.SetState(7280) + p.SetState(7278) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100628,7 +100624,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7281) + p.SetState(7279) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100636,14 +100632,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7282) + p.SetState(7280) p.Rolespec() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(7284) + p.SetState(7282) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100651,7 +100647,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7285) + p.SetState(7283) p.Match(PostgreSQLParserEVENT) if p.HasError() { // Recognition error - abort rule @@ -100659,7 +100655,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7286) + p.SetState(7284) p.Match(PostgreSQLParserTRIGGER) if p.HasError() { // Recognition error - abort rule @@ -100667,11 +100663,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7287) + p.SetState(7285) p.Name() } { - p.SetState(7288) + p.SetState(7286) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100679,7 +100675,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7289) + p.SetState(7287) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100687,14 +100683,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7290) + p.SetState(7288) p.Rolespec() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(7292) + p.SetState(7290) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100702,7 +100698,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7293) + p.SetState(7291) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -100710,11 +100706,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7294) + p.SetState(7292) p.Name() } { - p.SetState(7295) + p.SetState(7293) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100722,7 +100718,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7296) + p.SetState(7294) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100730,14 +100726,14 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7297) + p.SetState(7295) p.Rolespec() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(7299) + p.SetState(7297) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -100745,7 +100741,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7300) + p.SetState(7298) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -100753,11 +100749,11 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7301) + p.SetState(7299) p.Name() } { - p.SetState(7302) + p.SetState(7300) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -100765,7 +100761,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7303) + p.SetState(7301) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -100773,7 +100769,7 @@ func (p *PostgreSQLParser) Alterownerstmt() (localctx IAlterownerstmtContext) { } } { - p.SetState(7304) + p.SetState(7302) p.Rolespec() } @@ -100948,7 +100944,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(7331) + p.SetState(7329) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -100958,7 +100954,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7308) + p.SetState(7306) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -100966,7 +100962,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7309) + p.SetState(7307) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -100974,15 +100970,15 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7310) + p.SetState(7308) p.Name() } - p.SetState(7312) + p.SetState(7310) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 556, p.GetParserRuleContext()) == 1 { { - p.SetState(7311) + p.SetState(7309) p.Opt_definition() } @@ -100993,7 +100989,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7314) + p.SetState(7312) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -101001,7 +100997,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7315) + p.SetState(7313) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -101009,11 +101005,11 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7316) + p.SetState(7314) p.Name() } { - p.SetState(7317) + p.SetState(7315) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -101021,7 +101017,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7318) + p.SetState(7316) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -101029,19 +101025,19 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7319) + p.SetState(7317) p.Match(PostgreSQLParserTABLES) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7321) + p.SetState(7319) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 557, p.GetParserRuleContext()) == 1 { { - p.SetState(7320) + p.SetState(7318) p.Opt_definition() } @@ -101052,7 +101048,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7323) + p.SetState(7321) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -101060,7 +101056,7 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7324) + p.SetState(7322) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -101068,11 +101064,11 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7325) + p.SetState(7323) p.Name() } { - p.SetState(7326) + p.SetState(7324) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -101080,15 +101076,15 @@ func (p *PostgreSQLParser) Createpublicationstmt() (localctx ICreatepublications } } { - p.SetState(7327) + p.SetState(7325) p.Pub_obj_list() } - p.SetState(7329) + p.SetState(7327) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 558, p.GetParserRuleContext()) == 1 { { - p.SetState(7328) + p.SetState(7326) p.Opt_definition() } @@ -101248,10 +101244,10 @@ func (p *PostgreSQLParser) Pub_obj_list() (localctx IPub_obj_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7333) + p.SetState(7331) p.Publication_obj_spec() } - p.SetState(7338) + p.SetState(7336) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101260,7 +101256,7 @@ func (p *PostgreSQLParser) Pub_obj_list() (localctx IPub_obj_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(7334) + p.SetState(7332) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -101268,11 +101264,11 @@ func (p *PostgreSQLParser) Pub_obj_list() (localctx IPub_obj_listContext) { } } { - p.SetState(7335) + p.SetState(7333) p.Publication_obj_spec() } - p.SetState(7340) + p.SetState(7338) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101478,7 +101474,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe p.EnterRule(localctx, 756, PostgreSQLParserRULE_publication_obj_spec) var _la int - p.SetState(7379) + p.SetState(7377) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101488,7 +101484,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7341) + p.SetState(7339) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -101496,22 +101492,22 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe } } { - p.SetState(7342) + p.SetState(7340) p.Relation_expr() } - p.SetState(7344) + p.SetState(7342) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 561, p.GetParserRuleContext()) == 1 { { - p.SetState(7343) + p.SetState(7341) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7347) + p.SetState(7345) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101520,7 +101516,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7346) + p.SetState(7344) p.Opt_where_clause() } @@ -101529,7 +101525,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7349) + p.SetState(7347) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -101537,7 +101533,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe } } { - p.SetState(7350) + p.SetState(7348) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -101545,14 +101541,14 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe } } { - p.SetState(7351) + p.SetState(7349) p.Match(PostgreSQLParserSCHEMA) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7354) + p.SetState(7352) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101561,13 +101557,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(7352) + p.SetState(7350) p.Colid() } case PostgreSQLParserCURRENT_SCHEMA: { - p.SetState(7353) + p.SetState(7351) p.Match(PostgreSQLParserCURRENT_SCHEMA) if p.HasError() { // Recognition error - abort rule @@ -101583,22 +101579,22 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7356) + p.SetState(7354) p.Colid() } - p.SetState(7358) + p.SetState(7356) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 564, p.GetParserRuleContext()) == 1 { { - p.SetState(7357) + p.SetState(7355) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7361) + p.SetState(7359) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101607,7 +101603,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7360) + p.SetState(7358) p.Opt_where_clause() } @@ -101616,26 +101612,26 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7363) + p.SetState(7361) p.Colid() } { - p.SetState(7364) + p.SetState(7362) p.Indirection() } - p.SetState(7366) + p.SetState(7364) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 566, p.GetParserRuleContext()) == 1 { { - p.SetState(7365) + p.SetState(7363) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7369) + p.SetState(7367) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101644,7 +101640,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7368) + p.SetState(7366) p.Opt_where_clause() } @@ -101653,22 +101649,22 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7371) + p.SetState(7369) p.Relation_expr() } - p.SetState(7373) + p.SetState(7371) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 568, p.GetParserRuleContext()) == 1 { { - p.SetState(7372) + p.SetState(7370) p.Opt_column_list() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7376) + p.SetState(7374) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -101677,7 +101673,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe if _la == PostgreSQLParserWHERE { { - p.SetState(7375) + p.SetState(7373) p.Opt_where_clause() } @@ -101686,7 +101682,7 @@ func (p *PostgreSQLParser) Publication_obj_spec() (localctx IPublication_obj_spe case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7378) + p.SetState(7376) p.Match(PostgreSQLParserCURRENT_SCHEMA) if p.HasError() { // Recognition error - abort rule @@ -101823,7 +101819,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(7381) + p.SetState(7379) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -101831,7 +101827,7 @@ func (p *PostgreSQLParser) Opt_where_clause() (localctx IOpt_where_clauseContext } } { - p.SetState(7382) + p.SetState(7380) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -101839,11 +101835,11 @@ func (p *PostgreSQLParser) Opt_where_clause() (localctx IOpt_where_clauseContext } } { - p.SetState(7383) + p.SetState(7381) p.A_expr() } { - p.SetState(7384) + p.SetState(7382) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -102018,7 +102014,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(7410) + p.SetState(7408) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102028,7 +102024,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7386) + p.SetState(7384) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102036,7 +102032,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7387) + p.SetState(7385) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102044,11 +102040,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7388) + p.SetState(7386) p.Name() } { - p.SetState(7389) + p.SetState(7387) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -102056,14 +102052,14 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7390) + p.SetState(7388) p.Definition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7392) + p.SetState(7390) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102071,7 +102067,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7393) + p.SetState(7391) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102079,11 +102075,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7394) + p.SetState(7392) p.Name() } { - p.SetState(7395) + p.SetState(7393) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -102091,14 +102087,14 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7396) + p.SetState(7394) p.Pub_obj_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7398) + p.SetState(7396) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102106,7 +102102,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7399) + p.SetState(7397) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102114,11 +102110,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7400) + p.SetState(7398) p.Name() } { - p.SetState(7401) + p.SetState(7399) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -102126,14 +102122,14 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7402) + p.SetState(7400) p.Pub_obj_list() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7404) + p.SetState(7402) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102141,7 +102137,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7405) + p.SetState(7403) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102149,11 +102145,11 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7406) + p.SetState(7404) p.Name() } { - p.SetState(7407) + p.SetState(7405) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -102161,7 +102157,7 @@ func (p *PostgreSQLParser) Alterpublicationstmt() (localctx IAlterpublicationstm } } { - p.SetState(7408) + p.SetState(7406) p.Pub_obj_list() } @@ -102350,7 +102346,7 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio p.EnterRule(localctx, 762, PostgreSQLParserRULE_createsubscriptionstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7412) + p.SetState(7410) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -102358,7 +102354,7 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7413) + p.SetState(7411) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -102366,11 +102362,11 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7414) + p.SetState(7412) p.Name() } { - p.SetState(7415) + p.SetState(7413) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -102378,11 +102374,11 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7416) + p.SetState(7414) p.Sconst() } { - p.SetState(7417) + p.SetState(7415) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -102390,15 +102386,15 @@ func (p *PostgreSQLParser) Createsubscriptionstmt() (localctx ICreatesubscriptio } } { - p.SetState(7418) + p.SetState(7416) p.Publication_name_list() } - p.SetState(7420) + p.SetState(7418) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 572, p.GetParserRuleContext()) == 1 { { - p.SetState(7419) + p.SetState(7417) p.Opt_definition() } @@ -102554,10 +102550,10 @@ func (p *PostgreSQLParser) Publication_name_list() (localctx IPublication_name_l p.EnterOuterAlt(localctx, 1) { - p.SetState(7422) + p.SetState(7420) p.Publication_name_item() } - p.SetState(7427) + p.SetState(7425) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102566,7 +102562,7 @@ func (p *PostgreSQLParser) Publication_name_list() (localctx IPublication_name_l for _la == PostgreSQLParserCOMMA { { - p.SetState(7423) + p.SetState(7421) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -102574,11 +102570,11 @@ func (p *PostgreSQLParser) Publication_name_list() (localctx IPublication_name_l } } { - p.SetState(7424) + p.SetState(7422) p.Publication_name_item() } - p.SetState(7429) + p.SetState(7427) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102696,7 +102692,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(7430) + p.SetState(7428) p.Collabel() } @@ -102921,7 +102917,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(7477) + p.SetState(7475) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -102931,7 +102927,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7432) + p.SetState(7430) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102939,7 +102935,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7433) + p.SetState(7431) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -102947,11 +102943,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7434) + p.SetState(7432) p.Name() } { - p.SetState(7435) + p.SetState(7433) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -102959,14 +102955,14 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7436) + p.SetState(7434) p.Definition() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7438) + p.SetState(7436) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -102974,7 +102970,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7439) + p.SetState(7437) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -102982,11 +102978,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7440) + p.SetState(7438) p.Name() } { - p.SetState(7441) + p.SetState(7439) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -102994,14 +102990,14 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7442) + p.SetState(7440) p.Sconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7444) + p.SetState(7442) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103009,7 +103005,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7445) + p.SetState(7443) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103017,11 +103013,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7446) + p.SetState(7444) p.Name() } { - p.SetState(7447) + p.SetState(7445) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -103029,19 +103025,19 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7448) + p.SetState(7446) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7450) + p.SetState(7448) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 574, p.GetParserRuleContext()) == 1 { { - p.SetState(7449) + p.SetState(7447) p.Opt_definition() } @@ -103052,7 +103048,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7452) + p.SetState(7450) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103060,7 +103056,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7453) + p.SetState(7451) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103068,11 +103064,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7454) + p.SetState(7452) p.Name() } { - p.SetState(7455) + p.SetState(7453) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -103080,7 +103076,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7456) + p.SetState(7454) p.Match(PostgreSQLParserPUBLICATION) if p.HasError() { // Recognition error - abort rule @@ -103088,15 +103084,15 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7457) + p.SetState(7455) p.Publication_name_list() } - p.SetState(7459) + p.SetState(7457) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 575, p.GetParserRuleContext()) == 1 { { - p.SetState(7458) + p.SetState(7456) p.Opt_definition() } @@ -103107,7 +103103,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7461) + p.SetState(7459) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103115,7 +103111,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7462) + p.SetState(7460) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103123,11 +103119,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7463) + p.SetState(7461) p.Name() } { - p.SetState(7464) + p.SetState(7462) p.Match(PostgreSQLParserENABLE_P) if p.HasError() { // Recognition error - abort rule @@ -103138,7 +103134,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7466) + p.SetState(7464) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103146,7 +103142,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7467) + p.SetState(7465) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103154,11 +103150,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7468) + p.SetState(7466) p.Name() } { - p.SetState(7469) + p.SetState(7467) p.Match(PostgreSQLParserDISABLE_P) if p.HasError() { // Recognition error - abort rule @@ -103169,7 +103165,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(7471) + p.SetState(7469) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -103177,7 +103173,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7472) + p.SetState(7470) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103185,11 +103181,11 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7473) + p.SetState(7471) p.Name() } { - p.SetState(7474) + p.SetState(7472) p.Match(PostgreSQLParserSKIP_P) if p.HasError() { // Recognition error - abort rule @@ -103197,7 +103193,7 @@ func (p *PostgreSQLParser) Altersubscriptionstmt() (localctx IAltersubscriptions } } { - p.SetState(7475) + p.SetState(7473) p.Definition() } @@ -103352,7 +103348,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm p.EnterRule(localctx, 770, PostgreSQLParserRULE_dropsubscriptionstmt) var _la int - p.SetState(7493) + p.SetState(7491) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103362,7 +103358,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7479) + p.SetState(7477) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -103370,7 +103366,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7480) + p.SetState(7478) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103378,10 +103374,10 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7481) + p.SetState(7479) p.Name() } - p.SetState(7483) + p.SetState(7481) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103390,7 +103386,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(7482) + p.SetState(7480) p.Opt_drop_behavior() } @@ -103399,7 +103395,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7485) + p.SetState(7483) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -103407,7 +103403,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7486) + p.SetState(7484) p.Match(PostgreSQLParserSUBSCRIPTION) if p.HasError() { // Recognition error - abort rule @@ -103415,7 +103411,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7487) + p.SetState(7485) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -103423,7 +103419,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7488) + p.SetState(7486) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -103431,10 +103427,10 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm } } { - p.SetState(7489) + p.SetState(7487) p.Name() } - p.SetState(7491) + p.SetState(7489) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103443,7 +103439,7 @@ func (p *PostgreSQLParser) Dropsubscriptionstmt() (localctx IDropsubscriptionstm if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(7490) + p.SetState(7488) p.Opt_drop_behavior() } @@ -103697,14 +103693,14 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7495) + p.SetState(7493) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7497) + p.SetState(7495) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103713,13 +103709,13 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(7496) + p.SetState(7494) p.Opt_or_replace() } } { - p.SetState(7499) + p.SetState(7497) p.Match(PostgreSQLParserRULE) if p.HasError() { // Recognition error - abort rule @@ -103727,11 +103723,11 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7500) + p.SetState(7498) p.Name() } { - p.SetState(7501) + p.SetState(7499) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -103739,7 +103735,7 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7502) + p.SetState(7500) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -103747,11 +103743,11 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7503) + p.SetState(7501) p.Event() } { - p.SetState(7504) + p.SetState(7502) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -103759,10 +103755,10 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { } } { - p.SetState(7505) + p.SetState(7503) p.Qualified_name() } - p.SetState(7507) + p.SetState(7505) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103771,20 +103767,20 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(7506) + p.SetState(7504) p.Where_clause() } } { - p.SetState(7509) + p.SetState(7507) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7511) + p.SetState(7509) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103793,13 +103789,13 @@ func (p *PostgreSQLParser) Rulestmt() (localctx IRulestmtContext) { if _la == PostgreSQLParserALSO || _la == PostgreSQLParserINSTEAD { { - p.SetState(7510) + p.SetState(7508) p.Opt_instead() } } { - p.SetState(7513) + p.SetState(7511) p.Ruleactionlist() } @@ -103943,7 +103939,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(7521) + p.SetState(7519) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -103953,7 +103949,7 @@ func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7515) + p.SetState(7513) p.Match(PostgreSQLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -103964,14 +103960,14 @@ func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7516) + p.SetState(7514) p.Ruleactionstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7517) + p.SetState(7515) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -103979,11 +103975,11 @@ func (p *PostgreSQLParser) Ruleactionlist() (localctx IRuleactionlistContext) { } } { - p.SetState(7518) + p.SetState(7516) p.Ruleactionmulti() } { - p.SetState(7519) + p.SetState(7517) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -104142,7 +104138,7 @@ func (p *PostgreSQLParser) Ruleactionmulti() (localctx IRuleactionmultiContext) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(7524) + p.SetState(7522) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104151,12 +104147,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(7523) + p.SetState(7521) p.RuleactionstmtOrEmpty() } } - p.SetState(7532) + p.SetState(7530) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104165,14 +104161,14 @@ func (p *PostgreSQLParser) Ruleactionmulti() (localctx IRuleactionmultiContext) for _la == PostgreSQLParserSEMI { { - p.SetState(7526) + p.SetState(7524) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7528) + p.SetState(7526) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104181,13 +104177,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(7527) + p.SetState(7525) p.RuleactionstmtOrEmpty() } } - p.SetState(7534) + p.SetState(7532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104371,7 +104367,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(7540) + p.SetState(7538) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104381,35 +104377,35 @@ func (p *PostgreSQLParser) Ruleactionstmt() (localctx IRuleactionstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7535) + p.SetState(7533) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7536) + p.SetState(7534) p.Insertstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7537) + p.SetState(7535) p.Updatestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7538) + p.SetState(7536) p.Deletestmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7539) + p.SetState(7537) p.Notifystmt() } @@ -104527,7 +104523,7 @@ func (p *PostgreSQLParser) RuleactionstmtOrEmpty() (localctx IRuleactionstmtOrEm p.EnterRule(localctx, 780, PostgreSQLParserRULE_ruleactionstmtOrEmpty) p.EnterOuterAlt(localctx, 1) { - p.SetState(7542) + p.SetState(7540) p.Ruleactionstmt() } @@ -104646,7 +104642,7 @@ func (p *PostgreSQLParser) Event() (localctx IEventContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7544) + p.SetState(7542) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserSELECT || _la == PostgreSQLParserDELETE_P || _la == PostgreSQLParserINSERT || _la == PostgreSQLParserUPDATE) { @@ -104762,7 +104758,7 @@ func (p *PostgreSQLParser) Opt_instead() (localctx IOpt_insteadContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7546) + p.SetState(7544) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALSO || _la == PostgreSQLParserINSTEAD) { @@ -104907,7 +104903,7 @@ func (p *PostgreSQLParser) Notifystmt() (localctx INotifystmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7548) + p.SetState(7546) p.Match(PostgreSQLParserNOTIFY) if p.HasError() { // Recognition error - abort rule @@ -104915,10 +104911,10 @@ func (p *PostgreSQLParser) Notifystmt() (localctx INotifystmtContext) { } } { - p.SetState(7549) + p.SetState(7547) p.Colid() } - p.SetState(7551) + p.SetState(7549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -104927,7 +104923,7 @@ func (p *PostgreSQLParser) Notifystmt() (localctx INotifystmtContext) { if _la == PostgreSQLParserCOMMA { { - p.SetState(7550) + p.SetState(7548) p.Notify_payload() } @@ -105048,7 +105044,7 @@ func (p *PostgreSQLParser) Notify_payload() (localctx INotify_payloadContext) { p.EnterRule(localctx, 788, PostgreSQLParserRULE_notify_payload) p.EnterOuterAlt(localctx, 1) { - p.SetState(7553) + p.SetState(7551) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -105056,7 +105052,7 @@ func (p *PostgreSQLParser) Notify_payload() (localctx INotify_payloadContext) { } } { - p.SetState(7554) + p.SetState(7552) p.Sconst() } @@ -105175,7 +105171,7 @@ func (p *PostgreSQLParser) Listenstmt() (localctx IListenstmtContext) { p.EnterRule(localctx, 790, PostgreSQLParserRULE_listenstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7556) + p.SetState(7554) p.Match(PostgreSQLParserLISTEN) if p.HasError() { // Recognition error - abort rule @@ -105183,7 +105179,7 @@ func (p *PostgreSQLParser) Listenstmt() (localctx IListenstmtContext) { } } { - p.SetState(7557) + p.SetState(7555) p.Colid() } @@ -105305,7 +105301,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(7563) + p.SetState(7561) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105315,7 +105311,7 @@ func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7559) + p.SetState(7557) p.Match(PostgreSQLParserUNLISTEN) if p.HasError() { // Recognition error - abort rule @@ -105323,14 +105319,14 @@ func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { } } { - p.SetState(7560) + p.SetState(7558) p.Colid() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7561) + p.SetState(7559) p.Match(PostgreSQLParserUNLISTEN) if p.HasError() { // Recognition error - abort rule @@ -105338,7 +105334,7 @@ func (p *PostgreSQLParser) Unlistenstmt() (localctx IUnlistenstmtContext) { } } { - p.SetState(7562) + p.SetState(7560) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -105588,7 +105584,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) p.EnterRule(localctx, 794, PostgreSQLParserRULE_transactionstmt) var _la int - p.SetState(7634) + p.SetState(7632) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105598,14 +105594,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7565) + p.SetState(7563) p.Match(PostgreSQLParserABORT_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7567) + p.SetState(7565) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105614,12 +105610,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7566) + p.SetState(7564) p.Opt_transaction() } } - p.SetState(7570) + p.SetState(7568) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105628,7 +105624,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7569) + p.SetState(7567) p.Opt_transaction_chain() } @@ -105637,14 +105633,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7572) + p.SetState(7570) p.Match(PostgreSQLParserBEGIN_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7574) + p.SetState(7572) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105653,12 +105649,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7573) + p.SetState(7571) p.Opt_transaction() } } - p.SetState(7577) + p.SetState(7575) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105667,7 +105663,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserDEFERRABLE || _la == PostgreSQLParserNOT || _la == PostgreSQLParserISOLATION || _la == PostgreSQLParserREAD { { - p.SetState(7576) + p.SetState(7574) p.Transaction_mode_list_or_empty() } @@ -105676,7 +105672,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7579) + p.SetState(7577) p.Match(PostgreSQLParserSTART) if p.HasError() { // Recognition error - abort rule @@ -105684,14 +105680,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7580) + p.SetState(7578) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7582) + p.SetState(7580) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105700,7 +105696,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserDEFERRABLE || _la == PostgreSQLParserNOT || _la == PostgreSQLParserISOLATION || _la == PostgreSQLParserREAD { { - p.SetState(7581) + p.SetState(7579) p.Transaction_mode_list_or_empty() } @@ -105709,14 +105705,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7584) + p.SetState(7582) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7586) + p.SetState(7584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105725,12 +105721,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7585) + p.SetState(7583) p.Opt_transaction() } } - p.SetState(7589) + p.SetState(7587) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105739,7 +105735,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7588) + p.SetState(7586) p.Opt_transaction_chain() } @@ -105748,14 +105744,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7591) + p.SetState(7589) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7593) + p.SetState(7591) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105764,12 +105760,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7592) + p.SetState(7590) p.Opt_transaction() } } - p.SetState(7596) + p.SetState(7594) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105778,7 +105774,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7595) + p.SetState(7593) p.Opt_transaction_chain() } @@ -105787,14 +105783,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7598) + p.SetState(7596) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7600) + p.SetState(7598) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105803,12 +105799,12 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7599) + p.SetState(7597) p.Opt_transaction() } } - p.SetState(7603) + p.SetState(7601) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105817,7 +105813,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserAND { { - p.SetState(7602) + p.SetState(7600) p.Opt_transaction_chain() } @@ -105826,7 +105822,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(7605) + p.SetState(7603) p.Match(PostgreSQLParserSAVEPOINT) if p.HasError() { // Recognition error - abort rule @@ -105834,14 +105830,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7606) + p.SetState(7604) p.Colid() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(7607) + p.SetState(7605) p.Match(PostgreSQLParserRELEASE) if p.HasError() { // Recognition error - abort rule @@ -105849,7 +105845,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7608) + p.SetState(7606) p.Match(PostgreSQLParserSAVEPOINT) if p.HasError() { // Recognition error - abort rule @@ -105857,14 +105853,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7609) + p.SetState(7607) p.Colid() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(7610) + p.SetState(7608) p.Match(PostgreSQLParserRELEASE) if p.HasError() { // Recognition error - abort rule @@ -105872,21 +105868,21 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7611) + p.SetState(7609) p.Colid() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(7612) + p.SetState(7610) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7614) + p.SetState(7612) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105895,13 +105891,13 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7613) + p.SetState(7611) p.Opt_transaction() } } { - p.SetState(7616) + p.SetState(7614) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -105909,7 +105905,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7617) + p.SetState(7615) p.Match(PostgreSQLParserSAVEPOINT) if p.HasError() { // Recognition error - abort rule @@ -105917,21 +105913,21 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7618) + p.SetState(7616) p.Colid() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(7619) + p.SetState(7617) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7621) + p.SetState(7619) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -105940,13 +105936,13 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) if _la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK { { - p.SetState(7620) + p.SetState(7618) p.Opt_transaction() } } { - p.SetState(7623) + p.SetState(7621) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -105954,14 +105950,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7624) + p.SetState(7622) p.Colid() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(7625) + p.SetState(7623) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -105969,7 +105965,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7626) + p.SetState(7624) p.Match(PostgreSQLParserTRANSACTION) if p.HasError() { // Recognition error - abort rule @@ -105977,14 +105973,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7627) + p.SetState(7625) p.Sconst() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(7628) + p.SetState(7626) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule @@ -105992,7 +105988,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7629) + p.SetState(7627) p.Match(PostgreSQLParserPREPARED) if p.HasError() { // Recognition error - abort rule @@ -106000,14 +105996,14 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7630) + p.SetState(7628) p.Sconst() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(7631) + p.SetState(7629) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule @@ -106015,7 +106011,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7632) + p.SetState(7630) p.Match(PostgreSQLParserPREPARED) if p.HasError() { // Recognition error - abort rule @@ -106023,7 +106019,7 @@ func (p *PostgreSQLParser) Transactionstmt() (localctx ITransactionstmtContext) } } { - p.SetState(7633) + p.SetState(7631) p.Sconst() } @@ -106136,7 +106132,7 @@ func (p *PostgreSQLParser) Opt_transaction() (localctx IOpt_transactionContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(7636) + p.SetState(7634) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTRANSACTION || _la == PostgreSQLParserWORK) { @@ -106290,7 +106286,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(7648) + p.SetState(7646) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106300,7 +106296,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7638) + p.SetState(7636) p.Match(PostgreSQLParserISOLATION) if p.HasError() { // Recognition error - abort rule @@ -106308,7 +106304,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7639) + p.SetState(7637) p.Match(PostgreSQLParserLEVEL) if p.HasError() { // Recognition error - abort rule @@ -106316,14 +106312,14 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7640) + p.SetState(7638) p.Iso_level() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7641) + p.SetState(7639) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -106331,7 +106327,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7642) + p.SetState(7640) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -106342,7 +106338,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7643) + p.SetState(7641) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -106350,7 +106346,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7644) + p.SetState(7642) p.Match(PostgreSQLParserWRITE) if p.HasError() { // Recognition error - abort rule @@ -106361,7 +106357,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7645) + p.SetState(7643) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -106372,7 +106368,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7646) + p.SetState(7644) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -106380,7 +106376,7 @@ func (p *PostgreSQLParser) Transaction_mode_item() (localctx ITransaction_mode_i } } { - p.SetState(7647) + p.SetState(7645) p.Match(PostgreSQLParserDEFERRABLE) if p.HasError() { // Recognition error - abort rule @@ -106540,10 +106536,10 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l p.EnterOuterAlt(localctx, 1) { - p.SetState(7650) + p.SetState(7648) p.Transaction_mode_item() } - p.SetState(7657) + p.SetState(7655) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106551,7 +106547,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(7652) + p.SetState(7650) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106560,7 +106556,7 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l if _la == PostgreSQLParserCOMMA { { - p.SetState(7651) + p.SetState(7649) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -106570,11 +106566,11 @@ func (p *PostgreSQLParser) Transaction_mode_list() (localctx ITransaction_mode_l } { - p.SetState(7654) + p.SetState(7652) p.Transaction_mode_item() } - p.SetState(7659) + p.SetState(7657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106692,7 +106688,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(7660) + p.SetState(7658) p.Transaction_mode_list() } @@ -106806,14 +106802,14 @@ func (p *PostgreSQLParser) Opt_transaction_chain() (localctx IOpt_transaction_ch p.EnterOuterAlt(localctx, 1) { - p.SetState(7662) + p.SetState(7660) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7664) + p.SetState(7662) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -106822,7 +106818,7 @@ func (p *PostgreSQLParser) Opt_transaction_chain() (localctx IOpt_transaction_ch if _la == PostgreSQLParserNO { { - p.SetState(7663) + p.SetState(7661) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -106832,7 +106828,7 @@ func (p *PostgreSQLParser) Opt_transaction_chain() (localctx IOpt_transaction_ch } { - p.SetState(7666) + p.SetState(7664) p.Match(PostgreSQLParserCHAIN) if p.HasError() { // Recognition error - abort rule @@ -107094,14 +107090,14 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7668) + p.SetState(7666) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7671) + p.SetState(7669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107110,7 +107106,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserOR { { - p.SetState(7669) + p.SetState(7667) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -107118,7 +107114,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7670) + p.SetState(7668) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -107127,7 +107123,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } - p.SetState(7674) + p.SetState(7672) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107136,12 +107132,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(7673) + p.SetState(7671) p.Opttemp() } } - p.SetState(7693) + p.SetState(7691) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107150,7 +107146,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserVIEW: { - p.SetState(7676) + p.SetState(7674) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -107158,10 +107154,10 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7677) + p.SetState(7675) p.Qualified_name() } - p.SetState(7679) + p.SetState(7677) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107170,12 +107166,12 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(7678) + p.SetState(7676) p.Opt_column_list() } } - p.SetState(7682) + p.SetState(7680) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107184,7 +107180,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(7681) + p.SetState(7679) p.Opt_reloptions() } @@ -107192,7 +107188,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { case PostgreSQLParserRECURSIVE: { - p.SetState(7684) + p.SetState(7682) p.Match(PostgreSQLParserRECURSIVE) if p.HasError() { // Recognition error - abort rule @@ -107200,7 +107196,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7685) + p.SetState(7683) p.Match(PostgreSQLParserVIEW) if p.HasError() { // Recognition error - abort rule @@ -107208,11 +107204,11 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7686) + p.SetState(7684) p.Qualified_name() } { - p.SetState(7687) + p.SetState(7685) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -107220,18 +107216,18 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7688) + p.SetState(7686) p.Columnlist() } { - p.SetState(7689) + p.SetState(7687) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7691) + p.SetState(7689) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107240,7 +107236,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(7690) + p.SetState(7688) p.Opt_reloptions() } @@ -107251,7 +107247,7 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { goto errorExit } { - p.SetState(7695) + p.SetState(7693) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -107259,15 +107255,15 @@ func (p *PostgreSQLParser) Viewstmt() (localctx IViewstmtContext) { } } { - p.SetState(7696) + p.SetState(7694) p.Selectstmt() } - p.SetState(7698) + p.SetState(7696) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 614, p.GetParserRuleContext()) == 1 { { - p.SetState(7697) + p.SetState(7695) p.Opt_check_option() } @@ -107395,14 +107391,14 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext p.EnterOuterAlt(localctx, 1) { - p.SetState(7700) + p.SetState(7698) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7702) + p.SetState(7700) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -107411,7 +107407,7 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext if _la == PostgreSQLParserCASCADED || _la == PostgreSQLParserLOCAL { { - p.SetState(7701) + p.SetState(7699) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCASCADED || _la == PostgreSQLParserLOCAL) { @@ -107424,7 +107420,7 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext } { - p.SetState(7704) + p.SetState(7702) p.Match(PostgreSQLParserCHECK) if p.HasError() { // Recognition error - abort rule @@ -107432,7 +107428,7 @@ func (p *PostgreSQLParser) Opt_check_option() (localctx IOpt_check_optionContext } } { - p.SetState(7705) + p.SetState(7703) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -107555,7 +107551,7 @@ func (p *PostgreSQLParser) Loadstmt() (localctx ILoadstmtContext) { p.EnterRule(localctx, 810, PostgreSQLParserRULE_loadstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7707) + p.SetState(7705) p.Match(PostgreSQLParserLOAD) if p.HasError() { // Recognition error - abort rule @@ -107563,7 +107559,7 @@ func (p *PostgreSQLParser) Loadstmt() (localctx ILoadstmtContext) { } } { - p.SetState(7708) + p.SetState(7706) p.File_name() } @@ -107721,7 +107717,7 @@ func (p *PostgreSQLParser) Createdbstmt() (localctx ICreatedbstmtContext) { p.EnterRule(localctx, 812, PostgreSQLParserRULE_createdbstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7710) + p.SetState(7708) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -107729,7 +107725,7 @@ func (p *PostgreSQLParser) Createdbstmt() (localctx ICreatedbstmtContext) { } } { - p.SetState(7711) + p.SetState(7709) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -107737,27 +107733,27 @@ func (p *PostgreSQLParser) Createdbstmt() (localctx ICreatedbstmtContext) { } } { - p.SetState(7712) + p.SetState(7710) p.Name() } - p.SetState(7714) + p.SetState(7712) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 616, p.GetParserRuleContext()) == 1 { { - p.SetState(7713) + p.SetState(7711) p.Opt_with() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7717) + p.SetState(7715) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 617, p.GetParserRuleContext()) == 1 { { - p.SetState(7716) + p.SetState(7714) p.Createdb_opt_list() } @@ -107875,7 +107871,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(7719) + p.SetState(7717) p.Createdb_opt_items() } @@ -108016,7 +108012,7 @@ func (p *PostgreSQLParser) Createdb_opt_items() (localctx ICreatedb_opt_itemsCon var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(7722) + p.SetState(7720) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108026,7 +108022,7 @@ func (p *PostgreSQLParser) Createdb_opt_items() (localctx ICreatedb_opt_itemsCon switch _alt { case 1: { - p.SetState(7721) + p.SetState(7719) p.Createdb_opt_item() } @@ -108035,7 +108031,7 @@ func (p *PostgreSQLParser) Createdb_opt_items() (localctx ICreatedb_opt_itemsCon goto errorExit } - p.SetState(7724) + p.SetState(7722) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 618, p.GetParserRuleContext()) if p.HasError() { @@ -108211,10 +108207,10 @@ func (p *PostgreSQLParser) Createdb_opt_item() (localctx ICreatedb_opt_itemConte p.EnterOuterAlt(localctx, 1) { - p.SetState(7726) + p.SetState(7724) p.Createdb_opt_name() } - p.SetState(7728) + p.SetState(7726) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108223,12 +108219,12 @@ func (p *PostgreSQLParser) Createdb_opt_item() (localctx ICreatedb_opt_itemConte if _la == PostgreSQLParserEQUAL { { - p.SetState(7727) + p.SetState(7725) p.Opt_equal() } } - p.SetState(7733) + p.SetState(7731) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108237,19 +108233,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(7730) + p.SetState(7728) p.Signediconst() } case 2: { - p.SetState(7731) + p.SetState(7729) p.Opt_boolean_or_string() } case 3: { - p.SetState(7732) + p.SetState(7730) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -108404,7 +108400,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(7743) + p.SetState(7741) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108414,14 +108410,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(7735) + p.SetState(7733) p.Identifier() } case PostgreSQLParserCONNECTION: p.EnterOuterAlt(localctx, 2) { - p.SetState(7736) + p.SetState(7734) p.Match(PostgreSQLParserCONNECTION) if p.HasError() { // Recognition error - abort rule @@ -108429,7 +108425,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte } } { - p.SetState(7737) + p.SetState(7735) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -108440,7 +108436,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserENCODING: p.EnterOuterAlt(localctx, 3) { - p.SetState(7738) + p.SetState(7736) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -108451,7 +108447,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserLOCATION: p.EnterOuterAlt(localctx, 4) { - p.SetState(7739) + p.SetState(7737) p.Match(PostgreSQLParserLOCATION) if p.HasError() { // Recognition error - abort rule @@ -108462,7 +108458,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserOWNER: p.EnterOuterAlt(localctx, 5) { - p.SetState(7740) + p.SetState(7738) p.Match(PostgreSQLParserOWNER) if p.HasError() { // Recognition error - abort rule @@ -108473,7 +108469,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserTABLESPACE: p.EnterOuterAlt(localctx, 6) { - p.SetState(7741) + p.SetState(7739) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -108484,7 +108480,7 @@ func (p *PostgreSQLParser) Createdb_opt_name() (localctx ICreatedb_opt_nameConte case PostgreSQLParserTEMPLATE: p.EnterOuterAlt(localctx, 7) { - p.SetState(7742) + p.SetState(7740) p.Match(PostgreSQLParserTEMPLATE) if p.HasError() { // Recognition error - abort rule @@ -108595,7 +108591,7 @@ func (p *PostgreSQLParser) Opt_equal() (localctx IOpt_equalContext) { p.EnterRule(localctx, 822, PostgreSQLParserRULE_opt_equal) p.EnterOuterAlt(localctx, 1) { - p.SetState(7745) + p.SetState(7743) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -108796,7 +108792,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte p.EnterRule(localctx, 824, PostgreSQLParserRULE_alterdatabasestmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7747) + p.SetState(7745) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -108804,7 +108800,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7748) + p.SetState(7746) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -108812,10 +108808,10 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7749) + p.SetState(7747) p.Name() } - p.SetState(7763) + p.SetState(7761) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -108824,19 +108820,19 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 624, p.GetParserRuleContext()) { case 1: { - p.SetState(7750) + p.SetState(7748) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7752) + p.SetState(7750) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 622, p.GetParserRuleContext()) == 1 { { - p.SetState(7751) + p.SetState(7749) p.Createdb_opt_list() } @@ -108845,12 +108841,12 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } case 2: - p.SetState(7755) + p.SetState(7753) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 623, p.GetParserRuleContext()) == 1 { { - p.SetState(7754) + p.SetState(7752) p.Createdb_opt_list() } @@ -108860,7 +108856,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte case 3: { - p.SetState(7757) + p.SetState(7755) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -108868,7 +108864,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7758) + p.SetState(7756) p.Match(PostgreSQLParserTABLESPACE) if p.HasError() { // Recognition error - abort rule @@ -108876,13 +108872,13 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7759) + p.SetState(7757) p.Name() } case 4: { - p.SetState(7760) + p.SetState(7758) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -108890,7 +108886,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7761) + p.SetState(7759) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -108898,7 +108894,7 @@ func (p *PostgreSQLParser) Alterdatabasestmt() (localctx IAlterdatabasestmtConte } } { - p.SetState(7762) + p.SetState(7760) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -109047,7 +109043,7 @@ func (p *PostgreSQLParser) Alterdatabasesetstmt() (localctx IAlterdatabasesetstm p.EnterRule(localctx, 826, PostgreSQLParserRULE_alterdatabasesetstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7765) + p.SetState(7763) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -109055,7 +109051,7 @@ func (p *PostgreSQLParser) Alterdatabasesetstmt() (localctx IAlterdatabasesetstm } } { - p.SetState(7766) + p.SetState(7764) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule @@ -109063,11 +109059,11 @@ func (p *PostgreSQLParser) Alterdatabasesetstmt() (localctx IAlterdatabasesetstm } } { - p.SetState(7767) + p.SetState(7765) p.Name() } { - p.SetState(7768) + p.SetState(7766) p.Setresetclause() } @@ -109247,7 +109243,7 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(7770) + p.SetState(7768) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -109255,19 +109251,19 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { } } { - p.SetState(7771) + p.SetState(7769) p.Match(PostgreSQLParserDATABASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7774) + p.SetState(7772) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 625, p.GetParserRuleContext()) == 1 { { - p.SetState(7772) + p.SetState(7770) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -109275,7 +109271,7 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { } } { - p.SetState(7773) + p.SetState(7771) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -109287,14 +109283,14 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { goto errorExit } { - p.SetState(7776) + p.SetState(7774) p.Name() } - p.SetState(7784) + p.SetState(7782) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 627, p.GetParserRuleContext()) == 1 { - p.SetState(7778) + p.SetState(7776) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -109303,13 +109299,13 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(7777) + p.SetState(7775) p.Opt_with() } } { - p.SetState(7780) + p.SetState(7778) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -109317,11 +109313,11 @@ func (p *PostgreSQLParser) Dropdbstmt() (localctx IDropdbstmtContext) { } } { - p.SetState(7781) + p.SetState(7779) p.Drop_option_list() } { - p.SetState(7782) + p.SetState(7780) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -109481,10 +109477,10 @@ func (p *PostgreSQLParser) Drop_option_list() (localctx IDrop_option_listContext p.EnterOuterAlt(localctx, 1) { - p.SetState(7786) + p.SetState(7784) p.Drop_option() } - p.SetState(7791) + p.SetState(7789) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -109493,7 +109489,7 @@ func (p *PostgreSQLParser) Drop_option_list() (localctx IDrop_option_listContext for _la == PostgreSQLParserCOMMA { { - p.SetState(7787) + p.SetState(7785) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -109501,11 +109497,11 @@ func (p *PostgreSQLParser) Drop_option_list() (localctx IDrop_option_listContext } } { - p.SetState(7788) + p.SetState(7786) p.Drop_option() } - p.SetState(7793) + p.SetState(7791) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -109611,7 +109607,7 @@ func (p *PostgreSQLParser) Drop_option() (localctx IDrop_optionContext) { p.EnterRule(localctx, 832, PostgreSQLParserRULE_drop_option) p.EnterOuterAlt(localctx, 1) { - p.SetState(7794) + p.SetState(7792) p.Match(PostgreSQLParserFORCE) if p.HasError() { // Recognition error - abort rule @@ -109749,7 +109745,7 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon p.EnterRule(localctx, 834, PostgreSQLParserRULE_altercollationstmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7796) + p.SetState(7794) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -109757,7 +109753,7 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon } } { - p.SetState(7797) + p.SetState(7795) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -109765,11 +109761,11 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon } } { - p.SetState(7798) + p.SetState(7796) p.Any_name() } { - p.SetState(7799) + p.SetState(7797) p.Match(PostgreSQLParserREFRESH) if p.HasError() { // Recognition error - abort rule @@ -109777,7 +109773,7 @@ func (p *PostgreSQLParser) Altercollationstmt() (localctx IAltercollationstmtCon } } { - p.SetState(7800) + p.SetState(7798) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -109917,7 +109913,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(7802) + p.SetState(7800) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -109925,7 +109921,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) } } { - p.SetState(7803) + p.SetState(7801) p.Match(PostgreSQLParserSYSTEM_P) if p.HasError() { // Recognition error - abort rule @@ -109933,7 +109929,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) } } { - p.SetState(7804) + p.SetState(7802) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserRESET || _la == PostgreSQLParserSET) { @@ -109944,7 +109940,7 @@ func (p *PostgreSQLParser) Altersystemstmt() (localctx IAltersystemstmtContext) } } { - p.SetState(7805) + p.SetState(7803) p.Generic_set() } @@ -110121,7 +110117,7 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext p.EnterOuterAlt(localctx, 1) { - p.SetState(7807) + p.SetState(7805) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule @@ -110129,7 +110125,7 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext } } { - p.SetState(7808) + p.SetState(7806) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -110137,10 +110133,10 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext } } { - p.SetState(7809) + p.SetState(7807) p.Any_name() } - p.SetState(7811) + p.SetState(7809) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -110149,17 +110145,17 @@ func (p *PostgreSQLParser) Createdomainstmt() (localctx ICreatedomainstmtContext if _la == PostgreSQLParserAS { { - p.SetState(7810) + p.SetState(7808) p.Opt_as() } } { - p.SetState(7813) + p.SetState(7811) p.Typename() } { - p.SetState(7814) + p.SetState(7812) p.Colquallist() } @@ -110398,7 +110394,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(7816) + p.SetState(7814) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -110406,7 +110402,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7817) + p.SetState(7815) p.Match(PostgreSQLParserDOMAIN_P) if p.HasError() { // Recognition error - abort rule @@ -110414,10 +110410,10 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7818) + p.SetState(7816) p.Any_name() } - p.SetState(7841) + p.SetState(7839) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -110426,13 +110422,13 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 632, p.GetParserRuleContext()) { case 1: { - p.SetState(7819) + p.SetState(7817) p.Alter_column_default() } case 2: { - p.SetState(7820) + p.SetState(7818) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -110440,7 +110436,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7821) + p.SetState(7819) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -110448,7 +110444,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7822) + p.SetState(7820) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -110458,7 +110454,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) case 3: { - p.SetState(7823) + p.SetState(7821) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -110466,7 +110462,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7824) + p.SetState(7822) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -110474,7 +110470,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7825) + p.SetState(7823) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -110484,7 +110480,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) case 4: { - p.SetState(7826) + p.SetState(7824) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -110492,13 +110488,13 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7827) + p.SetState(7825) p.Tableconstraint() } case 5: { - p.SetState(7828) + p.SetState(7826) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -110506,19 +110502,19 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7829) + p.SetState(7827) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7832) + p.SetState(7830) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 630, p.GetParserRuleContext()) == 1 { { - p.SetState(7830) + p.SetState(7828) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -110526,7 +110522,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7831) + p.SetState(7829) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -110538,10 +110534,10 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) goto errorExit } { - p.SetState(7834) + p.SetState(7832) p.Name() } - p.SetState(7836) + p.SetState(7834) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -110550,7 +110546,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) if _la == PostgreSQLParserCASCADE || _la == PostgreSQLParserRESTRICT { { - p.SetState(7835) + p.SetState(7833) p.Opt_drop_behavior() } @@ -110558,7 +110554,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) case 6: { - p.SetState(7838) + p.SetState(7836) p.Match(PostgreSQLParserVALIDATE) if p.HasError() { // Recognition error - abort rule @@ -110566,7 +110562,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7839) + p.SetState(7837) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -110574,7 +110570,7 @@ func (p *PostgreSQLParser) Alterdomainstmt() (localctx IAlterdomainstmtContext) } } { - p.SetState(7840) + p.SetState(7838) p.Name() } @@ -110680,7 +110676,7 @@ func (p *PostgreSQLParser) Opt_as() (localctx IOpt_asContext) { p.EnterRule(localctx, 842, PostgreSQLParserRULE_opt_as) p.EnterOuterAlt(localctx, 1) { - p.SetState(7843) + p.SetState(7841) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -110835,7 +110831,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys p.EnterRule(localctx, 844, PostgreSQLParserRULE_altertsdictionarystmt) p.EnterOuterAlt(localctx, 1) { - p.SetState(7845) + p.SetState(7843) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -110843,7 +110839,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7846) + p.SetState(7844) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -110851,7 +110847,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7847) + p.SetState(7845) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -110859,7 +110855,7 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7848) + p.SetState(7846) p.Match(PostgreSQLParserDICTIONARY) if p.HasError() { // Recognition error - abort rule @@ -110867,11 +110863,11 @@ func (p *PostgreSQLParser) Altertsdictionarystmt() (localctx IAltertsdictionarys } } { - p.SetState(7849) + p.SetState(7847) p.Any_name() } { - p.SetState(7850) + p.SetState(7848) p.Definition() } @@ -111120,7 +111116,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(7924) + p.SetState(7922) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -111130,7 +111126,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7852) + p.SetState(7850) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111138,7 +111134,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7853) + p.SetState(7851) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111146,7 +111142,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7854) + p.SetState(7852) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111154,7 +111150,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7855) + p.SetState(7853) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111162,11 +111158,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7856) + p.SetState(7854) p.Any_name() } { - p.SetState(7857) + p.SetState(7855) p.Match(PostgreSQLParserADD_P) if p.HasError() { // Recognition error - abort rule @@ -111174,7 +111170,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7858) + p.SetState(7856) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111182,7 +111178,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7859) + p.SetState(7857) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111190,22 +111186,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7860) + p.SetState(7858) p.Name_list() } { - p.SetState(7861) + p.SetState(7859) p.Any_with() } { - p.SetState(7862) + p.SetState(7860) p.Any_name_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7864) + p.SetState(7862) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111213,7 +111209,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7865) + p.SetState(7863) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111221,7 +111217,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7866) + p.SetState(7864) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111229,7 +111225,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7867) + p.SetState(7865) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111237,11 +111233,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7868) + p.SetState(7866) p.Any_name() } { - p.SetState(7869) + p.SetState(7867) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111249,7 +111245,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7870) + p.SetState(7868) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111257,7 +111253,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7871) + p.SetState(7869) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111265,22 +111261,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7872) + p.SetState(7870) p.Name_list() } { - p.SetState(7873) + p.SetState(7871) p.Any_with() } { - p.SetState(7874) + p.SetState(7872) p.Any_name_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7876) + p.SetState(7874) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111288,7 +111284,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7877) + p.SetState(7875) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111296,7 +111292,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7878) + p.SetState(7876) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111304,7 +111300,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7879) + p.SetState(7877) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111312,11 +111308,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7880) + p.SetState(7878) p.Any_name() } { - p.SetState(7881) + p.SetState(7879) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111324,7 +111320,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7882) + p.SetState(7880) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111332,7 +111328,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7883) + p.SetState(7881) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -111340,22 +111336,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7884) + p.SetState(7882) p.Any_name() } { - p.SetState(7885) + p.SetState(7883) p.Any_with() } { - p.SetState(7886) + p.SetState(7884) p.Any_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(7888) + p.SetState(7886) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111363,7 +111359,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7889) + p.SetState(7887) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111371,7 +111367,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7890) + p.SetState(7888) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111379,7 +111375,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7891) + p.SetState(7889) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111387,11 +111383,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7892) + p.SetState(7890) p.Any_name() } { - p.SetState(7893) + p.SetState(7891) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111399,7 +111395,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7894) + p.SetState(7892) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111407,7 +111403,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7895) + p.SetState(7893) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111415,11 +111411,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7896) + p.SetState(7894) p.Name_list() } { - p.SetState(7897) + p.SetState(7895) p.Match(PostgreSQLParserREPLACE) if p.HasError() { // Recognition error - abort rule @@ -111427,22 +111423,22 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7898) + p.SetState(7896) p.Any_name() } { - p.SetState(7899) + p.SetState(7897) p.Any_with() } { - p.SetState(7900) + p.SetState(7898) p.Any_name() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(7902) + p.SetState(7900) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111450,7 +111446,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7903) + p.SetState(7901) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111458,7 +111454,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7904) + p.SetState(7902) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111466,7 +111462,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7905) + p.SetState(7903) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111474,11 +111470,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7906) + p.SetState(7904) p.Any_name() } { - p.SetState(7907) + p.SetState(7905) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -111486,7 +111482,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7908) + p.SetState(7906) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111494,7 +111490,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7909) + p.SetState(7907) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111502,14 +111498,14 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7910) + p.SetState(7908) p.Name_list() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(7912) + p.SetState(7910) p.Match(PostgreSQLParserALTER) if p.HasError() { // Recognition error - abort rule @@ -111517,7 +111513,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7913) + p.SetState(7911) p.Match(PostgreSQLParserTEXT_P) if p.HasError() { // Recognition error - abort rule @@ -111525,7 +111521,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7914) + p.SetState(7912) p.Match(PostgreSQLParserSEARCH) if p.HasError() { // Recognition error - abort rule @@ -111533,7 +111529,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7915) + p.SetState(7913) p.Match(PostgreSQLParserCONFIGURATION) if p.HasError() { // Recognition error - abort rule @@ -111541,11 +111537,11 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7916) + p.SetState(7914) p.Any_name() } { - p.SetState(7917) + p.SetState(7915) p.Match(PostgreSQLParserDROP) if p.HasError() { // Recognition error - abort rule @@ -111553,7 +111549,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7918) + p.SetState(7916) p.Match(PostgreSQLParserMAPPING) if p.HasError() { // Recognition error - abort rule @@ -111561,7 +111557,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7919) + p.SetState(7917) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -111569,7 +111565,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7920) + p.SetState(7918) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -111577,7 +111573,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7921) + p.SetState(7919) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111585,7 +111581,7 @@ func (p *PostgreSQLParser) Altertsconfigurationstmt() (localctx IAltertsconfigur } } { - p.SetState(7922) + p.SetState(7920) p.Name_list() } @@ -111691,7 +111687,7 @@ func (p *PostgreSQLParser) Any_with() (localctx IAny_withContext) { p.EnterRule(localctx, 848, PostgreSQLParserRULE_any_with) p.EnterOuterAlt(localctx, 1) { - p.SetState(7926) + p.SetState(7924) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -111922,14 +111918,14 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm p.EnterOuterAlt(localctx, 1) { - p.SetState(7928) + p.SetState(7926) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7930) + p.SetState(7928) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -111938,13 +111934,13 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm if _la == PostgreSQLParserDEFAULT { { - p.SetState(7929) + p.SetState(7927) p.Opt_default() } } { - p.SetState(7932) + p.SetState(7930) p.Match(PostgreSQLParserCONVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -111952,11 +111948,11 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7933) + p.SetState(7931) p.Any_name() } { - p.SetState(7934) + p.SetState(7932) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -111964,11 +111960,11 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7935) + p.SetState(7933) p.Sconst() } { - p.SetState(7936) + p.SetState(7934) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -111976,11 +111972,11 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7937) + p.SetState(7935) p.Sconst() } { - p.SetState(7938) + p.SetState(7936) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -111988,7 +111984,7 @@ func (p *PostgreSQLParser) Createconversionstmt() (localctx ICreateconversionstm } } { - p.SetState(7939) + p.SetState(7937) p.Any_name() } @@ -112163,7 +112159,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { p.EnterRule(localctx, 852, PostgreSQLParserRULE_clusterstmt) var _la int - p.SetState(7961) + p.SetState(7959) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112173,14 +112169,14 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7941) + p.SetState(7939) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7943) + p.SetState(7941) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112189,16 +112185,16 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7942) + p.SetState(7940) p.Opt_verbose() } } { - p.SetState(7945) + p.SetState(7943) p.Qualified_name() } - p.SetState(7947) + p.SetState(7945) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112207,7 +112203,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(7946) + p.SetState(7944) p.Cluster_index_specification() } @@ -112216,14 +112212,14 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7949) + p.SetState(7947) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7951) + p.SetState(7949) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112232,7 +112228,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7950) + p.SetState(7948) p.Opt_verbose() } @@ -112241,14 +112237,14 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(7953) + p.SetState(7951) p.Match(PostgreSQLParserCLUSTER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7955) + p.SetState(7953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112257,17 +112253,17 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7954) + p.SetState(7952) p.Opt_verbose() } } { - p.SetState(7957) + p.SetState(7955) p.Name() } { - p.SetState(7958) + p.SetState(7956) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -112275,7 +112271,7 @@ func (p *PostgreSQLParser) Clusterstmt() (localctx IClusterstmtContext) { } } { - p.SetState(7959) + p.SetState(7957) p.Qualified_name() } @@ -112398,7 +112394,7 @@ func (p *PostgreSQLParser) Cluster_index_specification() (localctx ICluster_inde p.EnterRule(localctx, 854, PostgreSQLParserRULE_cluster_index_specification) p.EnterOuterAlt(localctx, 1) { - p.SetState(7963) + p.SetState(7961) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -112406,7 +112402,7 @@ func (p *PostgreSQLParser) Cluster_index_specification() (localctx ICluster_inde } } { - p.SetState(7964) + p.SetState(7962) p.Name() } @@ -112620,7 +112616,7 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { p.EnterRule(localctx, 856, PostgreSQLParserRULE_vacuumstmt) var _la int - p.SetState(7989) + p.SetState(7987) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112630,14 +112626,14 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7966) + p.SetState(7964) p.Match(PostgreSQLParserVACUUM) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7968) + p.SetState(7966) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112646,12 +112642,12 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { if _la == PostgreSQLParserFULL { { - p.SetState(7967) + p.SetState(7965) p.Opt_full() } } - p.SetState(7971) + p.SetState(7969) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112660,12 +112656,12 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { if _la == PostgreSQLParserFREEZE { { - p.SetState(7970) + p.SetState(7968) p.Opt_freeze() } } - p.SetState(7974) + p.SetState(7972) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112674,29 +112670,29 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7973) + p.SetState(7971) p.Opt_verbose() } } - p.SetState(7977) + p.SetState(7975) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 643, p.GetParserRuleContext()) == 1 { { - p.SetState(7976) + p.SetState(7974) p.Opt_analyze() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(7980) + p.SetState(7978) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 644, p.GetParserRuleContext()) == 1 { { - p.SetState(7979) + p.SetState(7977) p.Opt_vacuum_relation_list() } @@ -112707,7 +112703,7 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7982) + p.SetState(7980) p.Match(PostgreSQLParserVACUUM) if p.HasError() { // Recognition error - abort rule @@ -112715,7 +112711,7 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { } } { - p.SetState(7983) + p.SetState(7981) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -112723,23 +112719,23 @@ func (p *PostgreSQLParser) Vacuumstmt() (localctx IVacuumstmtContext) { } } { - p.SetState(7984) + p.SetState(7982) p.Vac_analyze_option_list() } { - p.SetState(7985) + p.SetState(7983) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(7987) + p.SetState(7985) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 645, p.GetParserRuleContext()) == 1 { { - p.SetState(7986) + p.SetState(7984) p.Opt_vacuum_relation_list() } @@ -112922,7 +112918,7 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { p.EnterRule(localctx, 858, PostgreSQLParserRULE_analyzestmt) var _la int - p.SetState(8005) + p.SetState(8003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112932,10 +112928,10 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(7991) + p.SetState(7989) p.Analyze_keyword() } - p.SetState(7993) + p.SetState(7991) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -112944,17 +112940,17 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(7992) + p.SetState(7990) p.Opt_verbose() } } - p.SetState(7996) + p.SetState(7994) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 648, p.GetParserRuleContext()) == 1 { { - p.SetState(7995) + p.SetState(7993) p.Opt_vacuum_relation_list() } @@ -112965,11 +112961,11 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(7998) + p.SetState(7996) p.Analyze_keyword() } { - p.SetState(7999) + p.SetState(7997) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -112977,23 +112973,23 @@ func (p *PostgreSQLParser) Analyzestmt() (localctx IAnalyzestmtContext) { } } { - p.SetState(8000) + p.SetState(7998) p.Vac_analyze_option_list() } { - p.SetState(8001) + p.SetState(7999) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8003) + p.SetState(8001) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 649, p.GetParserRuleContext()) == 1 { { - p.SetState(8002) + p.SetState(8000) p.Opt_vacuum_relation_list() } @@ -113153,10 +113149,10 @@ func (p *PostgreSQLParser) Vac_analyze_option_list() (localctx IVac_analyze_opti p.EnterOuterAlt(localctx, 1) { - p.SetState(8007) + p.SetState(8005) p.Vac_analyze_option_elem() } - p.SetState(8012) + p.SetState(8010) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113165,7 +113161,7 @@ func (p *PostgreSQLParser) Vac_analyze_option_list() (localctx IVac_analyze_opti for _la == PostgreSQLParserCOMMA { { - p.SetState(8008) + p.SetState(8006) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -113173,11 +113169,11 @@ func (p *PostgreSQLParser) Vac_analyze_option_list() (localctx IVac_analyze_opti } } { - p.SetState(8009) + p.SetState(8007) p.Vac_analyze_option_elem() } - p.SetState(8014) + p.SetState(8012) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113290,7 +113286,7 @@ func (p *PostgreSQLParser) Analyze_keyword() (localctx IAnalyze_keywordContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8015) + p.SetState(8013) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserANALYSE || _la == PostgreSQLParserANALYZE) { @@ -113430,10 +113426,10 @@ func (p *PostgreSQLParser) Vac_analyze_option_elem() (localctx IVac_analyze_opti p.EnterOuterAlt(localctx, 1) { - p.SetState(8017) + p.SetState(8015) p.Vac_analyze_option_name() } - p.SetState(8019) + p.SetState(8017) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113442,7 +113438,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(8018) + p.SetState(8016) p.Vac_analyze_option_arg() } @@ -113573,7 +113569,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(8023) + p.SetState(8021) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113583,14 +113579,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(8021) + p.SetState(8019) p.Nonreservedword() } case PostgreSQLParserANALYSE, PostgreSQLParserANALYZE: p.EnterOuterAlt(localctx, 2) { - p.SetState(8022) + p.SetState(8020) p.Analyze_keyword() } @@ -113724,7 +113720,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(8027) + p.SetState(8025) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -113734,14 +113730,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(8025) + p.SetState(8023) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(8026) + p.SetState(8024) p.Numericonly() } @@ -113860,7 +113856,7 @@ func (p *PostgreSQLParser) Opt_analyze() (localctx IOpt_analyzeContext) { p.EnterRule(localctx, 870, PostgreSQLParserRULE_opt_analyze) p.EnterOuterAlt(localctx, 1) { - p.SetState(8029) + p.SetState(8027) p.Analyze_keyword() } @@ -113962,7 +113958,7 @@ func (p *PostgreSQLParser) Opt_verbose() (localctx IOpt_verboseContext) { p.EnterRule(localctx, 872, PostgreSQLParserRULE_opt_verbose) p.EnterOuterAlt(localctx, 1) { - p.SetState(8031) + p.SetState(8029) p.Match(PostgreSQLParserVERBOSE) if p.HasError() { // Recognition error - abort rule @@ -114068,7 +114064,7 @@ func (p *PostgreSQLParser) Opt_full() (localctx IOpt_fullContext) { p.EnterRule(localctx, 874, PostgreSQLParserRULE_opt_full) p.EnterOuterAlt(localctx, 1) { - p.SetState(8033) + p.SetState(8031) p.Match(PostgreSQLParserFULL) if p.HasError() { // Recognition error - abort rule @@ -114174,7 +114170,7 @@ func (p *PostgreSQLParser) Opt_freeze() (localctx IOpt_freezeContext) { p.EnterRule(localctx, 876, PostgreSQLParserRULE_opt_freeze) p.EnterOuterAlt(localctx, 1) { - p.SetState(8035) + p.SetState(8033) p.Match(PostgreSQLParserFREEZE) if p.HasError() { // Recognition error - abort rule @@ -114302,7 +114298,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(8037) + p.SetState(8035) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -114310,11 +114306,11 @@ func (p *PostgreSQLParser) Opt_name_list() (localctx IOpt_name_listContext) { } } { - p.SetState(8038) + p.SetState(8036) p.Name_list() } { - p.SetState(8039) + p.SetState(8037) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -114449,15 +114445,15 @@ func (p *PostgreSQLParser) Vacuum_relation() (localctx IVacuum_relationContext) p.EnterRule(localctx, 880, PostgreSQLParserRULE_vacuum_relation) p.EnterOuterAlt(localctx, 1) { - p.SetState(8041) + p.SetState(8039) p.Qualified_name() } - p.SetState(8043) + p.SetState(8041) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 655, p.GetParserRuleContext()) == 1 { { - p.SetState(8042) + p.SetState(8040) p.Opt_name_list() } @@ -114613,10 +114609,10 @@ func (p *PostgreSQLParser) Vacuum_relation_list() (localctx IVacuum_relation_lis p.EnterOuterAlt(localctx, 1) { - p.SetState(8045) + p.SetState(8043) p.Vacuum_relation() } - p.SetState(8050) + p.SetState(8048) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114625,7 +114621,7 @@ func (p *PostgreSQLParser) Vacuum_relation_list() (localctx IVacuum_relation_lis for _la == PostgreSQLParserCOMMA { { - p.SetState(8046) + p.SetState(8044) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -114633,11 +114629,11 @@ func (p *PostgreSQLParser) Vacuum_relation_list() (localctx IVacuum_relation_lis } } { - p.SetState(8047) + p.SetState(8045) p.Vacuum_relation() } - p.SetState(8052) + p.SetState(8050) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114755,7 +114751,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(8053) + p.SetState(8051) p.Vacuum_relation_list() } @@ -114940,7 +114936,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { p.EnterRule(localctx, 886, PostgreSQLParserRULE_explainstmt) var _la int - p.SetState(8073) + p.SetState(8071) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114950,7 +114946,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8055) + p.SetState(8053) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -114958,14 +114954,14 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8056) + p.SetState(8054) p.Explainablestmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8057) + p.SetState(8055) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -114973,10 +114969,10 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8058) + p.SetState(8056) p.Analyze_keyword() } - p.SetState(8060) + p.SetState(8058) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -114985,20 +114981,20 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { if _la == PostgreSQLParserVERBOSE { { - p.SetState(8059) + p.SetState(8057) p.Opt_verbose() } } { - p.SetState(8062) + p.SetState(8060) p.Explainablestmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8064) + p.SetState(8062) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -115006,7 +115002,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8065) + p.SetState(8063) p.Match(PostgreSQLParserVERBOSE) if p.HasError() { // Recognition error - abort rule @@ -115014,14 +115010,14 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8066) + p.SetState(8064) p.Explainablestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8067) + p.SetState(8065) p.Match(PostgreSQLParserEXPLAIN) if p.HasError() { // Recognition error - abort rule @@ -115029,7 +115025,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8068) + p.SetState(8066) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -115037,11 +115033,11 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8069) + p.SetState(8067) p.Explain_option_list() } { - p.SetState(8070) + p.SetState(8068) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -115049,7 +115045,7 @@ func (p *PostgreSQLParser) Explainstmt() (localctx IExplainstmtContext) { } } { - p.SetState(8071) + p.SetState(8069) p.Explainablestmt() } @@ -115301,7 +115297,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(8084) + p.SetState(8082) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115311,63 +115307,63 @@ func (p *PostgreSQLParser) Explainablestmt() (localctx IExplainablestmtContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8075) + p.SetState(8073) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8076) + p.SetState(8074) p.Insertstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8077) + p.SetState(8075) p.Updatestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8078) + p.SetState(8076) p.Deletestmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(8079) + p.SetState(8077) p.Declarecursorstmt() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(8080) + p.SetState(8078) p.Createasstmt() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(8081) + p.SetState(8079) p.Creatematviewstmt() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(8082) + p.SetState(8080) p.Refreshmatviewstmt() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(8083) + p.SetState(8081) p.Executestmt() } @@ -115523,10 +115519,10 @@ func (p *PostgreSQLParser) Explain_option_list() (localctx IExplain_option_listC p.EnterOuterAlt(localctx, 1) { - p.SetState(8086) + p.SetState(8084) p.Explain_option_elem() } - p.SetState(8091) + p.SetState(8089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115535,7 +115531,7 @@ func (p *PostgreSQLParser) Explain_option_list() (localctx IExplain_option_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(8087) + p.SetState(8085) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -115543,11 +115539,11 @@ func (p *PostgreSQLParser) Explain_option_list() (localctx IExplain_option_listC } } { - p.SetState(8088) + p.SetState(8086) p.Explain_option_elem() } - p.SetState(8093) + p.SetState(8091) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115684,10 +115680,10 @@ func (p *PostgreSQLParser) Explain_option_elem() (localctx IExplain_option_elemC p.EnterOuterAlt(localctx, 1) { - p.SetState(8094) + p.SetState(8092) p.Explain_option_name() } - p.SetState(8096) + p.SetState(8094) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115696,7 +115692,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(8095) + p.SetState(8093) p.Explain_option_arg() } @@ -115827,7 +115823,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(8100) + p.SetState(8098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115837,14 +115833,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(8098) + p.SetState(8096) p.Nonreservedword() } case PostgreSQLParserANALYSE, PostgreSQLParserANALYZE: p.EnterOuterAlt(localctx, 2) { - p.SetState(8099) + p.SetState(8097) p.Analyze_keyword() } @@ -115978,7 +115974,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(8104) + p.SetState(8102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -115988,14 +115984,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(8102) + p.SetState(8100) p.Opt_boolean_or_string() } case PostgreSQLParserPLUS, PostgreSQLParserMINUS, PostgreSQLParserIntegral, PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(8103) + p.SetState(8101) p.Numericonly() } @@ -116160,7 +116156,7 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8106) + p.SetState(8104) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -116168,10 +116164,10 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { } } { - p.SetState(8107) + p.SetState(8105) p.Name() } - p.SetState(8109) + p.SetState(8107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116180,13 +116176,13 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(8108) + p.SetState(8106) p.Prep_type_clause() } } { - p.SetState(8111) + p.SetState(8109) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -116194,7 +116190,7 @@ func (p *PostgreSQLParser) Preparestmt() (localctx IPreparestmtContext) { } } { - p.SetState(8112) + p.SetState(8110) p.Preparablestmt() } @@ -116318,7 +116314,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(8114) + p.SetState(8112) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -116326,11 +116322,11 @@ func (p *PostgreSQLParser) Prep_type_clause() (localctx IPrep_type_clauseContext } } { - p.SetState(8115) + p.SetState(8113) p.Type_list() } { - p.SetState(8116) + p.SetState(8114) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -116514,7 +116510,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(8123) + p.SetState(8121) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116524,35 +116520,35 @@ func (p *PostgreSQLParser) Preparablestmt() (localctx IPreparablestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8118) + p.SetState(8116) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8119) + p.SetState(8117) p.Insertstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8120) + p.SetState(8118) p.Updatestmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8121) + p.SetState(8119) p.Deletestmt() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(8122) + p.SetState(8120) p.Mergestmt() } @@ -116773,7 +116769,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { p.EnterRule(localctx, 904, PostgreSQLParserRULE_executestmt) var _la int - p.SetState(8163) + p.SetState(8161) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116783,7 +116779,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8125) + p.SetState(8123) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -116791,15 +116787,15 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8126) + p.SetState(8124) p.Name() } - p.SetState(8128) + p.SetState(8126) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 666, p.GetParserRuleContext()) == 1 { { - p.SetState(8127) + p.SetState(8125) p.Execute_param_clause() } @@ -116810,14 +116806,14 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8130) + p.SetState(8128) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8132) + p.SetState(8130) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116826,13 +116822,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(8131) + p.SetState(8129) p.Opttemp() } } { - p.SetState(8134) + p.SetState(8132) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -116840,11 +116836,11 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8135) + p.SetState(8133) p.Create_as_target() } { - p.SetState(8136) + p.SetState(8134) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -116852,7 +116848,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8137) + p.SetState(8135) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -116860,27 +116856,27 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8138) + p.SetState(8136) p.Name() } - p.SetState(8140) + p.SetState(8138) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 668, p.GetParserRuleContext()) == 1 { { - p.SetState(8139) + p.SetState(8137) p.Execute_param_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8143) + p.SetState(8141) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 669, p.GetParserRuleContext()) == 1 { { - p.SetState(8142) + p.SetState(8140) p.Opt_with_data() } @@ -116891,14 +116887,14 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8145) + p.SetState(8143) p.Match(PostgreSQLParserCREATE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8147) + p.SetState(8145) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -116907,13 +116903,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(8146) + p.SetState(8144) p.Opttemp() } } { - p.SetState(8149) + p.SetState(8147) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -116921,7 +116917,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8150) + p.SetState(8148) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -116929,7 +116925,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8151) + p.SetState(8149) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -116937,7 +116933,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8152) + p.SetState(8150) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -116945,11 +116941,11 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8153) + p.SetState(8151) p.Create_as_target() } { - p.SetState(8154) + p.SetState(8152) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -116957,7 +116953,7 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8155) + p.SetState(8153) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -116965,27 +116961,27 @@ func (p *PostgreSQLParser) Executestmt() (localctx IExecutestmtContext) { } } { - p.SetState(8156) + p.SetState(8154) p.Name() } - p.SetState(8158) + p.SetState(8156) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 671, p.GetParserRuleContext()) == 1 { { - p.SetState(8157) + p.SetState(8155) p.Execute_param_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8161) + p.SetState(8159) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 672, p.GetParserRuleContext()) == 1 { { - p.SetState(8160) + p.SetState(8158) p.Opt_with_data() } @@ -117117,7 +117113,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(8165) + p.SetState(8163) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -117125,11 +117121,11 @@ func (p *PostgreSQLParser) Execute_param_clause() (localctx IExecute_param_claus } } { - p.SetState(8166) + p.SetState(8164) p.Expr_list() } { - p.SetState(8167) + p.SetState(8165) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -117260,7 +117256,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(8179) + p.SetState(8177) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117270,7 +117266,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8169) + p.SetState(8167) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117278,14 +117274,14 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8170) + p.SetState(8168) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8171) + p.SetState(8169) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117293,7 +117289,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8172) + p.SetState(8170) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -117301,14 +117297,14 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8173) + p.SetState(8171) p.Name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8174) + p.SetState(8172) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117316,7 +117312,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8175) + p.SetState(8173) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -117327,7 +117323,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8176) + p.SetState(8174) p.Match(PostgreSQLParserDEALLOCATE) if p.HasError() { // Recognition error - abort rule @@ -117335,7 +117331,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8177) + p.SetState(8175) p.Match(PostgreSQLParserPREPARE) if p.HasError() { // Recognition error - abort rule @@ -117343,7 +117339,7 @@ func (p *PostgreSQLParser) Deallocatestmt() (localctx IDeallocatestmtContext) { } } { - p.SetState(8178) + p.SetState(8176) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -117544,7 +117540,7 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8182) + p.SetState(8180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117553,13 +117549,13 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8181) + p.SetState(8179) p.Opt_with_clause() } } { - p.SetState(8184) + p.SetState(8182) p.Match(PostgreSQLParserINSERT) if p.HasError() { // Recognition error - abort rule @@ -117567,7 +117563,7 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { } } { - p.SetState(8185) + p.SetState(8183) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -117575,14 +117571,14 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { } } { - p.SetState(8186) + p.SetState(8184) p.Insert_target() } { - p.SetState(8187) + p.SetState(8185) p.Insert_rest() } - p.SetState(8189) + p.SetState(8187) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117591,12 +117587,12 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { if _la == PostgreSQLParserON { { - p.SetState(8188) + p.SetState(8186) p.Opt_on_conflict() } } - p.SetState(8192) + p.SetState(8190) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117605,7 +117601,7 @@ func (p *PostgreSQLParser) Insertstmt() (localctx IInsertstmtContext) { if _la == PostgreSQLParserRETURNING { { - p.SetState(8191) + p.SetState(8189) p.Returning_clause() } @@ -117745,10 +117741,10 @@ func (p *PostgreSQLParser) Insert_target() (localctx IInsert_targetContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8194) + p.SetState(8192) p.Qualified_name() } - p.SetState(8197) + p.SetState(8195) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117757,7 +117753,7 @@ func (p *PostgreSQLParser) Insert_target() (localctx IInsert_targetContext) { if _la == PostgreSQLParserAS { { - p.SetState(8195) + p.SetState(8193) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -117765,7 +117761,7 @@ func (p *PostgreSQLParser) Insert_target() (localctx IInsert_targetContext) { } } { - p.SetState(8196) + p.SetState(8194) p.Colid() } @@ -117945,7 +117941,7 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { p.EnterRule(localctx, 914, PostgreSQLParserRULE_insert_rest) var _la int - p.SetState(8218) + p.SetState(8216) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -117955,14 +117951,14 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8199) + p.SetState(8197) p.Selectstmt() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8200) + p.SetState(8198) p.Match(PostgreSQLParserOVERRIDING) if p.HasError() { // Recognition error - abort rule @@ -117970,11 +117966,11 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8201) + p.SetState(8199) p.Override_kind() } { - p.SetState(8202) + p.SetState(8200) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -117982,14 +117978,14 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8203) + p.SetState(8201) p.Selectstmt() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8205) + p.SetState(8203) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -117997,18 +117993,18 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8206) + p.SetState(8204) p.Insert_column_list() } { - p.SetState(8207) + p.SetState(8205) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8212) + p.SetState(8210) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118017,7 +118013,7 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { if _la == PostgreSQLParserOVERRIDING { { - p.SetState(8208) + p.SetState(8206) p.Match(PostgreSQLParserOVERRIDING) if p.HasError() { // Recognition error - abort rule @@ -118025,11 +118021,11 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8209) + p.SetState(8207) p.Override_kind() } { - p.SetState(8210) + p.SetState(8208) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -118039,14 +118035,14 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } { - p.SetState(8214) + p.SetState(8212) p.Selectstmt() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8216) + p.SetState(8214) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -118054,7 +118050,7 @@ func (p *PostgreSQLParser) Insert_rest() (localctx IInsert_restContext) { } } { - p.SetState(8217) + p.SetState(8215) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -118171,7 +118167,7 @@ func (p *PostgreSQLParser) Override_kind() (localctx IOverride_kindContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8220) + p.SetState(8218) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserUSER || _la == PostgreSQLParserSYSTEM_P) { @@ -118330,10 +118326,10 @@ func (p *PostgreSQLParser) Insert_column_list() (localctx IInsert_column_listCon p.EnterOuterAlt(localctx, 1) { - p.SetState(8222) + p.SetState(8220) p.Insert_column_item() } - p.SetState(8227) + p.SetState(8225) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118342,7 +118338,7 @@ func (p *PostgreSQLParser) Insert_column_list() (localctx IInsert_column_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(8223) + p.SetState(8221) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -118350,11 +118346,11 @@ func (p *PostgreSQLParser) Insert_column_list() (localctx IInsert_column_listCon } } { - p.SetState(8224) + p.SetState(8222) p.Insert_column_item() } - p.SetState(8229) + p.SetState(8227) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118489,11 +118485,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(8230) + p.SetState(8228) p.Colid() } { - p.SetState(8231) + p.SetState(8229) p.Opt_indirection() } @@ -118673,7 +118669,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8233) + p.SetState(8231) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -118681,14 +118677,14 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) } } { - p.SetState(8234) + p.SetState(8232) p.Match(PostgreSQLParserCONFLICT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8236) + p.SetState(8234) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118697,20 +118693,20 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) if _la == PostgreSQLParserOPEN_PAREN || _la == PostgreSQLParserON { { - p.SetState(8235) + p.SetState(8233) p.Opt_conf_expr() } } { - p.SetState(8238) + p.SetState(8236) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8246) + p.SetState(8244) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118719,7 +118715,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) switch p.GetTokenStream().LA(1) { case PostgreSQLParserUPDATE: { - p.SetState(8239) + p.SetState(8237) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -118727,7 +118723,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) } } { - p.SetState(8240) + p.SetState(8238) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -118735,10 +118731,10 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) } } { - p.SetState(8241) + p.SetState(8239) p.Set_clause_list() } - p.SetState(8243) + p.SetState(8241) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118747,7 +118743,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) if _la == PostgreSQLParserWHERE { { - p.SetState(8242) + p.SetState(8240) p.Where_clause() } @@ -118755,7 +118751,7 @@ func (p *PostgreSQLParser) Opt_on_conflict() (localctx IOpt_on_conflictContext) case PostgreSQLParserNOTHING: { - p.SetState(8245) + p.SetState(8243) p.Match(PostgreSQLParserNOTHING) if p.HasError() { // Recognition error - abort rule @@ -118932,7 +118928,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { p.EnterRule(localctx, 924, PostgreSQLParserRULE_opt_conf_expr) var _la int - p.SetState(8257) + p.SetState(8255) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118942,7 +118938,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 1) { - p.SetState(8248) + p.SetState(8246) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -118950,18 +118946,18 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { } } { - p.SetState(8249) + p.SetState(8247) p.Index_params() } { - p.SetState(8250) + p.SetState(8248) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8252) + p.SetState(8250) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -118970,7 +118966,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(8251) + p.SetState(8249) p.Where_clause() } @@ -118979,7 +118975,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { case PostgreSQLParserON: p.EnterOuterAlt(localctx, 2) { - p.SetState(8254) + p.SetState(8252) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -118987,7 +118983,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { } } { - p.SetState(8255) + p.SetState(8253) p.Match(PostgreSQLParserCONSTRAINT) if p.HasError() { // Recognition error - abort rule @@ -118995,7 +118991,7 @@ func (p *PostgreSQLParser) Opt_conf_expr() (localctx IOpt_conf_exprContext) { } } { - p.SetState(8256) + p.SetState(8254) p.Name() } @@ -119119,7 +119115,7 @@ func (p *PostgreSQLParser) Returning_clause() (localctx IReturning_clauseContext p.EnterRule(localctx, 926, PostgreSQLParserRULE_returning_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8259) + p.SetState(8257) p.Match(PostgreSQLParserRETURNING) if p.HasError() { // Recognition error - abort rule @@ -119127,7 +119123,7 @@ func (p *PostgreSQLParser) Returning_clause() (localctx IReturning_clauseContext } } { - p.SetState(8260) + p.SetState(8258) p.Target_list() } @@ -119438,7 +119434,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8263) + p.SetState(8261) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119447,13 +119443,13 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8262) + p.SetState(8260) p.With_clause() } } { - p.SetState(8265) + p.SetState(8263) p.Match(PostgreSQLParserMERGE) if p.HasError() { // Recognition error - abort rule @@ -119461,14 +119457,14 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { } } { - p.SetState(8266) + p.SetState(8264) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8268) + p.SetState(8266) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119477,7 +119473,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if _la == PostgreSQLParserONLY { { - p.SetState(8267) + p.SetState(8265) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -119487,10 +119483,10 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { } { - p.SetState(8270) + p.SetState(8268) p.Qualified_name() } - p.SetState(8272) + p.SetState(8270) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119499,20 +119495,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(8271) + p.SetState(8269) p.Alias_clause() } } { - p.SetState(8274) + p.SetState(8272) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8277) + p.SetState(8275) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119521,13 +119517,13 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(8275) + p.SetState(8273) 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(8276) + p.SetState(8274) p.Qualified_name() } @@ -119535,7 +119531,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(8280) + p.SetState(8278) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119544,13 +119540,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(8279) + p.SetState(8277) p.Alias_clause() } } { - p.SetState(8282) + p.SetState(8280) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -119558,10 +119554,10 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { } } { - p.SetState(8283) + p.SetState(8281) p.A_expr() } - p.SetState(8292) + p.SetState(8290) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119570,15 +119566,15 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 694, p.GetParserRuleContext()) { case 1: { - p.SetState(8284) + p.SetState(8282) p.Merge_insert_clause() } - p.SetState(8286) + p.SetState(8284) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 692, p.GetParserRuleContext()) == 1 { { - p.SetState(8285) + p.SetState(8283) p.Merge_update_clause() } @@ -119588,15 +119584,15 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { case 2: { - p.SetState(8288) + p.SetState(8286) p.Merge_update_clause() } - p.SetState(8290) + p.SetState(8288) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 693, p.GetParserRuleContext()) == 1 { { - p.SetState(8289) + p.SetState(8287) p.Merge_insert_clause() } @@ -119607,7 +119603,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(8295) + p.SetState(8293) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119616,7 +119612,7 @@ func (p *PostgreSQLParser) Mergestmt() (localctx IMergestmtContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(8294) + p.SetState(8292) p.Merge_delete_clause() } @@ -119808,7 +119804,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC p.EnterOuterAlt(localctx, 1) { - p.SetState(8297) + p.SetState(8295) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -119816,7 +119812,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8298) + p.SetState(8296) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -119824,14 +119820,14 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8299) + p.SetState(8297) p.Match(PostgreSQLParserMATCHED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8302) + p.SetState(8300) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119840,7 +119836,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC if _la == PostgreSQLParserAND { { - p.SetState(8300) + p.SetState(8298) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -119848,12 +119844,12 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8301) + p.SetState(8299) p.A_expr() } } - p.SetState(8305) + p.SetState(8303) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119862,7 +119858,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC if _la == PostgreSQLParserTHEN { { - p.SetState(8304) + p.SetState(8302) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -119872,14 +119868,14 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } { - p.SetState(8307) + p.SetState(8305) p.Match(PostgreSQLParserINSERT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8312) + p.SetState(8310) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -119888,7 +119884,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(8308) + p.SetState(8306) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -119896,11 +119892,11 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } } { - p.SetState(8309) + p.SetState(8307) p.Insert_column_list() } { - p.SetState(8310) + p.SetState(8308) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -119910,7 +119906,7 @@ func (p *PostgreSQLParser) Merge_insert_clause() (localctx IMerge_insert_clauseC } { - p.SetState(8314) + p.SetState(8312) p.Values_clause() } @@ -120073,7 +120069,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC p.EnterOuterAlt(localctx, 1) { - p.SetState(8316) + p.SetState(8314) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -120081,14 +120077,14 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8317) + p.SetState(8315) p.Match(PostgreSQLParserMATCHED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8320) + p.SetState(8318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120097,7 +120093,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC if _la == PostgreSQLParserAND { { - p.SetState(8318) + p.SetState(8316) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -120105,12 +120101,12 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8319) + p.SetState(8317) p.A_expr() } } - p.SetState(8323) + p.SetState(8321) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120119,7 +120115,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC if _la == PostgreSQLParserTHEN { { - p.SetState(8322) + p.SetState(8320) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -120129,7 +120125,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } { - p.SetState(8325) + p.SetState(8323) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -120137,7 +120133,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8326) + p.SetState(8324) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -120145,7 +120141,7 @@ func (p *PostgreSQLParser) Merge_update_clause() (localctx IMerge_update_clauseC } } { - p.SetState(8327) + p.SetState(8325) p.Set_clause_list() } @@ -120264,7 +120260,7 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC p.EnterOuterAlt(localctx, 1) { - p.SetState(8329) + p.SetState(8327) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -120272,14 +120268,14 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC } } { - p.SetState(8330) + p.SetState(8328) p.Match(PostgreSQLParserMATCHED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8332) + p.SetState(8330) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120288,7 +120284,7 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC if _la == PostgreSQLParserTHEN { { - p.SetState(8331) + p.SetState(8329) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -120298,7 +120294,7 @@ func (p *PostgreSQLParser) Merge_delete_clause() (localctx IMerge_delete_clauseC } { - p.SetState(8334) + p.SetState(8332) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -120495,7 +120491,7 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8337) + p.SetState(8335) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120504,13 +120500,13 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8336) + p.SetState(8334) p.Opt_with_clause() } } { - p.SetState(8339) + p.SetState(8337) p.Match(PostgreSQLParserDELETE_P) if p.HasError() { // Recognition error - abort rule @@ -120518,7 +120514,7 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { } } { - p.SetState(8340) + p.SetState(8338) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -120526,10 +120522,10 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { } } { - p.SetState(8341) + p.SetState(8339) p.Relation_expr_opt_alias() } - p.SetState(8343) + p.SetState(8341) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120538,12 +120534,12 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserUSING { { - p.SetState(8342) + p.SetState(8340) p.Using_clause() } } - p.SetState(8346) + p.SetState(8344) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120552,12 +120548,12 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(8345) + p.SetState(8343) p.Where_or_current_clause() } } - p.SetState(8349) + p.SetState(8347) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120566,7 +120562,7 @@ func (p *PostgreSQLParser) Deletestmt() (localctx IDeletestmtContext) { if _la == PostgreSQLParserRETURNING { { - p.SetState(8348) + p.SetState(8346) p.Returning_clause() } @@ -120687,7 +120683,7 @@ func (p *PostgreSQLParser) Using_clause() (localctx IUsing_clauseContext) { p.EnterRule(localctx, 938, PostgreSQLParserRULE_using_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8351) + p.SetState(8349) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -120695,7 +120691,7 @@ func (p *PostgreSQLParser) Using_clause() (localctx IUsing_clauseContext) { } } { - p.SetState(8352) + p.SetState(8350) p.From_list() } @@ -120867,19 +120863,19 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8354) + p.SetState(8352) p.Match(PostgreSQLParserLOCK_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8356) + p.SetState(8354) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 706, p.GetParserRuleContext()) == 1 { { - p.SetState(8355) + p.SetState(8353) p.Opt_table() } @@ -120887,10 +120883,10 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { goto errorExit } { - p.SetState(8358) + p.SetState(8356) p.Relation_expr_list() } - p.SetState(8360) + p.SetState(8358) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120899,12 +120895,12 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { if _la == PostgreSQLParserIN_P { { - p.SetState(8359) + p.SetState(8357) p.Opt_lock() } } - p.SetState(8363) + p.SetState(8361) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -120913,7 +120909,7 @@ func (p *PostgreSQLParser) Lockstmt() (localctx ILockstmtContext) { if _la == PostgreSQLParserNOWAIT { { - p.SetState(8362) + p.SetState(8360) p.Opt_nowait() } @@ -121039,7 +121035,7 @@ func (p *PostgreSQLParser) Opt_lock() (localctx IOpt_lockContext) { p.EnterRule(localctx, 942, PostgreSQLParserRULE_opt_lock) p.EnterOuterAlt(localctx, 1) { - p.SetState(8365) + p.SetState(8363) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -121047,11 +121043,11 @@ func (p *PostgreSQLParser) Opt_lock() (localctx IOpt_lockContext) { } } { - p.SetState(8366) + p.SetState(8364) p.Lock_type() } { - p.SetState(8367) + p.SetState(8365) p.Match(PostgreSQLParserMODE) if p.HasError() { // Recognition error - abort rule @@ -121177,7 +121173,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { p.EnterRule(localctx, 944, PostgreSQLParserRULE_lock_type) var _la int - p.SetState(8381) + p.SetState(8379) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121187,7 +121183,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserACCESS: p.EnterOuterAlt(localctx, 1) { - p.SetState(8369) + p.SetState(8367) p.Match(PostgreSQLParserACCESS) if p.HasError() { // Recognition error - abort rule @@ -121195,7 +121191,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8370) + p.SetState(8368) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCLUSIVE || _la == PostgreSQLParserSHARE) { @@ -121209,7 +121205,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserROW: p.EnterOuterAlt(localctx, 2) { - p.SetState(8371) + p.SetState(8369) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -121217,7 +121213,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8372) + p.SetState(8370) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCLUSIVE || _la == PostgreSQLParserSHARE) { @@ -121231,14 +121227,14 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserSHARE: p.EnterOuterAlt(localctx, 3) { - p.SetState(8373) + p.SetState(8371) p.Match(PostgreSQLParserSHARE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8378) + p.SetState(8376) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121246,7 +121242,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserUPDATE: { - p.SetState(8374) + p.SetState(8372) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -121254,7 +121250,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8375) + p.SetState(8373) p.Match(PostgreSQLParserEXCLUSIVE) if p.HasError() { // Recognition error - abort rule @@ -121264,7 +121260,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserROW: { - p.SetState(8376) + p.SetState(8374) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -121272,7 +121268,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { } } { - p.SetState(8377) + p.SetState(8375) p.Match(PostgreSQLParserEXCLUSIVE) if p.HasError() { // Recognition error - abort rule @@ -121288,7 +121284,7 @@ func (p *PostgreSQLParser) Lock_type() (localctx ILock_typeContext) { case PostgreSQLParserEXCLUSIVE: p.EnterOuterAlt(localctx, 4) { - p.SetState(8380) + p.SetState(8378) p.Match(PostgreSQLParserEXCLUSIVE) if p.HasError() { // Recognition error - abort rule @@ -121399,7 +121395,7 @@ func (p *PostgreSQLParser) Opt_nowait() (localctx IOpt_nowaitContext) { p.EnterRule(localctx, 946, PostgreSQLParserRULE_opt_nowait) p.EnterOuterAlt(localctx, 1) { - p.SetState(8383) + p.SetState(8381) p.Match(PostgreSQLParserNOWAIT) if p.HasError() { // Recognition error - abort rule @@ -121513,7 +121509,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(8388) + p.SetState(8386) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121523,7 +121519,7 @@ func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipCon case PostgreSQLParserNOWAIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8385) + p.SetState(8383) p.Match(PostgreSQLParserNOWAIT) if p.HasError() { // Recognition error - abort rule @@ -121534,7 +121530,7 @@ func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipCon case PostgreSQLParserSKIP_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(8386) + p.SetState(8384) p.Match(PostgreSQLParserSKIP_P) if p.HasError() { // Recognition error - abort rule @@ -121542,7 +121538,7 @@ func (p *PostgreSQLParser) Opt_nowait_or_skip() (localctx IOpt_nowait_or_skipCon } } { - p.SetState(8387) + p.SetState(8385) p.Match(PostgreSQLParserLOCKED) if p.HasError() { // Recognition error - abort rule @@ -121761,7 +121757,7 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8391) + p.SetState(8389) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121770,13 +121766,13 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserWITH { { - p.SetState(8390) + p.SetState(8388) p.Opt_with_clause() } } { - p.SetState(8393) + p.SetState(8391) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -121784,11 +121780,11 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { } } { - p.SetState(8394) + p.SetState(8392) p.Relation_expr_opt_alias() } { - p.SetState(8395) + p.SetState(8393) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -121796,10 +121792,10 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { } } { - p.SetState(8396) + p.SetState(8394) p.Set_clause_list() } - p.SetState(8398) + p.SetState(8396) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121808,12 +121804,12 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserFROM { { - p.SetState(8397) + p.SetState(8395) p.From_clause() } } - p.SetState(8401) + p.SetState(8399) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121822,12 +121818,12 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(8400) + p.SetState(8398) p.Where_or_current_clause() } } - p.SetState(8404) + p.SetState(8402) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -121836,7 +121832,7 @@ func (p *PostgreSQLParser) Updatestmt() (localctx IUpdatestmtContext) { if _la == PostgreSQLParserRETURNING { { - p.SetState(8403) + p.SetState(8401) p.Returning_clause() } @@ -121990,10 +121986,10 @@ func (p *PostgreSQLParser) Set_clause_list() (localctx ISet_clause_listContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8406) + p.SetState(8404) p.Set_clause() } - p.SetState(8411) + p.SetState(8409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122002,7 +121998,7 @@ func (p *PostgreSQLParser) Set_clause_list() (localctx ISet_clause_listContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(8407) + p.SetState(8405) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -122010,11 +122006,11 @@ func (p *PostgreSQLParser) Set_clause_list() (localctx ISet_clause_listContext) } } { - p.SetState(8408) + p.SetState(8406) p.Set_clause() } - p.SetState(8413) + p.SetState(8411) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122179,7 +122175,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(8424) + p.SetState(8422) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122189,11 +122185,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(8414) + p.SetState(8412) p.Set_target() } { - p.SetState(8415) + p.SetState(8413) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -122201,14 +122197,14 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8416) + p.SetState(8414) p.A_expr() } case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 2) { - p.SetState(8418) + p.SetState(8416) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -122216,11 +122212,11 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8419) + p.SetState(8417) p.Set_target_list() } { - p.SetState(8420) + p.SetState(8418) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -122228,7 +122224,7 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8421) + p.SetState(8419) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -122236,7 +122232,7 @@ func (p *PostgreSQLParser) Set_clause() (localctx ISet_clauseContext) { } } { - p.SetState(8422) + p.SetState(8420) p.A_expr() } @@ -122372,11 +122368,11 @@ func (p *PostgreSQLParser) Set_target() (localctx ISet_targetContext) { p.EnterRule(localctx, 956, PostgreSQLParserRULE_set_target) p.EnterOuterAlt(localctx, 1) { - p.SetState(8426) + p.SetState(8424) p.Colid() } { - p.SetState(8427) + p.SetState(8425) p.Opt_indirection() } @@ -122528,10 +122524,10 @@ func (p *PostgreSQLParser) Set_target_list() (localctx ISet_target_listContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8429) + p.SetState(8427) p.Set_target() } - p.SetState(8434) + p.SetState(8432) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122540,7 +122536,7 @@ func (p *PostgreSQLParser) Set_target_list() (localctx ISet_target_listContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(8430) + p.SetState(8428) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -122548,11 +122544,11 @@ func (p *PostgreSQLParser) Set_target_list() (localctx ISet_target_listContext) } } { - p.SetState(8431) + p.SetState(8429) p.Set_target() } - p.SetState(8436) + p.SetState(8434) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122738,7 +122734,7 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte p.EnterOuterAlt(localctx, 1) { - p.SetState(8437) + p.SetState(8435) p.Match(PostgreSQLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -122746,22 +122742,22 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte } } { - p.SetState(8438) + p.SetState(8436) p.Cursor_name() } { - p.SetState(8439) + p.SetState(8437) p.Cursor_options() } { - p.SetState(8440) + p.SetState(8438) p.Match(PostgreSQLParserCURSOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8442) + p.SetState(8440) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -122770,13 +122766,13 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(8441) + p.SetState(8439) p.Opt_hold() } } { - p.SetState(8444) + p.SetState(8442) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -122784,7 +122780,7 @@ func (p *PostgreSQLParser) Declarecursorstmt() (localctx IDeclarecursorstmtConte } } { - p.SetState(8445) + p.SetState(8443) p.Selectstmt() } @@ -122898,7 +122894,7 @@ func (p *PostgreSQLParser) Cursor_name() (localctx ICursor_nameContext) { p.EnterRule(localctx, 962, PostgreSQLParserRULE_cursor_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(8447) + p.SetState(8445) p.Name() } @@ -123036,7 +123032,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8456) + p.SetState(8454) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123044,7 +123040,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(8454) + p.SetState(8452) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123053,7 +123049,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserNO: { - p.SetState(8449) + p.SetState(8447) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -123061,7 +123057,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { } } { - p.SetState(8450) + p.SetState(8448) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -123071,7 +123067,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { case PostgreSQLParserSCROLL: { - p.SetState(8451) + p.SetState(8449) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -123081,7 +123077,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { case PostgreSQLParserBINARY: { - p.SetState(8452) + p.SetState(8450) p.Match(PostgreSQLParserBINARY) if p.HasError() { // Recognition error - abort rule @@ -123091,7 +123087,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { case PostgreSQLParserINSENSITIVE: { - p.SetState(8453) + p.SetState(8451) p.Match(PostgreSQLParserINSENSITIVE) if p.HasError() { // Recognition error - abort rule @@ -123104,7 +123100,7 @@ func (p *PostgreSQLParser) Cursor_options() (localctx ICursor_optionsContext) { goto errorExit } - p.SetState(8458) + p.SetState(8456) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123218,7 +123214,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(8463) + p.SetState(8461) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123228,7 +123224,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(8459) + p.SetState(8457) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -123236,7 +123232,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { } } { - p.SetState(8460) + p.SetState(8458) p.Match(PostgreSQLParserHOLD) if p.HasError() { // Recognition error - abort rule @@ -123247,7 +123243,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(8461) + p.SetState(8459) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -123255,7 +123251,7 @@ func (p *PostgreSQLParser) Opt_hold() (localctx IOpt_holdContext) { } } { - p.SetState(8462) + p.SetState(8460) p.Match(PostgreSQLParserHOLD) if p.HasError() { // Recognition error - abort rule @@ -123393,7 +123389,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(8467) + p.SetState(8465) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123403,14 +123399,14 @@ func (p *PostgreSQLParser) Selectstmt() (localctx ISelectstmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8465) + p.SetState(8463) p.Select_no_parens() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8466) + p.SetState(8464) p.Select_with_parens() } @@ -123553,7 +123549,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(8477) + p.SetState(8475) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123563,7 +123559,7 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8469) + p.SetState(8467) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123571,11 +123567,11 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon } } { - p.SetState(8470) + p.SetState(8468) p.Select_no_parens() } { - p.SetState(8471) + p.SetState(8469) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123586,7 +123582,7 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8473) + p.SetState(8471) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123594,11 +123590,11 @@ func (p *PostgreSQLParser) Select_with_parens() (localctx ISelect_with_parensCon } } { - p.SetState(8474) + p.SetState(8472) p.Select_with_parens() } { - p.SetState(8475) + p.SetState(8473) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -123822,7 +123818,7 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext p.EnterRule(localctx, 972, PostgreSQLParserRULE_select_no_parens) var _la int - p.SetState(8508) + p.SetState(8506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123832,10 +123828,10 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext case PostgreSQLParserOPEN_PAREN, PostgreSQLParserSELECT, PostgreSQLParserTABLE, PostgreSQLParserVALUES: p.EnterOuterAlt(localctx, 1) { - p.SetState(8479) + p.SetState(8477) p.Select_clause() } - p.SetState(8481) + p.SetState(8479) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123844,25 +123840,25 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserORDER { { - p.SetState(8480) + p.SetState(8478) p.Opt_sort_clause() } } - p.SetState(8491) + p.SetState(8489) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 728, p.GetParserRuleContext()) == 1 { { - p.SetState(8483) + p.SetState(8481) p.For_locking_clause() } - p.SetState(8485) + p.SetState(8483) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 726, p.GetParserRuleContext()) == 1 { { - p.SetState(8484) + p.SetState(8482) p.Opt_select_limit() } @@ -123874,10 +123870,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(8487) + p.SetState(8485) p.Select_limit() } - p.SetState(8489) + p.SetState(8487) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123886,7 +123882,7 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserFOR { { - p.SetState(8488) + p.SetState(8486) p.Opt_for_locking_clause() } @@ -123899,14 +123895,14 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 2) { - p.SetState(8493) + p.SetState(8491) p.With_clause() } { - p.SetState(8494) + p.SetState(8492) p.Select_clause() } - p.SetState(8496) + p.SetState(8494) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123915,25 +123911,25 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserORDER { { - p.SetState(8495) + p.SetState(8493) p.Opt_sort_clause() } } - p.SetState(8506) + p.SetState(8504) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 732, p.GetParserRuleContext()) == 1 { { - p.SetState(8498) + p.SetState(8496) p.For_locking_clause() } - p.SetState(8500) + p.SetState(8498) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 730, p.GetParserRuleContext()) == 1 { { - p.SetState(8499) + p.SetState(8497) p.Opt_select_limit() } @@ -123945,10 +123941,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(8502) + p.SetState(8500) p.Select_limit() } - p.SetState(8504) + p.SetState(8502) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -123957,7 +123953,7 @@ func (p *PostgreSQLParser) Select_no_parens() (localctx ISelect_no_parensContext if _la == PostgreSQLParserFOR { { - p.SetState(8503) + p.SetState(8501) p.Opt_for_locking_clause() } @@ -124173,10 +124169,10 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8510) + p.SetState(8508) p.Simple_select_intersect() } - p.SetState(8518) + p.SetState(8516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124185,7 +124181,7 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { for _la == PostgreSQLParserEXCEPT || _la == PostgreSQLParserUNION { { - p.SetState(8511) + p.SetState(8509) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEXCEPT || _la == PostgreSQLParserUNION) { @@ -124195,7 +124191,7 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { p.Consume() } } - p.SetState(8513) + p.SetState(8511) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124204,17 +124200,17 @@ func (p *PostgreSQLParser) Select_clause() (localctx ISelect_clauseContext) { if _la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT { { - p.SetState(8512) + p.SetState(8510) p.All_or_distinct() } } { - p.SetState(8515) + p.SetState(8513) p.Simple_select_intersect() } - p.SetState(8520) + p.SetState(8518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124413,10 +124409,10 @@ func (p *PostgreSQLParser) Simple_select_intersect() (localctx ISimple_select_in p.EnterOuterAlt(localctx, 1) { - p.SetState(8521) + p.SetState(8519) p.Simple_select_pramary() } - p.SetState(8529) + p.SetState(8527) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124425,14 +124421,14 @@ func (p *PostgreSQLParser) Simple_select_intersect() (localctx ISimple_select_in for _la == PostgreSQLParserINTERSECT { { - p.SetState(8522) + p.SetState(8520) p.Match(PostgreSQLParserINTERSECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8524) + p.SetState(8522) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124441,17 +124437,17 @@ func (p *PostgreSQLParser) Simple_select_intersect() (localctx ISimple_select_in if _la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT { { - p.SetState(8523) + p.SetState(8521) p.All_or_distinct() } } { - p.SetState(8526) + p.SetState(8524) p.Simple_select_pramary() } - p.SetState(8531) + p.SetState(8529) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124809,7 +124805,7 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram p.EnterRule(localctx, 978, PostgreSQLParserRULE_simple_select_pramary) var _la int - p.SetState(8569) + p.SetState(8567) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124819,14 +124815,14 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram case PostgreSQLParserSELECT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8532) + p.SetState(8530) p.Match(PostgreSQLParserSELECT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8545) + p.SetState(8543) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124834,7 +124830,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(8534) + p.SetState(8532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124843,29 +124839,29 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserALL { { - p.SetState(8533) + p.SetState(8531) p.Opt_all_clause() } } - p.SetState(8537) + p.SetState(8535) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 739, p.GetParserRuleContext()) == 1 { { - p.SetState(8536) + p.SetState(8534) p.Into_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8540) + p.SetState(8538) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 740, p.GetParserRuleContext()) == 1 { { - p.SetState(8539) + p.SetState(8537) p.Opt_target_list() } @@ -124875,11 +124871,11 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram case PostgreSQLParserDISTINCT: { - p.SetState(8542) + p.SetState(8540) p.Distinct_clause() } { - p.SetState(8543) + p.SetState(8541) p.Target_list() } @@ -124887,19 +124883,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(8548) + p.SetState(8546) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 742, p.GetParserRuleContext()) == 1 { { - p.SetState(8547) + p.SetState(8545) p.Into_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8551) + p.SetState(8549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124908,12 +124904,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserFROM { { - p.SetState(8550) + p.SetState(8548) p.From_clause() } } - p.SetState(8554) + p.SetState(8552) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124922,12 +124918,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserWHERE { { - p.SetState(8553) + p.SetState(8551) p.Where_clause() } } - p.SetState(8557) + p.SetState(8555) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124936,12 +124932,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserGROUP_P { { - p.SetState(8556) + p.SetState(8554) p.Group_clause() } } - p.SetState(8560) + p.SetState(8558) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124950,12 +124946,12 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserHAVING { { - p.SetState(8559) + p.SetState(8557) p.Having_clause() } } - p.SetState(8563) + p.SetState(8561) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -124964,7 +124960,7 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram if _la == PostgreSQLParserWINDOW { { - p.SetState(8562) + p.SetState(8560) p.Window_clause() } @@ -124973,14 +124969,14 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram case PostgreSQLParserVALUES: p.EnterOuterAlt(localctx, 2) { - p.SetState(8565) + p.SetState(8563) p.Values_clause() } case PostgreSQLParserTABLE: p.EnterOuterAlt(localctx, 3) { - p.SetState(8566) + p.SetState(8564) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -124988,14 +124984,14 @@ func (p *PostgreSQLParser) Simple_select_pramary() (localctx ISimple_select_pram } } { - p.SetState(8567) + p.SetState(8565) p.Relation_expr() } case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 4) { - p.SetState(8568) + p.SetState(8566) p.Select_with_parens() } @@ -125124,19 +125120,19 @@ func (p *PostgreSQLParser) With_clause() (localctx IWith_clauseContext) { p.EnterRule(localctx, 980, PostgreSQLParserRULE_with_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8571) + p.SetState(8569) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8573) + p.SetState(8571) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 749, p.GetParserRuleContext()) == 1 { { - p.SetState(8572) + p.SetState(8570) p.Match(PostgreSQLParserRECURSIVE) if p.HasError() { // Recognition error - abort rule @@ -125148,7 +125144,7 @@ func (p *PostgreSQLParser) With_clause() (localctx IWith_clauseContext) { goto errorExit } { - p.SetState(8575) + p.SetState(8573) p.Cte_list() } @@ -125300,10 +125296,10 @@ func (p *PostgreSQLParser) Cte_list() (localctx ICte_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8577) + p.SetState(8575) p.Common_table_expr() } - p.SetState(8582) + p.SetState(8580) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125312,7 +125308,7 @@ func (p *PostgreSQLParser) Cte_list() (localctx ICte_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(8578) + p.SetState(8576) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -125320,11 +125316,11 @@ func (p *PostgreSQLParser) Cte_list() (localctx ICte_listContext) { } } { - p.SetState(8579) + p.SetState(8577) p.Common_table_expr() } - p.SetState(8584) + p.SetState(8582) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125510,10 +125506,10 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte p.EnterOuterAlt(localctx, 1) { - p.SetState(8585) + p.SetState(8583) p.Name() } - p.SetState(8587) + p.SetState(8585) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125522,20 +125518,20 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(8586) + p.SetState(8584) p.Opt_name_list() } } { - p.SetState(8589) + p.SetState(8587) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8591) + p.SetState(8589) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125544,13 +125540,13 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte if _la == PostgreSQLParserNOT || _la == PostgreSQLParserMATERIALIZED { { - p.SetState(8590) + p.SetState(8588) p.Opt_materialized() } } { - p.SetState(8593) + p.SetState(8591) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -125558,11 +125554,11 @@ func (p *PostgreSQLParser) Common_table_expr() (localctx ICommon_table_exprConte } } { - p.SetState(8594) + p.SetState(8592) p.Preparablestmt() } { - p.SetState(8595) + p.SetState(8593) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -125671,7 +125667,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(8600) + p.SetState(8598) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125681,7 +125677,7 @@ func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext case PostgreSQLParserMATERIALIZED: p.EnterOuterAlt(localctx, 1) { - p.SetState(8597) + p.SetState(8595) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -125692,7 +125688,7 @@ func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext case PostgreSQLParserNOT: p.EnterOuterAlt(localctx, 2) { - p.SetState(8598) + p.SetState(8596) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -125700,7 +125696,7 @@ func (p *PostgreSQLParser) Opt_materialized() (localctx IOpt_materializedContext } } { - p.SetState(8599) + p.SetState(8597) p.Match(PostgreSQLParserMATERIALIZED) if p.HasError() { // Recognition error - abort rule @@ -125823,7 +125819,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(8602) + p.SetState(8600) p.With_clause() } @@ -125976,14 +125972,14 @@ func (p *PostgreSQLParser) Into_clause() (localctx IInto_clauseContext) { p.EnterRule(localctx, 990, PostgreSQLParserRULE_into_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8604) + p.SetState(8602) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8610) + p.SetState(8608) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -125991,12 +125987,12 @@ func (p *PostgreSQLParser) Into_clause() (localctx IInto_clauseContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 755, p.GetParserRuleContext()) { case 1: - p.SetState(8606) + p.SetState(8604) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 754, p.GetParserRuleContext()) == 1 { { - p.SetState(8605) + p.SetState(8603) p.Opt_strict() } @@ -126004,13 +126000,13 @@ func (p *PostgreSQLParser) Into_clause() (localctx IInto_clauseContext) { goto errorExit } { - p.SetState(8608) + p.SetState(8606) p.OpttempTableName() } case 2: { - p.SetState(8609) + p.SetState(8607) p.Into_target() } @@ -126116,7 +126112,7 @@ func (p *PostgreSQLParser) Opt_strict() (localctx IOpt_strictContext) { p.EnterRule(localctx, 992, PostgreSQLParserRULE_opt_strict) p.EnterOuterAlt(localctx, 1) { - p.SetState(8612) + p.SetState(8610) p.Match(PostgreSQLParserSTRICT_P) if p.HasError() { // Recognition error - abort rule @@ -126281,7 +126277,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext p.EnterRule(localctx, 994, PostgreSQLParserRULE_opttempTableName) var _la int - p.SetState(8630) + p.SetState(8628) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -126290,7 +126286,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(8615) + p.SetState(8613) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -126299,7 +126295,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext if _la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL { { - p.SetState(8614) + p.SetState(8612) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserGLOBAL || _la == PostgreSQLParserLOCAL) { @@ -126312,7 +126308,7 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext } { - p.SetState(8617) + p.SetState(8615) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTEMP || _la == PostgreSQLParserTEMPORARY) { @@ -126322,12 +126318,12 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext p.Consume() } } - p.SetState(8619) + p.SetState(8617) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 757, p.GetParserRuleContext()) == 1 { { - p.SetState(8618) + p.SetState(8616) p.Opt_table() } @@ -126335,26 +126331,26 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext goto errorExit } { - p.SetState(8621) + p.SetState(8619) p.Qualified_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8622) + p.SetState(8620) p.Match(PostgreSQLParserUNLOGGED) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8624) + p.SetState(8622) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 758, p.GetParserRuleContext()) == 1 { { - p.SetState(8623) + p.SetState(8621) p.Opt_table() } @@ -126362,14 +126358,14 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext goto errorExit } { - p.SetState(8626) + p.SetState(8624) p.Qualified_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8627) + p.SetState(8625) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -126377,14 +126373,14 @@ func (p *PostgreSQLParser) OpttempTableName() (localctx IOpttempTableNameContext } } { - p.SetState(8628) + p.SetState(8626) p.Qualified_name() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8629) + p.SetState(8627) p.Qualified_name() } @@ -126490,7 +126486,7 @@ func (p *PostgreSQLParser) Opt_table() (localctx IOpt_tableContext) { p.EnterRule(localctx, 996, PostgreSQLParserRULE_opt_table) p.EnterOuterAlt(localctx, 1) { - p.SetState(8632) + p.SetState(8630) p.Match(PostgreSQLParserTABLE) if p.HasError() { // Recognition error - abort rule @@ -126603,7 +126599,7 @@ func (p *PostgreSQLParser) All_or_distinct() (localctx IAll_or_distinctContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8634) + p.SetState(8632) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT) { @@ -126746,14 +126742,14 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) p.EnterOuterAlt(localctx, 1) { - p.SetState(8636) + p.SetState(8634) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8642) + p.SetState(8640) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -126762,7 +126758,7 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) if _la == PostgreSQLParserON { { - p.SetState(8637) + p.SetState(8635) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -126770,7 +126766,7 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) } } { - p.SetState(8638) + p.SetState(8636) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -126778,11 +126774,11 @@ func (p *PostgreSQLParser) Distinct_clause() (localctx IDistinct_clauseContext) } } { - p.SetState(8639) + p.SetState(8637) p.Expr_list() } { - p.SetState(8640) + p.SetState(8638) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -126890,7 +126886,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(8644) + p.SetState(8642) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -127008,7 +127004,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(8646) + p.SetState(8644) p.Sort_clause() } @@ -127132,7 +127128,7 @@ func (p *PostgreSQLParser) Sort_clause() (localctx ISort_clauseContext) { p.EnterRule(localctx, 1006, PostgreSQLParserRULE_sort_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8648) + p.SetState(8646) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -127140,7 +127136,7 @@ func (p *PostgreSQLParser) Sort_clause() (localctx ISort_clauseContext) { } } { - p.SetState(8649) + p.SetState(8647) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -127148,7 +127144,7 @@ func (p *PostgreSQLParser) Sort_clause() (localctx ISort_clauseContext) { } } { - p.SetState(8650) + p.SetState(8648) p.Sortby_list() } @@ -127300,10 +127296,10 @@ func (p *PostgreSQLParser) Sortby_list() (localctx ISortby_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8652) + p.SetState(8650) p.Sortby() } - p.SetState(8657) + p.SetState(8655) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127315,7 +127311,7 @@ func (p *PostgreSQLParser) Sortby_list() (localctx ISortby_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(8653) + p.SetState(8651) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -127323,12 +127319,12 @@ func (p *PostgreSQLParser) Sortby_list() (localctx ISortby_listContext) { } } { - p.SetState(8654) + p.SetState(8652) p.Sortby() } } - p.SetState(8659) + p.SetState(8657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127507,10 +127503,10 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8660) + p.SetState(8658) p.A_expr() } - p.SetState(8666) + p.SetState(8664) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127519,7 +127515,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 763, p.GetParserRuleContext()) { case 1: { - p.SetState(8661) + p.SetState(8659) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -127527,12 +127523,12 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { } } { - p.SetState(8662) + p.SetState(8660) p.Qual_all_op() } case 2: - p.SetState(8664) + p.SetState(8662) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127541,7 +127537,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { if _la == PostgreSQLParserASC || _la == PostgreSQLParserDESC { { - p.SetState(8663) + p.SetState(8661) p.Opt_asc_desc() } @@ -127550,7 +127546,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(8669) + p.SetState(8667) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127559,7 +127555,7 @@ func (p *PostgreSQLParser) Sortby() (localctx ISortbyContext) { if _la == PostgreSQLParserNULLS_P { { - p.SetState(8668) + p.SetState(8666) p.Opt_nulls_order() } @@ -127692,7 +127688,7 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { p.EnterRule(localctx, 1012, PostgreSQLParserRULE_select_limit) var _la int - p.SetState(8679) + p.SetState(8677) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127702,10 +127698,10 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { case PostgreSQLParserFETCH, PostgreSQLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8671) + p.SetState(8669) p.Limit_clause() } - p.SetState(8673) + p.SetState(8671) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -127714,7 +127710,7 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { if _la == PostgreSQLParserOFFSET { { - p.SetState(8672) + p.SetState(8670) p.Offset_clause() } @@ -127723,15 +127719,15 @@ func (p *PostgreSQLParser) Select_limit() (localctx ISelect_limitContext) { case PostgreSQLParserOFFSET: p.EnterOuterAlt(localctx, 2) { - p.SetState(8675) + p.SetState(8673) p.Offset_clause() } - p.SetState(8677) + p.SetState(8675) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 766, p.GetParserRuleContext()) == 1 { { - p.SetState(8676) + p.SetState(8674) p.Limit_clause() } @@ -127854,7 +127850,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(8681) + p.SetState(8679) p.Select_limit() } @@ -128064,7 +128060,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(8706) + p.SetState(8704) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128074,7 +128070,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserLIMIT: p.EnterOuterAlt(localctx, 1) { - p.SetState(8683) + p.SetState(8681) p.Match(PostgreSQLParserLIMIT) if p.HasError() { // Recognition error - abort rule @@ -128082,15 +128078,15 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8684) + p.SetState(8682) p.Select_limit_value() } - p.SetState(8687) + p.SetState(8685) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 768, p.GetParserRuleContext()) == 1 { { - p.SetState(8685) + p.SetState(8683) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -128098,7 +128094,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8686) + p.SetState(8684) p.Select_offset_value() } @@ -128109,7 +128105,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserFETCH: p.EnterOuterAlt(localctx, 2) { - p.SetState(8689) + p.SetState(8687) p.Match(PostgreSQLParserFETCH) if p.HasError() { // Recognition error - abort rule @@ -128117,10 +128113,10 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8690) + p.SetState(8688) p.First_or_next() } - p.SetState(8704) + p.SetState(8702) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128129,14 +128125,14 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 771, p.GetParserRuleContext()) { case 1: { - p.SetState(8691) + p.SetState(8689) p.Select_fetch_first_value() } { - p.SetState(8692) + p.SetState(8690) p.Row_or_rows() } - p.SetState(8696) + p.SetState(8694) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128145,7 +128141,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserONLY: { - p.SetState(8693) + p.SetState(8691) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -128155,7 +128151,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserWITH: { - p.SetState(8694) + p.SetState(8692) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -128163,7 +128159,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8695) + p.SetState(8693) p.Match(PostgreSQLParserTIES) if p.HasError() { // Recognition error - abort rule @@ -128178,10 +128174,10 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case 2: { - p.SetState(8698) + p.SetState(8696) p.Row_or_rows() } - p.SetState(8702) + p.SetState(8700) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128190,7 +128186,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserONLY: { - p.SetState(8699) + p.SetState(8697) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -128200,7 +128196,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { case PostgreSQLParserWITH: { - p.SetState(8700) + p.SetState(8698) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -128208,7 +128204,7 @@ func (p *PostgreSQLParser) Limit_clause() (localctx ILimit_clauseContext) { } } { - p.SetState(8701) + p.SetState(8699) p.Match(PostgreSQLParserTIES) if p.HasError() { // Recognition error - abort rule @@ -128379,14 +128375,14 @@ func (p *PostgreSQLParser) Offset_clause() (localctx IOffset_clauseContext) { p.EnterRule(localctx, 1018, PostgreSQLParserRULE_offset_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8708) + p.SetState(8706) p.Match(PostgreSQLParserOFFSET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8713) + p.SetState(8711) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128395,17 +128391,17 @@ func (p *PostgreSQLParser) Offset_clause() (localctx IOffset_clauseContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 773, p.GetParserRuleContext()) { case 1: { - p.SetState(8709) + p.SetState(8707) p.Select_offset_value() } case 2: { - p.SetState(8710) + p.SetState(8708) p.Select_fetch_first_value() } { - p.SetState(8711) + p.SetState(8709) p.Row_or_rows() } @@ -128526,7 +128522,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(8717) + p.SetState(8715) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128536,14 +128532,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(8715) + p.SetState(8713) p.A_expr() } case PostgreSQLParserALL: p.EnterOuterAlt(localctx, 2) { - p.SetState(8716) + p.SetState(8714) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -128666,7 +128662,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(8719) + p.SetState(8717) p.A_expr() } @@ -128805,7 +128801,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(8726) + p.SetState(8724) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128815,14 +128811,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(8721) + p.SetState(8719) p.C_expr() } case PostgreSQLParserPLUS: p.EnterOuterAlt(localctx, 2) { - p.SetState(8722) + p.SetState(8720) p.Match(PostgreSQLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -128830,14 +128826,14 @@ func (p *PostgreSQLParser) Select_fetch_first_value() (localctx ISelect_fetch_fi } } { - p.SetState(8723) + p.SetState(8721) p.I_or_f_const() } case PostgreSQLParserMINUS: p.EnterOuterAlt(localctx, 3) { - p.SetState(8724) + p.SetState(8722) p.Match(PostgreSQLParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -128845,7 +128841,7 @@ func (p *PostgreSQLParser) Select_fetch_first_value() (localctx ISelect_fetch_fi } } { - p.SetState(8725) + p.SetState(8723) p.I_or_f_const() } @@ -128979,7 +128975,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(8730) + p.SetState(8728) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -128989,14 +128985,14 @@ func (p *PostgreSQLParser) I_or_f_const() (localctx II_or_f_constContext) { case PostgreSQLParserIntegral: p.EnterOuterAlt(localctx, 1) { - p.SetState(8728) + p.SetState(8726) p.Iconst() } case PostgreSQLParserNumeric: p.EnterOuterAlt(localctx, 2) { - p.SetState(8729) + p.SetState(8727) p.Fconst() } @@ -129110,7 +129106,7 @@ func (p *PostgreSQLParser) Row_or_rows() (localctx IRow_or_rowsContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8732) + p.SetState(8730) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserROWS || _la == PostgreSQLParserROW) { @@ -129226,7 +129222,7 @@ func (p *PostgreSQLParser) First_or_next() (localctx IFirst_or_nextContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8734) + p.SetState(8732) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFIRST_P || _la == PostgreSQLParserNEXT) { @@ -129357,7 +129353,7 @@ func (p *PostgreSQLParser) Group_clause() (localctx IGroup_clauseContext) { p.EnterRule(localctx, 1032, PostgreSQLParserRULE_group_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8736) + p.SetState(8734) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -129365,7 +129361,7 @@ func (p *PostgreSQLParser) Group_clause() (localctx IGroup_clauseContext) { } } { - p.SetState(8737) + p.SetState(8735) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -129373,7 +129369,7 @@ func (p *PostgreSQLParser) Group_clause() (localctx IGroup_clauseContext) { } } { - p.SetState(8738) + p.SetState(8736) p.Group_by_list() } @@ -129525,10 +129521,10 @@ func (p *PostgreSQLParser) Group_by_list() (localctx IGroup_by_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8740) + p.SetState(8738) p.Group_by_item() } - p.SetState(8745) + p.SetState(8743) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -129540,7 +129536,7 @@ func (p *PostgreSQLParser) Group_by_list() (localctx IGroup_by_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(8741) + p.SetState(8739) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -129548,12 +129544,12 @@ func (p *PostgreSQLParser) Group_by_list() (localctx IGroup_by_listContext) { } } { - p.SetState(8742) + p.SetState(8740) p.Group_by_item() } } - p.SetState(8747) + p.SetState(8745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -129740,7 +129736,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(8753) + p.SetState(8751) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -129750,35 +129746,35 @@ func (p *PostgreSQLParser) Group_by_item() (localctx IGroup_by_itemContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8748) + p.SetState(8746) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8749) + p.SetState(8747) p.Empty_grouping_set() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(8750) + p.SetState(8748) p.Cube_clause() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(8751) + p.SetState(8749) p.Rollup_clause() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(8752) + p.SetState(8750) p.Grouping_sets_clause() } @@ -129889,7 +129885,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(8755) + p.SetState(8753) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -129897,7 +129893,7 @@ func (p *PostgreSQLParser) Empty_grouping_set() (localctx IEmpty_grouping_setCon } } { - p.SetState(8756) + p.SetState(8754) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130030,7 +130026,7 @@ func (p *PostgreSQLParser) Rollup_clause() (localctx IRollup_clauseContext) { p.EnterRule(localctx, 1040, PostgreSQLParserRULE_rollup_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8758) + p.SetState(8756) p.Match(PostgreSQLParserROLLUP) if p.HasError() { // Recognition error - abort rule @@ -130038,7 +130034,7 @@ func (p *PostgreSQLParser) Rollup_clause() (localctx IRollup_clauseContext) { } } { - p.SetState(8759) + p.SetState(8757) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130046,11 +130042,11 @@ func (p *PostgreSQLParser) Rollup_clause() (localctx IRollup_clauseContext) { } } { - p.SetState(8760) + p.SetState(8758) p.Expr_list() } { - p.SetState(8761) + p.SetState(8759) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130183,7 +130179,7 @@ func (p *PostgreSQLParser) Cube_clause() (localctx ICube_clauseContext) { p.EnterRule(localctx, 1042, PostgreSQLParserRULE_cube_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8763) + p.SetState(8761) p.Match(PostgreSQLParserCUBE) if p.HasError() { // Recognition error - abort rule @@ -130191,7 +130187,7 @@ func (p *PostgreSQLParser) Cube_clause() (localctx ICube_clauseContext) { } } { - p.SetState(8764) + p.SetState(8762) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130199,11 +130195,11 @@ func (p *PostgreSQLParser) Cube_clause() (localctx ICube_clauseContext) { } } { - p.SetState(8765) + p.SetState(8763) p.Expr_list() } { - p.SetState(8766) + p.SetState(8764) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130341,7 +130337,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(8768) + p.SetState(8766) p.Match(PostgreSQLParserGROUPING) if p.HasError() { // Recognition error - abort rule @@ -130349,7 +130345,7 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus } } { - p.SetState(8769) + p.SetState(8767) p.Match(PostgreSQLParserSETS) if p.HasError() { // Recognition error - abort rule @@ -130357,7 +130353,7 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus } } { - p.SetState(8770) + p.SetState(8768) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130365,11 +130361,11 @@ func (p *PostgreSQLParser) Grouping_sets_clause() (localctx IGrouping_sets_claus } } { - p.SetState(8771) + p.SetState(8769) p.Group_by_list() } { - p.SetState(8772) + p.SetState(8770) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -130492,7 +130488,7 @@ func (p *PostgreSQLParser) Having_clause() (localctx IHaving_clauseContext) { p.EnterRule(localctx, 1046, PostgreSQLParserRULE_having_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8774) + p.SetState(8772) p.Match(PostgreSQLParserHAVING) if p.HasError() { // Recognition error - abort rule @@ -130500,7 +130496,7 @@ func (p *PostgreSQLParser) Having_clause() (localctx IHaving_clauseContext) { } } { - p.SetState(8775) + p.SetState(8773) p.A_expr() } @@ -130627,7 +130623,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(8781) + p.SetState(8779) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -130637,14 +130633,14 @@ func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8777) + p.SetState(8775) p.For_locking_items() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(8778) + p.SetState(8776) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -130652,7 +130648,7 @@ func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseCon } } { - p.SetState(8779) + p.SetState(8777) p.Match(PostgreSQLParserREAD) if p.HasError() { // Recognition error - abort rule @@ -130660,7 +130656,7 @@ func (p *PostgreSQLParser) For_locking_clause() (localctx IFor_locking_clauseCon } } { - p.SetState(8780) + p.SetState(8778) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule @@ -130782,7 +130778,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(8783) + p.SetState(8781) p.For_locking_clause() } @@ -130923,7 +130919,7 @@ func (p *PostgreSQLParser) For_locking_items() (localctx IFor_locking_itemsConte var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8786) + p.SetState(8784) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -130932,11 +130928,11 @@ func (p *PostgreSQLParser) For_locking_items() (localctx IFor_locking_itemsConte for ok := true; ok; ok = _la == PostgreSQLParserFOR { { - p.SetState(8785) + p.SetState(8783) p.For_locking_item() } - p.SetState(8788) + p.SetState(8786) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131090,10 +131086,10 @@ func (p *PostgreSQLParser) For_locking_item() (localctx IFor_locking_itemContext p.EnterOuterAlt(localctx, 1) { - p.SetState(8790) + p.SetState(8788) p.For_locking_strength() } - p.SetState(8792) + p.SetState(8790) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131102,12 +131098,12 @@ func (p *PostgreSQLParser) For_locking_item() (localctx IFor_locking_itemContext if _la == PostgreSQLParserOF { { - p.SetState(8791) + p.SetState(8789) p.Locked_rels_list() } } - p.SetState(8795) + p.SetState(8793) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131116,7 +131112,7 @@ func (p *PostgreSQLParser) For_locking_item() (localctx IFor_locking_itemContext if _la == PostgreSQLParserNOWAIT || _la == PostgreSQLParserSKIP_P { { - p.SetState(8794) + p.SetState(8792) p.Opt_nowait_or_skip() } @@ -131242,14 +131238,14 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt p.EnterOuterAlt(localctx, 1) { - p.SetState(8797) + p.SetState(8795) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8807) + p.SetState(8805) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131257,7 +131253,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt switch p.GetTokenStream().LA(1) { case PostgreSQLParserNO, PostgreSQLParserUPDATE: - p.SetState(8800) + p.SetState(8798) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131266,7 +131262,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt if _la == PostgreSQLParserNO { { - p.SetState(8798) + p.SetState(8796) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -131274,7 +131270,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } } { - p.SetState(8799) + p.SetState(8797) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule @@ -131284,7 +131280,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } { - p.SetState(8802) + p.SetState(8800) p.Match(PostgreSQLParserUPDATE) if p.HasError() { // Recognition error - abort rule @@ -131293,7 +131289,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } case PostgreSQLParserKEY, PostgreSQLParserSHARE: - p.SetState(8804) + p.SetState(8802) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131302,7 +131298,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt if _la == PostgreSQLParserKEY { { - p.SetState(8803) + p.SetState(8801) p.Match(PostgreSQLParserKEY) if p.HasError() { // Recognition error - abort rule @@ -131312,7 +131308,7 @@ func (p *PostgreSQLParser) For_locking_strength() (localctx IFor_locking_strengt } { - p.SetState(8806) + p.SetState(8804) p.Match(PostgreSQLParserSHARE) if p.HasError() { // Recognition error - abort rule @@ -131440,7 +131436,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(8809) + p.SetState(8807) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -131448,7 +131444,7 @@ func (p *PostgreSQLParser) Locked_rels_list() (localctx ILocked_rels_listContext } } { - p.SetState(8810) + p.SetState(8808) p.Qualified_name_list() } @@ -131625,7 +131621,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8812) + p.SetState(8810) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -131633,7 +131629,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8813) + p.SetState(8811) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -131641,18 +131637,18 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8814) + p.SetState(8812) p.Expr_list() } { - p.SetState(8815) + p.SetState(8813) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8823) + p.SetState(8821) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131661,7 +131657,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(8816) + p.SetState(8814) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -131669,7 +131665,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8817) + p.SetState(8815) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -131677,11 +131673,11 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } { - p.SetState(8818) + p.SetState(8816) p.Expr_list() } { - p.SetState(8819) + p.SetState(8817) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -131689,7 +131685,7 @@ func (p *PostgreSQLParser) Values_clause() (localctx IValues_clauseContext) { } } - p.SetState(8825) + p.SetState(8823) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131812,7 +131808,7 @@ func (p *PostgreSQLParser) From_clause() (localctx IFrom_clauseContext) { p.EnterRule(localctx, 1062, PostgreSQLParserRULE_from_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8826) + p.SetState(8824) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -131820,7 +131816,7 @@ func (p *PostgreSQLParser) From_clause() (localctx IFrom_clauseContext) { } } { - p.SetState(8827) + p.SetState(8825) p.From_list() } @@ -131972,10 +131968,10 @@ func (p *PostgreSQLParser) From_list() (localctx IFrom_listContext) { p.EnterOuterAlt(localctx, 1) { - p.SetState(8829) + p.SetState(8827) p.Table_ref() } - p.SetState(8834) + p.SetState(8832) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -131987,7 +131983,7 @@ func (p *PostgreSQLParser) From_list() (localctx IFrom_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(8830) + p.SetState(8828) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -131995,12 +131991,12 @@ func (p *PostgreSQLParser) From_list() (localctx IFrom_listContext) { } } { - p.SetState(8831) + p.SetState(8829) p.Table_ref() } } - p.SetState(8836) + p.SetState(8834) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132041,16 +132037,19 @@ type ITable_refContext interface { AllTable_ref() []ITable_refContext Table_ref(i int) ITable_refContext CLOSE_PAREN() antlr.TerminalNode - AllJoined_table() []IJoined_tableContext - Joined_table(i int) IJoined_tableContext + 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 Opt_alias_clause() IOpt_alias_clauseContext Tablesample_clause() ITablesample_clauseContext Func_alias_clause() IFunc_alias_clauseContext - CROSS() antlr.TerminalNode - JOIN() antlr.TerminalNode - NATURAL() antlr.TerminalNode - Join_qual() IJoin_qualContext - Join_type() IJoin_typeContext + AllJoin_type() []IJoin_typeContext + Join_type(i int) IJoin_typeContext // IsTable_refContext differentiates from other interfaces. IsTable_refContext() @@ -132205,20 +132204,44 @@ func (s *Table_refContext) CLOSE_PAREN() antlr.TerminalNode { return s.GetToken(PostgreSQLParserCLOSE_PAREN, 0) } -func (s *Table_refContext) AllJoined_table() []IJoined_tableContext { +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 { children := s.GetChildren() len := 0 for _, ctx := range children { - if _, ok := ctx.(IJoined_tableContext); ok { + if _, ok := ctx.(IJoin_qualContext); ok { len++ } } - tst := make([]IJoined_tableContext, len) + tst := make([]IJoin_qualContext, len) i := 0 for _, ctx := range children { - if t, ok := ctx.(IJoined_tableContext); ok { - tst[i] = t.(IJoined_tableContext) + if t, ok := ctx.(IJoin_qualContext); ok { + tst[i] = t.(IJoin_qualContext) i++ } } @@ -132226,11 +132249,11 @@ func (s *Table_refContext) AllJoined_table() []IJoined_tableContext { return tst } -func (s *Table_refContext) Joined_table(i int) IJoined_tableContext { +func (s *Table_refContext) Join_qual(i int) IJoin_qualContext { var t antlr.RuleContext j := 0 for _, ctx := range s.GetChildren() { - if _, ok := ctx.(IJoined_tableContext); ok { + if _, ok := ctx.(IJoin_qualContext); ok { if j == i { t = ctx.(antlr.RuleContext) break @@ -132243,7 +132266,7 @@ func (s *Table_refContext) Joined_table(i int) IJoined_tableContext { return nil } - return t.(IJoined_tableContext) + return t.(IJoin_qualContext) } func (s *Table_refContext) Opt_alias_clause() IOpt_alias_clauseContext { @@ -132294,40 +132317,37 @@ func (s *Table_refContext) Func_alias_clause() IFunc_alias_clauseContext { return t.(IFunc_alias_clauseContext) } -func (s *Table_refContext) CROSS() antlr.TerminalNode { - return s.GetToken(PostgreSQLParserCROSS, 0) -} - -func (s *Table_refContext) JOIN() antlr.TerminalNode { - return s.GetToken(PostgreSQLParserJOIN, 0) -} - -func (s *Table_refContext) NATURAL() antlr.TerminalNode { - return s.GetToken(PostgreSQLParserNATURAL, 0) -} - -func (s *Table_refContext) Join_qual() IJoin_qualContext { - var t antlr.RuleContext - for _, ctx := range s.GetChildren() { - if _, ok := ctx.(IJoin_qualContext); ok { - t = ctx.(antlr.RuleContext) - break +func (s *Table_refContext) AllJoin_type() []IJoin_typeContext { + children := s.GetChildren() + len := 0 + for _, ctx := range children { + if _, ok := ctx.(IJoin_typeContext); ok { + len++ } } - if t == nil { - return nil + 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 t.(IJoin_qualContext) + return tst } -func (s *Table_refContext) Join_type() IJoin_typeContext { +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 { - t = ctx.(antlr.RuleContext) - break + if j == i { + t = ctx.(antlr.RuleContext) + break + } + j++ } } @@ -132376,7 +132396,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(8895) + p.SetState(8893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132385,22 +132405,22 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 801, p.GetParserRuleContext()) { case 1: { - p.SetState(8837) + p.SetState(8835) p.Relation_expr() } - p.SetState(8839) + p.SetState(8837) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 788, p.GetParserRuleContext()) == 1 { { - p.SetState(8838) + p.SetState(8836) p.Opt_alias_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(8842) + p.SetState(8840) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132409,7 +132429,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { if _la == PostgreSQLParserTABLESAMPLE { { - p.SetState(8841) + p.SetState(8839) p.Tablesample_clause() } @@ -132417,15 +132437,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 2: { - p.SetState(8844) + p.SetState(8842) p.Func_table() } - p.SetState(8846) + p.SetState(8844) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 790, p.GetParserRuleContext()) == 1 { { - p.SetState(8845) + p.SetState(8843) p.Func_alias_clause() } @@ -132435,15 +132455,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 3: { - p.SetState(8848) + p.SetState(8846) p.Xmltable() } - p.SetState(8850) + p.SetState(8848) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 791, p.GetParserRuleContext()) == 1 { { - p.SetState(8849) + p.SetState(8847) p.Opt_alias_clause() } @@ -132453,15 +132473,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 4: { - p.SetState(8852) + p.SetState(8850) p.Select_with_parens() } - p.SetState(8854) + p.SetState(8852) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 792, p.GetParserRuleContext()) == 1 { { - p.SetState(8853) + p.SetState(8851) p.Opt_alias_clause() } @@ -132471,14 +132491,14 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 5: { - p.SetState(8856) + p.SetState(8854) p.Match(PostgreSQLParserLATERAL_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8869) + p.SetState(8867) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132487,15 +132507,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 796, p.GetParserRuleContext()) { case 1: { - p.SetState(8857) + p.SetState(8855) p.Xmltable() } - p.SetState(8859) + p.SetState(8857) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 793, p.GetParserRuleContext()) == 1 { { - p.SetState(8858) + p.SetState(8856) p.Opt_alias_clause() } @@ -132505,15 +132525,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 2: { - p.SetState(8861) + p.SetState(8859) p.Func_table() } - p.SetState(8863) + p.SetState(8861) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 794, p.GetParserRuleContext()) == 1 { { - p.SetState(8862) + p.SetState(8860) p.Func_alias_clause() } @@ -132523,15 +132543,15 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 3: { - p.SetState(8865) + p.SetState(8863) p.Select_with_parens() } - p.SetState(8867) + p.SetState(8865) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 795, p.GetParserRuleContext()) == 1 { { - p.SetState(8866) + p.SetState(8864) p.Opt_alias_clause() } @@ -132545,7 +132565,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case 6: { - p.SetState(8871) + p.SetState(8869) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -132553,10 +132573,10 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { } } { - p.SetState(8872) + p.SetState(8870) p.Table_ref() } - p.SetState(8889) + p.SetState(8887) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132564,7 +132584,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserCROSS: { - p.SetState(8873) + p.SetState(8871) p.Match(PostgreSQLParserCROSS) if p.HasError() { // Recognition error - abort rule @@ -132572,7 +132592,7 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { } } { - p.SetState(8874) + p.SetState(8872) p.Match(PostgreSQLParserJOIN) if p.HasError() { // Recognition error - abort rule @@ -132580,20 +132600,20 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { } } { - p.SetState(8875) + p.SetState(8873) p.Table_ref() } case PostgreSQLParserNATURAL: { - p.SetState(8876) + p.SetState(8874) p.Match(PostgreSQLParserNATURAL) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8878) + p.SetState(8876) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132602,13 +132622,13 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { { - p.SetState(8877) + p.SetState(8875) p.Join_type() } } { - p.SetState(8880) + p.SetState(8878) p.Match(PostgreSQLParserJOIN) if p.HasError() { // Recognition error - abort rule @@ -132616,12 +132636,12 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { } } { - p.SetState(8881) + p.SetState(8879) p.Table_ref() } case PostgreSQLParserFULL, PostgreSQLParserINNER_P, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserRIGHT: - p.SetState(8883) + p.SetState(8881) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -132630,13 +132650,13 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { { - p.SetState(8882) + p.SetState(8880) p.Join_type() } } { - p.SetState(8885) + p.SetState(8883) p.Match(PostgreSQLParserJOIN) if p.HasError() { // Recognition error - abort rule @@ -132644,11 +132664,11 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { } } { - p.SetState(8886) + p.SetState(8884) p.Table_ref() } { - p.SetState(8887) + p.SetState(8885) p.Join_qual() } @@ -132657,19 +132677,19 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { default: } { - p.SetState(8891) + p.SetState(8889) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8893) + p.SetState(8891) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 800, p.GetParserRuleContext()) == 1 { { - p.SetState(8892) + p.SetState(8890) p.Opt_alias_clause() } @@ -132680,296 +132700,129 @@ func (p *PostgreSQLParser) Table_ref() (localctx ITable_refContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(8900) + p.SetState(8913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 802, p.GetParserRuleContext()) + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 805, p.GetParserRuleContext()) if p.HasError() { goto errorExit } for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { - { - p.SetState(8897) - p.Joined_table() + p.SetState(8911) + p.GetErrorHandler().Sync(p) + if p.HasError() { + goto errorExit } - } - p.SetState(8902) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 802, p.GetParserRuleContext()) - if p.HasError() { - goto errorExit - } - } - -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 -} - -// IJoined_tableContext is an interface to support dynamic dispatch. -type IJoined_tableContext interface { - antlr.ParserRuleContext - - // GetParser returns the parser. - GetParser() antlr.Parser - - // Getter signatures - JOIN() antlr.TerminalNode - Table_ref() ITable_refContext - Join_qual() IJoin_qualContext - Join_type() IJoin_typeContext - CROSS() antlr.TerminalNode - NATURAL() antlr.TerminalNode - - // IsJoined_tableContext differentiates from other interfaces. - IsJoined_tableContext() -} - -type Joined_tableContext struct { - antlr.BaseParserRuleContext - parser antlr.Parser -} - -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) 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) 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) 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) CROSS() antlr.TerminalNode { - return s.GetToken(PostgreSQLParserCROSS, 0) -} - -func (s *Joined_tableContext) NATURAL() antlr.TerminalNode { - return s.GetToken(PostgreSQLParserNATURAL, 0) -} - -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) + 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() + } - default: - return t.VisitChildren(s) - } -} + 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) -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 + if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { + { + p.SetState(8899) + p.Join_type() + } - p.SetState(8919) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } + } + { + p.SetState(8902) + p.Match(PostgreSQLParserJOIN) + if p.HasError() { + // Recognition error - abort rule + goto errorExit + } + } + { + p.SetState(8903) + p.Table_ref() + } - switch p.GetTokenStream().LA(1) { - case PostgreSQLParserFULL, PostgreSQLParserINNER_P, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserRIGHT: - p.EnterOuterAlt(localctx, 1) - p.SetState(8904) - p.GetErrorHandler().Sync(p) - if p.HasError() { - goto errorExit - } - _la = p.GetTokenStream().LA(1) + case PostgreSQLParserFULL, PostgreSQLParserINNER_P, PostgreSQLParserJOIN, PostgreSQLParserLEFT, PostgreSQLParserRIGHT: + p.SetState(8905) + 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(8903) - p.Join_type() - } + if (int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0 { + { + p.SetState(8904) + p.Join_type() + } - } - { - p.SetState(8906) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8907) - p.Table_ref() - } - { - p.SetState(8908) - p.Join_qual() - } + } + { + 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() + } - case PostgreSQLParserCROSS: - p.EnterOuterAlt(localctx, 2) - { - p.SetState(8910) - p.Match(PostgreSQLParserCROSS) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8911) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule + default: + p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - } - { - p.SetState(8912) - p.Table_ref() - } - case PostgreSQLParserNATURAL: - p.EnterOuterAlt(localctx, 3) - { - p.SetState(8913) - p.Match(PostgreSQLParserNATURAL) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } } p.SetState(8915) 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(8914) - p.Join_type() - } - - } - { - p.SetState(8917) - p.Match(PostgreSQLParserJOIN) - if p.HasError() { - // Recognition error - abort rule - goto errorExit - } - } - { - p.SetState(8918) - p.Table_ref() + _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 805, p.GetParserRuleContext()) + if p.HasError() { + goto errorExit } - - default: - p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) - goto errorExit } errorExit: @@ -133111,11 +132964,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, 1070, PostgreSQLParserRULE_alias_clause) + p.EnterRule(localctx, 1068, PostgreSQLParserRULE_alias_clause) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8922) + p.SetState(8917) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133124,7 +132977,7 @@ func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { if _la == PostgreSQLParserAS { { - p.SetState(8921) + p.SetState(8916) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -133134,15 +132987,15 @@ func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { } { - p.SetState(8924) + p.SetState(8919) p.Colid() } - p.SetState(8929) + p.SetState(8924) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 807, p.GetParserRuleContext()) == 1 { { - p.SetState(8925) + p.SetState(8920) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133150,11 +133003,11 @@ func (p *PostgreSQLParser) Alias_clause() (localctx IAlias_clauseContext) { } } { - p.SetState(8926) + p.SetState(8921) p.Name_list() } { - p.SetState(8927) + p.SetState(8922) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133273,10 +133126,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, 1072, PostgreSQLParserRULE_opt_alias_clause) + p.EnterRule(localctx, 1070, PostgreSQLParserRULE_opt_alias_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(8931) + p.SetState(8926) p.Table_alias_clause() } @@ -133419,11 +133272,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, 1074, PostgreSQLParserRULE_table_alias_clause) + p.EnterRule(localctx, 1072, PostgreSQLParserRULE_table_alias_clause) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(8934) + p.SetState(8929) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133432,7 +133285,7 @@ func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseCon if _la == PostgreSQLParserAS { { - p.SetState(8933) + p.SetState(8928) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -133442,15 +133295,15 @@ func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseCon } { - p.SetState(8936) + p.SetState(8931) p.Table_alias() } - p.SetState(8941) + p.SetState(8936) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 809, p.GetParserRuleContext()) == 1 { { - p.SetState(8937) + p.SetState(8932) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133458,11 +133311,11 @@ func (p *PostgreSQLParser) Table_alias_clause() (localctx ITable_alias_clauseCon } } { - p.SetState(8938) + p.SetState(8933) p.Name_list() } { - p.SetState(8939) + p.SetState(8934) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133630,10 +133483,10 @@ 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, 1076, PostgreSQLParserRULE_func_alias_clause) + p.EnterRule(localctx, 1074, PostgreSQLParserRULE_func_alias_clause) var _la int - p.SetState(8955) + p.SetState(8950) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133643,13 +133496,13 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(8943) + p.SetState(8938) p.Alias_clause() } case 2: p.EnterOuterAlt(localctx, 2) - p.SetState(8949) + p.SetState(8944) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133658,14 +133511,14 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte switch p.GetTokenStream().LA(1) { case PostgreSQLParserAS: { - p.SetState(8944) + p.SetState(8939) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8946) + p.SetState(8941) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133674,7 +133527,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(8945) + p.SetState(8940) p.Colid() } @@ -133682,7 +133535,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(8948) + p.SetState(8943) p.Colid() } @@ -133691,7 +133544,7 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte goto errorExit } { - p.SetState(8951) + p.SetState(8946) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133699,11 +133552,11 @@ func (p *PostgreSQLParser) Func_alias_clause() (localctx IFunc_alias_clauseConte } } { - p.SetState(8952) + p.SetState(8947) p.Tablefuncelementlist() } { - p.SetState(8953) + p.SetState(8948) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -133830,12 +133683,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, 1078, PostgreSQLParserRULE_join_type) + p.EnterRule(localctx, 1076, PostgreSQLParserRULE_join_type) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8957) + p.SetState(8952) _la = p.GetTokenStream().LA(1) if !((int64((_la-132)) & ^0x3f) == 0 && ((int64(1)<<(_la-132))&8261) != 0) { @@ -133845,7 +133698,7 @@ func (p *PostgreSQLParser) Join_type() (localctx IJoin_typeContext) { p.Consume() } } - p.SetState(8959) + p.SetState(8954) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -133854,7 +133707,7 @@ func (p *PostgreSQLParser) Join_type() (localctx IJoin_typeContext) { if _la == PostgreSQLParserOUTER_P { { - p.SetState(8958) + p.SetState(8953) p.Match(PostgreSQLParserOUTER_P) if p.HasError() { // Recognition error - abort rule @@ -134008,8 +133861,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, 1080, PostgreSQLParserRULE_join_qual) - p.SetState(8968) + p.EnterRule(localctx, 1078, PostgreSQLParserRULE_join_qual) + p.SetState(8963) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134019,7 +133872,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { case PostgreSQLParserUSING: p.EnterOuterAlt(localctx, 1) { - p.SetState(8961) + p.SetState(8956) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -134027,7 +133880,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { } } { - p.SetState(8962) + p.SetState(8957) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134035,11 +133888,11 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { } } { - p.SetState(8963) + p.SetState(8958) p.Name_list() } { - p.SetState(8964) + p.SetState(8959) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134050,7 +133903,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { case PostgreSQLParserON: p.EnterOuterAlt(localctx, 2) { - p.SetState(8966) + p.SetState(8961) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -134058,7 +133911,7 @@ func (p *PostgreSQLParser) Join_qual() (localctx IJoin_qualContext) { } } { - p.SetState(8967) + p.SetState(8962) p.A_expr() } @@ -134194,10 +134047,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, 1082, PostgreSQLParserRULE_relation_expr) + p.EnterRule(localctx, 1080, PostgreSQLParserRULE_relation_expr) var _la int - p.SetState(8982) + p.SetState(8977) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134207,10 +134060,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(8970) + p.SetState(8965) p.Qualified_name() } - p.SetState(8972) + p.SetState(8967) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134219,7 +134072,7 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { if _la == PostgreSQLParserSTAR { { - p.SetState(8971) + p.SetState(8966) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -134232,14 +134085,14 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { case PostgreSQLParserONLY: p.EnterOuterAlt(localctx, 2) { - p.SetState(8974) + p.SetState(8969) p.Match(PostgreSQLParserONLY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(8980) + p.SetState(8975) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134248,13 +134101,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(8975) + p.SetState(8970) p.Qualified_name() } case PostgreSQLParserOPEN_PAREN: { - p.SetState(8976) + p.SetState(8971) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134262,11 +134115,11 @@ func (p *PostgreSQLParser) Relation_expr() (localctx IRelation_exprContext) { } } { - p.SetState(8977) + p.SetState(8972) p.Qualified_name() } { - p.SetState(8978) + p.SetState(8973) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134427,15 +134280,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, 1084, PostgreSQLParserRULE_relation_expr_list) + p.EnterRule(localctx, 1082, PostgreSQLParserRULE_relation_expr_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8984) + p.SetState(8979) p.Relation_expr() } - p.SetState(8989) + p.SetState(8984) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134444,7 +134297,7 @@ func (p *PostgreSQLParser) Relation_expr_list() (localctx IRelation_expr_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(8985) + p.SetState(8980) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -134452,11 +134305,11 @@ func (p *PostgreSQLParser) Relation_expr_list() (localctx IRelation_expr_listCon } } { - p.SetState(8986) + p.SetState(8981) p.Relation_expr() } - p.SetState(8991) + p.SetState(8986) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134593,19 +134446,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, 1086, PostgreSQLParserRULE_relation_expr_opt_alias) + p.EnterRule(localctx, 1084, PostgreSQLParserRULE_relation_expr_opt_alias) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8992) + p.SetState(8987) p.Relation_expr() } - p.SetState(8997) + p.SetState(8992) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 820, p.GetParserRuleContext()) == 1 { - p.SetState(8994) + p.SetState(8989) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134614,7 +134467,7 @@ func (p *PostgreSQLParser) Relation_expr_opt_alias() (localctx IRelation_expr_op if _la == PostgreSQLParserAS { { - p.SetState(8993) + p.SetState(8988) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -134624,7 +134477,7 @@ func (p *PostgreSQLParser) Relation_expr_opt_alias() (localctx IRelation_expr_op } { - p.SetState(8996) + p.SetState(8991) p.Colid() } @@ -134788,12 +134641,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, 1088, PostgreSQLParserRULE_tablesample_clause) + p.EnterRule(localctx, 1086, PostgreSQLParserRULE_tablesample_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(8999) + p.SetState(8994) p.Match(PostgreSQLParserTABLESAMPLE) if p.HasError() { // Recognition error - abort rule @@ -134801,11 +134654,11 @@ func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseCon } } { - p.SetState(9000) + p.SetState(8995) p.Func_name() } { - p.SetState(9001) + p.SetState(8996) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134813,18 +134666,18 @@ func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseCon } } { - p.SetState(9002) + p.SetState(8997) p.Expr_list() } { - p.SetState(9003) + p.SetState(8998) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9005) + p.SetState(9000) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -134833,7 +134686,7 @@ func (p *PostgreSQLParser) Tablesample_clause() (localctx ITablesample_clauseCon if _la == PostgreSQLParserREPEATABLE { { - p.SetState(9004) + p.SetState(8999) p.Opt_repeatable_clause() } @@ -134961,10 +134814,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, 1090, PostgreSQLParserRULE_opt_repeatable_clause) + p.EnterRule(localctx, 1088, PostgreSQLParserRULE_opt_repeatable_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9007) + p.SetState(9002) p.Match(PostgreSQLParserREPEATABLE) if p.HasError() { // Recognition error - abort rule @@ -134972,7 +134825,7 @@ func (p *PostgreSQLParser) Opt_repeatable_clause() (localctx IOpt_repeatable_cla } } { - p.SetState(9008) + p.SetState(9003) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -134980,11 +134833,11 @@ func (p *PostgreSQLParser) Opt_repeatable_clause() (localctx IOpt_repeatable_cla } } { - p.SetState(9009) + p.SetState(9004) p.A_expr() } { - p.SetState(9010) + p.SetState(9005) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135153,8 +135006,8 @@ 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, 1092, PostgreSQLParserRULE_func_table) - p.SetState(9024) + p.EnterRule(localctx, 1090, PostgreSQLParserRULE_func_table) + p.SetState(9019) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135164,15 +135017,15 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9012) + p.SetState(9007) p.Func_expr_windowless() } - p.SetState(9014) + p.SetState(9009) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 822, p.GetParserRuleContext()) == 1 { { - p.SetState(9013) + p.SetState(9008) p.Opt_ordinality() } @@ -135183,7 +135036,7 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9016) + p.SetState(9011) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -135191,7 +135044,7 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { } } { - p.SetState(9017) + p.SetState(9012) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -135199,7 +135052,7 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { } } { - p.SetState(9018) + p.SetState(9013) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135207,23 +135060,23 @@ func (p *PostgreSQLParser) Func_table() (localctx IFunc_tableContext) { } } { - p.SetState(9019) + p.SetState(9014) p.Rowsfrom_list() } { - p.SetState(9020) + p.SetState(9015) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9022) + p.SetState(9017) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 823, p.GetParserRuleContext()) == 1 { { - p.SetState(9021) + p.SetState(9016) p.Opt_ordinality() } @@ -135359,15 +135212,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, 1094, PostgreSQLParserRULE_rowsfrom_item) + p.EnterRule(localctx, 1092, PostgreSQLParserRULE_rowsfrom_item) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9026) + p.SetState(9021) p.Func_expr_windowless() } - p.SetState(9028) + p.SetState(9023) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135376,7 +135229,7 @@ func (p *PostgreSQLParser) Rowsfrom_item() (localctx IRowsfrom_itemContext) { if _la == PostgreSQLParserAS { { - p.SetState(9027) + p.SetState(9022) p.Opt_col_def_list() } @@ -135525,15 +135378,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, 1096, PostgreSQLParserRULE_rowsfrom_list) + p.EnterRule(localctx, 1094, PostgreSQLParserRULE_rowsfrom_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9030) + p.SetState(9025) p.Rowsfrom_item() } - p.SetState(9035) + p.SetState(9030) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135542,7 +135395,7 @@ func (p *PostgreSQLParser) Rowsfrom_list() (localctx IRowsfrom_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(9031) + p.SetState(9026) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -135550,11 +135403,11 @@ func (p *PostgreSQLParser) Rowsfrom_list() (localctx IRowsfrom_listContext) { } } { - p.SetState(9032) + p.SetState(9027) p.Rowsfrom_item() } - p.SetState(9037) + p.SetState(9032) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -135684,10 +135537,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, 1098, PostgreSQLParserRULE_opt_col_def_list) + p.EnterRule(localctx, 1096, PostgreSQLParserRULE_opt_col_def_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(9038) + p.SetState(9033) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -135695,7 +135548,7 @@ func (p *PostgreSQLParser) Opt_col_def_list() (localctx IOpt_col_def_listContext } } { - p.SetState(9039) + p.SetState(9034) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135703,11 +135556,11 @@ func (p *PostgreSQLParser) Opt_col_def_list() (localctx IOpt_col_def_listContext } } { - p.SetState(9040) + p.SetState(9035) p.Tablefuncelementlist() } { - p.SetState(9041) + p.SetState(9036) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -135815,10 +135668,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, 1100, PostgreSQLParserRULE_opt_ordinality) + p.EnterRule(localctx, 1098, PostgreSQLParserRULE_opt_ordinality) p.EnterOuterAlt(localctx, 1) { - p.SetState(9043) + p.SetState(9038) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -135826,7 +135679,7 @@ func (p *PostgreSQLParser) Opt_ordinality() (localctx IOpt_ordinalityContext) { } } { - p.SetState(9044) + p.SetState(9039) p.Match(PostgreSQLParserORDINALITY) if p.HasError() { // Recognition error - abort rule @@ -135946,10 +135799,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, 1102, PostgreSQLParserRULE_where_clause) + p.EnterRule(localctx, 1100, PostgreSQLParserRULE_where_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9046) + p.SetState(9041) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -135957,7 +135810,7 @@ func (p *PostgreSQLParser) Where_clause() (localctx IWhere_clauseContext) { } } { - p.SetState(9047) + p.SetState(9042) p.A_expr() } @@ -136100,17 +135953,17 @@ 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, 1104, PostgreSQLParserRULE_where_or_current_clause) + p.EnterRule(localctx, 1102, PostgreSQLParserRULE_where_or_current_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9049) + p.SetState(9044) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9054) + p.SetState(9049) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136119,7 +135972,7 @@ func (p *PostgreSQLParser) Where_or_current_clause() (localctx IWhere_or_current switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 827, p.GetParserRuleContext()) { case 1: { - p.SetState(9050) + p.SetState(9045) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -136127,7 +135980,7 @@ func (p *PostgreSQLParser) Where_or_current_clause() (localctx IWhere_or_current } } { - p.SetState(9051) + p.SetState(9046) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -136135,13 +135988,13 @@ func (p *PostgreSQLParser) Where_or_current_clause() (localctx IWhere_or_current } } { - p.SetState(9052) + p.SetState(9047) p.Cursor_name() } case 2: { - p.SetState(9053) + p.SetState(9048) p.A_expr() } @@ -136256,10 +136109,10 @@ func (s *OpttablefuncelementlistContext) Accept(visitor antlr.ParseTreeVisitor) func (p *PostgreSQLParser) Opttablefuncelementlist() (localctx IOpttablefuncelementlistContext) { localctx = NewOpttablefuncelementlistContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1106, PostgreSQLParserRULE_opttablefuncelementlist) + p.EnterRule(localctx, 1104, PostgreSQLParserRULE_opttablefuncelementlist) p.EnterOuterAlt(localctx, 1) { - p.SetState(9056) + p.SetState(9051) p.Tablefuncelementlist() } @@ -136406,15 +136259,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, 1108, PostgreSQLParserRULE_tablefuncelementlist) + p.EnterRule(localctx, 1106, PostgreSQLParserRULE_tablefuncelementlist) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9058) + p.SetState(9053) p.Tablefuncelement() } - p.SetState(9063) + p.SetState(9058) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136423,7 +136276,7 @@ func (p *PostgreSQLParser) Tablefuncelementlist() (localctx ITablefuncelementlis for _la == PostgreSQLParserCOMMA { { - p.SetState(9059) + p.SetState(9054) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -136431,11 +136284,11 @@ func (p *PostgreSQLParser) Tablefuncelementlist() (localctx ITablefuncelementlis } } { - p.SetState(9060) + p.SetState(9055) p.Tablefuncelement() } - p.SetState(9065) + p.SetState(9060) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136584,19 +136437,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, 1110, PostgreSQLParserRULE_tablefuncelement) + p.EnterRule(localctx, 1108, PostgreSQLParserRULE_tablefuncelement) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9066) + p.SetState(9061) p.Colid() } { - p.SetState(9067) + p.SetState(9062) p.Typename() } - p.SetState(9069) + p.SetState(9064) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136605,7 +136458,7 @@ func (p *PostgreSQLParser) Tablefuncelement() (localctx ITablefuncelementContext if _la == PostgreSQLParserCOLLATE { { - p.SetState(9068) + p.SetState(9063) p.Opt_collate_clause() } @@ -136809,10 +136662,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, 1112, PostgreSQLParserRULE_xmltable) + p.EnterRule(localctx, 1110, PostgreSQLParserRULE_xmltable) p.EnterOuterAlt(localctx, 1) { - p.SetState(9071) + p.SetState(9066) p.Match(PostgreSQLParserXMLTABLE) if p.HasError() { // Recognition error - abort rule @@ -136820,14 +136673,14 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9072) + p.SetState(9067) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9088) + p.SetState(9083) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -136836,15 +136689,15 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 830, p.GetParserRuleContext()) { case 1: { - p.SetState(9073) + p.SetState(9068) p.C_expr() } { - p.SetState(9074) + p.SetState(9069) p.Xmlexists_argument() } { - p.SetState(9075) + p.SetState(9070) p.Match(PostgreSQLParserCOLUMNS) if p.HasError() { // Recognition error - abort rule @@ -136852,13 +136705,13 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9076) + p.SetState(9071) p.Xmltable_column_list() } case 2: { - p.SetState(9078) + p.SetState(9073) p.Match(PostgreSQLParserXMLNAMESPACES) if p.HasError() { // Recognition error - abort rule @@ -136866,7 +136719,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9079) + p.SetState(9074) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -136874,11 +136727,11 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9080) + p.SetState(9075) p.Xml_namespace_list() } { - p.SetState(9081) + p.SetState(9076) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -136886,7 +136739,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9082) + p.SetState(9077) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -136894,15 +136747,15 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9083) + p.SetState(9078) p.C_expr() } { - p.SetState(9084) + p.SetState(9079) p.Xmlexists_argument() } { - p.SetState(9085) + p.SetState(9080) p.Match(PostgreSQLParserCOLUMNS) if p.HasError() { // Recognition error - abort rule @@ -136910,7 +136763,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { } } { - p.SetState(9086) + p.SetState(9081) p.Xmltable_column_list() } @@ -136918,7 +136771,7 @@ func (p *PostgreSQLParser) Xmltable() (localctx IXmltableContext) { goto errorExit } { - p.SetState(9090) + p.SetState(9085) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -137069,15 +136922,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, 1114, PostgreSQLParserRULE_xmltable_column_list) + p.EnterRule(localctx, 1112, PostgreSQLParserRULE_xmltable_column_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9092) + p.SetState(9087) p.Xmltable_column_el() } - p.SetState(9097) + p.SetState(9092) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137086,7 +136939,7 @@ func (p *PostgreSQLParser) Xmltable_column_list() (localctx IXmltable_column_lis for _la == PostgreSQLParserCOMMA { { - p.SetState(9093) + p.SetState(9088) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -137094,11 +136947,11 @@ func (p *PostgreSQLParser) Xmltable_column_list() (localctx IXmltable_column_lis } } { - p.SetState(9094) + p.SetState(9089) p.Xmltable_column_el() } - p.SetState(9099) + p.SetState(9094) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137257,15 +137110,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, 1116, PostgreSQLParserRULE_xmltable_column_el) + p.EnterRule(localctx, 1114, PostgreSQLParserRULE_xmltable_column_el) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9100) + p.SetState(9095) p.Colid() } - p.SetState(9107) + p.SetState(9102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137274,10 +137127,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(9101) + p.SetState(9096) p.Typename() } - p.SetState(9103) + p.SetState(9098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137286,7 +137139,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(9102) + p.SetState(9097) p.Xmltable_column_option_list() } @@ -137294,7 +137147,7 @@ func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elCon case PostgreSQLParserFOR: { - p.SetState(9105) + p.SetState(9100) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -137302,7 +137155,7 @@ func (p *PostgreSQLParser) Xmltable_column_el() (localctx IXmltable_column_elCon } } { - p.SetState(9106) + p.SetState(9101) p.Match(PostgreSQLParserORDINALITY) if p.HasError() { // Recognition error - abort rule @@ -137448,11 +137301,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, 1118, PostgreSQLParserRULE_xmltable_column_option_list) + p.EnterRule(localctx, 1116, PostgreSQLParserRULE_xmltable_column_option_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(9110) + p.SetState(9105) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137461,11 +137314,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(9109) + p.SetState(9104) p.Xmltable_column_option_el() } - p.SetState(9112) + p.SetState(9107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137612,8 +137465,8 @@ 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, 1120, PostgreSQLParserRULE_xmltable_column_option_el) - p.SetState(9122) + p.EnterRule(localctx, 1118, PostgreSQLParserRULE_xmltable_column_option_el) + p.SetState(9117) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137623,7 +137476,7 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9114) + p.SetState(9109) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -137631,25 +137484,25 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum } } { - p.SetState(9115) + p.SetState(9110) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9116) + p.SetState(9111) p.Identifier() } { - p.SetState(9117) + p.SetState(9112) p.A_expr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9119) + p.SetState(9114) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -137657,7 +137510,7 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum } } { - p.SetState(9120) + p.SetState(9115) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -137668,7 +137521,7 @@ func (p *PostgreSQLParser) Xmltable_column_option_el() (localctx IXmltable_colum case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9121) + p.SetState(9116) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -137823,15 +137676,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, 1122, PostgreSQLParserRULE_xml_namespace_list) + p.EnterRule(localctx, 1120, PostgreSQLParserRULE_xml_namespace_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9124) + p.SetState(9119) p.Xml_namespace_el() } - p.SetState(9129) + p.SetState(9124) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137840,7 +137693,7 @@ func (p *PostgreSQLParser) Xml_namespace_list() (localctx IXml_namespace_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(9125) + p.SetState(9120) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -137848,11 +137701,11 @@ func (p *PostgreSQLParser) Xml_namespace_list() (localctx IXml_namespace_listCon } } { - p.SetState(9126) + p.SetState(9121) p.Xml_namespace_el() } - p.SetState(9131) + p.SetState(9126) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -137994,8 +137847,8 @@ 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, 1124, PostgreSQLParserRULE_xml_namespace_el) - p.SetState(9138) + p.EnterRule(localctx, 1122, PostgreSQLParserRULE_xml_namespace_el) + p.SetState(9133) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138005,11 +137858,11 @@ func (p *PostgreSQLParser) Xml_namespace_el() (localctx IXml_namespace_elContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9132) + p.SetState(9127) p.b_expr(0) } { - p.SetState(9133) + p.SetState(9128) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -138017,14 +137870,14 @@ func (p *PostgreSQLParser) Xml_namespace_el() (localctx IXml_namespace_elContext } } { - p.SetState(9134) + p.SetState(9129) p.Collabel() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9136) + p.SetState(9131) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -138032,7 +137885,7 @@ func (p *PostgreSQLParser) Xml_namespace_el() (localctx IXml_namespace_elContext } } { - p.SetState(9137) + p.SetState(9132) p.b_expr(0) } @@ -138233,10 +138086,10 @@ func (s *TypenameContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { localctx = NewTypenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1126, PostgreSQLParserRULE_typename) + p.EnterRule(localctx, 1124, PostgreSQLParserRULE_typename) var _la int - p.SetState(9158) + p.SetState(9153) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138245,7 +138098,7 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 841, p.GetParserRuleContext()) { case 1: p.EnterOuterAlt(localctx, 1) - p.SetState(9141) + p.SetState(9136) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138254,7 +138107,7 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { if _la == PostgreSQLParserSETOF { { - p.SetState(9140) + p.SetState(9135) p.Match(PostgreSQLParserSETOF) if p.HasError() { // Recognition error - abort rule @@ -138264,10 +138117,10 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { } { - p.SetState(9143) + p.SetState(9138) p.Simpletypename() } - p.SetState(9152) + p.SetState(9147) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138276,25 +138129,25 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 840, p.GetParserRuleContext()) { case 1: { - p.SetState(9144) + p.SetState(9139) p.Opt_array_bounds() } case 2: { - p.SetState(9145) + p.SetState(9140) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9150) + p.SetState(9145) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 839, p.GetParserRuleContext()) == 1 { { - p.SetState(9146) + p.SetState(9141) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -138302,11 +138155,11 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { } } { - p.SetState(9147) + p.SetState(9142) p.Iconst() } { - p.SetState(9148) + p.SetState(9143) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -138325,11 +138178,11 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9154) + p.SetState(9149) p.Qualified_name() } { - p.SetState(9155) + p.SetState(9150) p.Match(PostgreSQLParserPERCENT) if p.HasError() { // Recognition error - abort rule @@ -138337,7 +138190,7 @@ func (p *PostgreSQLParser) Typename() (localctx ITypenameContext) { } } { - p.SetState(9156) + p.SetState(9151) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTYPE_P || _la == PostgreSQLParserROWTYPE) { @@ -138505,13 +138358,13 @@ 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, 1128, PostgreSQLParserRULE_opt_array_bounds) + p.EnterRule(localctx, 1126, PostgreSQLParserRULE_opt_array_bounds) var _la int var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(9167) + p.SetState(9162) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138523,14 +138376,14 @@ func (p *PostgreSQLParser) Opt_array_bounds() (localctx IOpt_array_boundsContext for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9160) + p.SetState(9155) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9162) + p.SetState(9157) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138539,13 +138392,13 @@ func (p *PostgreSQLParser) Opt_array_bounds() (localctx IOpt_array_boundsContext if _la == PostgreSQLParserIntegral { { - p.SetState(9161) + p.SetState(9156) p.Iconst() } } { - p.SetState(9164) + p.SetState(9159) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -138554,7 +138407,7 @@ func (p *PostgreSQLParser) Opt_array_bounds() (localctx IOpt_array_boundsContext } } - p.SetState(9169) + p.SetState(9164) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138801,8 +138654,8 @@ func (s *SimpletypenameContext) Accept(visitor antlr.ParseTreeVisitor) interface func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { localctx = NewSimpletypenameContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1130, PostgreSQLParserRULE_simpletypename) - p.SetState(9185) + p.EnterRule(localctx, 1128, PostgreSQLParserRULE_simpletypename) + p.SetState(9180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138812,45 +138665,45 @@ func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9170) + p.SetState(9165) p.Generictype() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9171) + p.SetState(9166) p.Numeric() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9172) + p.SetState(9167) p.Bit() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9173) + p.SetState(9168) p.Character() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(9174) + p.SetState(9169) p.Constdatetime() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(9175) + p.SetState(9170) p.Constinterval() } - p.SetState(9183) + p.SetState(9178) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -138858,12 +138711,12 @@ func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 845, p.GetParserRuleContext()) { case 1: - p.SetState(9177) + p.SetState(9172) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 844, p.GetParserRuleContext()) == 1 { { - p.SetState(9176) + p.SetState(9171) p.Opt_interval() } @@ -138873,7 +138726,7 @@ func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { case 2: { - p.SetState(9179) + p.SetState(9174) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -138881,11 +138734,11 @@ func (p *PostgreSQLParser) Simpletypename() (localctx ISimpletypenameContext) { } } { - p.SetState(9180) + p.SetState(9175) p.Iconst() } { - p.SetState(9181) + p.SetState(9176) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139059,8 +138912,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, 1132, PostgreSQLParserRULE_consttypename) - p.SetState(9191) + p.EnterRule(localctx, 1130, PostgreSQLParserRULE_consttypename) + p.SetState(9186) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -139070,28 +138923,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(9187) + p.SetState(9182) p.Numeric() } case PostgreSQLParserBIT: p.EnterOuterAlt(localctx, 2) { - p.SetState(9188) + p.SetState(9183) p.Constbit() } case PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserNATIONAL, PostgreSQLParserNCHAR, PostgreSQLParserVARCHAR: p.EnterOuterAlt(localctx, 3) { - p.SetState(9189) + p.SetState(9184) p.Constcharacter() } case PostgreSQLParserTIME, PostgreSQLParserTIMESTAMP: p.EnterOuterAlt(localctx, 4) { - p.SetState(9190) + p.SetState(9185) p.Constdatetime() } @@ -139268,9 +139121,9 @@ func (s *GenerictypeContext) Accept(visitor antlr.ParseTreeVisitor) interface{} func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { localctx = NewGenerictypeContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1134, PostgreSQLParserRULE_generictype) + p.EnterRule(localctx, 1132, PostgreSQLParserRULE_generictype) p.EnterOuterAlt(localctx, 1) - p.SetState(9197) + p.SetState(9192) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -139279,19 +139132,19 @@ func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 848, p.GetParserRuleContext()) { case 1: { - p.SetState(9193) + p.SetState(9188) p.Builtin_function_name() } case 2: { - p.SetState(9194) + p.SetState(9189) p.Type_function_name() } case 3: { - p.SetState(9195) + p.SetState(9190) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -139301,7 +139154,7 @@ func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { case 4: { - p.SetState(9196) + p.SetState(9191) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -139312,24 +139165,24 @@ func (p *PostgreSQLParser) Generictype() (localctx IGenerictypeContext) { case antlr.ATNInvalidAltNumber: goto errorExit } - p.SetState(9200) + p.SetState(9195) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 849, p.GetParserRuleContext()) == 1 { { - p.SetState(9199) + p.SetState(9194) p.Attrs() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9203) + p.SetState(9198) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 850, p.GetParserRuleContext()) == 1 { { - p.SetState(9202) + p.SetState(9197) p.Opt_type_modifiers() } @@ -139454,10 +139307,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, 1136, PostgreSQLParserRULE_opt_type_modifiers) + p.EnterRule(localctx, 1134, PostgreSQLParserRULE_opt_type_modifiers) p.EnterOuterAlt(localctx, 1) { - p.SetState(9205) + p.SetState(9200) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139465,11 +139318,11 @@ func (p *PostgreSQLParser) Opt_type_modifiers() (localctx IOpt_type_modifiersCon } } { - p.SetState(9206) + p.SetState(9201) p.Expr_list() } { - p.SetState(9207) + p.SetState(9202) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139661,8 +139514,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, 1138, PostgreSQLParserRULE_numeric) - p.SetState(9233) + p.EnterRule(localctx, 1136, PostgreSQLParserRULE_numeric) + p.SetState(9228) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -139672,7 +139525,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserINT_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(9209) + p.SetState(9204) p.Match(PostgreSQLParserINT_P) if p.HasError() { // Recognition error - abort rule @@ -139683,7 +139536,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserINTEGER: p.EnterOuterAlt(localctx, 2) { - p.SetState(9210) + p.SetState(9205) p.Match(PostgreSQLParserINTEGER) if p.HasError() { // Recognition error - abort rule @@ -139694,7 +139547,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserSMALLINT: p.EnterOuterAlt(localctx, 3) { - p.SetState(9211) + p.SetState(9206) p.Match(PostgreSQLParserSMALLINT) if p.HasError() { // Recognition error - abort rule @@ -139705,7 +139558,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserBIGINT: p.EnterOuterAlt(localctx, 4) { - p.SetState(9212) + p.SetState(9207) p.Match(PostgreSQLParserBIGINT) if p.HasError() { // Recognition error - abort rule @@ -139716,7 +139569,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserREAL: p.EnterOuterAlt(localctx, 5) { - p.SetState(9213) + p.SetState(9208) p.Match(PostgreSQLParserREAL) if p.HasError() { // Recognition error - abort rule @@ -139727,19 +139580,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserFLOAT_P: p.EnterOuterAlt(localctx, 6) { - p.SetState(9214) + p.SetState(9209) p.Match(PostgreSQLParserFLOAT_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9216) + p.SetState(9211) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 851, p.GetParserRuleContext()) == 1 { { - p.SetState(9215) + p.SetState(9210) p.Opt_float() } @@ -139750,7 +139603,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserDOUBLE_P: p.EnterOuterAlt(localctx, 7) { - p.SetState(9218) + p.SetState(9213) p.Match(PostgreSQLParserDOUBLE_P) if p.HasError() { // Recognition error - abort rule @@ -139758,7 +139611,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { } } { - p.SetState(9219) + p.SetState(9214) p.Match(PostgreSQLParserPRECISION) if p.HasError() { // Recognition error - abort rule @@ -139769,19 +139622,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserDECIMAL_P: p.EnterOuterAlt(localctx, 8) { - p.SetState(9220) + p.SetState(9215) p.Match(PostgreSQLParserDECIMAL_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9222) + p.SetState(9217) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 852, p.GetParserRuleContext()) == 1 { { - p.SetState(9221) + p.SetState(9216) p.Opt_type_modifiers() } @@ -139792,19 +139645,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserDEC: p.EnterOuterAlt(localctx, 9) { - p.SetState(9224) + p.SetState(9219) p.Match(PostgreSQLParserDEC) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9226) + p.SetState(9221) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 853, p.GetParserRuleContext()) == 1 { { - p.SetState(9225) + p.SetState(9220) p.Opt_type_modifiers() } @@ -139815,19 +139668,19 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserNUMERIC: p.EnterOuterAlt(localctx, 10) { - p.SetState(9228) + p.SetState(9223) p.Match(PostgreSQLParserNUMERIC) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9230) + p.SetState(9225) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 854, p.GetParserRuleContext()) == 1 { { - p.SetState(9229) + p.SetState(9224) p.Opt_type_modifiers() } @@ -139838,7 +139691,7 @@ func (p *PostgreSQLParser) Numeric() (localctx INumericContext) { case PostgreSQLParserBOOLEAN_P: p.EnterOuterAlt(localctx, 11) { - p.SetState(9232) + p.SetState(9227) p.Match(PostgreSQLParserBOOLEAN_P) if p.HasError() { // Recognition error - abort rule @@ -139968,10 +139821,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, 1140, PostgreSQLParserRULE_opt_float) + p.EnterRule(localctx, 1138, PostgreSQLParserRULE_opt_float) p.EnterOuterAlt(localctx, 1) { - p.SetState(9235) + p.SetState(9230) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -139979,11 +139832,11 @@ func (p *PostgreSQLParser) Opt_float() (localctx IOpt_floatContext) { } } { - p.SetState(9236) + p.SetState(9231) p.Iconst() } { - p.SetState(9237) + p.SetState(9232) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140115,8 +139968,8 @@ func (s *BitContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Bit() (localctx IBitContext) { localctx = NewBitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1142, PostgreSQLParserRULE_bit) - p.SetState(9241) + p.EnterRule(localctx, 1140, PostgreSQLParserRULE_bit) + p.SetState(9236) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140126,14 +139979,14 @@ func (p *PostgreSQLParser) Bit() (localctx IBitContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9239) + p.SetState(9234) p.Bitwithlength() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9240) + p.SetState(9235) p.Bitwithoutlength() } @@ -140265,8 +140118,8 @@ func (s *ConstbitContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Constbit() (localctx IConstbitContext) { localctx = NewConstbitContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1144, PostgreSQLParserRULE_constbit) - p.SetState(9245) + p.EnterRule(localctx, 1142, PostgreSQLParserRULE_constbit) + p.SetState(9240) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140276,14 +140129,14 @@ func (p *PostgreSQLParser) Constbit() (localctx IConstbitContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9243) + p.SetState(9238) p.Bitwithlength() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9244) + p.SetState(9239) p.Bitwithoutlength() } @@ -140430,19 +140283,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, 1146, PostgreSQLParserRULE_bitwithlength) + p.EnterRule(localctx, 1144, PostgreSQLParserRULE_bitwithlength) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9247) + p.SetState(9242) p.Match(PostgreSQLParserBIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9249) + p.SetState(9244) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140451,13 +140304,13 @@ func (p *PostgreSQLParser) Bitwithlength() (localctx IBitwithlengthContext) { if _la == PostgreSQLParserVARYING { { - p.SetState(9248) + p.SetState(9243) p.Opt_varying() } } { - p.SetState(9251) + p.SetState(9246) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140465,11 +140318,11 @@ func (p *PostgreSQLParser) Bitwithlength() (localctx IBitwithlengthContext) { } } { - p.SetState(9252) + p.SetState(9247) p.Expr_list() } { - p.SetState(9253) + p.SetState(9248) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140589,22 +140442,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, 1148, PostgreSQLParserRULE_bitwithoutlength) + p.EnterRule(localctx, 1146, PostgreSQLParserRULE_bitwithoutlength) p.EnterOuterAlt(localctx, 1) { - p.SetState(9255) + p.SetState(9250) p.Match(PostgreSQLParserBIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9257) + p.SetState(9252) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 859, p.GetParserRuleContext()) == 1 { { - p.SetState(9256) + p.SetState(9251) p.Opt_varying() } @@ -140746,18 +140599,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, 1150, PostgreSQLParserRULE_character) + p.EnterRule(localctx, 1148, PostgreSQLParserRULE_character) p.EnterOuterAlt(localctx, 1) { - p.SetState(9259) + p.SetState(9254) p.Character_c() } - p.SetState(9264) + p.SetState(9259) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 860, p.GetParserRuleContext()) == 1 { { - p.SetState(9260) + p.SetState(9255) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140765,11 +140618,11 @@ func (p *PostgreSQLParser) Character() (localctx ICharacterContext) { } } { - p.SetState(9261) + p.SetState(9256) p.Iconst() } { - p.SetState(9262) + p.SetState(9257) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140915,15 +140768,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, 1152, PostgreSQLParserRULE_constcharacter) + p.EnterRule(localctx, 1150, PostgreSQLParserRULE_constcharacter) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9266) + p.SetState(9261) p.Character_c() } - p.SetState(9271) + p.SetState(9266) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -140932,7 +140785,7 @@ func (p *PostgreSQLParser) Constcharacter() (localctx IConstcharacterContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(9267) + p.SetState(9262) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -140940,11 +140793,11 @@ func (p *PostgreSQLParser) Constcharacter() (localctx IConstcharacterContext) { } } { - p.SetState(9268) + p.SetState(9263) p.Iconst() } { - p.SetState(9269) + p.SetState(9264) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -141086,10 +140939,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, 1154, PostgreSQLParserRULE_character_c) + p.EnterRule(localctx, 1152, PostgreSQLParserRULE_character_c) var _la int - p.SetState(9283) + p.SetState(9278) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -141099,7 +140952,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { case PostgreSQLParserCHAR_P, PostgreSQLParserCHARACTER, PostgreSQLParserNCHAR: p.EnterOuterAlt(localctx, 1) { - p.SetState(9273) + p.SetState(9268) _la = p.GetTokenStream().LA(1) if !((int64((_la-404)) & ^0x3f) == 0 && ((int64(1)<<(_la-404))&32771) != 0) { @@ -141109,12 +140962,12 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { p.Consume() } } - p.SetState(9275) + p.SetState(9270) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 862, p.GetParserRuleContext()) == 1 { { - p.SetState(9274) + p.SetState(9269) p.Opt_varying() } @@ -141125,7 +140978,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { case PostgreSQLParserVARCHAR: p.EnterOuterAlt(localctx, 2) { - p.SetState(9277) + p.SetState(9272) p.Match(PostgreSQLParserVARCHAR) if p.HasError() { // Recognition error - abort rule @@ -141136,7 +140989,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { case PostgreSQLParserNATIONAL: p.EnterOuterAlt(localctx, 3) { - p.SetState(9278) + p.SetState(9273) p.Match(PostgreSQLParserNATIONAL) if p.HasError() { // Recognition error - abort rule @@ -141144,7 +140997,7 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { } } { - p.SetState(9279) + p.SetState(9274) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCHAR_P || _la == PostgreSQLParserCHARACTER) { @@ -141154,12 +141007,12 @@ func (p *PostgreSQLParser) Character_c() (localctx ICharacter_cContext) { p.Consume() } } - p.SetState(9281) + p.SetState(9276) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 863, p.GetParserRuleContext()) == 1 { { - p.SetState(9280) + p.SetState(9275) p.Opt_varying() } @@ -141267,10 +141120,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, 1156, PostgreSQLParserRULE_opt_varying) + p.EnterRule(localctx, 1154, PostgreSQLParserRULE_opt_varying) p.EnterOuterAlt(localctx, 1) { - p.SetState(9285) + p.SetState(9280) p.Match(PostgreSQLParserVARYING) if p.HasError() { // Recognition error - abort rule @@ -141422,12 +141275,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, 1158, PostgreSQLParserRULE_constdatetime) + p.EnterRule(localctx, 1156, PostgreSQLParserRULE_constdatetime) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9287) + p.SetState(9282) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserTIME || _la == PostgreSQLParserTIMESTAMP) { @@ -141437,12 +141290,12 @@ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { p.Consume() } } - p.SetState(9292) + p.SetState(9287) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 865, p.GetParserRuleContext()) == 1 { { - p.SetState(9288) + p.SetState(9283) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -141450,11 +141303,11 @@ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { } } { - p.SetState(9289) + p.SetState(9284) p.Iconst() } { - p.SetState(9290) + p.SetState(9285) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -141465,12 +141318,12 @@ func (p *PostgreSQLParser) Constdatetime() (localctx IConstdatetimeContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(9295) + p.SetState(9290) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 866, p.GetParserRuleContext()) == 1 { { - p.SetState(9294) + p.SetState(9289) p.Opt_timezone() } @@ -141573,10 +141426,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, 1160, PostgreSQLParserRULE_constinterval) + p.EnterRule(localctx, 1158, PostgreSQLParserRULE_constinterval) p.EnterOuterAlt(localctx, 1) { - p.SetState(9297) + p.SetState(9292) p.Match(PostgreSQLParserINTERVAL) if p.HasError() { // Recognition error - abort rule @@ -141694,8 +141547,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, 1162, PostgreSQLParserRULE_opt_timezone) - p.SetState(9305) + p.EnterRule(localctx, 1160, PostgreSQLParserRULE_opt_timezone) + p.SetState(9300) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -141705,7 +141558,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(9299) + p.SetState(9294) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -141713,7 +141566,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9300) + p.SetState(9295) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -141721,7 +141574,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9301) + p.SetState(9296) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -141732,7 +141585,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(9302) + p.SetState(9297) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -141740,7 +141593,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9303) + p.SetState(9298) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -141748,7 +141601,7 @@ func (p *PostgreSQLParser) Opt_timezone() (localctx IOpt_timezoneContext) { } } { - p.SetState(9304) + p.SetState(9299) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -141898,8 +141751,8 @@ 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, 1164, PostgreSQLParserRULE_opt_interval) - p.SetState(9332) + p.EnterRule(localctx, 1162, PostgreSQLParserRULE_opt_interval) + p.SetState(9327) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -141909,7 +141762,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9307) + p.SetState(9302) p.Match(PostgreSQLParserYEAR_P) if p.HasError() { // Recognition error - abort rule @@ -141920,7 +141773,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9308) + p.SetState(9303) p.Match(PostgreSQLParserMONTH_P) if p.HasError() { // Recognition error - abort rule @@ -141931,7 +141784,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9309) + p.SetState(9304) p.Match(PostgreSQLParserDAY_P) if p.HasError() { // Recognition error - abort rule @@ -141942,7 +141795,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9310) + p.SetState(9305) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -141953,7 +141806,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(9311) + p.SetState(9306) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -141964,14 +141817,14 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(9312) + p.SetState(9307) p.Interval_second() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(9313) + p.SetState(9308) p.Match(PostgreSQLParserYEAR_P) if p.HasError() { // Recognition error - abort rule @@ -141979,7 +141832,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9314) + p.SetState(9309) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -141987,7 +141840,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9315) + p.SetState(9310) p.Match(PostgreSQLParserMONTH_P) if p.HasError() { // Recognition error - abort rule @@ -141998,7 +141851,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(9316) + p.SetState(9311) p.Match(PostgreSQLParserDAY_P) if p.HasError() { // Recognition error - abort rule @@ -142006,14 +141859,14 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9317) + p.SetState(9312) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9321) + p.SetState(9316) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -142022,7 +141875,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserHOUR_P: { - p.SetState(9318) + p.SetState(9313) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -142032,7 +141885,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case PostgreSQLParserMINUTE_P: { - p.SetState(9319) + p.SetState(9314) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -142042,7 +141895,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case PostgreSQLParserSECOND_P: { - p.SetState(9320) + p.SetState(9315) p.Interval_second() } @@ -142054,7 +141907,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(9323) + p.SetState(9318) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -142062,14 +141915,14 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9324) + p.SetState(9319) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9327) + p.SetState(9322) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -142078,7 +141931,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserMINUTE_P: { - p.SetState(9325) + p.SetState(9320) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -142088,7 +141941,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case PostgreSQLParserSECOND_P: { - p.SetState(9326) + p.SetState(9321) p.Interval_second() } @@ -142100,7 +141953,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(9329) + p.SetState(9324) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -142108,7 +141961,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9330) + p.SetState(9325) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -142116,7 +141969,7 @@ func (p *PostgreSQLParser) Opt_interval() (localctx IOpt_intervalContext) { } } { - p.SetState(9331) + p.SetState(9326) p.Interval_second() } @@ -142246,22 +142099,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, 1166, PostgreSQLParserRULE_interval_second) + p.EnterRule(localctx, 1164, PostgreSQLParserRULE_interval_second) p.EnterOuterAlt(localctx, 1) { - p.SetState(9334) + p.SetState(9329) p.Match(PostgreSQLParserSECOND_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9339) + p.SetState(9334) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 871, p.GetParserRuleContext()) == 1 { { - p.SetState(9335) + p.SetState(9330) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -142269,11 +142122,11 @@ func (p *PostgreSQLParser) Interval_second() (localctx IInterval_secondContext) } } { - p.SetState(9336) + p.SetState(9331) p.Iconst() } { - p.SetState(9337) + p.SetState(9332) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -142397,10 +142250,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, 1168, PostgreSQLParserRULE_opt_escape) + p.EnterRule(localctx, 1166, PostgreSQLParserRULE_opt_escape) p.EnterOuterAlt(localctx, 1) { - p.SetState(9341) + p.SetState(9336) p.Match(PostgreSQLParserESCAPE) if p.HasError() { // Recognition error - abort rule @@ -142408,7 +142261,7 @@ func (p *PostgreSQLParser) Opt_escape() (localctx IOpt_escapeContext) { } } { - p.SetState(9342) + p.SetState(9337) p.A_expr() } @@ -142519,10 +142372,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, 1170, PostgreSQLParserRULE_a_expr) + p.EnterRule(localctx, 1168, PostgreSQLParserRULE_a_expr) p.EnterOuterAlt(localctx, 1) { - p.SetState(9344) + p.SetState(9339) p.A_expr_qual() } @@ -142650,18 +142503,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, 1172, PostgreSQLParserRULE_a_expr_qual) + p.EnterRule(localctx, 1170, PostgreSQLParserRULE_a_expr_qual) p.EnterOuterAlt(localctx, 1) { - p.SetState(9346) + p.SetState(9341) p.A_expr_lessless() } - p.SetState(9348) + p.SetState(9343) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 872, p.GetParserRuleContext()) == 1 { { - p.SetState(9347) + p.SetState(9342) p.Qual_op() } @@ -142822,17 +142675,17 @@ 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, 1174, PostgreSQLParserRULE_a_expr_lessless) + p.EnterRule(localctx, 1172, PostgreSQLParserRULE_a_expr_lessless) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9350) + p.SetState(9345) p.A_expr_or() } - p.SetState(9355) + p.SetState(9350) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -142844,7 +142697,7 @@ func (p *PostgreSQLParser) A_expr_lessless() (localctx IA_expr_lesslessContext) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9351) + p.SetState(9346) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserLESS_LESS || _la == PostgreSQLParserGREATER_GREATER) { @@ -142855,12 +142708,12 @@ func (p *PostgreSQLParser) A_expr_lessless() (localctx IA_expr_lesslessContext) } } { - p.SetState(9352) + p.SetState(9347) p.A_expr_or() } } - p.SetState(9357) + p.SetState(9352) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143014,15 +142867,15 @@ 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, 1176, PostgreSQLParserRULE_a_expr_or) + p.EnterRule(localctx, 1174, PostgreSQLParserRULE_a_expr_or) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9358) + p.SetState(9353) p.A_expr_and() } - p.SetState(9363) + p.SetState(9358) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143034,7 +142887,7 @@ func (p *PostgreSQLParser) A_expr_or() (localctx IA_expr_orContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9359) + p.SetState(9354) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -143042,12 +142895,12 @@ func (p *PostgreSQLParser) A_expr_or() (localctx IA_expr_orContext) { } } { - p.SetState(9360) + p.SetState(9355) p.A_expr_and() } } - p.SetState(9365) + p.SetState(9360) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143201,15 +143054,15 @@ 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, 1178, PostgreSQLParserRULE_a_expr_and) + p.EnterRule(localctx, 1176, PostgreSQLParserRULE_a_expr_and) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9366) + p.SetState(9361) p.A_expr_between() } - p.SetState(9371) + p.SetState(9366) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143221,7 +143074,7 @@ func (p *PostgreSQLParser) A_expr_and() (localctx IA_expr_andContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9367) + p.SetState(9362) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -143229,12 +143082,12 @@ func (p *PostgreSQLParser) A_expr_and() (localctx IA_expr_andContext) { } } { - p.SetState(9368) + p.SetState(9363) p.A_expr_between() } } - p.SetState(9373) + p.SetState(9368) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143398,19 +143251,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, 1180, PostgreSQLParserRULE_a_expr_between) + p.EnterRule(localctx, 1178, PostgreSQLParserRULE_a_expr_between) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9374) + p.SetState(9369) p.A_expr_in() } - p.SetState(9386) + p.SetState(9381) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 878, p.GetParserRuleContext()) == 1 { - p.SetState(9376) + p.SetState(9371) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143419,7 +143272,7 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9375) + p.SetState(9370) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -143429,14 +143282,14 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { } { - p.SetState(9378) + p.SetState(9373) p.Match(PostgreSQLParserBETWEEN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9380) + p.SetState(9375) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143445,7 +143298,7 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { if _la == PostgreSQLParserSYMMETRIC { { - p.SetState(9379) + p.SetState(9374) p.Match(PostgreSQLParserSYMMETRIC) if p.HasError() { // Recognition error - abort rule @@ -143455,11 +143308,11 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { } { - p.SetState(9382) + p.SetState(9377) p.A_expr_in() } { - p.SetState(9383) + p.SetState(9378) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -143467,7 +143320,7 @@ func (p *PostgreSQLParser) A_expr_between() (localctx IA_expr_betweenContext) { } } { - p.SetState(9384) + p.SetState(9379) p.A_expr_in() } @@ -143609,19 +143462,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, 1182, PostgreSQLParserRULE_a_expr_in) + p.EnterRule(localctx, 1180, PostgreSQLParserRULE_a_expr_in) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9388) + p.SetState(9383) p.A_expr_unary_not() } - p.SetState(9394) + p.SetState(9389) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 880, p.GetParserRuleContext()) == 1 { - p.SetState(9390) + p.SetState(9385) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143630,7 +143483,7 @@ func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9389) + p.SetState(9384) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -143640,7 +143493,7 @@ func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { } { - p.SetState(9392) + p.SetState(9387) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -143648,7 +143501,7 @@ func (p *PostgreSQLParser) A_expr_in() (localctx IA_expr_inContext) { } } { - p.SetState(9393) + p.SetState(9388) p.In_expr() } @@ -143768,11 +143621,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, 1184, PostgreSQLParserRULE_a_expr_unary_not) + p.EnterRule(localctx, 1182, PostgreSQLParserRULE_a_expr_unary_not) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(9397) + p.SetState(9392) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -143781,7 +143634,7 @@ func (p *PostgreSQLParser) A_expr_unary_not() (localctx IA_expr_unary_notContext if _la == PostgreSQLParserNOT { { - p.SetState(9396) + p.SetState(9391) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -143791,7 +143644,7 @@ func (p *PostgreSQLParser) A_expr_unary_not() (localctx IA_expr_unary_notContext } { - p.SetState(9399) + p.SetState(9394) p.A_expr_isnull() } @@ -143912,20 +143765,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, 1186, PostgreSQLParserRULE_a_expr_isnull) + p.EnterRule(localctx, 1184, PostgreSQLParserRULE_a_expr_isnull) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9401) + p.SetState(9396) p.A_expr_is_not() } - p.SetState(9403) + p.SetState(9398) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 882, p.GetParserRuleContext()) == 1 { { - p.SetState(9402) + p.SetState(9397) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserISNULL || _la == PostgreSQLParserNOTNULL) { @@ -144163,27 +144016,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, 1188, PostgreSQLParserRULE_a_expr_is_not) + p.EnterRule(localctx, 1186, PostgreSQLParserRULE_a_expr_is_not) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9405) + p.SetState(9400) p.A_expr_compare() } - p.SetState(9429) + p.SetState(9424) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 886, p.GetParserRuleContext()) == 1 { { - p.SetState(9406) + p.SetState(9401) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9408) + p.SetState(9403) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144192,7 +144045,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9407) + p.SetState(9402) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -144201,7 +144054,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } - p.SetState(9427) + p.SetState(9422) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144210,7 +144063,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserNULL_P: { - p.SetState(9410) + p.SetState(9405) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -144220,7 +144073,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserTRUE_P: { - p.SetState(9411) + p.SetState(9406) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -144230,7 +144083,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserFALSE_P: { - p.SetState(9412) + p.SetState(9407) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -144240,7 +144093,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserUNKNOWN: { - p.SetState(9413) + p.SetState(9408) p.Match(PostgreSQLParserUNKNOWN) if p.HasError() { // Recognition error - abort rule @@ -144250,7 +144103,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserDISTINCT: { - p.SetState(9414) + p.SetState(9409) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -144258,7 +144111,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9415) + p.SetState(9410) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -144266,13 +144119,13 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9416) + p.SetState(9411) p.A_expr() } case PostgreSQLParserOF: { - p.SetState(9417) + p.SetState(9412) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -144280,7 +144133,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9418) + p.SetState(9413) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144288,11 +144141,11 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } } { - p.SetState(9419) + p.SetState(9414) p.Type_list() } { - p.SetState(9420) + p.SetState(9415) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144302,7 +144155,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { case PostgreSQLParserDOCUMENT_P: { - p.SetState(9422) + p.SetState(9417) p.Match(PostgreSQLParserDOCUMENT_P) if p.HasError() { // Recognition error - abort rule @@ -144311,7 +144164,7 @@ func (p *PostgreSQLParser) A_expr_is_not() (localctx IA_expr_is_notContext) { } case PostgreSQLParserNORMALIZED, PostgreSQLParserNFC, PostgreSQLParserNFD, PostgreSQLParserNFKC, PostgreSQLParserNFKD: - p.SetState(9424) + p.SetState(9419) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144320,13 +144173,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(9423) + p.SetState(9418) p.Unicode_normal_form() } } { - p.SetState(9426) + p.SetState(9421) p.Match(PostgreSQLParserNORMALIZED) if p.HasError() { // Recognition error - abort rule @@ -144584,20 +144437,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, 1190, PostgreSQLParserRULE_a_expr_compare) + p.EnterRule(localctx, 1188, PostgreSQLParserRULE_a_expr_compare) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9431) + p.SetState(9426) p.A_expr_like() } - p.SetState(9443) + p.SetState(9438) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 888, p.GetParserRuleContext()) == 1 { { - p.SetState(9432) + p.SetState(9427) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&44237824) != 0) { @@ -144608,7 +144461,7 @@ func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { } } { - p.SetState(9433) + p.SetState(9428) p.A_expr_like() } @@ -144616,14 +144469,14 @@ func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { goto errorExit } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 888, p.GetParserRuleContext()) == 2 { { - p.SetState(9434) + p.SetState(9429) p.Subquery_Op() } { - p.SetState(9435) + p.SetState(9430) p.Sub_type() } - p.SetState(9441) + p.SetState(9436) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144632,13 +144485,13 @@ func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 887, p.GetParserRuleContext()) { case 1: { - p.SetState(9436) + p.SetState(9431) p.Select_with_parens() } case 2: { - p.SetState(9437) + p.SetState(9432) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144646,11 +144499,11 @@ func (p *PostgreSQLParser) A_expr_compare() (localctx IA_expr_compareContext) { } } { - p.SetState(9438) + p.SetState(9433) p.A_expr() } { - p.SetState(9439) + p.SetState(9434) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -144841,19 +144694,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, 1192, PostgreSQLParserRULE_a_expr_like) + p.EnterRule(localctx, 1190, PostgreSQLParserRULE_a_expr_like) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9445) + p.SetState(9440) p.A_expr_qual_op() } - p.SetState(9459) + p.SetState(9454) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 892, p.GetParserRuleContext()) == 1 { - p.SetState(9447) + p.SetState(9442) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144862,7 +144715,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9446) + p.SetState(9441) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -144871,7 +144724,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { } } - p.SetState(9453) + p.SetState(9448) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -144880,7 +144733,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserLIKE: { - p.SetState(9449) + p.SetState(9444) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -144890,7 +144743,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { case PostgreSQLParserILIKE: { - p.SetState(9450) + p.SetState(9445) p.Match(PostgreSQLParserILIKE) if p.HasError() { // Recognition error - abort rule @@ -144900,7 +144753,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { case PostgreSQLParserSIMILAR: { - p.SetState(9451) + p.SetState(9446) p.Match(PostgreSQLParserSIMILAR) if p.HasError() { // Recognition error - abort rule @@ -144908,7 +144761,7 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { } } { - p.SetState(9452) + p.SetState(9447) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -144921,15 +144774,15 @@ func (p *PostgreSQLParser) A_expr_like() (localctx IA_expr_likeContext) { goto errorExit } { - p.SetState(9455) + p.SetState(9450) p.A_expr_qual_op() } - p.SetState(9457) + p.SetState(9452) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 891, p.GetParserRuleContext()) == 1 { { - p.SetState(9456) + p.SetState(9451) p.Opt_escape() } @@ -145117,15 +144970,15 @@ 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, 1194, PostgreSQLParserRULE_a_expr_qual_op) + p.EnterRule(localctx, 1192, PostgreSQLParserRULE_a_expr_qual_op) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9461) + p.SetState(9456) p.A_expr_unary_qualop() } - p.SetState(9467) + p.SetState(9462) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145137,16 +144990,16 @@ func (p *PostgreSQLParser) A_expr_qual_op() (localctx IA_expr_qual_opContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9462) + p.SetState(9457) p.Qual_op() } { - p.SetState(9463) + p.SetState(9458) p.A_expr_unary_qualop() } } - p.SetState(9469) + p.SetState(9464) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145281,14 +145134,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, 1196, PostgreSQLParserRULE_a_expr_unary_qualop) + p.EnterRule(localctx, 1194, PostgreSQLParserRULE_a_expr_unary_qualop) p.EnterOuterAlt(localctx, 1) - p.SetState(9471) + p.SetState(9466) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 894, p.GetParserRuleContext()) == 1 { { - p.SetState(9470) + p.SetState(9465) p.Qual_op() } @@ -145296,7 +145149,7 @@ func (p *PostgreSQLParser) A_expr_unary_qualop() (localctx IA_expr_unary_qualopC goto errorExit } { - p.SetState(9473) + p.SetState(9468) p.A_expr_add() } @@ -145453,17 +145306,17 @@ 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, 1198, PostgreSQLParserRULE_a_expr_add) + p.EnterRule(localctx, 1196, PostgreSQLParserRULE_a_expr_add) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9475) + p.SetState(9470) p.A_expr_mul() } - p.SetState(9480) + p.SetState(9475) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145475,7 +145328,7 @@ func (p *PostgreSQLParser) A_expr_add() (localctx IA_expr_addContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9476) + p.SetState(9471) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -145486,12 +145339,12 @@ func (p *PostgreSQLParser) A_expr_add() (localctx IA_expr_addContext) { } } { - p.SetState(9477) + p.SetState(9472) p.A_expr_mul() } } - p.SetState(9482) + p.SetState(9477) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145665,17 +145518,17 @@ 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, 1200, PostgreSQLParserRULE_a_expr_mul) + p.EnterRule(localctx, 1198, PostgreSQLParserRULE_a_expr_mul) var _la int var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(9483) + p.SetState(9478) p.A_expr_caret() } - p.SetState(9488) + p.SetState(9483) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145687,7 +145540,7 @@ func (p *PostgreSQLParser) A_expr_mul() (localctx IA_expr_mulContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(9484) + p.SetState(9479) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&134234624) != 0) { @@ -145698,12 +145551,12 @@ func (p *PostgreSQLParser) A_expr_mul() (localctx IA_expr_mulContext) { } } { - p.SetState(9485) + p.SetState(9480) p.A_expr_caret() } } - p.SetState(9490) + p.SetState(9485) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -145843,18 +145696,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, 1202, PostgreSQLParserRULE_a_expr_caret) + p.EnterRule(localctx, 1200, PostgreSQLParserRULE_a_expr_caret) p.EnterOuterAlt(localctx, 1) { - p.SetState(9491) + p.SetState(9486) p.A_expr_unary_sign() } - p.SetState(9494) + p.SetState(9489) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 897, p.GetParserRuleContext()) == 1 { { - p.SetState(9492) + p.SetState(9487) p.Match(PostgreSQLParserCARET) if p.HasError() { // Recognition error - abort rule @@ -145862,7 +145715,7 @@ func (p *PostgreSQLParser) A_expr_caret() (localctx IA_expr_caretContext) { } } { - p.SetState(9493) + p.SetState(9488) p.A_expr() } @@ -145987,11 +145840,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, 1204, PostgreSQLParserRULE_a_expr_unary_sign) + p.EnterRule(localctx, 1202, PostgreSQLParserRULE_a_expr_unary_sign) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(9497) + p.SetState(9492) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146000,7 +145853,7 @@ func (p *PostgreSQLParser) A_expr_unary_sign() (localctx IA_expr_unary_signConte if _la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS { { - p.SetState(9496) + p.SetState(9491) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -146013,7 +145866,7 @@ func (p *PostgreSQLParser) A_expr_unary_sign() (localctx IA_expr_unary_signConte } { - p.SetState(9499) + p.SetState(9494) p.A_expr_at_time_zone() } @@ -146156,18 +146009,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, 1206, PostgreSQLParserRULE_a_expr_at_time_zone) + p.EnterRule(localctx, 1204, PostgreSQLParserRULE_a_expr_at_time_zone) p.EnterOuterAlt(localctx, 1) { - p.SetState(9501) + p.SetState(9496) p.A_expr_collate() } - p.SetState(9506) + p.SetState(9501) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 899, p.GetParserRuleContext()) == 1 { { - p.SetState(9502) + p.SetState(9497) p.Match(PostgreSQLParserAT) if p.HasError() { // Recognition error - abort rule @@ -146175,7 +146028,7 @@ func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneC } } { - p.SetState(9503) + p.SetState(9498) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -146183,7 +146036,7 @@ func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneC } } { - p.SetState(9504) + p.SetState(9499) p.Match(PostgreSQLParserZONE) if p.HasError() { // Recognition error - abort rule @@ -146191,7 +146044,7 @@ func (p *PostgreSQLParser) A_expr_at_time_zone() (localctx IA_expr_at_time_zoneC } } { - p.SetState(9505) + p.SetState(9500) p.A_expr() } @@ -146328,18 +146181,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, 1208, PostgreSQLParserRULE_a_expr_collate) + p.EnterRule(localctx, 1206, PostgreSQLParserRULE_a_expr_collate) p.EnterOuterAlt(localctx, 1) { - p.SetState(9508) + p.SetState(9503) p.A_expr_typecast() } - p.SetState(9511) + p.SetState(9506) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 900, p.GetParserRuleContext()) == 1 { { - p.SetState(9509) + p.SetState(9504) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -146347,7 +146200,7 @@ func (p *PostgreSQLParser) A_expr_collate() (localctx IA_expr_collateContext) { } } { - p.SetState(9510) + p.SetState(9505) p.Any_name() } @@ -146515,15 +146368,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, 1210, PostgreSQLParserRULE_a_expr_typecast) + p.EnterRule(localctx, 1208, PostgreSQLParserRULE_a_expr_typecast) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9513) + p.SetState(9508) p.C_expr() } - p.SetState(9518) + p.SetState(9513) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146532,7 +146385,7 @@ func (p *PostgreSQLParser) A_expr_typecast() (localctx IA_expr_typecastContext) for _la == PostgreSQLParserTYPECAST { { - p.SetState(9514) + p.SetState(9509) p.Match(PostgreSQLParserTYPECAST) if p.HasError() { // Recognition error - abort rule @@ -146540,11 +146393,11 @@ func (p *PostgreSQLParser) A_expr_typecast() (localctx IA_expr_typecastContext) } } { - p.SetState(9515) + p.SetState(9510) p.Typename() } - p.SetState(9520) + p.SetState(9515) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146867,14 +146720,14 @@ 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 := 1212 - p.EnterRecursionRule(localctx, 1212, PostgreSQLParserRULE_b_expr, _p) + _startState := 1210 + p.EnterRecursionRule(localctx, 1210, PostgreSQLParserRULE_b_expr, _p) var _la int var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(9528) + p.SetState(9523) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146883,13 +146736,13 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 902, p.GetParserRuleContext()) { case 1: { - p.SetState(9522) + p.SetState(9517) p.C_expr() } case 2: { - p.SetState(9523) + p.SetState(9518) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -146900,17 +146753,17 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9524) + p.SetState(9519) p.b_expr(9) } case 3: { - p.SetState(9525) + p.SetState(9520) p.Qual_op() } { - p.SetState(9526) + p.SetState(9521) p.b_expr(3) } @@ -146918,7 +146771,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { goto errorExit } p.GetParserRuleContext().SetStop(p.GetTokenStream().LT(-1)) - p.SetState(9569) + p.SetState(9564) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146933,7 +146786,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { p.TriggerExitRuleEvent() } _prevctx = localctx - p.SetState(9567) + p.SetState(9562) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -146943,14 +146796,14 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { case 1: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9530) + p.SetState(9525) if !(p.Precpred(p.GetParserRuleContext(), 8)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 8)", "")) goto errorExit } { - p.SetState(9531) + p.SetState(9526) p.Match(PostgreSQLParserCARET) if p.HasError() { // Recognition error - abort rule @@ -146958,21 +146811,21 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9532) + p.SetState(9527) p.b_expr(9) } case 2: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9533) + p.SetState(9528) if !(p.Precpred(p.GetParserRuleContext(), 7)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 7)", "")) goto errorExit } { - p.SetState(9534) + p.SetState(9529) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&134234624) != 0) { @@ -146983,21 +146836,21 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9535) + p.SetState(9530) p.b_expr(8) } case 3: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9536) + p.SetState(9531) if !(p.Precpred(p.GetParserRuleContext(), 6)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 6)", "")) goto errorExit } { - p.SetState(9537) + p.SetState(9532) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserPLUS || _la == PostgreSQLParserMINUS) { @@ -147008,39 +146861,39 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9538) + p.SetState(9533) p.b_expr(7) } case 4: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9539) + p.SetState(9534) if !(p.Precpred(p.GetParserRuleContext(), 5)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 5)", "")) goto errorExit } { - p.SetState(9540) + p.SetState(9535) p.Qual_op() } { - p.SetState(9541) + p.SetState(9536) p.b_expr(6) } case 5: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9543) + p.SetState(9538) if !(p.Precpred(p.GetParserRuleContext(), 4)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 4)", "")) goto errorExit } { - p.SetState(9544) + p.SetState(9539) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&44237824) != 0) { @@ -147051,21 +146904,21 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9545) + p.SetState(9540) p.b_expr(5) } case 6: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9546) + p.SetState(9541) if !(p.Precpred(p.GetParserRuleContext(), 10)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 10)", "")) goto errorExit } { - p.SetState(9547) + p.SetState(9542) p.Match(PostgreSQLParserTYPECAST) if p.HasError() { // Recognition error - abort rule @@ -147073,42 +146926,42 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9548) + p.SetState(9543) p.Typename() } case 7: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9549) + p.SetState(9544) if !(p.Precpred(p.GetParserRuleContext(), 2)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 2)", "")) goto errorExit } { - p.SetState(9550) + p.SetState(9545) p.Qual_op() } case 8: localctx = NewB_exprContext(p, _parentctx, _parentState) p.PushNewRecursionContext(localctx, _startState, PostgreSQLParserRULE_b_expr) - p.SetState(9551) + p.SetState(9546) if !(p.Precpred(p.GetParserRuleContext(), 1)) { p.SetError(antlr.NewFailedPredicateException(p, "p.Precpred(p.GetParserRuleContext(), 1)", "")) goto errorExit } { - p.SetState(9552) + p.SetState(9547) p.Match(PostgreSQLParserIS) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9554) + p.SetState(9549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -147117,7 +146970,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { if _la == PostgreSQLParserNOT { { - p.SetState(9553) + p.SetState(9548) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -147126,7 +146979,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } - p.SetState(9565) + p.SetState(9560) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -147135,7 +146988,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserDISTINCT: { - p.SetState(9556) + p.SetState(9551) p.Match(PostgreSQLParserDISTINCT) if p.HasError() { // Recognition error - abort rule @@ -147143,7 +146996,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9557) + p.SetState(9552) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -147151,13 +147004,13 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9558) + p.SetState(9553) p.b_expr(0) } case PostgreSQLParserOF: { - p.SetState(9559) + p.SetState(9554) p.Match(PostgreSQLParserOF) if p.HasError() { // Recognition error - abort rule @@ -147165,7 +147018,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9560) + p.SetState(9555) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147173,11 +147026,11 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } { - p.SetState(9561) + p.SetState(9556) p.Type_list() } { - p.SetState(9562) + p.SetState(9557) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147187,7 +147040,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { case PostgreSQLParserDOCUMENT_P: { - p.SetState(9564) + p.SetState(9559) p.Match(PostgreSQLParserDOCUMENT_P) if p.HasError() { // Recognition error - abort rule @@ -147205,7 +147058,7 @@ func (p *PostgreSQLParser) b_expr(_p int) (localctx IB_exprContext) { } } - p.SetState(9571) + p.SetState(9566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -147707,8 +147560,8 @@ 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, 1214, PostgreSQLParserRULE_c_expr) - p.SetState(9608) + p.EnterRule(localctx, 1212, PostgreSQLParserRULE_c_expr) + p.SetState(9603) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -147719,7 +147572,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_existsContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(9572) + p.SetState(9567) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -147727,7 +147580,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9573) + p.SetState(9568) p.Select_with_parens() } @@ -147735,14 +147588,14 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(9574) + p.SetState(9569) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9577) + p.SetState(9572) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -147751,13 +147604,13 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(9575) + p.SetState(9570) p.Select_with_parens() } case PostgreSQLParserOPEN_BRACKET: { - p.SetState(9576) + p.SetState(9571) p.Array_expr() } @@ -147770,7 +147623,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 3) { - p.SetState(9579) + p.SetState(9574) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -147778,7 +147631,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9580) + p.SetState(9575) p.Opt_indirection() } @@ -147786,7 +147639,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 4) { - p.SetState(9581) + p.SetState(9576) p.Match(PostgreSQLParserGROUPING) if p.HasError() { // Recognition error - abort rule @@ -147794,7 +147647,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9582) + p.SetState(9577) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147802,11 +147655,11 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9583) + p.SetState(9578) p.Expr_list() } { - p.SetState(9584) + p.SetState(9579) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147818,7 +147671,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 5) { - p.SetState(9586) + p.SetState(9581) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule @@ -147826,7 +147679,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9587) + p.SetState(9582) p.Select_with_parens() } @@ -147834,7 +147687,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 6) { - p.SetState(9588) + p.SetState(9583) p.Columnref() } @@ -147842,7 +147695,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 7) { - p.SetState(9589) + p.SetState(9584) p.Aexprconst() } @@ -147850,7 +147703,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 8) { - p.SetState(9590) + p.SetState(9585) p.Plsqlvariablename() } @@ -147858,7 +147711,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 9) { - p.SetState(9591) + p.SetState(9586) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147866,14 +147719,14 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9592) + p.SetState(9587) var _x = p.A_expr() localctx.(*C_expr_exprContext).a_expr_in_parens = _x } { - p.SetState(9593) + p.SetState(9588) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -147881,7 +147734,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9594) + p.SetState(9589) p.Opt_indirection() } @@ -147889,7 +147742,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_caseContext(p, localctx) p.EnterOuterAlt(localctx, 10) { - p.SetState(9596) + p.SetState(9591) p.Case_expr() } @@ -147897,7 +147750,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 11) { - p.SetState(9597) + p.SetState(9592) p.Func_expr() } @@ -147905,15 +147758,15 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 12) { - p.SetState(9598) + p.SetState(9593) p.Select_with_parens() } - p.SetState(9600) + p.SetState(9595) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 908, p.GetParserRuleContext()) == 1 { { - p.SetState(9599) + p.SetState(9594) p.Indirection() } @@ -147925,7 +147778,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 13) { - p.SetState(9602) + p.SetState(9597) p.Explicit_row() } @@ -147933,7 +147786,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 14) { - p.SetState(9603) + p.SetState(9598) p.Implicit_row() } @@ -147941,11 +147794,11 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { localctx = NewC_expr_exprContext(p, localctx) p.EnterOuterAlt(localctx, 15) { - p.SetState(9604) + p.SetState(9599) p.Row() } { - p.SetState(9605) + p.SetState(9600) p.Match(PostgreSQLParserOVERLAPS) if p.HasError() { // Recognition error - abort rule @@ -147953,7 +147806,7 @@ func (p *PostgreSQLParser) C_expr() (localctx IC_exprContext) { } } { - p.SetState(9606) + p.SetState(9601) p.Row() } @@ -148056,10 +147909,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, 1216, PostgreSQLParserRULE_plsqlvariablename) + p.EnterRule(localctx, 1214, PostgreSQLParserRULE_plsqlvariablename) p.EnterOuterAlt(localctx, 1) { - p.SetState(9610) + p.SetState(9605) p.Match(PostgreSQLParserPLSQLVARIABLENAME) if p.HasError() { // Recognition error - abort rule @@ -148260,23 +148113,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, 1218, PostgreSQLParserRULE_func_application) + p.EnterRule(localctx, 1216, PostgreSQLParserRULE_func_application) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9612) + p.SetState(9607) p.Func_name() } { - p.SetState(9613) + p.SetState(9608) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9635) + p.SetState(9630) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148285,10 +148138,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(9614) + p.SetState(9609) p.Func_arg_list() } - p.SetState(9618) + p.SetState(9613) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148297,7 +148150,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserCOMMA { { - p.SetState(9615) + p.SetState(9610) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -148305,7 +148158,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9616) + p.SetState(9611) p.Match(PostgreSQLParserVARIADIC) if p.HasError() { // Recognition error - abort rule @@ -148313,12 +148166,12 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9617) + p.SetState(9612) p.Func_arg_expr() } } - p.SetState(9621) + p.SetState(9616) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148327,7 +148180,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserORDER { { - p.SetState(9620) + p.SetState(9615) p.Opt_sort_clause() } @@ -148335,7 +148188,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext case PostgreSQLParserVARIADIC: { - p.SetState(9623) + p.SetState(9618) p.Match(PostgreSQLParserVARIADIC) if p.HasError() { // Recognition error - abort rule @@ -148343,10 +148196,10 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9624) + p.SetState(9619) p.Func_arg_expr() } - p.SetState(9626) + p.SetState(9621) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148355,7 +148208,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserORDER { { - p.SetState(9625) + p.SetState(9620) p.Opt_sort_clause() } @@ -148363,7 +148216,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext case PostgreSQLParserALL, PostgreSQLParserDISTINCT: { - p.SetState(9628) + p.SetState(9623) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserALL || _la == PostgreSQLParserDISTINCT) { @@ -148374,10 +148227,10 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext } } { - p.SetState(9629) + p.SetState(9624) p.Func_arg_list() } - p.SetState(9631) + p.SetState(9626) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148386,7 +148239,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext if _la == PostgreSQLParserORDER { { - p.SetState(9630) + p.SetState(9625) p.Opt_sort_clause() } @@ -148394,7 +148247,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext case PostgreSQLParserSTAR: { - p.SetState(9633) + p.SetState(9628) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -148409,7 +148262,7 @@ func (p *PostgreSQLParser) Func_application() (localctx IFunc_applicationContext goto errorExit } { - p.SetState(9637) + p.SetState(9632) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -148609,8 +148462,8 @@ 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, 1220, PostgreSQLParserRULE_func_expr) - p.SetState(9657) + p.EnterRule(localctx, 1218, PostgreSQLParserRULE_func_expr) + p.SetState(9652) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148620,39 +148473,39 @@ func (p *PostgreSQLParser) Func_expr() (localctx IFunc_exprContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9639) + p.SetState(9634) p.Func_application() } - p.SetState(9641) + p.SetState(9636) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 915, p.GetParserRuleContext()) == 1 { { - p.SetState(9640) + p.SetState(9635) p.Within_group_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9644) + p.SetState(9639) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 916, p.GetParserRuleContext()) == 1 { { - p.SetState(9643) + p.SetState(9638) p.Filter_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9647) + p.SetState(9642) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 917, p.GetParserRuleContext()) == 1 { { - p.SetState(9646) + p.SetState(9641) p.Over_clause() } @@ -148663,27 +148516,27 @@ func (p *PostgreSQLParser) Func_expr() (localctx IFunc_exprContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9649) + p.SetState(9644) p.Json_aggregate_func() } - p.SetState(9651) + p.SetState(9646) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 918, p.GetParserRuleContext()) == 1 { { - p.SetState(9650) + p.SetState(9645) p.Filter_clause() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(9654) + p.SetState(9649) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 919, p.GetParserRuleContext()) == 1 { { - p.SetState(9653) + p.SetState(9648) p.Over_clause() } @@ -148694,7 +148547,7 @@ func (p *PostgreSQLParser) Func_expr() (localctx IFunc_exprContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9656) + p.SetState(9651) p.Func_expr_common_subexpr() } @@ -148843,8 +148696,8 @@ 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, 1222, PostgreSQLParserRULE_func_expr_windowless) - p.SetState(9662) + p.EnterRule(localctx, 1220, PostgreSQLParserRULE_func_expr_windowless) + p.SetState(9657) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -148854,21 +148707,21 @@ func (p *PostgreSQLParser) Func_expr_windowless() (localctx IFunc_expr_windowles case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9659) + p.SetState(9654) p.Func_application() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9660) + p.SetState(9655) p.Func_expr_common_subexpr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9661) + p.SetState(9656) p.Json_aggregate_func() } @@ -149105,10 +148958,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, 1224, PostgreSQLParserRULE_json_aggregate_func) + p.EnterRule(localctx, 1222, PostgreSQLParserRULE_json_aggregate_func) var _la int - p.SetState(9692) + p.SetState(9687) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149118,7 +148971,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC case PostgreSQLParserJSON_OBJECTAGG: p.EnterOuterAlt(localctx, 1) { - p.SetState(9664) + p.SetState(9659) p.Match(PostgreSQLParserJSON_OBJECTAGG) if p.HasError() { // Recognition error - abort rule @@ -149126,7 +148979,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9665) + p.SetState(9660) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149134,10 +148987,10 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9666) + p.SetState(9661) p.Json_name_and_value() } - p.SetState(9668) + p.SetState(9663) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149146,12 +148999,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9667) + p.SetState(9662) p.Json_object_constructor_null_clause() } } - p.SetState(9671) + p.SetState(9666) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149160,12 +149013,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(9670) + p.SetState(9665) p.Json_key_uniqueness_constraint() } } - p.SetState(9674) + p.SetState(9669) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149174,13 +149027,13 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserRETURNING { { - p.SetState(9673) + p.SetState(9668) p.Json_output_clause() } } { - p.SetState(9676) + p.SetState(9671) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149191,7 +149044,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC case PostgreSQLParserJSON_ARRAYAGG: p.EnterOuterAlt(localctx, 2) { - p.SetState(9678) + p.SetState(9673) p.Match(PostgreSQLParserJSON_ARRAYAGG) if p.HasError() { // Recognition error - abort rule @@ -149199,7 +149052,7 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9679) + p.SetState(9674) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149207,10 +149060,10 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC } } { - p.SetState(9680) + p.SetState(9675) p.Json_value_expr() } - p.SetState(9682) + p.SetState(9677) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149219,12 +149072,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserORDER { { - p.SetState(9681) + p.SetState(9676) p.Json_array_aggregate_order_by_clause() } } - p.SetState(9685) + p.SetState(9680) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149233,12 +149086,12 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9684) + p.SetState(9679) p.Json_array_constructor_null_clause() } } - p.SetState(9688) + p.SetState(9683) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149247,13 +149100,13 @@ func (p *PostgreSQLParser) Json_aggregate_func() (localctx IJson_aggregate_funcC if _la == PostgreSQLParserRETURNING { { - p.SetState(9687) + p.SetState(9682) p.Json_output_clause() } } { - p.SetState(9690) + p.SetState(9685) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -149395,12 +149248,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, 1226, PostgreSQLParserRULE_json_output_clause) + p.EnterRule(localctx, 1224, PostgreSQLParserRULE_json_output_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(9694) + p.SetState(9689) p.Match(PostgreSQLParserRETURNING) if p.HasError() { // Recognition error - abort rule @@ -149408,10 +149261,10 @@ func (p *PostgreSQLParser) Json_output_clause() (localctx IJson_output_clauseCon } } { - p.SetState(9695) + p.SetState(9690) p.Typename() } - p.SetState(9697) + p.SetState(9692) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -149420,7 +149273,7 @@ func (p *PostgreSQLParser) Json_output_clause() (localctx IJson_output_clauseCon if _la == PostgreSQLParserFORMAT { { - p.SetState(9696) + p.SetState(9691) p.Json_format_clause() } @@ -149543,10 +149396,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, 1228, PostgreSQLParserRULE_json_array_aggregate_order_by_clause) + p.EnterRule(localctx, 1226, PostgreSQLParserRULE_json_array_aggregate_order_by_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(9699) + p.SetState(9694) p.Match(PostgreSQLParserORDER) if p.HasError() { // Recognition error - abort rule @@ -149554,7 +149407,7 @@ func (p *PostgreSQLParser) Json_array_aggregate_order_by_clause() (localctx IJso } } { - p.SetState(9700) + p.SetState(9695) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -149562,7 +149415,7 @@ func (p *PostgreSQLParser) Json_array_aggregate_order_by_clause() (localctx IJso } } { - p.SetState(9701) + p.SetState(9696) p.Sortby_list() } @@ -150532,10 +150385,10 @@ 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, 1230, PostgreSQLParserRULE_func_expr_common_subexpr) + p.EnterRule(localctx, 1228, PostgreSQLParserRULE_func_expr_common_subexpr) var _la int - p.SetState(10012) + p.SetState(10007) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150545,7 +150398,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(9703) + p.SetState(9698) p.Match(PostgreSQLParserCOLLATION) if p.HasError() { // Recognition error - abort rule @@ -150553,7 +150406,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9704) + p.SetState(9699) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -150561,7 +150414,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9705) + p.SetState(9700) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150569,11 +150422,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9706) + p.SetState(9701) p.A_expr() } { - p.SetState(9707) + p.SetState(9702) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150584,7 +150437,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(9709) + p.SetState(9704) p.Match(PostgreSQLParserCURRENT_DATE) if p.HasError() { // Recognition error - abort rule @@ -150595,19 +150448,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(9710) + p.SetState(9705) p.Match(PostgreSQLParserCURRENT_TIME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9715) + p.SetState(9710) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 930, p.GetParserRuleContext()) == 1 { { - p.SetState(9711) + p.SetState(9706) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150615,11 +150468,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9712) + p.SetState(9707) p.Iconst() } { - p.SetState(9713) + p.SetState(9708) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150634,19 +150487,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(9717) + p.SetState(9712) p.Match(PostgreSQLParserCURRENT_TIMESTAMP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9722) + p.SetState(9717) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 931, p.GetParserRuleContext()) == 1 { { - p.SetState(9718) + p.SetState(9713) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150654,11 +150507,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9719) + p.SetState(9714) p.Iconst() } { - p.SetState(9720) + p.SetState(9715) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150673,19 +150526,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(9724) + p.SetState(9719) p.Match(PostgreSQLParserLOCALTIME) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9729) + p.SetState(9724) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 932, p.GetParserRuleContext()) == 1 { { - p.SetState(9725) + p.SetState(9720) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150693,11 +150546,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9726) + p.SetState(9721) p.Iconst() } { - p.SetState(9727) + p.SetState(9722) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150712,19 +150565,19 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(9731) + p.SetState(9726) p.Match(PostgreSQLParserLOCALTIMESTAMP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9736) + p.SetState(9731) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 933, p.GetParserRuleContext()) == 1 { { - p.SetState(9732) + p.SetState(9727) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150732,11 +150585,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9733) + p.SetState(9728) p.Iconst() } { - p.SetState(9734) + p.SetState(9729) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150751,7 +150604,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(9738) + p.SetState(9733) p.Match(PostgreSQLParserCURRENT_ROLE) if p.HasError() { // Recognition error - abort rule @@ -150762,7 +150615,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(9739) + p.SetState(9734) p.Match(PostgreSQLParserCURRENT_USER) if p.HasError() { // Recognition error - abort rule @@ -150773,7 +150626,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(9740) + p.SetState(9735) p.Match(PostgreSQLParserSESSION_USER) if p.HasError() { // Recognition error - abort rule @@ -150784,7 +150637,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(9741) + p.SetState(9736) p.Match(PostgreSQLParserUSER) if p.HasError() { // Recognition error - abort rule @@ -150795,7 +150648,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(9742) + p.SetState(9737) p.Match(PostgreSQLParserCURRENT_CATALOG) if p.HasError() { // Recognition error - abort rule @@ -150806,7 +150659,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(9743) + p.SetState(9738) p.Match(PostgreSQLParserCURRENT_SCHEMA) if p.HasError() { // Recognition error - abort rule @@ -150817,7 +150670,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(9744) + p.SetState(9739) p.Match(PostgreSQLParserCAST) if p.HasError() { // Recognition error - abort rule @@ -150825,7 +150678,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9745) + p.SetState(9740) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150833,11 +150686,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9746) + p.SetState(9741) p.A_expr() } { - p.SetState(9747) + p.SetState(9742) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -150845,11 +150698,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9748) + p.SetState(9743) p.Typename() } { - p.SetState(9749) + p.SetState(9744) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150860,7 +150713,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(9751) + p.SetState(9746) p.Match(PostgreSQLParserEXTRACT) if p.HasError() { // Recognition error - abort rule @@ -150868,14 +150721,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9752) + p.SetState(9747) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9754) + p.SetState(9749) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150884,13 +150737,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(9753) + p.SetState(9748) p.Extract_list() } } { - p.SetState(9756) + p.SetState(9751) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150901,7 +150754,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(9757) + p.SetState(9752) p.Match(PostgreSQLParserNORMALIZE) if p.HasError() { // Recognition error - abort rule @@ -150909,7 +150762,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9758) + p.SetState(9753) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150917,10 +150770,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9759) + p.SetState(9754) p.A_expr() } - p.SetState(9762) + p.SetState(9757) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -150929,7 +150782,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9760) + p.SetState(9755) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -150937,13 +150790,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9761) + p.SetState(9756) p.Unicode_normal_form() } } { - p.SetState(9764) + p.SetState(9759) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150954,7 +150807,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(9766) + p.SetState(9761) p.Match(PostgreSQLParserOVERLAY) if p.HasError() { // Recognition error - abort rule @@ -150962,7 +150815,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9767) + p.SetState(9762) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150970,11 +150823,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9768) + p.SetState(9763) p.Overlay_list() } { - p.SetState(9769) + p.SetState(9764) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -150985,7 +150838,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(9771) + p.SetState(9766) p.Match(PostgreSQLParserPOSITION) if p.HasError() { // Recognition error - abort rule @@ -150993,14 +150846,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9772) + p.SetState(9767) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9774) + p.SetState(9769) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151009,13 +150862,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(9773) + p.SetState(9768) p.Position_list() } } { - p.SetState(9776) + p.SetState(9771) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151026,7 +150879,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(9777) + p.SetState(9772) p.Match(PostgreSQLParserSUBSTRING) if p.HasError() { // Recognition error - abort rule @@ -151034,7 +150887,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9778) + p.SetState(9773) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151042,11 +150895,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9779) + p.SetState(9774) p.Substr_list() } { - p.SetState(9780) + p.SetState(9775) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151057,7 +150910,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(9782) + p.SetState(9777) p.Match(PostgreSQLParserTREAT) if p.HasError() { // Recognition error - abort rule @@ -151065,7 +150918,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9783) + p.SetState(9778) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151073,11 +150926,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9784) + p.SetState(9779) p.A_expr() } { - p.SetState(9785) + p.SetState(9780) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -151085,11 +150938,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9786) + p.SetState(9781) p.Typename() } { - p.SetState(9787) + p.SetState(9782) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151100,7 +150953,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(9789) + p.SetState(9784) p.Match(PostgreSQLParserTRIM) if p.HasError() { // Recognition error - abort rule @@ -151108,14 +150961,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9790) + p.SetState(9785) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9792) + p.SetState(9787) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151124,7 +150977,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(9791) + p.SetState(9786) _la = p.GetTokenStream().LA(1) if !((int64((_la-39)) & ^0x3f) == 0 && ((int64(1)<<(_la-39))&72057611217797121) != 0) { @@ -151137,11 +150990,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } { - p.SetState(9794) + p.SetState(9789) p.Trim_list() } { - p.SetState(9795) + p.SetState(9790) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151152,7 +151005,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(9797) + p.SetState(9792) p.Match(PostgreSQLParserNULLIF) if p.HasError() { // Recognition error - abort rule @@ -151160,7 +151013,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9798) + p.SetState(9793) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151168,11 +151021,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9799) + p.SetState(9794) p.A_expr() } { - p.SetState(9800) + p.SetState(9795) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -151180,11 +151033,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9801) + p.SetState(9796) p.A_expr() } { - p.SetState(9802) + p.SetState(9797) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151195,7 +151048,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(9804) + p.SetState(9799) p.Match(PostgreSQLParserCOALESCE) if p.HasError() { // Recognition error - abort rule @@ -151203,7 +151056,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9805) + p.SetState(9800) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151211,11 +151064,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9806) + p.SetState(9801) p.Expr_list() } { - p.SetState(9807) + p.SetState(9802) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151226,7 +151079,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(9809) + p.SetState(9804) p.Match(PostgreSQLParserGREATEST) if p.HasError() { // Recognition error - abort rule @@ -151234,7 +151087,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9810) + p.SetState(9805) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151242,11 +151095,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9811) + p.SetState(9806) p.Expr_list() } { - p.SetState(9812) + p.SetState(9807) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151257,7 +151110,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(9814) + p.SetState(9809) p.Match(PostgreSQLParserLEAST) if p.HasError() { // Recognition error - abort rule @@ -151265,7 +151118,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9815) + p.SetState(9810) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151273,11 +151126,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9816) + p.SetState(9811) p.Expr_list() } { - p.SetState(9817) + p.SetState(9812) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151288,7 +151141,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(9819) + p.SetState(9814) p.Match(PostgreSQLParserXMLCONCAT) if p.HasError() { // Recognition error - abort rule @@ -151296,7 +151149,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9820) + p.SetState(9815) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151304,11 +151157,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9821) + p.SetState(9816) p.Expr_list() } { - p.SetState(9822) + p.SetState(9817) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151319,7 +151172,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(9824) + p.SetState(9819) p.Match(PostgreSQLParserXMLELEMENT) if p.HasError() { // Recognition error - abort rule @@ -151327,7 +151180,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9825) + p.SetState(9820) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151335,7 +151188,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9826) + p.SetState(9821) p.Match(PostgreSQLParserNAME_P) if p.HasError() { // Recognition error - abort rule @@ -151343,10 +151196,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9827) + p.SetState(9822) p.Collabel() } - p.SetState(9833) + p.SetState(9828) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151355,14 +151208,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9828) + p.SetState(9823) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9831) + p.SetState(9826) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151371,13 +151224,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 938, p.GetParserRuleContext()) { case 1: { - p.SetState(9829) + p.SetState(9824) p.Xml_attributes() } case 2: { - p.SetState(9830) + p.SetState(9825) p.Expr_list() } @@ -151387,7 +151240,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } { - p.SetState(9835) + p.SetState(9830) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151398,7 +151251,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(9837) + p.SetState(9832) p.Match(PostgreSQLParserXMLEXISTS) if p.HasError() { // Recognition error - abort rule @@ -151406,7 +151259,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9838) + p.SetState(9833) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151414,15 +151267,15 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9839) + p.SetState(9834) p.C_expr() } { - p.SetState(9840) + p.SetState(9835) p.Xmlexists_argument() } { - p.SetState(9841) + p.SetState(9836) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151433,7 +151286,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(9843) + p.SetState(9838) p.Match(PostgreSQLParserXMLFOREST) if p.HasError() { // Recognition error - abort rule @@ -151441,7 +151294,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9844) + p.SetState(9839) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151449,11 +151302,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9845) + p.SetState(9840) p.Xml_attribute_list() } { - p.SetState(9846) + p.SetState(9841) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151464,7 +151317,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(9848) + p.SetState(9843) p.Match(PostgreSQLParserXMLPARSE) if p.HasError() { // Recognition error - abort rule @@ -151472,7 +151325,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9849) + p.SetState(9844) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151480,14 +151333,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9850) + p.SetState(9845) p.Document_or_content() } { - p.SetState(9851) + p.SetState(9846) p.A_expr() } - p.SetState(9853) + p.SetState(9848) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151496,13 +151349,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPRESERVE || _la == PostgreSQLParserSTRIP_P { { - p.SetState(9852) + p.SetState(9847) p.Xml_whitespace_option() } } { - p.SetState(9855) + p.SetState(9850) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151513,7 +151366,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(9857) + p.SetState(9852) p.Match(PostgreSQLParserXMLPI) if p.HasError() { // Recognition error - abort rule @@ -151521,7 +151374,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9858) + p.SetState(9853) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151529,7 +151382,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9859) + p.SetState(9854) p.Match(PostgreSQLParserNAME_P) if p.HasError() { // Recognition error - abort rule @@ -151537,10 +151390,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9860) + p.SetState(9855) p.Collabel() } - p.SetState(9863) + p.SetState(9858) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151549,7 +151402,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9861) + p.SetState(9856) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -151557,13 +151410,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9862) + p.SetState(9857) p.A_expr() } } { - p.SetState(9865) + p.SetState(9860) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151574,7 +151427,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(9867) + p.SetState(9862) p.Match(PostgreSQLParserXMLROOT) if p.HasError() { // Recognition error - abort rule @@ -151582,7 +151435,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9868) + p.SetState(9863) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151590,7 +151443,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9869) + p.SetState(9864) p.Match(PostgreSQLParserXML_P) if p.HasError() { // Recognition error - abort rule @@ -151598,11 +151451,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9870) + p.SetState(9865) p.A_expr() } { - p.SetState(9871) + p.SetState(9866) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -151610,10 +151463,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9872) + p.SetState(9867) p.Xml_root_version() } - p.SetState(9874) + p.SetState(9869) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151622,13 +151475,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserCOMMA { { - p.SetState(9873) + p.SetState(9868) p.Opt_xml_root_standalone() } } { - p.SetState(9876) + p.SetState(9871) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151639,7 +151492,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(9878) + p.SetState(9873) p.Match(PostgreSQLParserXMLSERIALIZE) if p.HasError() { // Recognition error - abort rule @@ -151647,7 +151500,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9879) + p.SetState(9874) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151655,15 +151508,15 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9880) + p.SetState(9875) p.Document_or_content() } { - p.SetState(9881) + p.SetState(9876) p.A_expr() } { - p.SetState(9882) + p.SetState(9877) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -151671,11 +151524,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9883) + p.SetState(9878) p.Simpletypename() } { - p.SetState(9884) + p.SetState(9879) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151686,7 +151539,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(9886) + p.SetState(9881) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -151694,7 +151547,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9887) + p.SetState(9882) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151702,11 +151555,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9888) + p.SetState(9883) p.Func_arg_list() } { - p.SetState(9889) + p.SetState(9884) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151717,7 +151570,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(9891) + p.SetState(9886) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -151725,7 +151578,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9892) + p.SetState(9887) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151733,10 +151586,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9893) + p.SetState(9888) p.Json_name_and_value_list() } - p.SetState(9895) + p.SetState(9890) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151745,12 +151598,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9894) + p.SetState(9889) p.Json_object_constructor_null_clause() } } - p.SetState(9898) + p.SetState(9893) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151759,12 +151612,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(9897) + p.SetState(9892) p.Json_key_uniqueness_constraint() } } - p.SetState(9901) + p.SetState(9896) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151773,13 +151626,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9900) + p.SetState(9895) p.Json_returning_clause() } } { - p.SetState(9903) + p.SetState(9898) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151790,7 +151643,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(9905) + p.SetState(9900) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -151798,14 +151651,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9906) + p.SetState(9901) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9908) + p.SetState(9903) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151814,13 +151667,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9907) + p.SetState(9902) p.Json_returning_clause() } } { - p.SetState(9910) + p.SetState(9905) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151831,7 +151684,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(9911) + p.SetState(9906) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -151839,7 +151692,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9912) + p.SetState(9907) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151847,10 +151700,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9913) + p.SetState(9908) p.Json_value_expr_list() } - p.SetState(9915) + p.SetState(9910) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151859,12 +151712,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserNULL_P || _la == PostgreSQLParserABSENT { { - p.SetState(9914) + p.SetState(9909) p.Json_array_constructor_null_clause() } } - p.SetState(9918) + p.SetState(9913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151873,13 +151726,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9917) + p.SetState(9912) p.Json_returning_clause() } } { - p.SetState(9920) + p.SetState(9915) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151890,7 +151743,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(9922) + p.SetState(9917) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -151898,7 +151751,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9923) + p.SetState(9918) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151906,10 +151759,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9924) + p.SetState(9919) p.Select_no_parens() } - p.SetState(9926) + p.SetState(9921) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151918,12 +151771,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserFORMAT { { - p.SetState(9925) + p.SetState(9920) p.Json_format_clause_opt() } } - p.SetState(9929) + p.SetState(9924) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151932,13 +151785,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9928) + p.SetState(9923) p.Json_returning_clause() } } { - p.SetState(9931) + p.SetState(9926) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151949,7 +151802,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(9933) + p.SetState(9928) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -151957,14 +151810,14 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9934) + p.SetState(9929) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(9936) + p.SetState(9931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -151973,13 +151826,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9935) + p.SetState(9930) p.Json_returning_clause() } } { - p.SetState(9938) + p.SetState(9933) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -151990,7 +151843,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(9939) + p.SetState(9934) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -151998,7 +151851,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9940) + p.SetState(9935) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152006,10 +151859,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9941) + p.SetState(9936) p.Json_value_expr() } - p.SetState(9943) + p.SetState(9938) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152018,13 +151871,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserWITH || _la == PostgreSQLParserWITHOUT { { - p.SetState(9942) + p.SetState(9937) p.Json_key_uniqueness_constraint() } } { - p.SetState(9945) + p.SetState(9940) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152035,7 +151888,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(9947) + p.SetState(9942) p.Match(PostgreSQLParserJSON_SCALAR) if p.HasError() { // Recognition error - abort rule @@ -152043,7 +151896,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9948) + p.SetState(9943) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152051,11 +151904,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9949) + p.SetState(9944) p.A_expr() } { - p.SetState(9950) + p.SetState(9945) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152066,7 +151919,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(9952) + p.SetState(9947) p.Match(PostgreSQLParserJSON_SERIALIZE) if p.HasError() { // Recognition error - abort rule @@ -152074,7 +151927,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9953) + p.SetState(9948) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152082,10 +151935,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9954) + p.SetState(9949) p.Json_value_expr() } - p.SetState(9956) + p.SetState(9951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152094,13 +151947,13 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9955) + p.SetState(9950) p.Json_returning_clause() } } { - p.SetState(9958) + p.SetState(9953) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152111,7 +151964,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(9960) + p.SetState(9955) p.Match(PostgreSQLParserMERGE_ACTION) if p.HasError() { // Recognition error - abort rule @@ -152119,7 +151972,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9961) + p.SetState(9956) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152127,7 +151980,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9962) + p.SetState(9957) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152138,7 +151991,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(9963) + p.SetState(9958) p.Match(PostgreSQLParserJSON_QUERY) if p.HasError() { // Recognition error - abort rule @@ -152146,7 +151999,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9964) + p.SetState(9959) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152154,11 +152007,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9965) + p.SetState(9960) p.Json_value_expr() } { - p.SetState(9966) + p.SetState(9961) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -152166,10 +152019,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9967) + p.SetState(9962) p.A_expr() } - p.SetState(9969) + p.SetState(9964) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152178,12 +152031,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPASSING { { - p.SetState(9968) + p.SetState(9963) p.Json_passing_clause() } } - p.SetState(9972) + p.SetState(9967) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152192,16 +152045,16 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(9971) + p.SetState(9966) p.Json_returning_clause() } } { - p.SetState(9974) + p.SetState(9969) p.Json_wrapper_behavior() } - p.SetState(9976) + p.SetState(9971) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152210,12 +152063,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserKEEP || _la == PostgreSQLParserOMIT { { - p.SetState(9975) + p.SetState(9970) p.Json_quotes_clause() } } - p.SetState(9979) + p.SetState(9974) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152224,13 +152077,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(9978) + p.SetState(9973) p.Json_behavior_clause() } } { - p.SetState(9981) + p.SetState(9976) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152241,7 +152094,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(9983) + p.SetState(9978) p.Match(PostgreSQLParserJSON_EXISTS) if p.HasError() { // Recognition error - abort rule @@ -152249,7 +152102,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9984) + p.SetState(9979) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152257,11 +152110,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9985) + p.SetState(9980) p.Json_value_expr() } { - p.SetState(9986) + p.SetState(9981) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -152269,10 +152122,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9987) + p.SetState(9982) p.A_expr() } - p.SetState(9989) + p.SetState(9984) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152281,12 +152134,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPASSING { { - p.SetState(9988) + p.SetState(9983) p.Json_passing_clause() } } - p.SetState(9992) + p.SetState(9987) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152295,13 +152148,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(9991) + p.SetState(9986) p.Json_on_error_clause() } } { - p.SetState(9994) + p.SetState(9989) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152312,7 +152165,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(9996) + p.SetState(9991) p.Match(PostgreSQLParserJSON_VALUE) if p.HasError() { // Recognition error - abort rule @@ -152320,7 +152173,7 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9997) + p.SetState(9992) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152328,11 +152181,11 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(9998) + p.SetState(9993) p.Json_value_expr() } { - p.SetState(9999) + p.SetState(9994) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -152340,10 +152193,10 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo } } { - p.SetState(10000) + p.SetState(9995) p.A_expr() } - p.SetState(10002) + p.SetState(9997) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152352,12 +152205,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserPASSING { { - p.SetState(10001) + p.SetState(9996) p.Json_passing_clause() } } - p.SetState(10005) + p.SetState(10000) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152366,12 +152219,12 @@ func (p *PostgreSQLParser) Func_expr_common_subexpr() (localctx IFunc_expr_commo if _la == PostgreSQLParserRETURNING { { - p.SetState(10004) + p.SetState(9999) p.Json_returning_clause() } } - p.SetState(10008) + p.SetState(10003) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152380,13 +152233,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(10007) + p.SetState(10002) p.Json_behavior_clause() } } { - p.SetState(10010) + p.SetState(10005) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -152515,14 +152368,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, 1232, PostgreSQLParserRULE_json_on_error_clause) + p.EnterRule(localctx, 1230, PostgreSQLParserRULE_json_on_error_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10014) + p.SetState(10009) p.Json_behavior() } { - p.SetState(10015) + p.SetState(10010) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152530,7 +152383,7 @@ func (p *PostgreSQLParser) Json_on_error_clause() (localctx IJson_on_error_claus } } { - p.SetState(10016) + p.SetState(10011) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152691,8 +152544,8 @@ 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, 1234, PostgreSQLParserRULE_json_behavior_clause) - p.SetState(10033) + p.EnterRule(localctx, 1232, PostgreSQLParserRULE_json_behavior_clause) + p.SetState(10028) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152702,11 +152555,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10018) + p.SetState(10013) p.Json_behavior() } { - p.SetState(10019) + p.SetState(10014) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152714,7 +152567,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10020) + p.SetState(10015) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -152725,11 +152578,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10022) + p.SetState(10017) p.Json_behavior() } { - p.SetState(10023) + p.SetState(10018) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152737,7 +152590,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10024) + p.SetState(10019) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152748,11 +152601,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10026) + p.SetState(10021) p.Json_behavior() } { - p.SetState(10027) + p.SetState(10022) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152760,7 +152613,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10028) + p.SetState(10023) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -152768,11 +152621,11 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10029) + p.SetState(10024) p.Json_behavior() } { - p.SetState(10030) + p.SetState(10025) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -152780,7 +152633,7 @@ func (p *PostgreSQLParser) Json_behavior_clause() (localctx IJson_behavior_claus } } { - p.SetState(10031) + p.SetState(10026) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -152921,8 +152774,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, 1236, PostgreSQLParserRULE_json_behavior) - p.SetState(10038) + p.EnterRule(localctx, 1234, PostgreSQLParserRULE_json_behavior) + p.SetState(10033) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -152932,7 +152785,7 @@ func (p *PostgreSQLParser) Json_behavior() (localctx IJson_behaviorContext) { case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 1) { - p.SetState(10035) + p.SetState(10030) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -152940,14 +152793,14 @@ func (p *PostgreSQLParser) Json_behavior() (localctx IJson_behaviorContext) { } } { - p.SetState(10036) + p.SetState(10031) p.A_expr() } case PostgreSQLParserFALSE_P, PostgreSQLParserNULL_P, PostgreSQLParserTRUE_P, PostgreSQLParserEMPTY, PostgreSQLParserUNKNOWN, PostgreSQLParserERROR: p.EnterOuterAlt(localctx, 2) { - p.SetState(10037) + p.SetState(10032) p.Json_behavior_type() } @@ -153086,8 +152939,8 @@ 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, 1238, PostgreSQLParserRULE_json_behavior_type) - p.SetState(10050) + p.EnterRule(localctx, 1236, PostgreSQLParserRULE_json_behavior_type) + p.SetState(10045) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153097,7 +152950,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10040) + p.SetState(10035) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -153108,7 +152961,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10041) + p.SetState(10036) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -153119,7 +152972,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10042) + p.SetState(10037) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -153130,7 +152983,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10043) + p.SetState(10038) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -153141,7 +152994,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10044) + p.SetState(10039) p.Match(PostgreSQLParserUNKNOWN) if p.HasError() { // Recognition error - abort rule @@ -153152,7 +153005,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10045) + p.SetState(10040) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -153160,7 +153013,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon } } { - p.SetState(10046) + p.SetState(10041) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -153171,7 +153024,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10047) + p.SetState(10042) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -153179,7 +153032,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon } } { - p.SetState(10048) + p.SetState(10043) p.Match(PostgreSQLParserOBJECT_P) if p.HasError() { // Recognition error - abort rule @@ -153190,7 +153043,7 @@ func (p *PostgreSQLParser) Json_behavior_type() (localctx IJson_behavior_typeCon case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10049) + p.SetState(10044) p.Match(PostgreSQLParserEMPTY) if p.HasError() { // Recognition error - abort rule @@ -153322,12 +153175,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, 1240, PostgreSQLParserRULE_json_quotes_clause) + p.EnterRule(localctx, 1238, PostgreSQLParserRULE_json_quotes_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10052) + p.SetState(10047) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserKEEP || _la == PostgreSQLParserOMIT) { @@ -153338,7 +153191,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } } { - p.SetState(10053) + p.SetState(10048) p.Match(PostgreSQLParserQUOTES) if p.HasError() { // Recognition error - abort rule @@ -153347,7 +153200,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } { - p.SetState(10054) + p.SetState(10049) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -153355,7 +153208,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } } { - p.SetState(10055) + p.SetState(10050) p.Match(PostgreSQLParserSCALAR) if p.HasError() { // Recognition error - abort rule @@ -153363,7 +153216,7 @@ func (p *PostgreSQLParser) Json_quotes_clause() (localctx IJson_quotes_clauseCon } } { - p.SetState(10056) + p.SetState(10051) p.Match(PostgreSQLParserSTRING) if p.HasError() { // Recognition error - abort rule @@ -153491,10 +153344,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, 1242, PostgreSQLParserRULE_json_wrapper_behavior) + p.EnterRule(localctx, 1240, PostgreSQLParserRULE_json_wrapper_behavior) var _la int - p.SetState(10071) + p.SetState(10066) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153504,14 +153357,14 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 1) { - p.SetState(10058) + p.SetState(10053) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10060) + p.SetState(10055) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153520,7 +153373,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav if _la == PostgreSQLParserARRAY { { - p.SetState(10059) + p.SetState(10054) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -153530,7 +153383,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav } { - p.SetState(10062) + p.SetState(10057) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -153541,14 +153394,14 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 2) { - p.SetState(10063) + p.SetState(10058) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10065) + p.SetState(10060) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153557,7 +153410,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav if _la == PostgreSQLParserCONDITIONAL || _la == PostgreSQLParserUNCONDITIONAL { { - p.SetState(10064) + p.SetState(10059) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONDITIONAL || _la == PostgreSQLParserUNCONDITIONAL) { @@ -153569,7 +153422,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav } } - p.SetState(10068) + p.SetState(10063) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153578,7 +153431,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav if _la == PostgreSQLParserARRAY { { - p.SetState(10067) + p.SetState(10062) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -153588,7 +153441,7 @@ func (p *PostgreSQLParser) Json_wrapper_behavior() (localctx IJson_wrapper_behav } { - p.SetState(10070) + p.SetState(10065) p.Match(PostgreSQLParserWRAPPER) if p.HasError() { // Recognition error - abort rule @@ -153713,10 +153566,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, 1244, PostgreSQLParserRULE_json_passing_clause) + p.EnterRule(localctx, 1242, PostgreSQLParserRULE_json_passing_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10073) + p.SetState(10068) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -153724,7 +153577,7 @@ func (p *PostgreSQLParser) Json_passing_clause() (localctx IJson_passing_clauseC } } { - p.SetState(10074) + p.SetState(10069) p.Json_arguments() } @@ -153871,15 +153724,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, 1246, PostgreSQLParserRULE_json_arguments) + p.EnterRule(localctx, 1244, PostgreSQLParserRULE_json_arguments) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10076) + p.SetState(10071) p.Json_argument() } - p.SetState(10081) + p.SetState(10076) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -153888,7 +153741,7 @@ func (p *PostgreSQLParser) Json_arguments() (localctx IJson_argumentsContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10077) + p.SetState(10072) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -153896,11 +153749,11 @@ func (p *PostgreSQLParser) Json_arguments() (localctx IJson_argumentsContext) { } } { - p.SetState(10078) + p.SetState(10073) p.Json_argument() } - p.SetState(10083) + p.SetState(10078) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154037,14 +153890,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, 1248, PostgreSQLParserRULE_json_argument) + p.EnterRule(localctx, 1246, PostgreSQLParserRULE_json_argument) p.EnterOuterAlt(localctx, 1) { - p.SetState(10084) + p.SetState(10079) p.Json_value_expr() } { - p.SetState(10085) + p.SetState(10080) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -154052,7 +153905,7 @@ func (p *PostgreSQLParser) Json_argument() (localctx IJson_argumentContext) { } } { - p.SetState(10086) + p.SetState(10081) p.Collabel() } @@ -154178,8 +154031,8 @@ 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, 1250, PostgreSQLParserRULE_json_format_clause_opt) - p.SetState(10094) + p.EnterRule(localctx, 1248, PostgreSQLParserRULE_json_format_clause_opt) + p.SetState(10089) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154189,7 +154042,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10088) + p.SetState(10083) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -154197,7 +154050,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10089) + p.SetState(10084) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -154205,7 +154058,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10090) + p.SetState(10085) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -154213,14 +154066,14 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10091) + p.SetState(10086) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10092) + p.SetState(10087) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -154228,7 +154081,7 @@ func (p *PostgreSQLParser) Json_format_clause_opt() (localctx IJson_format_claus } } { - p.SetState(10093) + p.SetState(10088) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -154383,15 +154236,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, 1252, PostgreSQLParserRULE_json_value_expr_list) + p.EnterRule(localctx, 1250, PostgreSQLParserRULE_json_value_expr_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10096) + p.SetState(10091) p.Json_value_expr() } - p.SetState(10101) + p.SetState(10096) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154400,7 +154253,7 @@ func (p *PostgreSQLParser) Json_value_expr_list() (localctx IJson_value_expr_lis for _la == PostgreSQLParserCOMMA { { - p.SetState(10097) + p.SetState(10092) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -154408,11 +154261,11 @@ func (p *PostgreSQLParser) Json_value_expr_list() (localctx IJson_value_expr_lis } } { - p.SetState(10098) + p.SetState(10093) p.Json_value_expr() } - p.SetState(10103) + p.SetState(10098) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154549,12 +154402,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, 1254, PostgreSQLParserRULE_json_returning_clause) + p.EnterRule(localctx, 1252, PostgreSQLParserRULE_json_returning_clause) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10104) + p.SetState(10099) p.Match(PostgreSQLParserRETURNING) if p.HasError() { // Recognition error - abort rule @@ -154562,10 +154415,10 @@ func (p *PostgreSQLParser) Json_returning_clause() (localctx IJson_returning_cla } } { - p.SetState(10105) + p.SetState(10100) p.Typename() } - p.SetState(10107) + p.SetState(10102) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154574,7 +154427,7 @@ func (p *PostgreSQLParser) Json_returning_clause() (localctx IJson_returning_cla if _la == PostgreSQLParserFORMAT { { - p.SetState(10106) + p.SetState(10101) p.Json_format_clause() } @@ -154690,10 +154543,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, 1256, PostgreSQLParserRULE_json_key_uniqueness_constraint) + p.EnterRule(localctx, 1254, PostgreSQLParserRULE_json_key_uniqueness_constraint) var _la int - p.SetState(10119) + p.SetState(10114) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154703,7 +154556,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ case PostgreSQLParserWITH: p.EnterOuterAlt(localctx, 1) { - p.SetState(10109) + p.SetState(10104) p.Match(PostgreSQLParserWITH) if p.HasError() { // Recognition error - abort rule @@ -154711,14 +154564,14 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ } } { - p.SetState(10110) + p.SetState(10105) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10112) + p.SetState(10107) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154727,7 +154580,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ if _la == PostgreSQLParserKEYS { { - p.SetState(10111) + p.SetState(10106) p.Match(PostgreSQLParserKEYS) if p.HasError() { // Recognition error - abort rule @@ -154740,7 +154593,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ case PostgreSQLParserWITHOUT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10114) + p.SetState(10109) p.Match(PostgreSQLParserWITHOUT) if p.HasError() { // Recognition error - abort rule @@ -154748,14 +154601,14 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ } } { - p.SetState(10115) + p.SetState(10110) p.Match(PostgreSQLParserUNIQUE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10117) + p.SetState(10112) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154764,7 +154617,7 @@ func (p *PostgreSQLParser) Json_key_uniqueness_constraint() (localctx IJson_key_ if _la == PostgreSQLParserKEYS { { - p.SetState(10116) + p.SetState(10111) p.Match(PostgreSQLParserKEYS) if p.HasError() { // Recognition error - abort rule @@ -154889,8 +154742,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, 1258, PostgreSQLParserRULE_json_array_constructor_null_clause) - p.SetState(10127) + p.EnterRule(localctx, 1256, PostgreSQLParserRULE_json_array_constructor_null_clause) + p.SetState(10122) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -154900,7 +154753,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(10121) + p.SetState(10116) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154908,7 +154761,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10122) + p.SetState(10117) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -154916,7 +154769,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10123) + p.SetState(10118) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -154927,7 +154780,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ case PostgreSQLParserABSENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10124) + p.SetState(10119) p.Match(PostgreSQLParserABSENT) if p.HasError() { // Recognition error - abort rule @@ -154935,7 +154788,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10125) + p.SetState(10120) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -154943,7 +154796,7 @@ func (p *PostgreSQLParser) Json_array_constructor_null_clause() (localctx IJson_ } } { - p.SetState(10126) + p.SetState(10121) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -155066,8 +154919,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, 1260, PostgreSQLParserRULE_json_object_constructor_null_clause) - p.SetState(10135) + p.EnterRule(localctx, 1258, PostgreSQLParserRULE_json_object_constructor_null_clause) + p.SetState(10130) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155077,7 +154930,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson case PostgreSQLParserNULL_P: p.EnterOuterAlt(localctx, 1) { - p.SetState(10129) + p.SetState(10124) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -155085,7 +154938,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10130) + p.SetState(10125) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -155093,7 +154946,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10131) + p.SetState(10126) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -155104,7 +154957,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson case PostgreSQLParserABSENT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10132) + p.SetState(10127) p.Match(PostgreSQLParserABSENT) if p.HasError() { // Recognition error - abort rule @@ -155112,7 +154965,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10133) + p.SetState(10128) p.Match(PostgreSQLParserON) if p.HasError() { // Recognition error - abort rule @@ -155120,7 +154973,7 @@ func (p *PostgreSQLParser) Json_object_constructor_null_clause() (localctx IJson } } { - p.SetState(10134) + p.SetState(10129) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -155276,15 +155129,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, 1262, PostgreSQLParserRULE_json_name_and_value_list) + p.EnterRule(localctx, 1260, PostgreSQLParserRULE_json_name_and_value_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10137) + p.SetState(10132) p.Json_name_and_value() } - p.SetState(10142) + p.SetState(10137) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155293,7 +155146,7 @@ func (p *PostgreSQLParser) Json_name_and_value_list() (localctx IJson_name_and_v for _la == PostgreSQLParserCOMMA { { - p.SetState(10138) + p.SetState(10133) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -155301,11 +155154,11 @@ func (p *PostgreSQLParser) Json_name_and_value_list() (localctx IJson_name_and_v } } { - p.SetState(10139) + p.SetState(10134) p.Json_name_and_value() } - p.SetState(10144) + p.SetState(10139) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155464,8 +155317,8 @@ 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, 1264, PostgreSQLParserRULE_json_name_and_value) - p.SetState(10153) + p.EnterRule(localctx, 1262, PostgreSQLParserRULE_json_name_and_value) + p.SetState(10148) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155475,11 +155328,11 @@ func (p *PostgreSQLParser) Json_name_and_value() (localctx IJson_name_and_valueC case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10145) + p.SetState(10140) p.C_expr() } { - p.SetState(10146) + p.SetState(10141) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -155487,18 +155340,18 @@ func (p *PostgreSQLParser) Json_name_and_value() (localctx IJson_name_and_valueC } } { - p.SetState(10147) + p.SetState(10142) p.Json_value_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10149) + p.SetState(10144) p.A_expr() } { - p.SetState(10150) + p.SetState(10145) p.Match(PostgreSQLParserCOLON) if p.HasError() { // Recognition error - abort rule @@ -155506,7 +155359,7 @@ func (p *PostgreSQLParser) Json_name_and_value() (localctx IJson_name_and_valueC } } { - p.SetState(10151) + p.SetState(10146) p.Json_value_expr() } @@ -155638,15 +155491,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, 1266, PostgreSQLParserRULE_json_value_expr) + p.EnterRule(localctx, 1264, PostgreSQLParserRULE_json_value_expr) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10155) + p.SetState(10150) p.A_expr() } - p.SetState(10157) + p.SetState(10152) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155655,7 +155508,7 @@ func (p *PostgreSQLParser) Json_value_expr() (localctx IJson_value_exprContext) if _la == PostgreSQLParserFORMAT { { - p.SetState(10156) + p.SetState(10151) p.Json_format_clause() } @@ -155783,8 +155636,8 @@ 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, 1268, PostgreSQLParserRULE_json_format_clause) - p.SetState(10165) + p.EnterRule(localctx, 1266, PostgreSQLParserRULE_json_format_clause) + p.SetState(10160) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155794,7 +155647,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10159) + p.SetState(10154) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -155802,7 +155655,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10160) + p.SetState(10155) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -155810,7 +155663,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10161) + p.SetState(10156) p.Match(PostgreSQLParserENCODING) if p.HasError() { // Recognition error - abort rule @@ -155818,14 +155671,14 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10162) + p.SetState(10157) p.Name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10163) + p.SetState(10158) p.Match(PostgreSQLParserFORMAT) if p.HasError() { // Recognition error - abort rule @@ -155833,7 +155686,7 @@ func (p *PostgreSQLParser) Json_format_clause() (localctx IJson_format_clauseCon } } { - p.SetState(10164) + p.SetState(10159) p.Match(PostgreSQLParserJSON) if p.HasError() { // Recognition error - abort rule @@ -155967,8 +155820,8 @@ 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, 1270, PostgreSQLParserRULE_xml_root_version) - p.SetState(10172) + p.EnterRule(localctx, 1268, PostgreSQLParserRULE_xml_root_version) + p.SetState(10167) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -155978,7 +155831,7 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10167) + p.SetState(10162) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -155986,14 +155839,14 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext } } { - p.SetState(10168) + p.SetState(10163) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10169) + p.SetState(10164) p.Match(PostgreSQLParserVERSION_P) if p.HasError() { // Recognition error - abort rule @@ -156001,7 +155854,7 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext } } { - p.SetState(10170) + p.SetState(10165) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -156009,7 +155862,7 @@ func (p *PostgreSQLParser) Xml_root_version() (localctx IXml_root_versionContext } } { - p.SetState(10171) + p.SetState(10166) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -156136,8 +155989,8 @@ 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, 1272, PostgreSQLParserRULE_opt_xml_root_standalone) - p.SetState(10184) + p.EnterRule(localctx, 1270, PostgreSQLParserRULE_opt_xml_root_standalone) + p.SetState(10179) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156147,7 +156000,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10174) + p.SetState(10169) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156155,7 +156008,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10175) + p.SetState(10170) p.Match(PostgreSQLParserSTANDALONE_P) if p.HasError() { // Recognition error - abort rule @@ -156163,7 +156016,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10176) + p.SetState(10171) p.Match(PostgreSQLParserYES_P) if p.HasError() { // Recognition error - abort rule @@ -156174,7 +156027,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10177) + p.SetState(10172) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156182,7 +156035,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10178) + p.SetState(10173) p.Match(PostgreSQLParserSTANDALONE_P) if p.HasError() { // Recognition error - abort rule @@ -156190,7 +156043,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10179) + p.SetState(10174) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -156201,7 +156054,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10180) + p.SetState(10175) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156209,7 +156062,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10181) + p.SetState(10176) p.Match(PostgreSQLParserSTANDALONE_P) if p.HasError() { // Recognition error - abort rule @@ -156217,7 +156070,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10182) + p.SetState(10177) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -156225,7 +156078,7 @@ func (p *PostgreSQLParser) Opt_xml_root_standalone() (localctx IOpt_xml_root_sta } } { - p.SetState(10183) + p.SetState(10178) p.Match(PostgreSQLParserVALUE_P) if p.HasError() { // Recognition error - abort rule @@ -156359,10 +156212,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, 1274, PostgreSQLParserRULE_xml_attributes) + p.EnterRule(localctx, 1272, PostgreSQLParserRULE_xml_attributes) p.EnterOuterAlt(localctx, 1) { - p.SetState(10186) + p.SetState(10181) p.Match(PostgreSQLParserXMLATTRIBUTES) if p.HasError() { // Recognition error - abort rule @@ -156370,7 +156223,7 @@ func (p *PostgreSQLParser) Xml_attributes() (localctx IXml_attributesContext) { } } { - p.SetState(10187) + p.SetState(10182) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -156378,11 +156231,11 @@ func (p *PostgreSQLParser) Xml_attributes() (localctx IXml_attributesContext) { } } { - p.SetState(10188) + p.SetState(10183) p.Xml_attribute_list() } { - p.SetState(10189) + p.SetState(10184) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -156533,15 +156386,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, 1276, PostgreSQLParserRULE_xml_attribute_list) + p.EnterRule(localctx, 1274, PostgreSQLParserRULE_xml_attribute_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10191) + p.SetState(10186) p.Xml_attribute_el() } - p.SetState(10196) + p.SetState(10191) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156550,7 +156403,7 @@ func (p *PostgreSQLParser) Xml_attribute_list() (localctx IXml_attribute_listCon for _la == PostgreSQLParserCOMMA { { - p.SetState(10192) + p.SetState(10187) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -156558,11 +156411,11 @@ func (p *PostgreSQLParser) Xml_attribute_list() (localctx IXml_attribute_listCon } } { - p.SetState(10193) + p.SetState(10188) p.Xml_attribute_el() } - p.SetState(10198) + p.SetState(10193) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156699,15 +156552,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, 1278, PostgreSQLParserRULE_xml_attribute_el) + p.EnterRule(localctx, 1276, PostgreSQLParserRULE_xml_attribute_el) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10199) + p.SetState(10194) p.A_expr() } - p.SetState(10202) + p.SetState(10197) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156716,7 +156569,7 @@ func (p *PostgreSQLParser) Xml_attribute_el() (localctx IXml_attribute_elContext if _la == PostgreSQLParserAS { { - p.SetState(10200) + p.SetState(10195) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -156724,7 +156577,7 @@ func (p *PostgreSQLParser) Xml_attribute_el() (localctx IXml_attribute_elContext } } { - p.SetState(10201) + p.SetState(10196) p.Collabel() } @@ -156830,12 +156683,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, 1280, PostgreSQLParserRULE_document_or_content) + p.EnterRule(localctx, 1278, PostgreSQLParserRULE_document_or_content) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10204) + p.SetState(10199) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONTENT_P || _la == PostgreSQLParserDOCUMENT_P) { @@ -156951,8 +156804,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, 1282, PostgreSQLParserRULE_xml_whitespace_option) - p.SetState(10210) + p.EnterRule(localctx, 1280, PostgreSQLParserRULE_xml_whitespace_option) + p.SetState(10205) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -156962,7 +156815,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt case PostgreSQLParserPRESERVE: p.EnterOuterAlt(localctx, 1) { - p.SetState(10206) + p.SetState(10201) p.Match(PostgreSQLParserPRESERVE) if p.HasError() { // Recognition error - abort rule @@ -156970,7 +156823,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt } } { - p.SetState(10207) + p.SetState(10202) p.Match(PostgreSQLParserWHITESPACE_P) if p.HasError() { // Recognition error - abort rule @@ -156981,7 +156834,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt case PostgreSQLParserSTRIP_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(10208) + p.SetState(10203) p.Match(PostgreSQLParserSTRIP_P) if p.HasError() { // Recognition error - abort rule @@ -156989,7 +156842,7 @@ func (p *PostgreSQLParser) Xml_whitespace_option() (localctx IXml_whitespace_opt } } { - p.SetState(10209) + p.SetState(10204) p.Match(PostgreSQLParserWHITESPACE_P) if p.HasError() { // Recognition error - abort rule @@ -157157,8 +157010,8 @@ 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, 1284, PostgreSQLParserRULE_xmlexists_argument) - p.SetState(10227) + p.EnterRule(localctx, 1282, PostgreSQLParserRULE_xmlexists_argument) + p.SetState(10222) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -157168,7 +157021,7 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10212) + p.SetState(10207) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157176,14 +157029,14 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10213) + p.SetState(10208) p.C_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10214) + p.SetState(10209) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157191,18 +157044,18 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10215) + p.SetState(10210) p.C_expr() } { - p.SetState(10216) + p.SetState(10211) p.Xml_passing_mech() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10218) + p.SetState(10213) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157210,18 +157063,18 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10219) + p.SetState(10214) p.Xml_passing_mech() } { - p.SetState(10220) + p.SetState(10215) p.C_expr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10222) + p.SetState(10217) p.Match(PostgreSQLParserPASSING) if p.HasError() { // Recognition error - abort rule @@ -157229,15 +157082,15 @@ func (p *PostgreSQLParser) Xmlexists_argument() (localctx IXmlexists_argumentCon } } { - p.SetState(10223) + p.SetState(10218) p.Xml_passing_mech() } { - p.SetState(10224) + p.SetState(10219) p.C_expr() } { - p.SetState(10225) + p.SetState(10220) p.Xml_passing_mech() } @@ -157350,12 +157203,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, 1286, PostgreSQLParserRULE_xml_passing_mech) + p.EnterRule(localctx, 1284, PostgreSQLParserRULE_xml_passing_mech) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10229) + p.SetState(10224) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -157363,7 +157216,7 @@ func (p *PostgreSQLParser) Xml_passing_mech() (localctx IXml_passing_mechContext } } { - p.SetState(10230) + p.SetState(10225) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserREF || _la == PostgreSQLParserVALUE_P) { @@ -157501,10 +157354,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, 1288, PostgreSQLParserRULE_within_group_clause) + p.EnterRule(localctx, 1286, PostgreSQLParserRULE_within_group_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10232) + p.SetState(10227) p.Match(PostgreSQLParserWITHIN) if p.HasError() { // Recognition error - abort rule @@ -157512,7 +157365,7 @@ func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseC } } { - p.SetState(10233) + p.SetState(10228) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -157520,7 +157373,7 @@ func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseC } } { - p.SetState(10234) + p.SetState(10229) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157528,11 +157381,11 @@ func (p *PostgreSQLParser) Within_group_clause() (localctx IWithin_group_clauseC } } { - p.SetState(10235) + p.SetState(10230) p.Sort_clause() } { - p.SetState(10236) + p.SetState(10231) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157667,10 +157520,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, 1290, PostgreSQLParserRULE_filter_clause) + p.EnterRule(localctx, 1288, PostgreSQLParserRULE_filter_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10238) + p.SetState(10233) p.Match(PostgreSQLParserFILTER) if p.HasError() { // Recognition error - abort rule @@ -157678,7 +157531,7 @@ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { } } { - p.SetState(10239) + p.SetState(10234) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157686,7 +157539,7 @@ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { } } { - p.SetState(10240) + p.SetState(10235) p.Match(PostgreSQLParserWHERE) if p.HasError() { // Recognition error - abort rule @@ -157694,11 +157547,11 @@ func (p *PostgreSQLParser) Filter_clause() (localctx IFilter_clauseContext) { } } { - p.SetState(10241) + p.SetState(10236) p.A_expr() } { - p.SetState(10242) + p.SetState(10237) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -157818,10 +157671,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, 1292, PostgreSQLParserRULE_window_clause) + p.EnterRule(localctx, 1290, PostgreSQLParserRULE_window_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10244) + p.SetState(10239) p.Match(PostgreSQLParserWINDOW) if p.HasError() { // Recognition error - abort rule @@ -157829,7 +157682,7 @@ func (p *PostgreSQLParser) Window_clause() (localctx IWindow_clauseContext) { } } { - p.SetState(10245) + p.SetState(10240) p.Window_definition_list() } @@ -157976,15 +157829,15 @@ 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, 1294, PostgreSQLParserRULE_window_definition_list) + p.EnterRule(localctx, 1292, PostgreSQLParserRULE_window_definition_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10247) + p.SetState(10242) p.Window_definition() } - p.SetState(10252) + p.SetState(10247) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -157996,7 +157849,7 @@ func (p *PostgreSQLParser) Window_definition_list() (localctx IWindow_definition for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10248) + p.SetState(10243) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -158004,12 +157857,12 @@ func (p *PostgreSQLParser) Window_definition_list() (localctx IWindow_definition } } { - p.SetState(10249) + p.SetState(10244) p.Window_definition() } } - p.SetState(10254) + p.SetState(10249) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158149,14 +158002,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, 1296, PostgreSQLParserRULE_window_definition) + p.EnterRule(localctx, 1294, PostgreSQLParserRULE_window_definition) p.EnterOuterAlt(localctx, 1) { - p.SetState(10255) + p.SetState(10250) p.Colid() } { - p.SetState(10256) + p.SetState(10251) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -158164,7 +158017,7 @@ func (p *PostgreSQLParser) Window_definition() (localctx IWindow_definitionConte } } { - p.SetState(10257) + p.SetState(10252) p.Window_specification() } @@ -158297,17 +158150,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, 1298, PostgreSQLParserRULE_over_clause) + p.EnterRule(localctx, 1296, PostgreSQLParserRULE_over_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10259) + p.SetState(10254) p.Match(PostgreSQLParserOVER) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10262) + p.SetState(10257) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158316,13 +158169,13 @@ func (p *PostgreSQLParser) Over_clause() (localctx IOver_clauseContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(10260) + p.SetState(10255) 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(10261) + p.SetState(10256) p.Colid() } @@ -158499,31 +158352,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, 1300, PostgreSQLParserRULE_window_specification) + p.EnterRule(localctx, 1298, PostgreSQLParserRULE_window_specification) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10264) + p.SetState(10259) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10266) + p.SetState(10261) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 992, p.GetParserRuleContext()) == 1 { { - p.SetState(10265) + p.SetState(10260) p.Opt_existing_window_name() } } else if p.HasError() { // JIM goto errorExit } - p.SetState(10269) + p.SetState(10264) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158532,12 +158385,12 @@ func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificatio if _la == PostgreSQLParserPARTITION { { - p.SetState(10268) + p.SetState(10263) p.Opt_partition_clause() } } - p.SetState(10272) + p.SetState(10267) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158546,12 +158399,12 @@ func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificatio if _la == PostgreSQLParserORDER { { - p.SetState(10271) + p.SetState(10266) p.Opt_sort_clause() } } - p.SetState(10275) + p.SetState(10270) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158560,13 +158413,13 @@ func (p *PostgreSQLParser) Window_specification() (localctx IWindow_specificatio if _la == PostgreSQLParserRANGE || _la == PostgreSQLParserROWS || _la == PostgreSQLParserGROUPS { { - p.SetState(10274) + p.SetState(10269) p.Opt_frame_clause() } } { - p.SetState(10277) + p.SetState(10272) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -158681,10 +158534,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, 1302, PostgreSQLParserRULE_opt_existing_window_name) + p.EnterRule(localctx, 1300, PostgreSQLParserRULE_opt_existing_window_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10279) + p.SetState(10274) p.Colid() } @@ -158805,10 +158658,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, 1304, PostgreSQLParserRULE_opt_partition_clause) + p.EnterRule(localctx, 1302, PostgreSQLParserRULE_opt_partition_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10281) + p.SetState(10276) p.Match(PostgreSQLParserPARTITION) if p.HasError() { // Recognition error - abort rule @@ -158816,7 +158669,7 @@ func (p *PostgreSQLParser) Opt_partition_clause() (localctx IOpt_partition_claus } } { - p.SetState(10282) + p.SetState(10277) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -158824,7 +158677,7 @@ func (p *PostgreSQLParser) Opt_partition_clause() (localctx IOpt_partition_claus } } { - p.SetState(10283) + p.SetState(10278) p.Expr_list() } @@ -158967,10 +158820,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, 1306, PostgreSQLParserRULE_opt_frame_clause) + p.EnterRule(localctx, 1304, PostgreSQLParserRULE_opt_frame_clause) var _la int - p.SetState(10300) + p.SetState(10295) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -158980,7 +158833,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext case PostgreSQLParserRANGE: p.EnterOuterAlt(localctx, 1) { - p.SetState(10285) + p.SetState(10280) p.Match(PostgreSQLParserRANGE) if p.HasError() { // Recognition error - abort rule @@ -158988,10 +158841,10 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext } } { - p.SetState(10286) + p.SetState(10281) p.Frame_extent() } - p.SetState(10288) + p.SetState(10283) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159000,7 +158853,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext if _la == PostgreSQLParserEXCLUDE { { - p.SetState(10287) + p.SetState(10282) p.Opt_window_exclusion_clause() } @@ -159009,7 +158862,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext case PostgreSQLParserROWS: p.EnterOuterAlt(localctx, 2) { - p.SetState(10290) + p.SetState(10285) p.Match(PostgreSQLParserROWS) if p.HasError() { // Recognition error - abort rule @@ -159017,10 +158870,10 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext } } { - p.SetState(10291) + p.SetState(10286) p.Frame_extent() } - p.SetState(10293) + p.SetState(10288) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159029,7 +158882,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext if _la == PostgreSQLParserEXCLUDE { { - p.SetState(10292) + p.SetState(10287) p.Opt_window_exclusion_clause() } @@ -159038,7 +158891,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext case PostgreSQLParserGROUPS: p.EnterOuterAlt(localctx, 3) { - p.SetState(10295) + p.SetState(10290) p.Match(PostgreSQLParserGROUPS) if p.HasError() { // Recognition error - abort rule @@ -159046,10 +158899,10 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext } } { - p.SetState(10296) + p.SetState(10291) p.Frame_extent() } - p.SetState(10298) + p.SetState(10293) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159058,7 +158911,7 @@ func (p *PostgreSQLParser) Opt_frame_clause() (localctx IOpt_frame_clauseContext if _la == PostgreSQLParserEXCLUDE { { - p.SetState(10297) + p.SetState(10292) p.Opt_window_exclusion_clause() } @@ -159212,8 +159065,8 @@ 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, 1308, PostgreSQLParserRULE_frame_extent) - p.SetState(10308) + p.EnterRule(localctx, 1306, PostgreSQLParserRULE_frame_extent) + p.SetState(10303) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159223,14 +159076,14 @@ func (p *PostgreSQLParser) Frame_extent() (localctx IFrame_extentContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10302) + p.SetState(10297) p.Frame_bound() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10303) + p.SetState(10298) p.Match(PostgreSQLParserBETWEEN) if p.HasError() { // Recognition error - abort rule @@ -159238,11 +159091,11 @@ func (p *PostgreSQLParser) Frame_extent() (localctx IFrame_extentContext) { } } { - p.SetState(10304) + p.SetState(10299) p.Frame_bound() } { - p.SetState(10305) + p.SetState(10300) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule @@ -159250,7 +159103,7 @@ func (p *PostgreSQLParser) Frame_extent() (localctx IFrame_extentContext) { } } { - p.SetState(10306) + p.SetState(10301) p.Frame_bound() } @@ -159390,10 +159243,10 @@ 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, 1310, PostgreSQLParserRULE_frame_bound) + p.EnterRule(localctx, 1308, PostgreSQLParserRULE_frame_bound) var _la int - p.SetState(10317) + p.SetState(10312) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159403,7 +159256,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10310) + p.SetState(10305) p.Match(PostgreSQLParserUNBOUNDED) if p.HasError() { // Recognition error - abort rule @@ -159411,7 +159264,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { } } { - p.SetState(10311) + p.SetState(10306) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFOLLOWING || _la == PostgreSQLParserPRECEDING) { @@ -159425,7 +159278,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10312) + p.SetState(10307) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -159433,7 +159286,7 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { } } { - p.SetState(10313) + p.SetState(10308) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159444,11 +159297,11 @@ func (p *PostgreSQLParser) Frame_bound() (localctx IFrame_boundContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10314) + p.SetState(10309) p.A_expr() } { - p.SetState(10315) + p.SetState(10310) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFOLLOWING || _la == PostgreSQLParserPRECEDING) { @@ -159588,17 +159441,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, 1312, PostgreSQLParserRULE_opt_window_exclusion_clause) + p.EnterRule(localctx, 1310, PostgreSQLParserRULE_opt_window_exclusion_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10319) + p.SetState(10314) p.Match(PostgreSQLParserEXCLUDE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10326) + p.SetState(10321) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159607,7 +159460,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e switch p.GetTokenStream().LA(1) { case PostgreSQLParserCURRENT_P: { - p.SetState(10320) + p.SetState(10315) p.Match(PostgreSQLParserCURRENT_P) if p.HasError() { // Recognition error - abort rule @@ -159615,7 +159468,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e } } { - p.SetState(10321) + p.SetState(10316) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159625,7 +159478,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e case PostgreSQLParserGROUP_P: { - p.SetState(10322) + p.SetState(10317) p.Match(PostgreSQLParserGROUP_P) if p.HasError() { // Recognition error - abort rule @@ -159635,7 +159488,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e case PostgreSQLParserTIES: { - p.SetState(10323) + p.SetState(10318) p.Match(PostgreSQLParserTIES) if p.HasError() { // Recognition error - abort rule @@ -159645,7 +159498,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e case PostgreSQLParserNO: { - p.SetState(10324) + p.SetState(10319) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -159653,7 +159506,7 @@ func (p *PostgreSQLParser) Opt_window_exclusion_clause() (localctx IOpt_window_e } } { - p.SetState(10325) + p.SetState(10320) p.Match(PostgreSQLParserOTHERS) if p.HasError() { // Recognition error - abort rule @@ -159810,10 +159663,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, 1314, PostgreSQLParserRULE_row) + p.EnterRule(localctx, 1312, PostgreSQLParserRULE_row) var _la int - p.SetState(10340) + p.SetState(10335) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159823,7 +159676,7 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { case PostgreSQLParserROW: p.EnterOuterAlt(localctx, 1) { - p.SetState(10328) + p.SetState(10323) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -159831,14 +159684,14 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { } } { - p.SetState(10329) + p.SetState(10324) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10331) + p.SetState(10326) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -159847,13 +159700,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(10330) + p.SetState(10325) p.Expr_list() } } { - p.SetState(10333) + p.SetState(10328) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -159864,7 +159717,7 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { case PostgreSQLParserOPEN_PAREN: p.EnterOuterAlt(localctx, 2) { - p.SetState(10334) + p.SetState(10329) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -159872,11 +159725,11 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { } } { - p.SetState(10335) + p.SetState(10330) p.Expr_list() } { - p.SetState(10336) + p.SetState(10331) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -159884,11 +159737,11 @@ func (p *PostgreSQLParser) Row() (localctx IRowContext) { } } { - p.SetState(10337) + p.SetState(10332) p.A_expr() } { - p.SetState(10338) + p.SetState(10333) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160023,12 +159876,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, 1316, PostgreSQLParserRULE_explicit_row) + p.EnterRule(localctx, 1314, PostgreSQLParserRULE_explicit_row) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10342) + p.SetState(10337) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -160036,14 +159889,14 @@ func (p *PostgreSQLParser) Explicit_row() (localctx IExplicit_rowContext) { } } { - p.SetState(10343) + p.SetState(10338) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10345) + p.SetState(10340) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -160052,13 +159905,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(10344) + p.SetState(10339) p.Expr_list() } } { - p.SetState(10347) + p.SetState(10342) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160205,10 +160058,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, 1318, PostgreSQLParserRULE_implicit_row) + p.EnterRule(localctx, 1316, PostgreSQLParserRULE_implicit_row) p.EnterOuterAlt(localctx, 1) { - p.SetState(10349) + p.SetState(10344) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160216,11 +160069,11 @@ func (p *PostgreSQLParser) Implicit_row() (localctx IImplicit_rowContext) { } } { - p.SetState(10350) + p.SetState(10345) p.Expr_list() } { - p.SetState(10351) + p.SetState(10346) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -160228,11 +160081,11 @@ func (p *PostgreSQLParser) Implicit_row() (localctx IImplicit_rowContext) { } } { - p.SetState(10352) + p.SetState(10347) p.A_expr() } { - p.SetState(10353) + p.SetState(10348) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160345,12 +160198,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, 1320, PostgreSQLParserRULE_sub_type) + p.EnterRule(localctx, 1318, PostgreSQLParserRULE_sub_type) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10355) + p.SetState(10350) _la = p.GetTokenStream().LA(1) if !((int64((_la-30)) & ^0x3f) == 0 && ((int64(1)<<(_la-30))&1152921504606846993) != 0) { @@ -160473,8 +160326,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, 1322, PostgreSQLParserRULE_all_op) - p.SetState(10359) + p.EnterRule(localctx, 1320, PostgreSQLParserRULE_all_op) + p.SetState(10354) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -160484,7 +160337,7 @@ func (p *PostgreSQLParser) All_op() (localctx IAll_opContext) { case PostgreSQLParserOperator: p.EnterOuterAlt(localctx, 1) { - p.SetState(10357) + p.SetState(10352) p.Match(PostgreSQLParserOperator) if p.HasError() { // Recognition error - abort rule @@ -160495,7 +160348,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(10358) + p.SetState(10353) p.Mathop() } @@ -160654,12 +160507,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, 1324, PostgreSQLParserRULE_mathop) + p.EnterRule(localctx, 1322, PostgreSQLParserRULE_mathop) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10361) + p.SetState(10356) _la = p.GetTokenStream().LA(1) if !((int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&178517504) != 0) { @@ -160797,8 +160650,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, 1326, PostgreSQLParserRULE_qual_op) - p.SetState(10369) + p.EnterRule(localctx, 1324, PostgreSQLParserRULE_qual_op) + p.SetState(10364) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -160808,7 +160661,7 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { case PostgreSQLParserOperator: p.EnterOuterAlt(localctx, 1) { - p.SetState(10363) + p.SetState(10358) p.Match(PostgreSQLParserOperator) if p.HasError() { // Recognition error - abort rule @@ -160819,7 +160672,7 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { case PostgreSQLParserOPERATOR: p.EnterOuterAlt(localctx, 2) { - p.SetState(10364) + p.SetState(10359) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -160827,7 +160680,7 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { } } { - p.SetState(10365) + p.SetState(10360) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160835,11 +160688,11 @@ func (p *PostgreSQLParser) Qual_op() (localctx IQual_opContext) { } } { - p.SetState(10366) + p.SetState(10361) p.Any_operator() } { - p.SetState(10367) + p.SetState(10362) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -160991,8 +160844,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, 1328, PostgreSQLParserRULE_qual_all_op) - p.SetState(10377) + p.EnterRule(localctx, 1326, PostgreSQLParserRULE_qual_all_op) + p.SetState(10372) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161002,14 +160855,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(10371) + p.SetState(10366) p.All_op() } case PostgreSQLParserOPERATOR: p.EnterOuterAlt(localctx, 2) { - p.SetState(10372) + p.SetState(10367) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -161017,7 +160870,7 @@ func (p *PostgreSQLParser) Qual_all_op() (localctx IQual_all_opContext) { } } { - p.SetState(10373) + p.SetState(10368) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161025,11 +160878,11 @@ func (p *PostgreSQLParser) Qual_all_op() (localctx IQual_all_opContext) { } } { - p.SetState(10374) + p.SetState(10369) p.Any_operator() } { - p.SetState(10375) + p.SetState(10370) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161196,8 +161049,8 @@ 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, 1330, PostgreSQLParserRULE_subquery_Op) - p.SetState(10391) + p.EnterRule(localctx, 1328, PostgreSQLParserRULE_subquery_Op) + p.SetState(10386) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161207,14 +161060,14 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10379) + p.SetState(10374) p.All_op() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10380) + p.SetState(10375) p.Match(PostgreSQLParserOPERATOR) if p.HasError() { // Recognition error - abort rule @@ -161222,7 +161075,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10381) + p.SetState(10376) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161230,11 +161083,11 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10382) + p.SetState(10377) p.Any_operator() } { - p.SetState(10383) + p.SetState(10378) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -161245,7 +161098,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10385) + p.SetState(10380) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -161256,7 +161109,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10386) + p.SetState(10381) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -161264,7 +161117,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10387) + p.SetState(10382) p.Match(PostgreSQLParserLIKE) if p.HasError() { // Recognition error - abort rule @@ -161275,7 +161128,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10388) + p.SetState(10383) p.Match(PostgreSQLParserILIKE) if p.HasError() { // Recognition error - abort rule @@ -161286,7 +161139,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10389) + p.SetState(10384) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -161294,7 +161147,7 @@ func (p *PostgreSQLParser) Subquery_Op() (localctx ISubquery_OpContext) { } } { - p.SetState(10390) + p.SetState(10385) p.Match(PostgreSQLParserILIKE) if p.HasError() { // Recognition error - abort rule @@ -161449,15 +161302,15 @@ 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, 1332, PostgreSQLParserRULE_expr_list) + p.EnterRule(localctx, 1330, PostgreSQLParserRULE_expr_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10393) + p.SetState(10388) p.A_expr() } - p.SetState(10398) + p.SetState(10393) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161469,7 +161322,7 @@ func (p *PostgreSQLParser) Expr_list() (localctx IExpr_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10394) + p.SetState(10389) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -161477,12 +161330,12 @@ func (p *PostgreSQLParser) Expr_list() (localctx IExpr_listContext) { } } { - p.SetState(10395) + p.SetState(10390) p.A_expr() } } - p.SetState(10400) + p.SetState(10395) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161636,15 +161489,15 @@ 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, 1334, PostgreSQLParserRULE_func_arg_list) + p.EnterRule(localctx, 1332, PostgreSQLParserRULE_func_arg_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10401) + p.SetState(10396) p.Func_arg_expr() } - p.SetState(10406) + p.SetState(10401) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161656,7 +161509,7 @@ func (p *PostgreSQLParser) Func_arg_list() (localctx IFunc_arg_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10402) + p.SetState(10397) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -161664,12 +161517,12 @@ func (p *PostgreSQLParser) Func_arg_list() (localctx IFunc_arg_listContext) { } } { - p.SetState(10403) + p.SetState(10398) p.Func_arg_expr() } } - p.SetState(10408) + p.SetState(10403) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161814,10 +161667,10 @@ 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, 1336, PostgreSQLParserRULE_func_arg_expr) + p.EnterRule(localctx, 1334, PostgreSQLParserRULE_func_arg_expr) var _la int - p.SetState(10414) + p.SetState(10409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -161827,18 +161680,18 @@ func (p *PostgreSQLParser) Func_arg_expr() (localctx IFunc_arg_exprContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10409) + p.SetState(10404) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10410) + p.SetState(10405) p.Param_name() } { - p.SetState(10411) + p.SetState(10406) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCOLON_EQUALS || _la == PostgreSQLParserEQUALS_GREATER) { @@ -161849,7 +161702,7 @@ func (p *PostgreSQLParser) Func_arg_expr() (localctx IFunc_arg_exprContext) { } } { - p.SetState(10412) + p.SetState(10407) p.A_expr() } @@ -162000,15 +161853,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, 1338, PostgreSQLParserRULE_type_list) + p.EnterRule(localctx, 1336, PostgreSQLParserRULE_type_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10416) + p.SetState(10411) p.Typename() } - p.SetState(10421) + p.SetState(10416) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162017,7 +161870,7 @@ func (p *PostgreSQLParser) Type_list() (localctx IType_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10417) + p.SetState(10412) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -162025,11 +161878,11 @@ func (p *PostgreSQLParser) Type_list() (localctx IType_listContext) { } } { - p.SetState(10418) + p.SetState(10413) p.Typename() } - p.SetState(10423) + p.SetState(10418) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162171,17 +162024,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, 1340, PostgreSQLParserRULE_array_expr) + p.EnterRule(localctx, 1338, PostgreSQLParserRULE_array_expr) p.EnterOuterAlt(localctx, 1) { - p.SetState(10424) + p.SetState(10419) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10427) + p.SetState(10422) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162189,13 +162042,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(10425) + p.SetState(10420) p.Expr_list() } case PostgreSQLParserOPEN_BRACKET: { - p.SetState(10426) + p.SetState(10421) p.Array_expr_list() } @@ -162204,7 +162057,7 @@ func (p *PostgreSQLParser) Array_expr() (localctx IArray_exprContext) { default: } { - p.SetState(10429) + p.SetState(10424) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -162355,15 +162208,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, 1342, PostgreSQLParserRULE_array_expr_list) + p.EnterRule(localctx, 1340, PostgreSQLParserRULE_array_expr_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10431) + p.SetState(10426) p.Array_expr() } - p.SetState(10436) + p.SetState(10431) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162372,7 +162225,7 @@ func (p *PostgreSQLParser) Array_expr_list() (localctx IArray_expr_listContext) for _la == PostgreSQLParserCOMMA { { - p.SetState(10432) + p.SetState(10427) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -162380,11 +162233,11 @@ func (p *PostgreSQLParser) Array_expr_list() (localctx IArray_expr_listContext) } } { - p.SetState(10433) + p.SetState(10428) p.Array_expr() } - p.SetState(10438) + p.SetState(10433) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162521,14 +162374,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, 1344, PostgreSQLParserRULE_extract_list) + p.EnterRule(localctx, 1342, PostgreSQLParserRULE_extract_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(10439) + p.SetState(10434) p.Extract_arg() } { - p.SetState(10440) + p.SetState(10435) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -162536,7 +162389,7 @@ func (p *PostgreSQLParser) Extract_list() (localctx IExtract_listContext) { } } { - p.SetState(10441) + p.SetState(10436) p.A_expr() } @@ -162694,8 +162547,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, 1346, PostgreSQLParserRULE_extract_arg) - p.SetState(10451) + p.EnterRule(localctx, 1344, PostgreSQLParserRULE_extract_arg) + p.SetState(10446) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -162705,14 +162558,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(10443) + p.SetState(10438) p.Identifier() } case PostgreSQLParserYEAR_P: p.EnterOuterAlt(localctx, 2) { - p.SetState(10444) + p.SetState(10439) p.Match(PostgreSQLParserYEAR_P) if p.HasError() { // Recognition error - abort rule @@ -162723,7 +162576,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserMONTH_P: p.EnterOuterAlt(localctx, 3) { - p.SetState(10445) + p.SetState(10440) p.Match(PostgreSQLParserMONTH_P) if p.HasError() { // Recognition error - abort rule @@ -162734,7 +162587,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserDAY_P: p.EnterOuterAlt(localctx, 4) { - p.SetState(10446) + p.SetState(10441) p.Match(PostgreSQLParserDAY_P) if p.HasError() { // Recognition error - abort rule @@ -162745,7 +162598,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserHOUR_P: p.EnterOuterAlt(localctx, 5) { - p.SetState(10447) + p.SetState(10442) p.Match(PostgreSQLParserHOUR_P) if p.HasError() { // Recognition error - abort rule @@ -162756,7 +162609,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserMINUTE_P: p.EnterOuterAlt(localctx, 6) { - p.SetState(10448) + p.SetState(10443) p.Match(PostgreSQLParserMINUTE_P) if p.HasError() { // Recognition error - abort rule @@ -162767,7 +162620,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserSECOND_P: p.EnterOuterAlt(localctx, 7) { - p.SetState(10449) + p.SetState(10444) p.Match(PostgreSQLParserSECOND_P) if p.HasError() { // Recognition error - abort rule @@ -162778,7 +162631,7 @@ func (p *PostgreSQLParser) Extract_arg() (localctx IExtract_argContext) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 8) { - p.SetState(10450) + p.SetState(10445) p.Sconst() } @@ -162897,12 +162750,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, 1348, PostgreSQLParserRULE_unicode_normal_form) + p.EnterRule(localctx, 1346, PostgreSQLParserRULE_unicode_normal_form) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10453) + p.SetState(10448) _la = p.GetTokenStream().LA(1) if !((int64((_la-504)) & ^0x3f) == 0 && ((int64(1)<<(_la-504))&15) != 0) { @@ -163061,16 +162914,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, 1350, PostgreSQLParserRULE_overlay_list) + p.EnterRule(localctx, 1348, PostgreSQLParserRULE_overlay_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10455) + p.SetState(10450) p.A_expr() } { - p.SetState(10456) + p.SetState(10451) p.Match(PostgreSQLParserPLACING) if p.HasError() { // Recognition error - abort rule @@ -163078,11 +162931,11 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { } } { - p.SetState(10457) + p.SetState(10452) p.A_expr() } { - p.SetState(10458) + p.SetState(10453) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163090,10 +162943,10 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { } } { - p.SetState(10459) + p.SetState(10454) p.A_expr() } - p.SetState(10462) + p.SetState(10457) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -163102,7 +162955,7 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { if _la == PostgreSQLParserFOR { { - p.SetState(10460) + p.SetState(10455) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163110,7 +162963,7 @@ func (p *PostgreSQLParser) Overlay_list() (localctx IOverlay_listContext) { } } { - p.SetState(10461) + p.SetState(10456) p.A_expr() } @@ -163254,14 +163107,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, 1352, PostgreSQLParserRULE_position_list) + p.EnterRule(localctx, 1350, PostgreSQLParserRULE_position_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(10464) + p.SetState(10459) p.b_expr(0) } { - p.SetState(10465) + p.SetState(10460) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -163269,7 +163122,7 @@ func (p *PostgreSQLParser) Position_list() (localctx IPosition_listContext) { } } { - p.SetState(10466) + p.SetState(10461) p.b_expr(0) } @@ -163443,8 +163296,8 @@ 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, 1354, PostgreSQLParserRULE_substr_list) - p.SetState(10495) + p.EnterRule(localctx, 1352, PostgreSQLParserRULE_substr_list) + p.SetState(10490) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -163454,11 +163307,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10468) + p.SetState(10463) p.A_expr() } { - p.SetState(10469) + p.SetState(10464) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163466,11 +163319,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10470) + p.SetState(10465) p.A_expr() } { - p.SetState(10471) + p.SetState(10466) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163478,18 +163331,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10472) + p.SetState(10467) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10474) + p.SetState(10469) p.A_expr() } { - p.SetState(10475) + p.SetState(10470) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163497,11 +163350,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10476) + p.SetState(10471) p.A_expr() } { - p.SetState(10477) + p.SetState(10472) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163509,18 +163362,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10478) + p.SetState(10473) p.A_expr() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10480) + p.SetState(10475) p.A_expr() } { - p.SetState(10481) + p.SetState(10476) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163528,18 +163381,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10482) + p.SetState(10477) p.A_expr() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10484) + p.SetState(10479) p.A_expr() } { - p.SetState(10485) + p.SetState(10480) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -163547,18 +163400,18 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10486) + p.SetState(10481) p.A_expr() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10488) + p.SetState(10483) p.A_expr() } { - p.SetState(10489) + p.SetState(10484) p.Match(PostgreSQLParserSIMILAR) if p.HasError() { // Recognition error - abort rule @@ -163566,11 +163419,11 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10490) + p.SetState(10485) p.A_expr() } { - p.SetState(10491) + p.SetState(10486) p.Match(PostgreSQLParserESCAPE) if p.HasError() { // Recognition error - abort rule @@ -163578,14 +163431,14 @@ func (p *PostgreSQLParser) Substr_list() (localctx ISubstr_listContext) { } } { - p.SetState(10492) + p.SetState(10487) p.A_expr() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10494) + p.SetState(10489) p.Expr_list() } @@ -163722,8 +163575,8 @@ 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, 1356, PostgreSQLParserRULE_trim_list) - p.SetState(10504) + p.EnterRule(localctx, 1354, PostgreSQLParserRULE_trim_list) + p.SetState(10499) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -163733,11 +163586,11 @@ func (p *PostgreSQLParser) Trim_list() (localctx ITrim_listContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10497) + p.SetState(10492) p.A_expr() } { - p.SetState(10498) + p.SetState(10493) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163745,14 +163598,14 @@ func (p *PostgreSQLParser) Trim_list() (localctx ITrim_listContext) { } } { - p.SetState(10499) + p.SetState(10494) p.Expr_list() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10501) + p.SetState(10496) p.Match(PostgreSQLParserFROM) if p.HasError() { // Recognition error - abort rule @@ -163760,14 +163613,14 @@ func (p *PostgreSQLParser) Trim_list() (localctx ITrim_listContext) { } } { - p.SetState(10502) + p.SetState(10497) p.Expr_list() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10503) + p.SetState(10498) p.Expr_list() } @@ -163964,8 +163817,8 @@ 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, 1358, PostgreSQLParserRULE_in_expr) - p.SetState(10511) + p.EnterRule(localctx, 1356, PostgreSQLParserRULE_in_expr) + p.SetState(10506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -163976,7 +163829,7 @@ func (p *PostgreSQLParser) In_expr() (localctx IIn_exprContext) { localctx = NewIn_expr_selectContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(10506) + p.SetState(10501) p.Select_with_parens() } @@ -163984,7 +163837,7 @@ func (p *PostgreSQLParser) In_expr() (localctx IIn_exprContext) { localctx = NewIn_expr_listContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(10507) + p.SetState(10502) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -163992,11 +163845,11 @@ func (p *PostgreSQLParser) In_expr() (localctx IIn_exprContext) { } } { - p.SetState(10508) + p.SetState(10503) p.Expr_list() } { - p.SetState(10509) + p.SetState(10504) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -164159,19 +164012,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, 1360, PostgreSQLParserRULE_case_expr) + p.EnterRule(localctx, 1358, PostgreSQLParserRULE_case_expr) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10513) + p.SetState(10508) p.Match(PostgreSQLParserCASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10515) + p.SetState(10510) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164180,16 +164033,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(10514) + p.SetState(10509) p.Case_arg() } } { - p.SetState(10517) + p.SetState(10512) p.When_clause_list() } - p.SetState(10519) + p.SetState(10514) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164198,13 +164051,13 @@ func (p *PostgreSQLParser) Case_expr() (localctx ICase_exprContext) { if _la == PostgreSQLParserELSE { { - p.SetState(10518) + p.SetState(10513) p.Case_default() } } { - p.SetState(10521) + p.SetState(10516) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -164345,11 +164198,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, 1362, PostgreSQLParserRULE_when_clause_list) + p.EnterRule(localctx, 1360, PostgreSQLParserRULE_when_clause_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(10524) + p.SetState(10519) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164358,11 +164211,11 @@ func (p *PostgreSQLParser) When_clause_list() (localctx IWhen_clause_listContext for ok := true; ok; ok = _la == PostgreSQLParserWHEN { { - p.SetState(10523) + p.SetState(10518) p.When_clause() } - p.SetState(10526) + p.SetState(10521) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -164513,10 +164366,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, 1364, PostgreSQLParserRULE_when_clause) + p.EnterRule(localctx, 1362, PostgreSQLParserRULE_when_clause) p.EnterOuterAlt(localctx, 1) { - p.SetState(10528) + p.SetState(10523) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -164524,11 +164377,11 @@ func (p *PostgreSQLParser) When_clause() (localctx IWhen_clauseContext) { } } { - p.SetState(10529) + p.SetState(10524) p.A_expr() } { - p.SetState(10530) + p.SetState(10525) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -164536,7 +164389,7 @@ func (p *PostgreSQLParser) When_clause() (localctx IWhen_clauseContext) { } } { - p.SetState(10531) + p.SetState(10526) p.A_expr() } @@ -164652,10 +164505,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, 1366, PostgreSQLParserRULE_case_default) + p.EnterRule(localctx, 1364, PostgreSQLParserRULE_case_default) p.EnterOuterAlt(localctx, 1) { - p.SetState(10533) + p.SetState(10528) p.Match(PostgreSQLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -164663,7 +164516,7 @@ func (p *PostgreSQLParser) Case_default() (localctx ICase_defaultContext) { } } { - p.SetState(10534) + p.SetState(10529) p.A_expr() } @@ -164774,10 +164627,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, 1368, PostgreSQLParserRULE_case_arg) + p.EnterRule(localctx, 1366, PostgreSQLParserRULE_case_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(10536) + p.SetState(10531) p.A_expr() } @@ -164905,18 +164758,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, 1370, PostgreSQLParserRULE_columnref) + p.EnterRule(localctx, 1368, PostgreSQLParserRULE_columnref) p.EnterOuterAlt(localctx, 1) { - p.SetState(10538) + p.SetState(10533) p.Colid() } - p.SetState(10540) + p.SetState(10535) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1024, p.GetParserRuleContext()) == 1 { { - p.SetState(10539) + p.SetState(10534) p.Indirection() } @@ -165116,10 +164969,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, 1372, PostgreSQLParserRULE_indirection_el) + p.EnterRule(localctx, 1370, PostgreSQLParserRULE_indirection_el) var _la int - p.SetState(10559) + p.SetState(10554) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165129,14 +164982,14 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { case PostgreSQLParserDOT: p.EnterOuterAlt(localctx, 1) { - p.SetState(10542) + p.SetState(10537) p.Match(PostgreSQLParserDOT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10545) + p.SetState(10540) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165145,13 +164998,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(10543) + p.SetState(10538) p.Attr_name() } case PostgreSQLParserSTAR: { - p.SetState(10544) + p.SetState(10539) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -165167,14 +165020,14 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { case PostgreSQLParserOPEN_BRACKET: p.EnterOuterAlt(localctx, 2) { - p.SetState(10547) + p.SetState(10542) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10556) + p.SetState(10551) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165183,12 +165036,12 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1028, p.GetParserRuleContext()) { case 1: { - p.SetState(10548) + p.SetState(10543) p.A_expr() } case 2: - p.SetState(10550) + p.SetState(10545) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165197,20 +165050,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(10549) + p.SetState(10544) p.Opt_slice_bound() } } { - p.SetState(10552) + p.SetState(10547) p.Match(PostgreSQLParserCOLON) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10554) + p.SetState(10549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165219,7 +165072,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(10553) + p.SetState(10548) p.Opt_slice_bound() } @@ -165229,7 +165082,7 @@ func (p *PostgreSQLParser) Indirection_el() (localctx IIndirection_elContext) { goto errorExit } { - p.SetState(10558) + p.SetState(10553) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -165349,10 +165202,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, 1374, PostgreSQLParserRULE_opt_slice_bound) + p.EnterRule(localctx, 1372, PostgreSQLParserRULE_opt_slice_bound) p.EnterOuterAlt(localctx, 1) { - p.SetState(10561) + p.SetState(10556) p.A_expr() } @@ -165489,11 +165342,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, 1376, PostgreSQLParserRULE_indirection) + p.EnterRule(localctx, 1374, PostgreSQLParserRULE_indirection) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10564) + p.SetState(10559) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165503,7 +165356,7 @@ func (p *PostgreSQLParser) Indirection() (localctx IIndirectionContext) { switch _alt { case 1: { - p.SetState(10563) + p.SetState(10558) p.Indirection_el() } @@ -165512,7 +165365,7 @@ func (p *PostgreSQLParser) Indirection() (localctx IIndirectionContext) { goto errorExit } - p.SetState(10566) + p.SetState(10561) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1030, p.GetParserRuleContext()) if p.HasError() { @@ -165653,11 +165506,11 @@ 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, 1378, PostgreSQLParserRULE_opt_indirection) + p.EnterRule(localctx, 1376, PostgreSQLParserRULE_opt_indirection) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10571) + p.SetState(10566) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165669,12 +165522,12 @@ func (p *PostgreSQLParser) Opt_indirection() (localctx IOpt_indirectionContext) for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10568) + p.SetState(10563) p.Indirection_el() } } - p.SetState(10573) + p.SetState(10568) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165792,10 +165645,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, 1380, PostgreSQLParserRULE_opt_target_list) + p.EnterRule(localctx, 1378, PostgreSQLParserRULE_opt_target_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(10574) + p.SetState(10569) p.Target_list() } @@ -165942,15 +165795,15 @@ 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, 1382, PostgreSQLParserRULE_target_list) + p.EnterRule(localctx, 1380, PostgreSQLParserRULE_target_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10576) + p.SetState(10571) p.Target_el() } - p.SetState(10581) + p.SetState(10576) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -165962,7 +165815,7 @@ func (p *PostgreSQLParser) Target_list() (localctx ITarget_listContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10577) + p.SetState(10572) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -165970,12 +165823,12 @@ func (p *PostgreSQLParser) Target_list() (localctx ITarget_listContext) { } } { - p.SetState(10578) + p.SetState(10573) p.Target_el() } } - p.SetState(10583) + p.SetState(10578) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166171,8 +166024,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, 1384, PostgreSQLParserRULE_target_el) - p.SetState(10589) + p.EnterRule(localctx, 1382, PostgreSQLParserRULE_target_el) + p.SetState(10584) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166183,15 +166036,15 @@ func (p *PostgreSQLParser) Target_el() (localctx ITarget_elContext) { localctx = NewTarget_labelContext(p, localctx) p.EnterOuterAlt(localctx, 1) { - p.SetState(10584) + p.SetState(10579) p.A_expr() } - p.SetState(10586) + p.SetState(10581) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1033, p.GetParserRuleContext()) == 1 { { - p.SetState(10585) + p.SetState(10580) p.Target_alias() } @@ -166203,7 +166056,7 @@ func (p *PostgreSQLParser) Target_el() (localctx ITarget_elContext) { localctx = NewTarget_starContext(p, localctx) p.EnterOuterAlt(localctx, 2) { - p.SetState(10588) + p.SetState(10583) p.Match(PostgreSQLParserSTAR) if p.HasError() { // Recognition error - abort rule @@ -166345,8 +166198,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, 1386, PostgreSQLParserRULE_target_alias) - p.SetState(10594) + p.EnterRule(localctx, 1384, PostgreSQLParserRULE_target_alias) + p.SetState(10589) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166356,7 +166209,7 @@ func (p *PostgreSQLParser) Target_alias() (localctx ITarget_aliasContext) { case PostgreSQLParserAS: p.EnterOuterAlt(localctx, 1) { - p.SetState(10591) + p.SetState(10586) p.Match(PostgreSQLParserAS) if p.HasError() { // Recognition error - abort rule @@ -166364,14 +166217,14 @@ func (p *PostgreSQLParser) Target_alias() (localctx ITarget_aliasContext) { } } { - p.SetState(10592) + p.SetState(10587) 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(10593) + p.SetState(10588) p.Identifier() } @@ -166523,15 +166376,15 @@ 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, 1388, PostgreSQLParserRULE_qualified_name_list) + p.EnterRule(localctx, 1386, PostgreSQLParserRULE_qualified_name_list) var _alt int p.EnterOuterAlt(localctx, 1) { - p.SetState(10596) + p.SetState(10591) p.Qualified_name() } - p.SetState(10601) + p.SetState(10596) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166543,7 +166396,7 @@ func (p *PostgreSQLParser) Qualified_name_list() (localctx IQualified_name_listC for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10597) + p.SetState(10592) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -166551,12 +166404,12 @@ func (p *PostgreSQLParser) Qualified_name_list() (localctx IQualified_name_listC } } { - p.SetState(10598) + p.SetState(10593) p.Qualified_name() } } - p.SetState(10603) + p.SetState(10598) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166691,15 +166544,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, 1390, PostgreSQLParserRULE_qualified_name) + p.EnterRule(localctx, 1388, PostgreSQLParserRULE_qualified_name) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10604) + p.SetState(10599) p.Colid() } - p.SetState(10606) + p.SetState(10601) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166708,7 +166561,7 @@ func (p *PostgreSQLParser) Qualified_name() (localctx IQualified_nameContext) { if _la == PostgreSQLParserOPEN_BRACKET || _la == PostgreSQLParserDOT { { - p.SetState(10605) + p.SetState(10600) p.Indirection() } @@ -166857,15 +166710,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, 1392, PostgreSQLParserRULE_name_list) + p.EnterRule(localctx, 1390, PostgreSQLParserRULE_name_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10608) + p.SetState(10603) p.Name() } - p.SetState(10613) + p.SetState(10608) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -166874,7 +166727,7 @@ func (p *PostgreSQLParser) Name_list() (localctx IName_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10609) + p.SetState(10604) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -166882,11 +166735,11 @@ func (p *PostgreSQLParser) Name_list() (localctx IName_listContext) { } } { - p.SetState(10610) + p.SetState(10605) p.Name() } - p.SetState(10615) + p.SetState(10610) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167001,10 +166854,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, 1394, PostgreSQLParserRULE_name) + p.EnterRule(localctx, 1392, PostgreSQLParserRULE_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10616) + p.SetState(10611) p.Colid() } @@ -167115,10 +166968,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, 1396, PostgreSQLParserRULE_attr_name) + p.EnterRule(localctx, 1394, PostgreSQLParserRULE_attr_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10618) + p.SetState(10613) p.Collabel() } @@ -167229,10 +167082,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, 1398, PostgreSQLParserRULE_file_name) + p.EnterRule(localctx, 1396, PostgreSQLParserRULE_file_name) p.EnterOuterAlt(localctx, 1) { - p.SetState(10620) + p.SetState(10615) p.Sconst() } @@ -167404,8 +167257,8 @@ 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, 1400, PostgreSQLParserRULE_func_name) - p.SetState(10629) + p.EnterRule(localctx, 1398, PostgreSQLParserRULE_func_name) + p.SetState(10624) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167415,32 +167268,32 @@ func (p *PostgreSQLParser) Func_name() (localctx IFunc_nameContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10622) + p.SetState(10617) p.Builtin_function_name() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10623) + p.SetState(10618) p.Type_function_name() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10624) + p.SetState(10619) p.Colid() } { - p.SetState(10625) + p.SetState(10620) p.Indirection() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10627) + p.SetState(10622) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -167451,7 +167304,7 @@ func (p *PostgreSQLParser) Func_name() (localctx IFunc_nameContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10628) + p.SetState(10623) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -167765,10 +167618,10 @@ func (s *AexprconstContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { localctx = NewAexprconstContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1402, PostgreSQLParserRULE_aexprconst) + p.EnterRule(localctx, 1400, PostgreSQLParserRULE_aexprconst) var _la int - p.SetState(10666) + p.SetState(10661) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167778,45 +167631,45 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10631) + p.SetState(10626) p.Iconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10632) + p.SetState(10627) p.Fconst() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10633) + p.SetState(10628) p.Sconst() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10634) + p.SetState(10629) p.Bconst() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10635) + p.SetState(10630) p.Xconst() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10636) + p.SetState(10631) p.Func_name() } - p.SetState(10646) + p.SetState(10641) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167825,13 +167678,13 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(10637) + p.SetState(10632) p.Sconst() } case PostgreSQLParserOPEN_PAREN: { - p.SetState(10638) + p.SetState(10633) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167839,10 +167692,10 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10639) + p.SetState(10634) p.Func_arg_list() } - p.SetState(10641) + p.SetState(10636) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167851,13 +167704,13 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { if _la == PostgreSQLParserORDER { { - p.SetState(10640) + p.SetState(10635) p.Opt_sort_clause() } } { - p.SetState(10643) + p.SetState(10638) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167865,7 +167718,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10644) + p.SetState(10639) p.Sconst() } @@ -167877,21 +167730,21 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10648) + p.SetState(10643) p.Consttypename() } { - p.SetState(10649) + p.SetState(10644) p.Sconst() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10651) + p.SetState(10646) p.Constinterval() } - p.SetState(10661) + p.SetState(10656) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -167900,15 +167753,15 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserStringConstant, PostgreSQLParserUnicodeEscapeStringConstant, PostgreSQLParserBeginDollarStringConstant, PostgreSQLParserEscapeStringConstant: { - p.SetState(10652) + p.SetState(10647) p.Sconst() } - p.SetState(10654) + p.SetState(10649) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1042, p.GetParserRuleContext()) == 1 { { - p.SetState(10653) + p.SetState(10648) p.Opt_interval() } @@ -167918,7 +167771,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case PostgreSQLParserOPEN_PAREN: { - p.SetState(10656) + p.SetState(10651) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167926,11 +167779,11 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10657) + p.SetState(10652) p.Iconst() } { - p.SetState(10658) + p.SetState(10653) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -167938,7 +167791,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { } } { - p.SetState(10659) + p.SetState(10654) p.Sconst() } @@ -167950,7 +167803,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(10663) + p.SetState(10658) p.Match(PostgreSQLParserTRUE_P) if p.HasError() { // Recognition error - abort rule @@ -167961,7 +167814,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(10664) + p.SetState(10659) p.Match(PostgreSQLParserFALSE_P) if p.HasError() { // Recognition error - abort rule @@ -167972,7 +167825,7 @@ func (p *PostgreSQLParser) Aexprconst() (localctx IAexprconstContext) { case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(10665) + p.SetState(10660) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -168079,10 +167932,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, 1404, PostgreSQLParserRULE_xconst) + p.EnterRule(localctx, 1402, PostgreSQLParserRULE_xconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10668) + p.SetState(10663) p.Match(PostgreSQLParserHexadecimalStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168185,10 +168038,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, 1406, PostgreSQLParserRULE_bconst) + p.EnterRule(localctx, 1404, PostgreSQLParserRULE_bconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10670) + p.SetState(10665) p.Match(PostgreSQLParserBinaryStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168291,10 +168144,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, 1408, PostgreSQLParserRULE_fconst) + p.EnterRule(localctx, 1406, PostgreSQLParserRULE_fconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10672) + p.SetState(10667) p.Match(PostgreSQLParserNumeric) if p.HasError() { // Recognition error - abort rule @@ -168397,10 +168250,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, 1410, PostgreSQLParserRULE_iconst) + p.EnterRule(localctx, 1408, PostgreSQLParserRULE_iconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10674) + p.SetState(10669) p.Match(PostgreSQLParserIntegral) if p.HasError() { // Recognition error - abort rule @@ -168532,18 +168385,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, 1412, PostgreSQLParserRULE_sconst) + p.EnterRule(localctx, 1410, PostgreSQLParserRULE_sconst) p.EnterOuterAlt(localctx, 1) { - p.SetState(10676) + p.SetState(10671) p.Anysconst() } - p.SetState(10678) + p.SetState(10673) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1045, p.GetParserRuleContext()) == 1 { { - p.SetState(10677) + p.SetState(10672) p.Opt_uescape() } @@ -168676,10 +168529,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, 1414, PostgreSQLParserRULE_anysconst) + p.EnterRule(localctx, 1412, PostgreSQLParserRULE_anysconst) var _la int - p.SetState(10691) + p.SetState(10686) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168689,7 +168542,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserStringConstant: p.EnterOuterAlt(localctx, 1) { - p.SetState(10680) + p.SetState(10675) p.Match(PostgreSQLParserStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168700,7 +168553,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserUnicodeEscapeStringConstant: p.EnterOuterAlt(localctx, 2) { - p.SetState(10681) + p.SetState(10676) p.Match(PostgreSQLParserUnicodeEscapeStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168711,14 +168564,14 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserBeginDollarStringConstant: p.EnterOuterAlt(localctx, 3) { - p.SetState(10682) + p.SetState(10677) p.Match(PostgreSQLParserBeginDollarStringConstant) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10686) + p.SetState(10681) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168727,7 +168580,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { for _la == PostgreSQLParserDollarText { { - p.SetState(10683) + p.SetState(10678) p.Match(PostgreSQLParserDollarText) if p.HasError() { // Recognition error - abort rule @@ -168735,7 +168588,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { } } - p.SetState(10688) + p.SetState(10683) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -168743,7 +168596,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { _la = p.GetTokenStream().LA(1) } { - p.SetState(10689) + p.SetState(10684) p.Match(PostgreSQLParserEndDollarStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168754,7 +168607,7 @@ func (p *PostgreSQLParser) Anysconst() (localctx IAnysconstContext) { case PostgreSQLParserEscapeStringConstant: p.EnterOuterAlt(localctx, 4) { - p.SetState(10690) + p.SetState(10685) p.Match(PostgreSQLParserEscapeStringConstant) if p.HasError() { // Recognition error - abort rule @@ -168879,10 +168732,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, 1416, PostgreSQLParserRULE_opt_uescape) + p.EnterRule(localctx, 1414, PostgreSQLParserRULE_opt_uescape) p.EnterOuterAlt(localctx, 1) { - p.SetState(10693) + p.SetState(10688) p.Match(PostgreSQLParserUESCAPE) if p.HasError() { // Recognition error - abort rule @@ -168890,7 +168743,7 @@ func (p *PostgreSQLParser) Opt_uescape() (localctx IOpt_uescapeContext) { } } { - p.SetState(10694) + p.SetState(10689) p.Anysconst() } @@ -169011,8 +168864,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, 1418, PostgreSQLParserRULE_signediconst) - p.SetState(10701) + p.EnterRule(localctx, 1416, PostgreSQLParserRULE_signediconst) + p.SetState(10696) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169022,14 +168875,14 @@ func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { case PostgreSQLParserIntegral: p.EnterOuterAlt(localctx, 1) { - p.SetState(10696) + p.SetState(10691) p.Iconst() } case PostgreSQLParserPLUS: p.EnterOuterAlt(localctx, 2) { - p.SetState(10697) + p.SetState(10692) p.Match(PostgreSQLParserPLUS) if p.HasError() { // Recognition error - abort rule @@ -169037,14 +168890,14 @@ func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { } } { - p.SetState(10698) + p.SetState(10693) p.Iconst() } case PostgreSQLParserMINUS: p.EnterOuterAlt(localctx, 3) { - p.SetState(10699) + p.SetState(10694) p.Match(PostgreSQLParserMINUS) if p.HasError() { // Recognition error - abort rule @@ -169052,7 +168905,7 @@ func (p *PostgreSQLParser) Signediconst() (localctx ISignediconstContext) { } } { - p.SetState(10700) + p.SetState(10695) p.Iconst() } @@ -169168,10 +169021,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, 1420, PostgreSQLParserRULE_roleid) + p.EnterRule(localctx, 1418, PostgreSQLParserRULE_roleid) p.EnterOuterAlt(localctx, 1) { - p.SetState(10703) + p.SetState(10698) p.Rolespec() } @@ -169292,8 +169145,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, 1422, PostgreSQLParserRULE_rolespec) - p.SetState(10708) + p.EnterRule(localctx, 1420, PostgreSQLParserRULE_rolespec) + p.SetState(10703) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169303,14 +169156,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(10705) + p.SetState(10700) p.Nonreservedword() } case PostgreSQLParserCURRENT_USER: p.EnterOuterAlt(localctx, 2) { - p.SetState(10706) + p.SetState(10701) p.Match(PostgreSQLParserCURRENT_USER) if p.HasError() { // Recognition error - abort rule @@ -169321,7 +169174,7 @@ func (p *PostgreSQLParser) Rolespec() (localctx IRolespecContext) { case PostgreSQLParserSESSION_USER: p.EnterOuterAlt(localctx, 3) { - p.SetState(10707) + p.SetState(10702) p.Match(PostgreSQLParserSESSION_USER) if p.HasError() { // Recognition error - abort rule @@ -169477,15 +169330,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, 1424, PostgreSQLParserRULE_role_list) + p.EnterRule(localctx, 1422, PostgreSQLParserRULE_role_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10710) + p.SetState(10705) p.Rolespec() } - p.SetState(10715) + p.SetState(10710) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169494,7 +169347,7 @@ func (p *PostgreSQLParser) Role_list() (localctx IRole_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(10711) + p.SetState(10706) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -169502,11 +169355,11 @@ func (p *PostgreSQLParser) Role_list() (localctx IRole_listContext) { } } { - p.SetState(10712) + p.SetState(10707) p.Rolespec() } - p.SetState(10717) + p.SetState(10712) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169682,8 +169535,8 @@ func (s *ColidContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Colid() (localctx IColidContext) { localctx = NewColidContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1426, PostgreSQLParserRULE_colid) - p.SetState(10724) + p.EnterRule(localctx, 1424, PostgreSQLParserRULE_colid) + p.SetState(10719) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169693,35 +169546,35 @@ func (p *PostgreSQLParser) Colid() (localctx IColidContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10718) + p.SetState(10713) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10719) + p.SetState(10714) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10720) + p.SetState(10715) p.Col_name_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10721) + p.SetState(10716) p.Plsql_unreserved_keyword() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10722) + p.SetState(10717) p.Match(PostgreSQLParserLEFT) if p.HasError() { // Recognition error - abort rule @@ -169732,7 +169585,7 @@ func (p *PostgreSQLParser) Colid() (localctx IColidContext) { case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10723) + p.SetState(10718) p.Match(PostgreSQLParserRIGHT) if p.HasError() { // Recognition error - abort rule @@ -169902,8 +169755,8 @@ 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, 1428, PostgreSQLParserRULE_table_alias) - p.SetState(10730) + p.EnterRule(localctx, 1426, PostgreSQLParserRULE_table_alias) + p.SetState(10725) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -169913,28 +169766,28 @@ func (p *PostgreSQLParser) Table_alias() (localctx ITable_aliasContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10726) + p.SetState(10721) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10727) + p.SetState(10722) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10728) + p.SetState(10723) p.Col_name_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10729) + p.SetState(10724) p.Plsql_unreserved_keyword() } @@ -170100,8 +169953,8 @@ 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, 1430, PostgreSQLParserRULE_type_function_name) - p.SetState(10736) + p.EnterRule(localctx, 1428, PostgreSQLParserRULE_type_function_name) + p.SetState(10731) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -170111,28 +169964,28 @@ func (p *PostgreSQLParser) Type_function_name() (localctx IType_function_nameCon case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10732) + p.SetState(10727) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10733) + p.SetState(10728) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10734) + p.SetState(10729) p.Plsql_unreserved_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10735) + p.SetState(10730) p.Type_func_name_keyword() } @@ -170298,8 +170151,8 @@ func (s *NonreservedwordContext) Accept(visitor antlr.ParseTreeVisitor) interfac func (p *PostgreSQLParser) Nonreservedword() (localctx INonreservedwordContext) { localctx = NewNonreservedwordContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1432, PostgreSQLParserRULE_nonreservedword) - p.SetState(10742) + p.EnterRule(localctx, 1430, PostgreSQLParserRULE_nonreservedword) + p.SetState(10737) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -170309,28 +170162,28 @@ func (p *PostgreSQLParser) Nonreservedword() (localctx INonreservedwordContext) case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10738) + p.SetState(10733) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10739) + p.SetState(10734) p.Unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10740) + p.SetState(10735) p.Col_name_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10741) + p.SetState(10736) p.Type_func_name_keyword() } @@ -170530,8 +170383,8 @@ func (s *CollabelContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { func (p *PostgreSQLParser) Collabel() (localctx ICollabelContext) { localctx = NewCollabelContext(p, p.GetParserRuleContext(), p.GetState()) - p.EnterRule(localctx, 1434, PostgreSQLParserRULE_collabel) - p.SetState(10750) + p.EnterRule(localctx, 1432, PostgreSQLParserRULE_collabel) + p.SetState(10745) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -170541,42 +170394,42 @@ func (p *PostgreSQLParser) Collabel() (localctx ICollabelContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10744) + p.SetState(10739) p.Identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10745) + p.SetState(10740) p.Plsql_unreserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10746) + p.SetState(10741) p.Unreserved_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10747) + p.SetState(10742) p.Col_name_keyword() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10748) + p.SetState(10743) p.Type_func_name_keyword() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10749) + p.SetState(10744) p.Reserved_keyword() } @@ -170757,8 +170610,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, 1436, PostgreSQLParserRULE_identifier) - p.SetState(10761) + p.EnterRule(localctx, 1434, PostgreSQLParserRULE_identifier) + p.SetState(10756) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -170768,19 +170621,19 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserIdentifier: p.EnterOuterAlt(localctx, 1) { - p.SetState(10752) + p.SetState(10747) p.Match(PostgreSQLParserIdentifier) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10754) + p.SetState(10749) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1056, p.GetParserRuleContext()) == 1 { { - p.SetState(10753) + p.SetState(10748) p.Opt_uescape() } @@ -170791,7 +170644,7 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserQuotedIdentifier: p.EnterOuterAlt(localctx, 2) { - p.SetState(10756) + p.SetState(10751) p.Match(PostgreSQLParserQuotedIdentifier) if p.HasError() { // Recognition error - abort rule @@ -170802,7 +170655,7 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserUnicodeQuotedIdentifier: p.EnterOuterAlt(localctx, 3) { - p.SetState(10757) + p.SetState(10752) p.Match(PostgreSQLParserUnicodeQuotedIdentifier) if p.HasError() { // Recognition error - abort rule @@ -170813,21 +170666,21 @@ func (p *PostgreSQLParser) Identifier() (localctx IIdentifierContext) { case PostgreSQLParserPLSQLVARIABLENAME: p.EnterOuterAlt(localctx, 4) { - p.SetState(10758) + p.SetState(10753) p.Plsqlvariablename() } case PostgreSQLParserPLSQLIDENTIFIER: p.EnterOuterAlt(localctx, 5) { - p.SetState(10759) + p.SetState(10754) 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(10760) + p.SetState(10755) p.Plsql_unreserved_keyword() } @@ -170931,10 +170784,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, 1438, PostgreSQLParserRULE_plsqlidentifier) + p.EnterRule(localctx, 1436, PostgreSQLParserRULE_plsqlidentifier) p.EnterOuterAlt(localctx, 1) { - p.SetState(10763) + p.SetState(10758) p.Match(PostgreSQLParserPLSQLIDENTIFIER) if p.HasError() { // Recognition error - abort rule @@ -172557,12 +172410,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, 1440, PostgreSQLParserRULE_unreserved_keyword) + p.EnterRule(localctx, 1438, PostgreSQLParserRULE_unreserved_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10765) + p.SetState(10760) _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) { @@ -172991,8 +172844,8 @@ 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, 1442, PostgreSQLParserRULE_col_name_keyword) - p.SetState(10823) + p.EnterRule(localctx, 1440, PostgreSQLParserRULE_col_name_keyword) + p.SetState(10818) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -173002,7 +172855,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10767) + p.SetState(10762) p.Match(PostgreSQLParserBETWEEN) if p.HasError() { // Recognition error - abort rule @@ -173013,7 +172866,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10768) + p.SetState(10763) p.Match(PostgreSQLParserBIGINT) if p.HasError() { // Recognition error - abort rule @@ -173024,14 +172877,14 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10769) + p.SetState(10764) p.Bit() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10770) + p.SetState(10765) p.Match(PostgreSQLParserBOOLEAN_P) if p.HasError() { // Recognition error - abort rule @@ -173042,7 +172895,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10771) + p.SetState(10766) p.Match(PostgreSQLParserCHAR_P) if p.HasError() { // Recognition error - abort rule @@ -173053,14 +172906,14 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(10772) + p.SetState(10767) p.Character() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(10773) + p.SetState(10768) p.Match(PostgreSQLParserCOALESCE) if p.HasError() { // Recognition error - abort rule @@ -173071,7 +172924,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(10774) + p.SetState(10769) p.Match(PostgreSQLParserDEC) if p.HasError() { // Recognition error - abort rule @@ -173082,7 +172935,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(10775) + p.SetState(10770) p.Match(PostgreSQLParserDECIMAL_P) if p.HasError() { // Recognition error - abort rule @@ -173093,7 +172946,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(10776) + p.SetState(10771) p.Match(PostgreSQLParserEXISTS) if p.HasError() { // Recognition error - abort rule @@ -173104,7 +172957,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(10777) + p.SetState(10772) p.Match(PostgreSQLParserEXTRACT) if p.HasError() { // Recognition error - abort rule @@ -173115,7 +172968,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(10778) + p.SetState(10773) p.Match(PostgreSQLParserFLOAT_P) if p.HasError() { // Recognition error - abort rule @@ -173126,7 +172979,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(10779) + p.SetState(10774) p.Match(PostgreSQLParserGREATEST) if p.HasError() { // Recognition error - abort rule @@ -173137,7 +172990,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(10780) + p.SetState(10775) p.Match(PostgreSQLParserGROUPING) if p.HasError() { // Recognition error - abort rule @@ -173148,7 +173001,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(10781) + p.SetState(10776) p.Match(PostgreSQLParserINOUT) if p.HasError() { // Recognition error - abort rule @@ -173159,7 +173012,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(10782) + p.SetState(10777) p.Match(PostgreSQLParserINT_P) if p.HasError() { // Recognition error - abort rule @@ -173170,7 +173023,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(10783) + p.SetState(10778) p.Match(PostgreSQLParserINTEGER) if p.HasError() { // Recognition error - abort rule @@ -173181,7 +173034,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(10784) + p.SetState(10779) p.Match(PostgreSQLParserINTERVAL) if p.HasError() { // Recognition error - abort rule @@ -173192,7 +173045,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(10785) + p.SetState(10780) p.Match(PostgreSQLParserJSON_ARRAY) if p.HasError() { // Recognition error - abort rule @@ -173203,7 +173056,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(10786) + p.SetState(10781) p.Match(PostgreSQLParserJSON_ARRAYAGG) if p.HasError() { // Recognition error - abort rule @@ -173214,7 +173067,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(10787) + p.SetState(10782) p.Match(PostgreSQLParserJSON_OBJECT) if p.HasError() { // Recognition error - abort rule @@ -173225,7 +173078,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(10788) + p.SetState(10783) p.Match(PostgreSQLParserJSON_OBJECTAGG) if p.HasError() { // Recognition error - abort rule @@ -173236,7 +173089,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(10789) + p.SetState(10784) p.Match(PostgreSQLParserLEAST) if p.HasError() { // Recognition error - abort rule @@ -173247,7 +173100,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(10790) + p.SetState(10785) p.Match(PostgreSQLParserNATIONAL) if p.HasError() { // Recognition error - abort rule @@ -173258,7 +173111,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(10791) + p.SetState(10786) p.Match(PostgreSQLParserNCHAR) if p.HasError() { // Recognition error - abort rule @@ -173269,7 +173122,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 26: p.EnterOuterAlt(localctx, 26) { - p.SetState(10792) + p.SetState(10787) p.Match(PostgreSQLParserNONE) if p.HasError() { // Recognition error - abort rule @@ -173280,7 +173133,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 27: p.EnterOuterAlt(localctx, 27) { - p.SetState(10793) + p.SetState(10788) p.Match(PostgreSQLParserNORMALIZE) if p.HasError() { // Recognition error - abort rule @@ -173291,7 +173144,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 28: p.EnterOuterAlt(localctx, 28) { - p.SetState(10794) + p.SetState(10789) p.Match(PostgreSQLParserNULLIF) if p.HasError() { // Recognition error - abort rule @@ -173302,14 +173155,14 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 29: p.EnterOuterAlt(localctx, 29) { - p.SetState(10795) + p.SetState(10790) p.Numeric() } case 30: p.EnterOuterAlt(localctx, 30) { - p.SetState(10796) + p.SetState(10791) p.Match(PostgreSQLParserOUT_P) if p.HasError() { // Recognition error - abort rule @@ -173320,7 +173173,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 31: p.EnterOuterAlt(localctx, 31) { - p.SetState(10797) + p.SetState(10792) p.Match(PostgreSQLParserOVERLAY) if p.HasError() { // Recognition error - abort rule @@ -173331,7 +173184,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 32: p.EnterOuterAlt(localctx, 32) { - p.SetState(10798) + p.SetState(10793) p.Match(PostgreSQLParserPOSITION) if p.HasError() { // Recognition error - abort rule @@ -173342,7 +173195,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 33: p.EnterOuterAlt(localctx, 33) { - p.SetState(10799) + p.SetState(10794) p.Match(PostgreSQLParserPRECISION) if p.HasError() { // Recognition error - abort rule @@ -173353,7 +173206,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 34: p.EnterOuterAlt(localctx, 34) { - p.SetState(10800) + p.SetState(10795) p.Match(PostgreSQLParserREAL) if p.HasError() { // Recognition error - abort rule @@ -173364,7 +173217,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 35: p.EnterOuterAlt(localctx, 35) { - p.SetState(10801) + p.SetState(10796) p.Match(PostgreSQLParserROW) if p.HasError() { // Recognition error - abort rule @@ -173375,7 +173228,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 36: p.EnterOuterAlt(localctx, 36) { - p.SetState(10802) + p.SetState(10797) p.Match(PostgreSQLParserSETOF) if p.HasError() { // Recognition error - abort rule @@ -173386,7 +173239,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 37: p.EnterOuterAlt(localctx, 37) { - p.SetState(10803) + p.SetState(10798) p.Match(PostgreSQLParserSMALLINT) if p.HasError() { // Recognition error - abort rule @@ -173397,7 +173250,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 38: p.EnterOuterAlt(localctx, 38) { - p.SetState(10804) + p.SetState(10799) p.Match(PostgreSQLParserSUBSTRING) if p.HasError() { // Recognition error - abort rule @@ -173408,7 +173261,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 39: p.EnterOuterAlt(localctx, 39) { - p.SetState(10805) + p.SetState(10800) p.Match(PostgreSQLParserTIME) if p.HasError() { // Recognition error - abort rule @@ -173419,7 +173272,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 40: p.EnterOuterAlt(localctx, 40) { - p.SetState(10806) + p.SetState(10801) p.Match(PostgreSQLParserTIMESTAMP) if p.HasError() { // Recognition error - abort rule @@ -173430,7 +173283,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 41: p.EnterOuterAlt(localctx, 41) { - p.SetState(10807) + p.SetState(10802) p.Match(PostgreSQLParserTREAT) if p.HasError() { // Recognition error - abort rule @@ -173441,7 +173294,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 42: p.EnterOuterAlt(localctx, 42) { - p.SetState(10808) + p.SetState(10803) p.Match(PostgreSQLParserTRIM) if p.HasError() { // Recognition error - abort rule @@ -173452,7 +173305,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 43: p.EnterOuterAlt(localctx, 43) { - p.SetState(10809) + p.SetState(10804) p.Match(PostgreSQLParserVALUES) if p.HasError() { // Recognition error - abort rule @@ -173463,7 +173316,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 44: p.EnterOuterAlt(localctx, 44) { - p.SetState(10810) + p.SetState(10805) p.Match(PostgreSQLParserVARCHAR) if p.HasError() { // Recognition error - abort rule @@ -173474,7 +173327,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 45: p.EnterOuterAlt(localctx, 45) { - p.SetState(10811) + p.SetState(10806) p.Match(PostgreSQLParserXMLATTRIBUTES) if p.HasError() { // Recognition error - abort rule @@ -173485,7 +173338,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 46: p.EnterOuterAlt(localctx, 46) { - p.SetState(10812) + p.SetState(10807) p.Match(PostgreSQLParserXMLCONCAT) if p.HasError() { // Recognition error - abort rule @@ -173496,7 +173349,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 47: p.EnterOuterAlt(localctx, 47) { - p.SetState(10813) + p.SetState(10808) p.Match(PostgreSQLParserXMLELEMENT) if p.HasError() { // Recognition error - abort rule @@ -173507,7 +173360,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 48: p.EnterOuterAlt(localctx, 48) { - p.SetState(10814) + p.SetState(10809) p.Match(PostgreSQLParserXMLEXISTS) if p.HasError() { // Recognition error - abort rule @@ -173518,7 +173371,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 49: p.EnterOuterAlt(localctx, 49) { - p.SetState(10815) + p.SetState(10810) p.Match(PostgreSQLParserXMLFOREST) if p.HasError() { // Recognition error - abort rule @@ -173529,7 +173382,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 50: p.EnterOuterAlt(localctx, 50) { - p.SetState(10816) + p.SetState(10811) p.Match(PostgreSQLParserXMLNAMESPACES) if p.HasError() { // Recognition error - abort rule @@ -173540,7 +173393,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 51: p.EnterOuterAlt(localctx, 51) { - p.SetState(10817) + p.SetState(10812) p.Match(PostgreSQLParserXMLPARSE) if p.HasError() { // Recognition error - abort rule @@ -173551,7 +173404,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 52: p.EnterOuterAlt(localctx, 52) { - p.SetState(10818) + p.SetState(10813) p.Match(PostgreSQLParserXMLPI) if p.HasError() { // Recognition error - abort rule @@ -173562,7 +173415,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 53: p.EnterOuterAlt(localctx, 53) { - p.SetState(10819) + p.SetState(10814) p.Match(PostgreSQLParserXMLROOT) if p.HasError() { // Recognition error - abort rule @@ -173573,7 +173426,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 54: p.EnterOuterAlt(localctx, 54) { - p.SetState(10820) + p.SetState(10815) p.Match(PostgreSQLParserXMLSERIALIZE) if p.HasError() { // Recognition error - abort rule @@ -173584,7 +173437,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 55: p.EnterOuterAlt(localctx, 55) { - p.SetState(10821) + p.SetState(10816) p.Match(PostgreSQLParserXMLTABLE) if p.HasError() { // Recognition error - abort rule @@ -173595,7 +173448,7 @@ func (p *PostgreSQLParser) Col_name_keyword() (localctx ICol_name_keywordContext case 56: p.EnterOuterAlt(localctx, 56) { - p.SetState(10822) + p.SetState(10817) p.Builtin_function_name() } @@ -173798,12 +173651,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, 1444, PostgreSQLParserRULE_type_func_name_keyword) + p.EnterRule(localctx, 1442, PostgreSQLParserRULE_type_func_name_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10825) + p.SetState(10820) _la = p.GetTokenStream().LA(1) if !(((int64((_la-125)) & ^0x3f) == 0 && ((int64(1)<<(_la-125))&7069695) != 0) || _la == PostgreSQLParserTABLESAMPLE) { @@ -174279,12 +174132,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, 1446, PostgreSQLParserRULE_reserved_keyword) + p.EnterRule(localctx, 1444, PostgreSQLParserRULE_reserved_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10827) + p.SetState(10822) _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) { @@ -175015,12 +174868,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, 1448, PostgreSQLParserRULE_builtin_function_name) + p.EnterRule(localctx, 1446, PostgreSQLParserRULE_builtin_function_name) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10829) + p.SetState(10824) _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)) { @@ -175172,19 +175025,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, 1450, PostgreSQLParserRULE_pl_function) + p.EnterRule(localctx, 1448, PostgreSQLParserRULE_pl_function) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10831) + p.SetState(10826) p.Comp_options() } { - p.SetState(10832) + p.SetState(10827) p.Pl_block() } - p.SetState(10834) + p.SetState(10829) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175193,7 +175046,7 @@ func (p *PostgreSQLParser) Pl_function() (localctx IPl_functionContext) { if _la == PostgreSQLParserSEMI { { - p.SetState(10833) + p.SetState(10828) p.Opt_semi() } @@ -175332,11 +175185,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, 1452, PostgreSQLParserRULE_comp_options) + p.EnterRule(localctx, 1450, PostgreSQLParserRULE_comp_options) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(10839) + p.SetState(10834) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175345,11 +175198,11 @@ func (p *PostgreSQLParser) Comp_options() (localctx IComp_optionsContext) { for _la == PostgreSQLParserOperator { { - p.SetState(10836) + p.SetState(10831) p.Comp_option() } - p.SetState(10841) + p.SetState(10836) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175516,8 +175369,8 @@ 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, 1454, PostgreSQLParserRULE_comp_option) - p.SetState(10862) + p.EnterRule(localctx, 1452, PostgreSQLParserRULE_comp_option) + p.SetState(10857) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175527,11 +175380,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10842) + p.SetState(10837) p.Sharp() } { - p.SetState(10843) + p.SetState(10838) p.Match(PostgreSQLParserOPTION) if p.HasError() { // Recognition error - abort rule @@ -175539,7 +175392,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10844) + p.SetState(10839) p.Match(PostgreSQLParserDUMP) if p.HasError() { // Recognition error - abort rule @@ -175550,11 +175403,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10846) + p.SetState(10841) p.Sharp() } { - p.SetState(10847) + p.SetState(10842) p.Match(PostgreSQLParserPRINT_STRICT_PARAMS) if p.HasError() { // Recognition error - abort rule @@ -175562,18 +175415,18 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10848) + p.SetState(10843) p.Option_value() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10850) + p.SetState(10845) p.Sharp() } { - p.SetState(10851) + p.SetState(10846) p.Match(PostgreSQLParserVARIABLE_CONFLICT) if p.HasError() { // Recognition error - abort rule @@ -175581,7 +175434,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10852) + p.SetState(10847) p.Match(PostgreSQLParserERROR) if p.HasError() { // Recognition error - abort rule @@ -175592,11 +175445,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10854) + p.SetState(10849) p.Sharp() } { - p.SetState(10855) + p.SetState(10850) p.Match(PostgreSQLParserVARIABLE_CONFLICT) if p.HasError() { // Recognition error - abort rule @@ -175604,7 +175457,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10856) + p.SetState(10851) p.Match(PostgreSQLParserUSE_VARIABLE) if p.HasError() { // Recognition error - abort rule @@ -175615,11 +175468,11 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(10858) + p.SetState(10853) p.Sharp() } { - p.SetState(10859) + p.SetState(10854) p.Match(PostgreSQLParserVARIABLE_CONFLICT) if p.HasError() { // Recognition error - abort rule @@ -175627,7 +175480,7 @@ func (p *PostgreSQLParser) Comp_option() (localctx IComp_optionContext) { } } { - p.SetState(10860) + p.SetState(10855) p.Match(PostgreSQLParserUSE_COLUMN) if p.HasError() { // Recognition error - abort rule @@ -175734,10 +175587,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, 1456, PostgreSQLParserRULE_sharp) + p.EnterRule(localctx, 1454, PostgreSQLParserRULE_sharp) p.EnterOuterAlt(localctx, 1) { - p.SetState(10864) + p.SetState(10859) p.Match(PostgreSQLParserOperator) if p.HasError() { // Recognition error - abort rule @@ -175903,8 +175756,8 @@ 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, 1458, PostgreSQLParserRULE_option_value) - p.SetState(10870) + p.EnterRule(localctx, 1456, PostgreSQLParserRULE_option_value) + p.SetState(10865) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -175914,28 +175767,28 @@ func (p *PostgreSQLParser) Option_value() (localctx IOption_valueContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10866) + p.SetState(10861) p.Sconst() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10867) + p.SetState(10862) p.Reserved_keyword() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10868) + p.SetState(10863) p.Plsql_unreserved_keyword() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(10869) + p.SetState(10864) p.Unreserved_keyword() } @@ -176038,10 +175891,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, 1460, PostgreSQLParserRULE_opt_semi) + p.EnterRule(localctx, 1458, PostgreSQLParserRULE_opt_semi) p.EnterOuterAlt(localctx, 1) { - p.SetState(10872) + p.SetState(10867) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -176217,16 +176070,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, 1462, PostgreSQLParserRULE_pl_block) + p.EnterRule(localctx, 1460, PostgreSQLParserRULE_pl_block) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10874) + p.SetState(10869) p.Decl_sect() } { - p.SetState(10875) + p.SetState(10870) p.Match(PostgreSQLParserBEGIN_P) if p.HasError() { // Recognition error - abort rule @@ -176234,10 +176087,10 @@ func (p *PostgreSQLParser) Pl_block() (localctx IPl_blockContext) { } } { - p.SetState(10876) + p.SetState(10871) p.Proc_sect() } - p.SetState(10878) + p.SetState(10873) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176246,20 +176099,20 @@ func (p *PostgreSQLParser) Pl_block() (localctx IPl_blockContext) { if _la == PostgreSQLParserEXCEPTION { { - p.SetState(10877) + p.SetState(10872) p.Exception_sect() } } { - p.SetState(10880) + p.SetState(10875) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10882) + p.SetState(10877) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176268,7 +176121,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(10881) + p.SetState(10876) p.Opt_label() } @@ -176415,11 +176268,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, 1464, PostgreSQLParserRULE_decl_sect) + p.EnterRule(localctx, 1462, PostgreSQLParserRULE_decl_sect) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(10885) + p.SetState(10880) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176428,12 +176281,12 @@ func (p *PostgreSQLParser) Decl_sect() (localctx IDecl_sectContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(10884) + p.SetState(10879) p.Opt_block_label() } } - p.SetState(10891) + p.SetState(10886) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176442,15 +176295,15 @@ func (p *PostgreSQLParser) Decl_sect() (localctx IDecl_sectContext) { if _la == PostgreSQLParserDECLARE { { - p.SetState(10887) + p.SetState(10882) p.Decl_start() } - p.SetState(10889) + p.SetState(10884) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1066, p.GetParserRuleContext()) == 1 { { - p.SetState(10888) + p.SetState(10883) p.Decl_stmts() } @@ -176555,10 +176408,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, 1466, PostgreSQLParserRULE_decl_start) + p.EnterRule(localctx, 1464, PostgreSQLParserRULE_decl_start) p.EnterOuterAlt(localctx, 1) { - p.SetState(10893) + p.SetState(10888) p.Match(PostgreSQLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -176699,11 +176552,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, 1468, PostgreSQLParserRULE_decl_stmts) + p.EnterRule(localctx, 1466, PostgreSQLParserRULE_decl_stmts) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10896) + p.SetState(10891) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -176713,7 +176566,7 @@ func (p *PostgreSQLParser) Decl_stmts() (localctx IDecl_stmtsContext) { switch _alt { case 1: { - p.SetState(10895) + p.SetState(10890) p.Decl_stmt() } @@ -176722,7 +176575,7 @@ func (p *PostgreSQLParser) Decl_stmts() (localctx IDecl_stmtsContext) { goto errorExit } - p.SetState(10898) + p.SetState(10893) p.GetErrorHandler().Sync(p) _alt = p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1068, p.GetParserRuleContext()) if p.HasError() { @@ -176847,10 +176700,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, 1470, PostgreSQLParserRULE_label_decl) + p.EnterRule(localctx, 1468, PostgreSQLParserRULE_label_decl) p.EnterOuterAlt(localctx, 1) { - p.SetState(10900) + p.SetState(10895) p.Match(PostgreSQLParserLESS_LESS) if p.HasError() { // Recognition error - abort rule @@ -176858,11 +176711,11 @@ func (p *PostgreSQLParser) Label_decl() (localctx ILabel_declContext) { } } { - p.SetState(10901) + p.SetState(10896) p.Any_identifier() } { - p.SetState(10902) + p.SetState(10897) p.Match(PostgreSQLParserGREATER_GREATER) if p.HasError() { // Recognition error - abort rule @@ -176999,8 +176852,8 @@ 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, 1472, PostgreSQLParserRULE_decl_stmt) - p.SetState(10907) + p.EnterRule(localctx, 1470, PostgreSQLParserRULE_decl_stmt) + p.SetState(10902) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177010,14 +176863,14 @@ func (p *PostgreSQLParser) Decl_stmt() (localctx IDecl_stmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10904) + p.SetState(10899) p.Decl_statement() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10905) + p.SetState(10900) p.Match(PostgreSQLParserDECLARE) if p.HasError() { // Recognition error - abort rule @@ -177028,7 +176881,7 @@ func (p *PostgreSQLParser) Decl_stmt() (localctx IDecl_stmtContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10906) + p.SetState(10901) p.Label_decl() } @@ -177333,15 +177186,15 @@ 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, 1474, PostgreSQLParserRULE_decl_statement) + p.EnterRule(localctx, 1472, PostgreSQLParserRULE_decl_statement) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10909) + p.SetState(10904) p.Decl_varname() } - p.SetState(10936) + p.SetState(10931) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177350,7 +177203,7 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1076, p.GetParserRuleContext()) { case 1: { - p.SetState(10910) + p.SetState(10905) p.Match(PostgreSQLParserALIAS) if p.HasError() { // Recognition error - abort rule @@ -177358,7 +177211,7 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { } } { - p.SetState(10911) + p.SetState(10906) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -177366,17 +177219,17 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { } } { - p.SetState(10912) + p.SetState(10907) p.Decl_aliasitem() } case 2: - p.SetState(10914) + p.SetState(10909) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1070, p.GetParserRuleContext()) == 1 { { - p.SetState(10913) + p.SetState(10908) p.Decl_const() } @@ -177384,10 +177237,10 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { goto errorExit } { - p.SetState(10916) + p.SetState(10911) p.Decl_datatype() } - p.SetState(10918) + p.SetState(10913) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177396,12 +177249,12 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserCOLLATE { { - p.SetState(10917) + p.SetState(10912) p.Decl_collate() } } - p.SetState(10921) + p.SetState(10916) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177410,12 +177263,12 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserNOT { { - p.SetState(10920) + p.SetState(10915) p.Decl_notnull() } } - p.SetState(10924) + p.SetState(10919) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177424,14 +177277,14 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if (int64(_la) & ^0x3f) == 0 && ((int64(1)<<_la)&9007199255790592) != 0 { { - p.SetState(10923) + p.SetState(10918) p.Decl_defval() } } case 3: - p.SetState(10927) + p.SetState(10922) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177440,20 +177293,20 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserNO || _la == PostgreSQLParserSCROLL { { - p.SetState(10926) + p.SetState(10921) p.Opt_scrollable() } } { - p.SetState(10929) + p.SetState(10924) p.Match(PostgreSQLParserCURSOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(10931) + p.SetState(10926) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177462,17 +177315,17 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(10930) + p.SetState(10925) p.Decl_cursor_args() } } { - p.SetState(10933) + p.SetState(10928) p.Decl_is_for() } { - p.SetState(10934) + p.SetState(10929) p.Decl_cursor_query() } @@ -177480,7 +177333,7 @@ func (p *PostgreSQLParser) Decl_statement() (localctx IDecl_statementContext) { goto errorExit } { - p.SetState(10938) + p.SetState(10933) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -177588,8 +177441,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, 1476, PostgreSQLParserRULE_opt_scrollable) - p.SetState(10943) + p.EnterRule(localctx, 1474, PostgreSQLParserRULE_opt_scrollable) + p.SetState(10938) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -177599,7 +177452,7 @@ func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { case PostgreSQLParserNO: p.EnterOuterAlt(localctx, 1) { - p.SetState(10940) + p.SetState(10935) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -177607,7 +177460,7 @@ func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { } } { - p.SetState(10941) + p.SetState(10936) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -177618,7 +177471,7 @@ func (p *PostgreSQLParser) Opt_scrollable() (localctx IOpt_scrollableContext) { case PostgreSQLParserSCROLL: p.EnterOuterAlt(localctx, 2) { - p.SetState(10942) + p.SetState(10937) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -177738,10 +177591,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, 1478, PostgreSQLParserRULE_decl_cursor_query) + p.EnterRule(localctx, 1476, PostgreSQLParserRULE_decl_cursor_query) p.EnterOuterAlt(localctx, 1) { - p.SetState(10945) + p.SetState(10940) p.Selectstmt() } @@ -177862,10 +177715,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, 1480, PostgreSQLParserRULE_decl_cursor_args) + p.EnterRule(localctx, 1478, PostgreSQLParserRULE_decl_cursor_args) p.EnterOuterAlt(localctx, 1) { - p.SetState(10947) + p.SetState(10942) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -177873,11 +177726,11 @@ func (p *PostgreSQLParser) Decl_cursor_args() (localctx IDecl_cursor_argsContext } } { - p.SetState(10948) + p.SetState(10943) p.Decl_cursor_arglist() } { - p.SetState(10949) + p.SetState(10944) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -178028,15 +177881,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, 1482, PostgreSQLParserRULE_decl_cursor_arglist) + p.EnterRule(localctx, 1480, PostgreSQLParserRULE_decl_cursor_arglist) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10951) + p.SetState(10946) p.Decl_cursor_arg() } - p.SetState(10956) + p.SetState(10951) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -178045,7 +177898,7 @@ func (p *PostgreSQLParser) Decl_cursor_arglist() (localctx IDecl_cursor_arglistC for _la == PostgreSQLParserCOMMA { { - p.SetState(10952) + p.SetState(10947) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -178053,11 +177906,11 @@ func (p *PostgreSQLParser) Decl_cursor_arglist() (localctx IDecl_cursor_arglistC } } { - p.SetState(10953) + p.SetState(10948) p.Decl_cursor_arg() } - p.SetState(10958) + p.SetState(10953) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -178189,14 +178042,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, 1484, PostgreSQLParserRULE_decl_cursor_arg) + p.EnterRule(localctx, 1482, PostgreSQLParserRULE_decl_cursor_arg) p.EnterOuterAlt(localctx, 1) { - p.SetState(10959) + p.SetState(10954) p.Decl_varname() } { - p.SetState(10960) + p.SetState(10955) p.Decl_datatype() } @@ -178300,12 +178153,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, 1486, PostgreSQLParserRULE_decl_is_for) + p.EnterRule(localctx, 1484, PostgreSQLParserRULE_decl_is_for) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10962) + p.SetState(10957) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFOR || _la == PostgreSQLParserIS) { @@ -178428,8 +178281,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, 1488, PostgreSQLParserRULE_decl_aliasitem) - p.SetState(10966) + p.EnterRule(localctx, 1486, PostgreSQLParserRULE_decl_aliasitem) + p.SetState(10961) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -178439,7 +178292,7 @@ func (p *PostgreSQLParser) Decl_aliasitem() (localctx IDecl_aliasitemContext) { case PostgreSQLParserPARAM: p.EnterOuterAlt(localctx, 1) { - p.SetState(10964) + p.SetState(10959) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -178450,7 +178303,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(10965) + p.SetState(10960) p.Colid() } @@ -178566,10 +178419,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, 1490, PostgreSQLParserRULE_decl_varname) + p.EnterRule(localctx, 1488, PostgreSQLParserRULE_decl_varname) p.EnterOuterAlt(localctx, 1) { - p.SetState(10968) + p.SetState(10963) p.Any_identifier() } @@ -178668,10 +178521,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, 1492, PostgreSQLParserRULE_decl_const) + p.EnterRule(localctx, 1490, PostgreSQLParserRULE_decl_const) p.EnterOuterAlt(localctx, 1) { - p.SetState(10970) + p.SetState(10965) p.Match(PostgreSQLParserCONSTANT) if p.HasError() { // Recognition error - abort rule @@ -178786,10 +178639,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, 1494, PostgreSQLParserRULE_decl_datatype) + p.EnterRule(localctx, 1492, PostgreSQLParserRULE_decl_datatype) p.EnterOuterAlt(localctx, 1) { - p.SetState(10972) + p.SetState(10967) p.Typename() } @@ -178905,10 +178758,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, 1496, PostgreSQLParserRULE_decl_collate) + p.EnterRule(localctx, 1494, PostgreSQLParserRULE_decl_collate) p.EnterOuterAlt(localctx, 1) { - p.SetState(10974) + p.SetState(10969) p.Match(PostgreSQLParserCOLLATE) if p.HasError() { // Recognition error - abort rule @@ -178916,7 +178769,7 @@ func (p *PostgreSQLParser) Decl_collate() (localctx IDecl_collateContext) { } } { - p.SetState(10975) + p.SetState(10970) p.Any_name() } @@ -179020,10 +178873,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, 1498, PostgreSQLParserRULE_decl_notnull) + p.EnterRule(localctx, 1496, PostgreSQLParserRULE_decl_notnull) p.EnterOuterAlt(localctx, 1) { - p.SetState(10977) + p.SetState(10972) p.Match(PostgreSQLParserNOT) if p.HasError() { // Recognition error - abort rule @@ -179031,7 +178884,7 @@ func (p *PostgreSQLParser) Decl_notnull() (localctx IDecl_notnullContext) { } } { - p.SetState(10978) + p.SetState(10973) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -179163,14 +179016,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, 1500, PostgreSQLParserRULE_decl_defval) + p.EnterRule(localctx, 1498, PostgreSQLParserRULE_decl_defval) p.EnterOuterAlt(localctx, 1) { - p.SetState(10980) + p.SetState(10975) p.Decl_defkey() } { - p.SetState(10981) + p.SetState(10976) p.Sql_expression() } @@ -179286,8 +179139,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, 1502, PostgreSQLParserRULE_decl_defkey) - p.SetState(10985) + p.EnterRule(localctx, 1500, PostgreSQLParserRULE_decl_defkey) + p.SetState(10980) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -179297,14 +179150,14 @@ func (p *PostgreSQLParser) Decl_defkey() (localctx IDecl_defkeyContext) { case PostgreSQLParserEQUAL, PostgreSQLParserCOLON_EQUALS: p.EnterOuterAlt(localctx, 1) { - p.SetState(10983) + p.SetState(10978) p.Assign_operator() } case PostgreSQLParserDEFAULT: p.EnterOuterAlt(localctx, 2) { - p.SetState(10984) + p.SetState(10979) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -179417,12 +179270,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, 1504, PostgreSQLParserRULE_assign_operator) + p.EnterRule(localctx, 1502, PostgreSQLParserRULE_assign_operator) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(10987) + p.SetState(10982) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserEQUAL || _la == PostgreSQLParserCOLON_EQUALS) { @@ -179566,11 +179419,11 @@ 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, 1506, PostgreSQLParserRULE_proc_sect) + p.EnterRule(localctx, 1504, PostgreSQLParserRULE_proc_sect) var _alt int p.EnterOuterAlt(localctx, 1) - p.SetState(10992) + p.SetState(10987) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -179582,12 +179435,12 @@ func (p *PostgreSQLParser) Proc_sect() (localctx IProc_sectContext) { for _alt != 2 && _alt != antlr.ATNInvalidAltNumber { if _alt == 1 { { - p.SetState(10989) + p.SetState(10984) p.Proc_stmt() } } - p.SetState(10994) + p.SetState(10989) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180118,8 +179971,8 @@ 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, 1508, PostgreSQLParserRULE_proc_stmt) - p.SetState(11022) + p.EnterRule(localctx, 1506, PostgreSQLParserRULE_proc_stmt) + p.SetState(11017) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180129,11 +179982,11 @@ func (p *PostgreSQLParser) Proc_stmt() (localctx IProc_stmtContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(10995) + p.SetState(10990) p.Pl_block() } { - p.SetState(10996) + p.SetState(10991) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180144,168 +179997,168 @@ func (p *PostgreSQLParser) Proc_stmt() (localctx IProc_stmtContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(10998) + p.SetState(10993) p.Stmt_return() } case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(10999) + p.SetState(10994) p.Stmt_raise() } case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(11000) + p.SetState(10995) p.Stmt_assign() } case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(11001) + p.SetState(10996) p.Stmt_if() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(11002) + p.SetState(10997) p.Stmt_case() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(11003) + p.SetState(10998) p.Stmt_loop() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(11004) + p.SetState(10999) p.Stmt_while() } case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(11005) + p.SetState(11000) p.Stmt_for() } case 10: p.EnterOuterAlt(localctx, 10) { - p.SetState(11006) + p.SetState(11001) p.Stmt_foreach_a() } case 11: p.EnterOuterAlt(localctx, 11) { - p.SetState(11007) + p.SetState(11002) p.Stmt_exit() } case 12: p.EnterOuterAlt(localctx, 12) { - p.SetState(11008) + p.SetState(11003) p.Stmt_assert() } case 13: p.EnterOuterAlt(localctx, 13) { - p.SetState(11009) + p.SetState(11004) p.Stmt_execsql() } case 14: p.EnterOuterAlt(localctx, 14) { - p.SetState(11010) + p.SetState(11005) p.Stmt_dynexecute() } case 15: p.EnterOuterAlt(localctx, 15) { - p.SetState(11011) + p.SetState(11006) p.Stmt_perform() } case 16: p.EnterOuterAlt(localctx, 16) { - p.SetState(11012) + p.SetState(11007) p.Stmt_call() } case 17: p.EnterOuterAlt(localctx, 17) { - p.SetState(11013) + p.SetState(11008) p.Stmt_getdiag() } case 18: p.EnterOuterAlt(localctx, 18) { - p.SetState(11014) + p.SetState(11009) p.Stmt_open() } case 19: p.EnterOuterAlt(localctx, 19) { - p.SetState(11015) + p.SetState(11010) p.Stmt_fetch() } case 20: p.EnterOuterAlt(localctx, 20) { - p.SetState(11016) + p.SetState(11011) p.Stmt_move() } case 21: p.EnterOuterAlt(localctx, 21) { - p.SetState(11017) + p.SetState(11012) p.Stmt_close() } case 22: p.EnterOuterAlt(localctx, 22) { - p.SetState(11018) + p.SetState(11013) p.Stmt_null() } case 23: p.EnterOuterAlt(localctx, 23) { - p.SetState(11019) + p.SetState(11014) p.Stmt_commit() } case 24: p.EnterOuterAlt(localctx, 24) { - p.SetState(11020) + p.SetState(11015) p.Stmt_rollback() } case 25: p.EnterOuterAlt(localctx, 25) { - p.SetState(11021) + p.SetState(11016) p.Stmt_set() } @@ -180430,10 +180283,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, 1510, PostgreSQLParserRULE_stmt_perform) + p.EnterRule(localctx, 1508, PostgreSQLParserRULE_stmt_perform) p.EnterOuterAlt(localctx, 1) { - p.SetState(11024) + p.SetState(11019) p.Match(PostgreSQLParserPERFORM) if p.HasError() { // Recognition error - abort rule @@ -180441,11 +180294,11 @@ func (p *PostgreSQLParser) Stmt_perform() (localctx IStmt_performContext) { } } { - p.SetState(11025) + p.SetState(11020) p.Expr_until_semi() } { - p.SetState(11026) + p.SetState(11021) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180602,10 +180455,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, 1512, PostgreSQLParserRULE_stmt_call) + p.EnterRule(localctx, 1510, PostgreSQLParserRULE_stmt_call) var _la int - p.SetState(11046) + p.SetState(11041) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180615,7 +180468,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { case PostgreSQLParserCALL: p.EnterOuterAlt(localctx, 1) { - p.SetState(11028) + p.SetState(11023) p.Match(PostgreSQLParserCALL) if p.HasError() { // Recognition error - abort rule @@ -180623,18 +180476,18 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11029) + p.SetState(11024) p.Any_identifier() } { - p.SetState(11030) + p.SetState(11025) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11032) + p.SetState(11027) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180643,13 +180496,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(11031) + p.SetState(11026) p.Opt_expr_list() } } { - p.SetState(11034) + p.SetState(11029) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -180657,7 +180510,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11035) + p.SetState(11030) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180668,7 +180521,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { case PostgreSQLParserDO: p.EnterOuterAlt(localctx, 2) { - p.SetState(11037) + p.SetState(11032) p.Match(PostgreSQLParserDO) if p.HasError() { // Recognition error - abort rule @@ -180676,18 +180529,18 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11038) + p.SetState(11033) p.Any_identifier() } { - p.SetState(11039) + p.SetState(11034) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11041) + p.SetState(11036) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -180696,13 +180549,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(11040) + p.SetState(11035) p.Opt_expr_list() } } { - p.SetState(11043) + p.SetState(11038) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -180710,7 +180563,7 @@ func (p *PostgreSQLParser) Stmt_call() (localctx IStmt_callContext) { } } { - p.SetState(11044) + p.SetState(11039) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -180830,10 +180683,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, 1514, PostgreSQLParserRULE_opt_expr_list) + p.EnterRule(localctx, 1512, PostgreSQLParserRULE_opt_expr_list) p.EnterOuterAlt(localctx, 1) { - p.SetState(11048) + p.SetState(11043) p.Expr_list() } @@ -180983,22 +180836,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, 1516, PostgreSQLParserRULE_stmt_assign) + p.EnterRule(localctx, 1514, PostgreSQLParserRULE_stmt_assign) p.EnterOuterAlt(localctx, 1) { - p.SetState(11050) + p.SetState(11045) p.Assign_var() } { - p.SetState(11051) + p.SetState(11046) p.Assign_operator() } { - p.SetState(11052) + p.SetState(11047) p.Sql_expression() } { - p.SetState(11053) + p.SetState(11048) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -181145,19 +180998,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, 1518, PostgreSQLParserRULE_stmt_getdiag) + p.EnterRule(localctx, 1516, PostgreSQLParserRULE_stmt_getdiag) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11055) + p.SetState(11050) p.Match(PostgreSQLParserGET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11057) + p.SetState(11052) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181166,13 +181019,13 @@ func (p *PostgreSQLParser) Stmt_getdiag() (localctx IStmt_getdiagContext) { if _la == PostgreSQLParserCURRENT_P || _la == PostgreSQLParserSTACKED { { - p.SetState(11056) + p.SetState(11051) p.Getdiag_area_opt() } } { - p.SetState(11059) + p.SetState(11054) p.Match(PostgreSQLParserDIAGNOSTICS) if p.HasError() { // Recognition error - abort rule @@ -181180,11 +181033,11 @@ func (p *PostgreSQLParser) Stmt_getdiag() (localctx IStmt_getdiagContext) { } } { - p.SetState(11060) + p.SetState(11055) p.Getdiag_list() } { - p.SetState(11061) + p.SetState(11056) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -181292,12 +181145,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, 1520, PostgreSQLParserRULE_getdiag_area_opt) + p.EnterRule(localctx, 1518, PostgreSQLParserRULE_getdiag_area_opt) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11063) + p.SetState(11058) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCURRENT_P || _la == PostgreSQLParserSTACKED) { @@ -181451,15 +181304,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, 1522, PostgreSQLParserRULE_getdiag_list) + p.EnterRule(localctx, 1520, PostgreSQLParserRULE_getdiag_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11065) + p.SetState(11060) p.Getdiag_list_item() } - p.SetState(11070) + p.SetState(11065) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181468,7 +181321,7 @@ func (p *PostgreSQLParser) Getdiag_list() (localctx IGetdiag_listContext) { for _la == PostgreSQLParserCOMMA { { - p.SetState(11066) + p.SetState(11061) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -181476,11 +181329,11 @@ func (p *PostgreSQLParser) Getdiag_list() (localctx IGetdiag_listContext) { } } { - p.SetState(11067) + p.SetState(11062) p.Getdiag_list_item() } - p.SetState(11072) + p.SetState(11067) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -181629,18 +181482,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, 1524, PostgreSQLParserRULE_getdiag_list_item) + p.EnterRule(localctx, 1522, PostgreSQLParserRULE_getdiag_list_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(11073) + p.SetState(11068) p.Getdiag_target() } { - p.SetState(11074) + p.SetState(11069) p.Assign_operator() } { - p.SetState(11075) + p.SetState(11070) p.Getdiag_item() } @@ -181751,10 +181604,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, 1526, PostgreSQLParserRULE_getdiag_item) + p.EnterRule(localctx, 1524, PostgreSQLParserRULE_getdiag_item) p.EnterOuterAlt(localctx, 1) { - p.SetState(11077) + p.SetState(11072) p.Colid() } @@ -181865,10 +181718,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, 1528, PostgreSQLParserRULE_getdiag_target) + p.EnterRule(localctx, 1526, PostgreSQLParserRULE_getdiag_target) p.EnterOuterAlt(localctx, 1) { - p.SetState(11079) + p.SetState(11074) p.Assign_var() } @@ -182047,11 +181900,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, 1530, PostgreSQLParserRULE_assign_var) + p.EnterRule(localctx, 1528, PostgreSQLParserRULE_assign_var) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11083) + p.SetState(11078) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182060,13 +181913,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(11081) + p.SetState(11076) p.Any_name() } case PostgreSQLParserPARAM: { - p.SetState(11082) + p.SetState(11077) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -182078,7 +181931,7 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { p.SetError(antlr.NewNoViableAltException(p, nil, nil, nil, nil, nil)) goto errorExit } - p.SetState(11091) + p.SetState(11086) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182087,7 +181940,7 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { for _la == PostgreSQLParserOPEN_BRACKET { { - p.SetState(11085) + p.SetState(11080) p.Match(PostgreSQLParserOPEN_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -182095,11 +181948,11 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { } } { - p.SetState(11086) + p.SetState(11081) p.Expr_until_rightbracket() } { - p.SetState(11087) + p.SetState(11082) p.Match(PostgreSQLParserCLOSE_BRACKET) if p.HasError() { // Recognition error - abort rule @@ -182107,7 +181960,7 @@ func (p *PostgreSQLParser) Assign_var() (localctx IAssign_varContext) { } } - p.SetState(11093) + p.SetState(11088) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182298,12 +182151,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, 1532, PostgreSQLParserRULE_stmt_if) + p.EnterRule(localctx, 1530, PostgreSQLParserRULE_stmt_if) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11094) + p.SetState(11089) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -182311,11 +182164,11 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11095) + p.SetState(11090) p.Expr_until_then() } { - p.SetState(11096) + p.SetState(11091) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -182323,14 +182176,14 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11097) + p.SetState(11092) p.Proc_sect() } { - p.SetState(11098) + p.SetState(11093) p.Stmt_elsifs() } - p.SetState(11100) + p.SetState(11095) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182339,13 +182192,13 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { if _la == PostgreSQLParserELSE { { - p.SetState(11099) + p.SetState(11094) p.Stmt_else() } } { - p.SetState(11102) + p.SetState(11097) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -182353,7 +182206,7 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11103) + p.SetState(11098) p.Match(PostgreSQLParserIF_P) if p.HasError() { // Recognition error - abort rule @@ -182361,7 +182214,7 @@ func (p *PostgreSQLParser) Stmt_if() (localctx IStmt_ifContext) { } } { - p.SetState(11104) + p.SetState(11099) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -182565,11 +182418,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, 1534, PostgreSQLParserRULE_stmt_elsifs) + p.EnterRule(localctx, 1532, PostgreSQLParserRULE_stmt_elsifs) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11113) + p.SetState(11108) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182578,7 +182431,7 @@ func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { for _la == PostgreSQLParserELSIF { { - p.SetState(11106) + p.SetState(11101) p.Match(PostgreSQLParserELSIF) if p.HasError() { // Recognition error - abort rule @@ -182586,11 +182439,11 @@ func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { } } { - p.SetState(11107) + p.SetState(11102) p.A_expr() } { - p.SetState(11108) + p.SetState(11103) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -182598,11 +182451,11 @@ func (p *PostgreSQLParser) Stmt_elsifs() (localctx IStmt_elsifsContext) { } } { - p.SetState(11109) + p.SetState(11104) p.Proc_sect() } - p.SetState(11115) + p.SetState(11110) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182722,10 +182575,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, 1536, PostgreSQLParserRULE_stmt_else) + p.EnterRule(localctx, 1534, PostgreSQLParserRULE_stmt_else) p.EnterOuterAlt(localctx, 1) { - p.SetState(11116) + p.SetState(11111) p.Match(PostgreSQLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -182733,7 +182586,7 @@ func (p *PostgreSQLParser) Stmt_else() (localctx IStmt_elseContext) { } } { - p.SetState(11117) + p.SetState(11112) p.Proc_sect() } @@ -182898,19 +182751,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, 1538, PostgreSQLParserRULE_stmt_case) + p.EnterRule(localctx, 1536, PostgreSQLParserRULE_stmt_case) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11119) + p.SetState(11114) p.Match(PostgreSQLParserCASE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11121) + p.SetState(11116) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182919,16 +182772,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(11120) + p.SetState(11115) p.Opt_expr_until_when() } } { - p.SetState(11123) + p.SetState(11118) p.Case_when_list() } - p.SetState(11125) + p.SetState(11120) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -182937,13 +182790,13 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { if _la == PostgreSQLParserELSE { { - p.SetState(11124) + p.SetState(11119) p.Opt_case_else() } } { - p.SetState(11127) + p.SetState(11122) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -182951,7 +182804,7 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { } } { - p.SetState(11128) + p.SetState(11123) p.Match(PostgreSQLParserCASE) if p.HasError() { // Recognition error - abort rule @@ -182959,7 +182812,7 @@ func (p *PostgreSQLParser) Stmt_case() (localctx IStmt_caseContext) { } } { - p.SetState(11129) + p.SetState(11124) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -183074,10 +182927,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, 1540, PostgreSQLParserRULE_opt_expr_until_when) + p.EnterRule(localctx, 1538, PostgreSQLParserRULE_opt_expr_until_when) p.EnterOuterAlt(localctx, 1) { - p.SetState(11131) + p.SetState(11126) p.Sql_expression() } @@ -183214,11 +183067,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, 1542, PostgreSQLParserRULE_case_when_list) + p.EnterRule(localctx, 1540, PostgreSQLParserRULE_case_when_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11134) + p.SetState(11129) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183227,11 +183080,11 @@ func (p *PostgreSQLParser) Case_when_list() (localctx ICase_when_listContext) { for ok := true; ok; ok = _la == PostgreSQLParserWHEN { { - p.SetState(11133) + p.SetState(11128) p.Case_when() } - p.SetState(11136) + p.SetState(11131) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183373,10 +183226,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, 1544, PostgreSQLParserRULE_case_when) + p.EnterRule(localctx, 1542, PostgreSQLParserRULE_case_when) p.EnterOuterAlt(localctx, 1) { - p.SetState(11138) + p.SetState(11133) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -183384,11 +183237,11 @@ func (p *PostgreSQLParser) Case_when() (localctx ICase_whenContext) { } } { - p.SetState(11139) + p.SetState(11134) p.Expr_list() } { - p.SetState(11140) + p.SetState(11135) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -183396,7 +183249,7 @@ func (p *PostgreSQLParser) Case_when() (localctx ICase_whenContext) { } } { - p.SetState(11141) + p.SetState(11136) p.Proc_sect() } @@ -183512,10 +183365,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, 1546, PostgreSQLParserRULE_opt_case_else) + p.EnterRule(localctx, 1544, PostgreSQLParserRULE_opt_case_else) p.EnterOuterAlt(localctx, 1) { - p.SetState(11143) + p.SetState(11138) p.Match(PostgreSQLParserELSE) if p.HasError() { // Recognition error - abort rule @@ -183523,7 +183376,7 @@ func (p *PostgreSQLParser) Opt_case_else() (localctx IOpt_case_elseContext) { } } { - p.SetState(11144) + p.SetState(11139) p.Proc_sect() } @@ -183651,11 +183504,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, 1548, PostgreSQLParserRULE_stmt_loop) + p.EnterRule(localctx, 1546, PostgreSQLParserRULE_stmt_loop) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11147) + p.SetState(11142) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183664,13 +183517,13 @@ func (p *PostgreSQLParser) Stmt_loop() (localctx IStmt_loopContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11146) + p.SetState(11141) p.Opt_loop_label() } } { - p.SetState(11149) + p.SetState(11144) p.Loop_body() } @@ -183820,11 +183673,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, 1550, PostgreSQLParserRULE_stmt_while) + p.EnterRule(localctx, 1548, PostgreSQLParserRULE_stmt_while) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11152) + p.SetState(11147) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -183833,13 +183686,13 @@ func (p *PostgreSQLParser) Stmt_while() (localctx IStmt_whileContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11151) + p.SetState(11146) p.Opt_loop_label() } } { - p.SetState(11154) + p.SetState(11149) p.Match(PostgreSQLParserWHILE) if p.HasError() { // Recognition error - abort rule @@ -183847,11 +183700,11 @@ func (p *PostgreSQLParser) Stmt_while() (localctx IStmt_whileContext) { } } { - p.SetState(11155) + p.SetState(11150) p.Expr_until_loop() } { - p.SetState(11156) + p.SetState(11151) p.Loop_body() } @@ -184001,11 +183854,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, 1552, PostgreSQLParserRULE_stmt_for) + p.EnterRule(localctx, 1550, PostgreSQLParserRULE_stmt_for) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11159) + p.SetState(11154) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184014,13 +183867,13 @@ func (p *PostgreSQLParser) Stmt_for() (localctx IStmt_forContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11158) + p.SetState(11153) p.Opt_loop_label() } } { - p.SetState(11161) + p.SetState(11156) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule @@ -184028,11 +183881,11 @@ func (p *PostgreSQLParser) Stmt_for() (localctx IStmt_forContext) { } } { - p.SetState(11162) + p.SetState(11157) p.For_control() } { - p.SetState(11163) + p.SetState(11158) p.Loop_body() } @@ -184320,23 +184173,23 @@ 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, 1554, PostgreSQLParserRULE_for_control) + p.EnterRule(localctx, 1552, PostgreSQLParserRULE_for_control) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11165) + p.SetState(11160) p.For_variable() } { - p.SetState(11166) + p.SetState(11161) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11187) + p.SetState(11182) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184345,10 +184198,10 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1102, p.GetParserRuleContext()) { case 1: { - p.SetState(11167) + p.SetState(11162) p.Cursor_name() } - p.SetState(11169) + p.SetState(11164) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184357,7 +184210,7 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(11168) + p.SetState(11163) p.Opt_cursor_parameters() } @@ -184365,19 +184218,19 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { case 2: { - p.SetState(11171) + p.SetState(11166) p.Selectstmt() } case 3: { - p.SetState(11172) + p.SetState(11167) p.Explainstmt() } case 4: { - p.SetState(11173) + p.SetState(11168) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -184385,10 +184238,10 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { } } { - p.SetState(11174) + p.SetState(11169) p.A_expr() } - p.SetState(11176) + p.SetState(11171) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184397,19 +184250,19 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11175) + p.SetState(11170) p.Opt_for_using_expression() } } case 5: - p.SetState(11179) + p.SetState(11174) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1100, p.GetParserRuleContext()) == 1 { { - p.SetState(11178) + p.SetState(11173) p.Opt_reverse() } @@ -184417,11 +184270,11 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { goto errorExit } { - p.SetState(11181) + p.SetState(11176) p.A_expr() } { - p.SetState(11182) + p.SetState(11177) p.Match(PostgreSQLParserDOT_DOT) if p.HasError() { // Recognition error - abort rule @@ -184429,10 +184282,10 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { } } { - p.SetState(11183) + p.SetState(11178) p.A_expr() } - p.SetState(11185) + p.SetState(11180) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184441,7 +184294,7 @@ func (p *PostgreSQLParser) For_control() (localctx IFor_controlContext) { if _la == PostgreSQLParserBY { { - p.SetState(11184) + p.SetState(11179) p.Opt_by_expression() } @@ -184563,10 +184416,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, 1556, PostgreSQLParserRULE_opt_for_using_expression) + p.EnterRule(localctx, 1554, PostgreSQLParserRULE_opt_for_using_expression) p.EnterOuterAlt(localctx, 1) { - p.SetState(11189) + p.SetState(11184) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -184574,7 +184427,7 @@ func (p *PostgreSQLParser) Opt_for_using_expression() (localctx IOpt_for_using_e } } { - p.SetState(11190) + p.SetState(11185) p.Expr_list() } @@ -184731,12 +184584,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, 1558, PostgreSQLParserRULE_opt_cursor_parameters) + p.EnterRule(localctx, 1556, PostgreSQLParserRULE_opt_cursor_parameters) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11192) + p.SetState(11187) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -184744,10 +184597,10 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet } } { - p.SetState(11193) + p.SetState(11188) p.A_expr() } - p.SetState(11198) + p.SetState(11193) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184756,7 +184609,7 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet for _la == PostgreSQLParserCOMMA { { - p.SetState(11194) + p.SetState(11189) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -184764,11 +184617,11 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet } } { - p.SetState(11195) + p.SetState(11190) p.A_expr() } - p.SetState(11200) + p.SetState(11195) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -184776,7 +184629,7 @@ func (p *PostgreSQLParser) Opt_cursor_parameters() (localctx IOpt_cursor_paramet _la = p.GetTokenStream().LA(1) } { - p.SetState(11201) + p.SetState(11196) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -184879,10 +184732,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, 1560, PostgreSQLParserRULE_opt_reverse) + p.EnterRule(localctx, 1558, PostgreSQLParserRULE_opt_reverse) p.EnterOuterAlt(localctx, 1) { - p.SetState(11203) + p.SetState(11198) p.Match(PostgreSQLParserREVERSE) if p.HasError() { // Recognition error - abort rule @@ -185002,10 +184855,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, 1562, PostgreSQLParserRULE_opt_by_expression) + p.EnterRule(localctx, 1560, PostgreSQLParserRULE_opt_by_expression) p.EnterOuterAlt(localctx, 1) { - p.SetState(11205) + p.SetState(11200) p.Match(PostgreSQLParserBY) if p.HasError() { // Recognition error - abort rule @@ -185013,7 +184866,7 @@ func (p *PostgreSQLParser) Opt_by_expression() (localctx IOpt_by_expressionConte } } { - p.SetState(11206) + p.SetState(11201) p.A_expr() } @@ -185124,10 +184977,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, 1564, PostgreSQLParserRULE_for_variable) + p.EnterRule(localctx, 1562, PostgreSQLParserRULE_for_variable) p.EnterOuterAlt(localctx, 1) { - p.SetState(11208) + p.SetState(11203) p.Any_name_list() } @@ -185321,11 +185174,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, 1566, PostgreSQLParserRULE_stmt_foreach_a) + p.EnterRule(localctx, 1564, PostgreSQLParserRULE_stmt_foreach_a) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11211) + p.SetState(11206) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185334,13 +185187,13 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { if _la == PostgreSQLParserLESS_LESS { { - p.SetState(11210) + p.SetState(11205) p.Opt_loop_label() } } { - p.SetState(11213) + p.SetState(11208) p.Match(PostgreSQLParserFOREACH) if p.HasError() { // Recognition error - abort rule @@ -185348,10 +185201,10 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { } } { - p.SetState(11214) + p.SetState(11209) p.For_variable() } - p.SetState(11216) + p.SetState(11211) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185360,13 +185213,13 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { if _la == PostgreSQLParserSLICE { { - p.SetState(11215) + p.SetState(11210) p.Foreach_slice() } } { - p.SetState(11218) + p.SetState(11213) p.Match(PostgreSQLParserIN_P) if p.HasError() { // Recognition error - abort rule @@ -185374,7 +185227,7 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { } } { - p.SetState(11219) + p.SetState(11214) p.Match(PostgreSQLParserARRAY) if p.HasError() { // Recognition error - abort rule @@ -185382,11 +185235,11 @@ func (p *PostgreSQLParser) Stmt_foreach_a() (localctx IStmt_foreach_aContext) { } } { - p.SetState(11220) + p.SetState(11215) p.A_expr() } { - p.SetState(11221) + p.SetState(11216) p.Loop_body() } @@ -185502,10 +185355,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, 1568, PostgreSQLParserRULE_foreach_slice) + p.EnterRule(localctx, 1566, PostgreSQLParserRULE_foreach_slice) p.EnterOuterAlt(localctx, 1) { - p.SetState(11223) + p.SetState(11218) p.Match(PostgreSQLParserSLICE) if p.HasError() { // Recognition error - abort rule @@ -185513,7 +185366,7 @@ func (p *PostgreSQLParser) Foreach_slice() (localctx IForeach_sliceContext) { } } { - p.SetState(11224) + p.SetState(11219) p.Iconst() } @@ -185663,15 +185516,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, 1570, PostgreSQLParserRULE_stmt_exit) + p.EnterRule(localctx, 1568, PostgreSQLParserRULE_stmt_exit) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11226) + p.SetState(11221) p.Exit_type() } - p.SetState(11228) + p.SetState(11223) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185680,12 +185533,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(11227) + p.SetState(11222) p.Opt_label() } } - p.SetState(11231) + p.SetState(11226) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -185694,13 +185547,13 @@ func (p *PostgreSQLParser) Stmt_exit() (localctx IStmt_exitContext) { if _la == PostgreSQLParserWHEN { { - p.SetState(11230) + p.SetState(11225) p.Opt_exitcond() } } { - p.SetState(11233) + p.SetState(11228) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -185808,12 +185661,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, 1572, PostgreSQLParserRULE_exit_type) + p.EnterRule(localctx, 1570, PostgreSQLParserRULE_exit_type) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11235) + p.SetState(11230) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserCONTINUE_P || _la == PostgreSQLParserEXIT) { @@ -186024,19 +185877,19 @@ 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, 1574, PostgreSQLParserRULE_stmt_return) + p.EnterRule(localctx, 1572, PostgreSQLParserRULE_stmt_return) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11237) + p.SetState(11232) p.Match(PostgreSQLParserRETURN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11252) + p.SetState(11247) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186045,7 +185898,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1111, p.GetParserRuleContext()) { case 1: { - p.SetState(11238) + p.SetState(11233) p.Match(PostgreSQLParserNEXT) if p.HasError() { // Recognition error - abort rule @@ -186053,20 +185906,20 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { } } { - p.SetState(11239) + p.SetState(11234) p.Sql_expression() } case 2: { - p.SetState(11240) + p.SetState(11235) p.Match(PostgreSQLParserQUERY) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11247) + p.SetState(11242) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186075,7 +185928,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserEXECUTE: { - p.SetState(11241) + p.SetState(11236) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -186083,10 +185936,10 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { } } { - p.SetState(11242) + p.SetState(11237) p.A_expr() } - p.SetState(11244) + p.SetState(11239) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186095,7 +185948,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11243) + p.SetState(11238) p.Opt_for_using_expression() } @@ -186103,7 +185956,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { case PostgreSQLParserOPEN_PAREN, PostgreSQLParserSELECT, PostgreSQLParserTABLE, PostgreSQLParserWITH, PostgreSQLParserVALUES: { - p.SetState(11246) + p.SetState(11241) p.Selectstmt() } @@ -186113,7 +185966,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { } case 3: - p.SetState(11250) + p.SetState(11245) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186122,7 +185975,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(11249) + p.SetState(11244) p.Opt_return_result() } @@ -186132,7 +185985,7 @@ func (p *PostgreSQLParser) Stmt_return() (localctx IStmt_returnContext) { goto errorExit } { - p.SetState(11254) + p.SetState(11249) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186247,10 +186100,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, 1576, PostgreSQLParserRULE_opt_return_result) + p.EnterRule(localctx, 1574, PostgreSQLParserRULE_opt_return_result) p.EnterOuterAlt(localctx, 1) { - p.SetState(11256) + p.SetState(11251) p.Sql_expression() } @@ -186444,10 +186297,10 @@ 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, 1578, PostgreSQLParserRULE_stmt_raise) + p.EnterRule(localctx, 1576, PostgreSQLParserRULE_stmt_raise) var _la int - p.SetState(11301) + p.SetState(11296) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186457,14 +186310,14 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11258) + p.SetState(11253) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11260) + p.SetState(11255) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186473,16 +186326,16 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if (int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0 { { - p.SetState(11259) + p.SetState(11254) p.Opt_stmt_raise_level() } } { - p.SetState(11262) + p.SetState(11257) p.Sconst() } - p.SetState(11264) + p.SetState(11259) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186491,12 +186344,12 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserCOMMA { { - p.SetState(11263) + p.SetState(11258) p.Opt_raise_list() } } - p.SetState(11267) + p.SetState(11262) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186505,13 +186358,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11266) + p.SetState(11261) p.Opt_raise_using() } } { - p.SetState(11269) + p.SetState(11264) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186522,19 +186375,19 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11271) + p.SetState(11266) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11273) + p.SetState(11268) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1115, p.GetParserRuleContext()) == 1 { { - p.SetState(11272) + p.SetState(11267) p.Opt_stmt_raise_level() } @@ -186542,10 +186395,10 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { goto errorExit } { - p.SetState(11275) + p.SetState(11270) p.Identifier() } - p.SetState(11277) + p.SetState(11272) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186554,13 +186407,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11276) + p.SetState(11271) p.Opt_raise_using() } } { - p.SetState(11279) + p.SetState(11274) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186571,14 +186424,14 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(11281) + p.SetState(11276) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11283) + p.SetState(11278) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186587,13 +186440,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if (int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0 { { - p.SetState(11282) + p.SetState(11277) p.Opt_stmt_raise_level() } } { - p.SetState(11285) + p.SetState(11280) p.Match(PostgreSQLParserSQLSTATE) if p.HasError() { // Recognition error - abort rule @@ -186601,10 +186454,10 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { } } { - p.SetState(11286) + p.SetState(11281) p.Sconst() } - p.SetState(11288) + p.SetState(11283) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186613,13 +186466,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11287) + p.SetState(11282) p.Opt_raise_using() } } { - p.SetState(11290) + p.SetState(11285) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186630,14 +186483,14 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(11292) + p.SetState(11287) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11294) + p.SetState(11289) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186646,12 +186499,12 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if (int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0 { { - p.SetState(11293) + p.SetState(11288) p.Opt_stmt_raise_level() } } - p.SetState(11297) + p.SetState(11292) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186660,13 +186513,13 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11296) + p.SetState(11291) p.Opt_raise_using() } } { - p.SetState(11299) + p.SetState(11294) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -186677,7 +186530,7 @@ func (p *PostgreSQLParser) Stmt_raise() (localctx IStmt_raiseContext) { case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(11300) + p.SetState(11295) p.Match(PostgreSQLParserRAISE) if p.HasError() { // Recognition error - abort rule @@ -186809,12 +186662,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, 1580, PostgreSQLParserRULE_opt_stmt_raise_level) + p.EnterRule(localctx, 1578, PostgreSQLParserRULE_opt_stmt_raise_level) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11303) + p.SetState(11298) _la = p.GetTokenStream().LA(1) if !((int64((_la-533)) & ^0x3f) == 0 && ((int64(1)<<(_la-533))&63) != 0) { @@ -186968,11 +186821,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, 1582, PostgreSQLParserRULE_opt_raise_list) + p.EnterRule(localctx, 1580, PostgreSQLParserRULE_opt_raise_list) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11307) + p.SetState(11302) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -186981,7 +186834,7 @@ func (p *PostgreSQLParser) Opt_raise_list() (localctx IOpt_raise_listContext) { for ok := true; ok; ok = _la == PostgreSQLParserCOMMA { { - p.SetState(11305) + p.SetState(11300) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -186989,11 +186842,11 @@ func (p *PostgreSQLParser) Opt_raise_list() (localctx IOpt_raise_listContext) { } } { - p.SetState(11306) + p.SetState(11301) p.A_expr() } - p.SetState(11309) + p.SetState(11304) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187113,10 +186966,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, 1584, PostgreSQLParserRULE_opt_raise_using) + p.EnterRule(localctx, 1582, PostgreSQLParserRULE_opt_raise_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(11311) + p.SetState(11306) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -187124,7 +186977,7 @@ func (p *PostgreSQLParser) Opt_raise_using() (localctx IOpt_raise_usingContext) } } { - p.SetState(11312) + p.SetState(11307) p.Opt_raise_using_elem_list() } @@ -187257,14 +187110,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, 1586, PostgreSQLParserRULE_opt_raise_using_elem) + p.EnterRule(localctx, 1584, PostgreSQLParserRULE_opt_raise_using_elem) p.EnterOuterAlt(localctx, 1) { - p.SetState(11314) + p.SetState(11309) p.Identifier() } { - p.SetState(11315) + p.SetState(11310) p.Match(PostgreSQLParserEQUAL) if p.HasError() { // Recognition error - abort rule @@ -187272,7 +187125,7 @@ func (p *PostgreSQLParser) Opt_raise_using_elem() (localctx IOpt_raise_using_ele } } { - p.SetState(11316) + p.SetState(11311) p.A_expr() } @@ -187419,15 +187272,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, 1588, PostgreSQLParserRULE_opt_raise_using_elem_list) + p.EnterRule(localctx, 1586, PostgreSQLParserRULE_opt_raise_using_elem_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11318) + p.SetState(11313) p.Opt_raise_using_elem() } - p.SetState(11323) + p.SetState(11318) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187436,7 +187289,7 @@ func (p *PostgreSQLParser) Opt_raise_using_elem_list() (localctx IOpt_raise_usin for _la == PostgreSQLParserCOMMA { { - p.SetState(11319) + p.SetState(11314) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -187444,11 +187297,11 @@ func (p *PostgreSQLParser) Opt_raise_using_elem_list() (localctx IOpt_raise_usin } } { - p.SetState(11320) + p.SetState(11315) p.Opt_raise_using_elem() } - p.SetState(11325) + p.SetState(11320) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187590,12 +187443,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, 1590, PostgreSQLParserRULE_stmt_assert) + p.EnterRule(localctx, 1588, PostgreSQLParserRULE_stmt_assert) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11326) + p.SetState(11321) p.Match(PostgreSQLParserASSERT) if p.HasError() { // Recognition error - abort rule @@ -187603,10 +187456,10 @@ func (p *PostgreSQLParser) Stmt_assert() (localctx IStmt_assertContext) { } } { - p.SetState(11327) + p.SetState(11322) p.Sql_expression() } - p.SetState(11329) + p.SetState(11324) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187615,13 +187468,13 @@ func (p *PostgreSQLParser) Stmt_assert() (localctx IStmt_assertContext) { if _la == PostgreSQLParserCOMMA { { - p.SetState(11328) + p.SetState(11323) p.Opt_stmt_assert_message() } } { - p.SetState(11331) + p.SetState(11326) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -187741,10 +187594,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, 1592, PostgreSQLParserRULE_opt_stmt_assert_message) + p.EnterRule(localctx, 1590, PostgreSQLParserRULE_opt_stmt_assert_message) p.EnterOuterAlt(localctx, 1) { - p.SetState(11333) + p.SetState(11328) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -187752,7 +187605,7 @@ func (p *PostgreSQLParser) Opt_stmt_assert_message() (localctx IOpt_stmt_assert_ } } { - p.SetState(11334) + p.SetState(11329) p.Sql_expression() } @@ -187900,12 +187753,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, 1594, PostgreSQLParserRULE_loop_body) + p.EnterRule(localctx, 1592, PostgreSQLParserRULE_loop_body) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11336) + p.SetState(11331) p.Match(PostgreSQLParserLOOP) if p.HasError() { // Recognition error - abort rule @@ -187913,11 +187766,11 @@ func (p *PostgreSQLParser) Loop_body() (localctx ILoop_bodyContext) { } } { - p.SetState(11337) + p.SetState(11332) p.Proc_sect() } { - p.SetState(11338) + p.SetState(11333) p.Match(PostgreSQLParserEND_P) if p.HasError() { // Recognition error - abort rule @@ -187925,14 +187778,14 @@ func (p *PostgreSQLParser) Loop_body() (localctx ILoop_bodyContext) { } } { - p.SetState(11339) + p.SetState(11334) p.Match(PostgreSQLParserLOOP) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11341) + p.SetState(11336) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -187941,13 +187794,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(11340) + p.SetState(11335) p.Opt_label() } } { - p.SetState(11343) + p.SetState(11338) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -188067,14 +187920,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, 1596, PostgreSQLParserRULE_stmt_execsql) + p.EnterRule(localctx, 1594, PostgreSQLParserRULE_stmt_execsql) p.EnterOuterAlt(localctx, 1) { - p.SetState(11345) + p.SetState(11340) p.Make_execsql_stmt() } { - p.SetState(11346) + p.SetState(11341) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -188233,12 +188086,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, 1598, PostgreSQLParserRULE_stmt_dynexecute) + p.EnterRule(localctx, 1596, PostgreSQLParserRULE_stmt_dynexecute) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11348) + p.SetState(11343) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -188246,10 +188099,10 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) } } { - p.SetState(11349) + p.SetState(11344) p.A_expr() } - p.SetState(11363) + p.SetState(11358) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188257,7 +188110,7 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1130, p.GetParserRuleContext()) { case 1: - p.SetState(11351) + p.SetState(11346) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188266,12 +188119,12 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserINTO { { - p.SetState(11350) + p.SetState(11345) p.Opt_execute_into() } } - p.SetState(11354) + p.SetState(11349) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188280,14 +188133,14 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserUSING { { - p.SetState(11353) + p.SetState(11348) p.Opt_execute_using() } } case 2: - p.SetState(11357) + p.SetState(11352) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188296,12 +188149,12 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserUSING { { - p.SetState(11356) + p.SetState(11351) p.Opt_execute_using() } } - p.SetState(11360) + p.SetState(11355) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188310,7 +188163,7 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) if _la == PostgreSQLParserINTO { { - p.SetState(11359) + p.SetState(11354) p.Opt_execute_into() } @@ -188322,7 +188175,7 @@ func (p *PostgreSQLParser) Stmt_dynexecute() (localctx IStmt_dynexecuteContext) goto errorExit } { - p.SetState(11365) + p.SetState(11360) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -188442,10 +188295,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, 1600, PostgreSQLParserRULE_opt_execute_using) + p.EnterRule(localctx, 1598, PostgreSQLParserRULE_opt_execute_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(11367) + p.SetState(11362) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -188453,7 +188306,7 @@ func (p *PostgreSQLParser) Opt_execute_using() (localctx IOpt_execute_usingConte } } { - p.SetState(11368) + p.SetState(11363) p.Opt_execute_using_list() } @@ -188600,15 +188453,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, 1602, PostgreSQLParserRULE_opt_execute_using_list) + p.EnterRule(localctx, 1600, PostgreSQLParserRULE_opt_execute_using_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11370) + p.SetState(11365) p.A_expr() } - p.SetState(11375) + p.SetState(11370) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188617,7 +188470,7 @@ func (p *PostgreSQLParser) Opt_execute_using_list() (localctx IOpt_execute_using for _la == PostgreSQLParserCOMMA { { - p.SetState(11371) + p.SetState(11366) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -188625,11 +188478,11 @@ func (p *PostgreSQLParser) Opt_execute_using_list() (localctx IOpt_execute_using } } { - p.SetState(11372) + p.SetState(11367) p.A_expr() } - p.SetState(11377) + p.SetState(11372) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -188754,22 +188607,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, 1604, PostgreSQLParserRULE_opt_execute_into) + p.EnterRule(localctx, 1602, PostgreSQLParserRULE_opt_execute_into) p.EnterOuterAlt(localctx, 1) { - p.SetState(11378) + p.SetState(11373) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11380) + p.SetState(11375) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1132, p.GetParserRuleContext()) == 1 { { - p.SetState(11379) + p.SetState(11374) p.Match(PostgreSQLParserSTRICT_P) if p.HasError() { // Recognition error - abort rule @@ -188781,7 +188634,7 @@ func (p *PostgreSQLParser) Opt_execute_into() (localctx IOpt_execute_intoContext goto errorExit } { - p.SetState(11382) + p.SetState(11377) p.Into_target() } @@ -189024,19 +188877,19 @@ 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, 1606, PostgreSQLParserRULE_stmt_open) + p.EnterRule(localctx, 1604, PostgreSQLParserRULE_stmt_open) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11384) + p.SetState(11379) p.Match(PostgreSQLParserOPEN) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11405) + p.SetState(11400) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189045,10 +188898,10 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { switch p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1137, p.GetParserRuleContext()) { case 1: { - p.SetState(11385) + p.SetState(11380) p.Cursor_variable() } - p.SetState(11387) + p.SetState(11382) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189057,20 +188910,20 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { if _la == PostgreSQLParserNO || _la == PostgreSQLParserSCROLL { { - p.SetState(11386) + p.SetState(11381) p.Opt_scroll_option() } } { - p.SetState(11389) + p.SetState(11384) p.Match(PostgreSQLParserFOR) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11396) + p.SetState(11391) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189079,13 +188932,13 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { switch p.GetTokenStream().LA(1) { case PostgreSQLParserOPEN_PAREN, PostgreSQLParserSELECT, PostgreSQLParserTABLE, PostgreSQLParserWITH, PostgreSQLParserVALUES: { - p.SetState(11390) + p.SetState(11385) p.Selectstmt() } case PostgreSQLParserEXECUTE: { - p.SetState(11391) + p.SetState(11386) p.Match(PostgreSQLParserEXECUTE) if p.HasError() { // Recognition error - abort rule @@ -189093,10 +188946,10 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { } } { - p.SetState(11392) + p.SetState(11387) p.Sql_expression() } - p.SetState(11394) + p.SetState(11389) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189105,7 +188958,7 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { if _la == PostgreSQLParserUSING { { - p.SetState(11393) + p.SetState(11388) p.Opt_open_using() } @@ -189118,10 +188971,10 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { case 2: { - p.SetState(11398) + p.SetState(11393) p.Colid() } - p.SetState(11403) + p.SetState(11398) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189130,7 +188983,7 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { if _la == PostgreSQLParserOPEN_PAREN { { - p.SetState(11399) + p.SetState(11394) p.Match(PostgreSQLParserOPEN_PAREN) if p.HasError() { // Recognition error - abort rule @@ -189138,11 +188991,11 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { } } { - p.SetState(11400) + p.SetState(11395) p.Opt_open_bound_list() } { - p.SetState(11401) + p.SetState(11396) p.Match(PostgreSQLParserCLOSE_PAREN) if p.HasError() { // Recognition error - abort rule @@ -189156,7 +189009,7 @@ func (p *PostgreSQLParser) Stmt_open() (localctx IStmt_openContext) { goto errorExit } { - p.SetState(11407) + p.SetState(11402) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -189293,8 +189146,8 @@ 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, 1608, PostgreSQLParserRULE_opt_open_bound_list_item) - p.SetState(11414) + p.EnterRule(localctx, 1606, PostgreSQLParserRULE_opt_open_bound_list_item) + p.SetState(11409) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189304,11 +189157,11 @@ func (p *PostgreSQLParser) Opt_open_bound_list_item() (localctx IOpt_open_bound_ case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11409) + p.SetState(11404) p.Colid() } { - p.SetState(11410) + p.SetState(11405) p.Match(PostgreSQLParserCOLON_EQUALS) if p.HasError() { // Recognition error - abort rule @@ -189316,14 +189169,14 @@ func (p *PostgreSQLParser) Opt_open_bound_list_item() (localctx IOpt_open_bound_ } } { - p.SetState(11411) + p.SetState(11406) p.A_expr() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11413) + p.SetState(11408) p.A_expr() } @@ -189474,15 +189327,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, 1610, PostgreSQLParserRULE_opt_open_bound_list) + p.EnterRule(localctx, 1608, PostgreSQLParserRULE_opt_open_bound_list) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11416) + p.SetState(11411) p.Opt_open_bound_list_item() } - p.SetState(11421) + p.SetState(11416) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189491,7 +189344,7 @@ func (p *PostgreSQLParser) Opt_open_bound_list() (localctx IOpt_open_bound_listC for _la == PostgreSQLParserCOMMA { { - p.SetState(11417) + p.SetState(11412) p.Match(PostgreSQLParserCOMMA) if p.HasError() { // Recognition error - abort rule @@ -189499,11 +189352,11 @@ func (p *PostgreSQLParser) Opt_open_bound_list() (localctx IOpt_open_bound_listC } } { - p.SetState(11418) + p.SetState(11413) p.Opt_open_bound_list_item() } - p.SetState(11423) + p.SetState(11418) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189623,10 +189476,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, 1612, PostgreSQLParserRULE_opt_open_using) + p.EnterRule(localctx, 1610, PostgreSQLParserRULE_opt_open_using) p.EnterOuterAlt(localctx, 1) { - p.SetState(11424) + p.SetState(11419) p.Match(PostgreSQLParserUSING) if p.HasError() { // Recognition error - abort rule @@ -189634,7 +189487,7 @@ func (p *PostgreSQLParser) Opt_open_using() (localctx IOpt_open_usingContext) { } } { - p.SetState(11425) + p.SetState(11420) p.Expr_list() } @@ -189750,11 +189603,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, 1614, PostgreSQLParserRULE_opt_scroll_option) + p.EnterRule(localctx, 1612, PostgreSQLParserRULE_opt_scroll_option) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11428) + p.SetState(11423) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -189763,13 +189616,13 @@ func (p *PostgreSQLParser) Opt_scroll_option() (localctx IOpt_scroll_optionConte if _la == PostgreSQLParserNO { { - p.SetState(11427) + p.SetState(11422) p.Opt_scroll_option_no() } } { - p.SetState(11430) + p.SetState(11425) p.Match(PostgreSQLParserSCROLL) if p.HasError() { // Recognition error - abort rule @@ -189872,10 +189725,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, 1616, PostgreSQLParserRULE_opt_scroll_option_no) + p.EnterRule(localctx, 1614, PostgreSQLParserRULE_opt_scroll_option_no) p.EnterOuterAlt(localctx, 1) { - p.SetState(11432) + p.SetState(11427) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -190067,24 +189920,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, 1618, PostgreSQLParserRULE_stmt_fetch) + p.EnterRule(localctx, 1616, PostgreSQLParserRULE_stmt_fetch) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11434) + p.SetState(11429) p.Match(PostgreSQLParserFETCH) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11436) + p.SetState(11431) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1141, p.GetParserRuleContext()) == 1 { { - p.SetState(11435) + p.SetState(11430) var _x = p.Opt_fetch_direction() @@ -190094,7 +189947,7 @@ func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { } else if p.HasError() { // JIM goto errorExit } - p.SetState(11439) + p.SetState(11434) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -190103,17 +189956,17 @@ func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { if _la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P { { - p.SetState(11438) + p.SetState(11433) p.Opt_cursor_from() } } { - p.SetState(11441) + p.SetState(11436) p.Cursor_variable() } { - p.SetState(11442) + p.SetState(11437) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule @@ -190121,11 +189974,11 @@ func (p *PostgreSQLParser) Stmt_fetch() (localctx IStmt_fetchContext) { } } { - p.SetState(11443) + p.SetState(11438) p.Into_target() } { - p.SetState(11444) + p.SetState(11439) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -190240,10 +190093,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, 1620, PostgreSQLParserRULE_into_target) + p.EnterRule(localctx, 1618, PostgreSQLParserRULE_into_target) p.EnterOuterAlt(localctx, 1) { - p.SetState(11446) + p.SetState(11441) p.Expr_list() } @@ -190347,12 +190200,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, 1622, PostgreSQLParserRULE_opt_cursor_from) + p.EnterRule(localctx, 1620, PostgreSQLParserRULE_opt_cursor_from) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11448) + p.SetState(11443) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserFROM || _la == PostgreSQLParserIN_P) { @@ -190515,10 +190368,10 @@ 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, 1624, PostgreSQLParserRULE_opt_fetch_direction) + p.EnterRule(localctx, 1622, PostgreSQLParserRULE_opt_fetch_direction) var _la int - p.SetState(11465) + p.SetState(11460) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -190528,7 +190381,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11450) + p.SetState(11445) p.Match(PostgreSQLParserNEXT) if p.HasError() { // Recognition error - abort rule @@ -190539,7 +190392,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11451) + p.SetState(11446) p.Match(PostgreSQLParserPRIOR) if p.HasError() { // Recognition error - abort rule @@ -190550,7 +190403,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 3: p.EnterOuterAlt(localctx, 3) { - p.SetState(11452) + p.SetState(11447) p.Match(PostgreSQLParserFIRST_P) if p.HasError() { // Recognition error - abort rule @@ -190561,7 +190414,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 4: p.EnterOuterAlt(localctx, 4) { - p.SetState(11453) + p.SetState(11448) p.Match(PostgreSQLParserLAST_P) if p.HasError() { // Recognition error - abort rule @@ -190572,7 +190425,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 5: p.EnterOuterAlt(localctx, 5) { - p.SetState(11454) + p.SetState(11449) p.Match(PostgreSQLParserABSOLUTE_P) if p.HasError() { // Recognition error - abort rule @@ -190580,14 +190433,14 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC } } { - p.SetState(11455) + p.SetState(11450) p.A_expr() } case 6: p.EnterOuterAlt(localctx, 6) { - p.SetState(11456) + p.SetState(11451) p.Match(PostgreSQLParserRELATIVE_P) if p.HasError() { // Recognition error - abort rule @@ -190595,21 +190448,21 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC } } { - p.SetState(11457) + p.SetState(11452) p.A_expr() } case 7: p.EnterOuterAlt(localctx, 7) { - p.SetState(11458) + p.SetState(11453) p.A_expr() } case 8: p.EnterOuterAlt(localctx, 8) { - p.SetState(11459) + p.SetState(11454) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -190620,7 +190473,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC case 9: p.EnterOuterAlt(localctx, 9) { - p.SetState(11460) + p.SetState(11455) _la = p.GetTokenStream().LA(1) if !(_la == PostgreSQLParserBACKWARD || _la == PostgreSQLParserFORWARD) { @@ -190630,12 +190483,12 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC p.Consume() } } - p.SetState(11463) + p.SetState(11458) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1143, p.GetParserRuleContext()) == 1 { { - p.SetState(11461) + p.SetState(11456) p.A_expr() } @@ -190643,7 +190496,7 @@ func (p *PostgreSQLParser) Opt_fetch_direction() (localctx IOpt_fetch_directionC goto errorExit } else if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1143, p.GetParserRuleContext()) == 2 { { - p.SetState(11462) + p.SetState(11457) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -190793,22 +190646,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, 1626, PostgreSQLParserRULE_stmt_move) + p.EnterRule(localctx, 1624, PostgreSQLParserRULE_stmt_move) p.EnterOuterAlt(localctx, 1) { - p.SetState(11467) + p.SetState(11462) p.Match(PostgreSQLParserMOVE) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11469) + p.SetState(11464) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1145, p.GetParserRuleContext()) == 1 { { - p.SetState(11468) + p.SetState(11463) p.Opt_fetch_direction() } @@ -190816,11 +190669,11 @@ func (p *PostgreSQLParser) Stmt_move() (localctx IStmt_moveContext) { goto errorExit } { - p.SetState(11471) + p.SetState(11466) p.Cursor_variable() } { - p.SetState(11472) + p.SetState(11467) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -190945,10 +190798,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, 1628, PostgreSQLParserRULE_stmt_close) + p.EnterRule(localctx, 1626, PostgreSQLParserRULE_stmt_close) p.EnterOuterAlt(localctx, 1) { - p.SetState(11474) + p.SetState(11469) p.Match(PostgreSQLParserCLOSE) if p.HasError() { // Recognition error - abort rule @@ -190956,11 +190809,11 @@ func (p *PostgreSQLParser) Stmt_close() (localctx IStmt_closeContext) { } } { - p.SetState(11475) + p.SetState(11470) p.Cursor_variable() } { - p.SetState(11476) + p.SetState(11471) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191068,10 +190921,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, 1630, PostgreSQLParserRULE_stmt_null) + p.EnterRule(localctx, 1628, PostgreSQLParserRULE_stmt_null) p.EnterOuterAlt(localctx, 1) { - p.SetState(11478) + p.SetState(11473) p.Match(PostgreSQLParserNULL_P) if p.HasError() { // Recognition error - abort rule @@ -191079,7 +190932,7 @@ func (p *PostgreSQLParser) Stmt_null() (localctx IStmt_nullContext) { } } { - p.SetState(11479) + p.SetState(11474) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191204,19 +191057,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, 1632, PostgreSQLParserRULE_stmt_commit) + p.EnterRule(localctx, 1630, PostgreSQLParserRULE_stmt_commit) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11481) + p.SetState(11476) p.Match(PostgreSQLParserCOMMIT) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11483) + p.SetState(11478) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191225,13 +191078,13 @@ func (p *PostgreSQLParser) Stmt_commit() (localctx IStmt_commitContext) { if _la == PostgreSQLParserAND { { - p.SetState(11482) + p.SetState(11477) p.Plsql_opt_transaction_chain() } } { - p.SetState(11485) + p.SetState(11480) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191356,19 +191209,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, 1634, PostgreSQLParserRULE_stmt_rollback) + p.EnterRule(localctx, 1632, PostgreSQLParserRULE_stmt_rollback) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11487) + p.SetState(11482) p.Match(PostgreSQLParserROLLBACK) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11489) + p.SetState(11484) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191377,13 +191230,13 @@ func (p *PostgreSQLParser) Stmt_rollback() (localctx IStmt_rollbackContext) { if _la == PostgreSQLParserAND { { - p.SetState(11488) + p.SetState(11483) p.Plsql_opt_transaction_chain() } } { - p.SetState(11491) + p.SetState(11486) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191496,19 +191349,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, 1636, PostgreSQLParserRULE_plsql_opt_transaction_chain) + p.EnterRule(localctx, 1634, PostgreSQLParserRULE_plsql_opt_transaction_chain) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11493) + p.SetState(11488) p.Match(PostgreSQLParserAND) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11495) + p.SetState(11490) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191517,7 +191370,7 @@ func (p *PostgreSQLParser) Plsql_opt_transaction_chain() (localctx IPlsql_opt_tr if _la == PostgreSQLParserNO { { - p.SetState(11494) + p.SetState(11489) p.Match(PostgreSQLParserNO) if p.HasError() { // Recognition error - abort rule @@ -191527,7 +191380,7 @@ func (p *PostgreSQLParser) Plsql_opt_transaction_chain() (localctx IPlsql_opt_tr } { - p.SetState(11497) + p.SetState(11492) p.Match(PostgreSQLParserCHAIN) if p.HasError() { // Recognition error - abort rule @@ -191672,8 +191525,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, 1638, PostgreSQLParserRULE_stmt_set) - p.SetState(11511) + p.EnterRule(localctx, 1636, PostgreSQLParserRULE_stmt_set) + p.SetState(11506) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191683,7 +191536,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { case PostgreSQLParserSET: p.EnterOuterAlt(localctx, 1) { - p.SetState(11499) + p.SetState(11494) p.Match(PostgreSQLParserSET) if p.HasError() { // Recognition error - abort rule @@ -191691,11 +191544,11 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { } } { - p.SetState(11500) + p.SetState(11495) p.Any_name() } { - p.SetState(11501) + p.SetState(11496) p.Match(PostgreSQLParserTO) if p.HasError() { // Recognition error - abort rule @@ -191703,7 +191556,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { } } { - p.SetState(11502) + p.SetState(11497) p.Match(PostgreSQLParserDEFAULT) if p.HasError() { // Recognition error - abort rule @@ -191711,7 +191564,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { } } { - p.SetState(11503) + p.SetState(11498) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191722,14 +191575,14 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { case PostgreSQLParserRESET: p.EnterOuterAlt(localctx, 2) { - p.SetState(11505) + p.SetState(11500) p.Match(PostgreSQLParserRESET) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11508) + p.SetState(11503) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191738,13 +191591,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(11506) + p.SetState(11501) p.Any_name() } case PostgreSQLParserALL: { - p.SetState(11507) + p.SetState(11502) p.Match(PostgreSQLParserALL) if p.HasError() { // Recognition error - abort rule @@ -191757,7 +191610,7 @@ func (p *PostgreSQLParser) Stmt_set() (localctx IStmt_setContext) { goto errorExit } { - p.SetState(11510) + p.SetState(11505) p.Match(PostgreSQLParserSEMI) if p.HasError() { // Recognition error - abort rule @@ -191882,8 +191735,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, 1640, PostgreSQLParserRULE_cursor_variable) - p.SetState(11515) + p.EnterRule(localctx, 1638, PostgreSQLParserRULE_cursor_variable) + p.SetState(11510) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -191893,14 +191746,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(11513) + p.SetState(11508) p.Colid() } case PostgreSQLParserPARAM: p.EnterOuterAlt(localctx, 2) { - p.SetState(11514) + p.SetState(11509) p.Match(PostgreSQLParserPARAM) if p.HasError() { // Recognition error - abort rule @@ -192025,10 +191878,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, 1642, PostgreSQLParserRULE_exception_sect) + p.EnterRule(localctx, 1640, PostgreSQLParserRULE_exception_sect) p.EnterOuterAlt(localctx, 1) { - p.SetState(11517) + p.SetState(11512) p.Match(PostgreSQLParserEXCEPTION) if p.HasError() { // Recognition error - abort rule @@ -192036,7 +191889,7 @@ func (p *PostgreSQLParser) Exception_sect() (localctx IException_sectContext) { } } { - p.SetState(11518) + p.SetState(11513) p.Proc_exceptions() } @@ -192173,11 +192026,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, 1644, PostgreSQLParserRULE_proc_exceptions) + p.EnterRule(localctx, 1642, PostgreSQLParserRULE_proc_exceptions) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11521) + p.SetState(11516) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192186,11 +192039,11 @@ func (p *PostgreSQLParser) Proc_exceptions() (localctx IProc_exceptionsContext) for ok := true; ok; ok = _la == PostgreSQLParserWHEN { { - p.SetState(11520) + p.SetState(11515) p.Proc_exception() } - p.SetState(11523) + p.SetState(11518) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192332,10 +192185,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, 1646, PostgreSQLParserRULE_proc_exception) + p.EnterRule(localctx, 1644, PostgreSQLParserRULE_proc_exception) p.EnterOuterAlt(localctx, 1) { - p.SetState(11525) + p.SetState(11520) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -192343,11 +192196,11 @@ func (p *PostgreSQLParser) Proc_exception() (localctx IProc_exceptionContext) { } } { - p.SetState(11526) + p.SetState(11521) p.Proc_conditions() } { - p.SetState(11527) + p.SetState(11522) p.Match(PostgreSQLParserTHEN) if p.HasError() { // Recognition error - abort rule @@ -192355,7 +192208,7 @@ func (p *PostgreSQLParser) Proc_exception() (localctx IProc_exceptionContext) { } } { - p.SetState(11528) + p.SetState(11523) p.Proc_sect() } @@ -192502,15 +192355,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, 1648, PostgreSQLParserRULE_proc_conditions) + p.EnterRule(localctx, 1646, PostgreSQLParserRULE_proc_conditions) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11530) + p.SetState(11525) p.Proc_condition() } - p.SetState(11535) + p.SetState(11530) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192519,7 +192372,7 @@ func (p *PostgreSQLParser) Proc_conditions() (localctx IProc_conditionsContext) for _la == PostgreSQLParserOR { { - p.SetState(11531) + p.SetState(11526) p.Match(PostgreSQLParserOR) if p.HasError() { // Recognition error - abort rule @@ -192527,11 +192380,11 @@ func (p *PostgreSQLParser) Proc_conditions() (localctx IProc_conditionsContext) } } { - p.SetState(11532) + p.SetState(11527) p.Proc_condition() } - p.SetState(11537) + p.SetState(11532) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192668,8 +192521,8 @@ 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, 1650, PostgreSQLParserRULE_proc_condition) - p.SetState(11541) + p.EnterRule(localctx, 1648, PostgreSQLParserRULE_proc_condition) + p.SetState(11536) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -192679,14 +192532,14 @@ func (p *PostgreSQLParser) Proc_condition() (localctx IProc_conditionContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11538) + p.SetState(11533) p.Any_identifier() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11539) + p.SetState(11534) p.Match(PostgreSQLParserSQLSTATE) if p.HasError() { // Recognition error - abort rule @@ -192694,7 +192547,7 @@ func (p *PostgreSQLParser) Proc_condition() (localctx IProc_conditionContext) { } } { - p.SetState(11540) + p.SetState(11535) p.Sconst() } @@ -192809,10 +192662,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, 1652, PostgreSQLParserRULE_opt_block_label) + p.EnterRule(localctx, 1650, PostgreSQLParserRULE_opt_block_label) p.EnterOuterAlt(localctx, 1) { - p.SetState(11543) + p.SetState(11538) p.Label_decl() } @@ -192923,10 +192776,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, 1654, PostgreSQLParserRULE_opt_loop_label) + p.EnterRule(localctx, 1652, PostgreSQLParserRULE_opt_loop_label) p.EnterOuterAlt(localctx, 1) { - p.SetState(11545) + p.SetState(11540) p.Label_decl() } @@ -193037,10 +192890,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, 1656, PostgreSQLParserRULE_opt_label) + p.EnterRule(localctx, 1654, PostgreSQLParserRULE_opt_label) p.EnterOuterAlt(localctx, 1) { - p.SetState(11547) + p.SetState(11542) p.Any_identifier() } @@ -193156,10 +193009,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, 1658, PostgreSQLParserRULE_opt_exitcond) + p.EnterRule(localctx, 1656, PostgreSQLParserRULE_opt_exitcond) p.EnterOuterAlt(localctx, 1) { - p.SetState(11549) + p.SetState(11544) p.Match(PostgreSQLParserWHEN) if p.HasError() { // Recognition error - abort rule @@ -193167,7 +193020,7 @@ func (p *PostgreSQLParser) Opt_exitcond() (localctx IOpt_exitcondContext) { } } { - p.SetState(11550) + p.SetState(11545) p.Expr_until_semi() } @@ -193295,8 +193148,8 @@ 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, 1660, PostgreSQLParserRULE_any_identifier) - p.SetState(11554) + p.EnterRule(localctx, 1658, PostgreSQLParserRULE_any_identifier) + p.SetState(11549) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -193306,14 +193159,14 @@ func (p *PostgreSQLParser) Any_identifier() (localctx IAny_identifierContext) { case 1: p.EnterOuterAlt(localctx, 1) { - p.SetState(11552) + p.SetState(11547) p.Colid() } case 2: p.EnterOuterAlt(localctx, 2) { - p.SetState(11553) + p.SetState(11548) p.Plsql_unreserved_keyword() } @@ -193726,12 +193579,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, 1662, PostgreSQLParserRULE_plsql_unreserved_keyword) + p.EnterRule(localctx, 1660, PostgreSQLParserRULE_plsql_unreserved_keyword) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11556) + p.SetState(11551) _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)) { @@ -194002,11 +193855,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, 1664, PostgreSQLParserRULE_sql_expression) + p.EnterRule(localctx, 1662, PostgreSQLParserRULE_sql_expression) var _la int p.EnterOuterAlt(localctx, 1) - p.SetState(11559) + p.SetState(11554) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194015,16 +193868,16 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserDISTINCT { { - p.SetState(11558) + p.SetState(11553) p.Distinct_clause() } } { - p.SetState(11561) + p.SetState(11556) p.Opt_target_list() } - p.SetState(11563) + p.SetState(11558) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194033,12 +193886,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserFROM { { - p.SetState(11562) + p.SetState(11557) p.From_clause() } } - p.SetState(11566) + p.SetState(11561) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194047,12 +193900,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserWHERE { { - p.SetState(11565) + p.SetState(11560) p.Where_clause() } } - p.SetState(11569) + p.SetState(11564) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194061,12 +193914,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserGROUP_P { { - p.SetState(11568) + p.SetState(11563) p.Group_clause() } } - p.SetState(11572) + p.SetState(11567) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194075,12 +193928,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserHAVING { { - p.SetState(11571) + p.SetState(11566) p.Having_clause() } } - p.SetState(11575) + p.SetState(11570) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194089,12 +193942,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserWINDOW { { - p.SetState(11574) + p.SetState(11569) p.Window_clause() } } - p.SetState(11578) + p.SetState(11573) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194103,12 +193956,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserORDER { { - p.SetState(11577) + p.SetState(11572) p.Opt_sort_clause() } } - p.SetState(11581) + p.SetState(11576) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194117,12 +193970,12 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if (int64((_la-61)) & ^0x3f) == 0 && ((int64(1)<<(_la-61))&270337) != 0 { { - p.SetState(11580) + p.SetState(11575) p.Opt_select_limit() } } - p.SetState(11584) + p.SetState(11579) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194131,7 +193984,7 @@ func (p *PostgreSQLParser) Sql_expression() (localctx ISql_expressionContext) { if _la == PostgreSQLParserFOR { { - p.SetState(11583) + p.SetState(11578) p.Opt_for_locking_clause() } @@ -194244,10 +194097,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, 1666, PostgreSQLParserRULE_expr_until_then) + p.EnterRule(localctx, 1664, PostgreSQLParserRULE_expr_until_then) p.EnterOuterAlt(localctx, 1) { - p.SetState(11586) + p.SetState(11581) p.Sql_expression() } @@ -194358,10 +194211,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, 1668, PostgreSQLParserRULE_expr_until_semi) + p.EnterRule(localctx, 1666, PostgreSQLParserRULE_expr_until_semi) p.EnterOuterAlt(localctx, 1) { - p.SetState(11588) + p.SetState(11583) p.Sql_expression() } @@ -194472,10 +194325,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, 1670, PostgreSQLParserRULE_expr_until_rightbracket) + p.EnterRule(localctx, 1668, PostgreSQLParserRULE_expr_until_rightbracket) p.EnterOuterAlt(localctx, 1) { - p.SetState(11590) + p.SetState(11585) p.A_expr() } @@ -194586,10 +194439,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, 1672, PostgreSQLParserRULE_expr_until_loop) + p.EnterRule(localctx, 1670, PostgreSQLParserRULE_expr_until_loop) p.EnterOuterAlt(localctx, 1) { - p.SetState(11592) + p.SetState(11587) p.A_expr() } @@ -194717,15 +194570,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, 1674, PostgreSQLParserRULE_make_execsql_stmt) + p.EnterRule(localctx, 1672, PostgreSQLParserRULE_make_execsql_stmt) var _la int p.EnterOuterAlt(localctx, 1) { - p.SetState(11594) + p.SetState(11589) p.Stmt() } - p.SetState(11596) + p.SetState(11591) p.GetErrorHandler().Sync(p) if p.HasError() { goto errorExit @@ -194734,7 +194587,7 @@ func (p *PostgreSQLParser) Make_execsql_stmt() (localctx IMake_execsql_stmtConte if _la == PostgreSQLParserINTO { { - p.SetState(11595) + p.SetState(11590) p.Opt_returning_clause_into() } @@ -194869,22 +194722,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, 1676, PostgreSQLParserRULE_opt_returning_clause_into) + p.EnterRule(localctx, 1674, PostgreSQLParserRULE_opt_returning_clause_into) p.EnterOuterAlt(localctx, 1) { - p.SetState(11598) + p.SetState(11593) p.Match(PostgreSQLParserINTO) if p.HasError() { // Recognition error - abort rule goto errorExit } } - p.SetState(11600) + p.SetState(11595) p.GetErrorHandler().Sync(p) if p.GetInterpreter().AdaptivePredict(p.BaseParser, p.GetTokenStream(), 1166, p.GetParserRuleContext()) == 1 { { - p.SetState(11599) + p.SetState(11594) p.Opt_strict() } @@ -194892,7 +194745,7 @@ func (p *PostgreSQLParser) Opt_returning_clause_into() (localctx IOpt_returning_ goto errorExit } { - p.SetState(11602) + p.SetState(11597) p.Into_target() } @@ -194911,7 +194764,7 @@ errorExit: func (p *PostgreSQLParser) Sempred(localctx antlr.RuleContext, ruleIndex, predIndex int) bool { switch ruleIndex { - case 606: + case 605: 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 0136bc9..70ba4f5 100644 --- a/postgresql/postgresqlparser_base_listener.go +++ b/postgresql/postgresqlparser_base_listener.go @@ -3381,12 +3381,6 @@ 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 b09ba23..28c978f 100644 --- a/postgresql/postgresqlparser_base_visitor.go +++ b/postgresql/postgresqlparser_base_visitor.go @@ -2143,10 +2143,6 @@ 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 c5c867c..b76f004 100644 --- a/postgresql/postgresqlparser_listener.go +++ b/postgresql/postgresqlparser_listener.go @@ -1609,9 +1609,6 @@ 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) @@ -4138,9 +4135,6 @@ 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 3cab5ad..d8fc8d6 100644 --- a/postgresql/postgresqlparser_visitor.go +++ b/postgresql/postgresqlparser_visitor.go @@ -1609,9 +1609,6 @@ 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{}