From ad88e90dde49ac61c18f676802c11f37b21cdcfe Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Wed, 14 Feb 2024 11:43:53 -0800 Subject: [PATCH] feat: add starlark binding --- _automation/grammars.json | 10 + starlark/binding.go | 15 + starlark/binding_test.go | 25 + starlark/parser.c | 92153 ++++++++++++++++++++++++++++++++++++ starlark/parser.h | 224 + starlark/scanner.c | 524 + 6 files changed, 92951 insertions(+) create mode 100644 starlark/binding.go create mode 100644 starlark/binding_test.go create mode 100644 starlark/parser.c create mode 100644 starlark/parser.h create mode 100644 starlark/scanner.c diff --git a/_automation/grammars.json b/_automation/grammars.json index a22b991f..94932449 100644 --- a/_automation/grammars.json +++ b/_automation/grammars.json @@ -237,6 +237,16 @@ "reference": "v0.19.1", "revision": "918f0fb948405181707a1772cab639f2d278d384" }, + { + "language": "starlark", + "url": "https://github.com/tree-sitter-grammars/tree-sitter-starlark", + "files": [ + "parser.c", + "scanner.c" + ], + "reference": "v1.0.0", + "revision": "b31a616aac5d05f927f3f9dd809789db7805b632" + }, { "language": "svelte", "url": "https://github.com/Himujjal/tree-sitter-svelte", diff --git a/starlark/binding.go b/starlark/binding.go new file mode 100644 index 00000000..052f34f5 --- /dev/null +++ b/starlark/binding.go @@ -0,0 +1,15 @@ +package starlark + +//#include "parser.h" +//TSLanguage *tree_sitter_starlark(); +import "C" +import ( + "unsafe" + + sitter "github.com/smacker/go-tree-sitter" +) + +func GetLanguage() *sitter.Language { + ptr := unsafe.Pointer(C.tree_sitter_starlark()) + return sitter.NewLanguage(ptr) +} diff --git a/starlark/binding_test.go b/starlark/binding_test.go new file mode 100644 index 00000000..489f444c --- /dev/null +++ b/starlark/binding_test.go @@ -0,0 +1,25 @@ +package starlark_test + +import ( + "context" + "testing" + + sitter "github.com/smacker/go-tree-sitter" + "github.com/smacker/go-tree-sitter/starlark" + "github.com/stretchr/testify/assert" +) + +func TestGrammar(t *testing.T) { + assert := assert.New(t) + + code := `def myfunc(a): + pass +` + + n, err := sitter.ParseCtx(context.Background(), []byte(code), starlark.GetLanguage()) + assert.NoError(err) + assert.Equal( + "(module (function_definition name: (identifier) parameters: (parameters (identifier)) body: (block (pass_statement))))", + n.String(), + ) +} diff --git a/starlark/parser.c b/starlark/parser.c new file mode 100644 index 00000000..41944c10 --- /dev/null +++ b/starlark/parser.c @@ -0,0 +1,92153 @@ +#include "parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1938 +#define LARGE_STATE_COUNT 99 +#define SYMBOL_COUNT 234 +#define ALIAS_COUNT 4 +#define TOKEN_COUNT 115 +#define EXTERNAL_TOKEN_COUNT 11 +#define FIELD_COUNT 30 +#define MAX_ALIAS_SEQUENCE_LENGTH 10 +#define PRODUCTION_ID_COUNT 117 + +enum { + sym_identifier = 1, + anon_sym_SEMI = 2, + anon_sym_import = 3, + anon_sym_DOT = 4, + anon_sym_from = 5, + anon_sym___future__ = 6, + anon_sym_LPAREN = 7, + anon_sym_RPAREN = 8, + anon_sym_COMMA = 9, + anon_sym_as = 10, + anon_sym_STAR = 11, + anon_sym_print = 12, + anon_sym_GT_GT = 13, + anon_sym_assert = 14, + anon_sym_eq = 15, + anon_sym_ne = 16, + anon_sym_contains = 17, + anon_sym_fails = 18, + anon_sym_assert_ = 19, + anon_sym_assert_eq = 20, + anon_sym_assert_ne = 21, + anon_sym_assert_contains = 22, + anon_sym_assert_fails = 23, + anon_sym_COLON_EQ = 24, + anon_sym_return = 25, + anon_sym_del = 26, + anon_sym_raise = 27, + anon_sym_pass = 28, + anon_sym_break = 29, + anon_sym_continue = 30, + anon_sym_if = 31, + anon_sym_COLON = 32, + anon_sym_elif = 33, + anon_sym_else = 34, + anon_sym_match = 35, + anon_sym_case = 36, + anon_sym_async = 37, + anon_sym_for = 38, + anon_sym_in = 39, + anon_sym_while = 40, + anon_sym_try = 41, + anon_sym_except = 42, + anon_sym_finally = 43, + anon_sym_with = 44, + anon_sym_def = 45, + anon_sym_DASH_GT = 46, + anon_sym_STAR_STAR = 47, + anon_sym_global = 48, + anon_sym_nonlocal = 49, + anon_sym_exec = 50, + anon_sym_type = 51, + anon_sym_EQ = 52, + anon_sym_class = 53, + anon_sym_LBRACK = 54, + anon_sym_RBRACK = 55, + anon_sym_AT = 56, + anon_sym_not = 57, + anon_sym_and = 58, + anon_sym_or = 59, + anon_sym_PLUS = 60, + anon_sym_DASH = 61, + anon_sym_SLASH = 62, + anon_sym_PERCENT = 63, + anon_sym_SLASH_SLASH = 64, + anon_sym_PIPE = 65, + anon_sym_AMP = 66, + anon_sym_CARET = 67, + anon_sym_LT_LT = 68, + anon_sym_TILDE = 69, + anon_sym_LT = 70, + anon_sym_LT_EQ = 71, + anon_sym_EQ_EQ = 72, + anon_sym_BANG_EQ = 73, + anon_sym_GT_EQ = 74, + anon_sym_GT = 75, + anon_sym_LT_GT = 76, + anon_sym_lambda = 77, + anon_sym_PLUS_EQ = 78, + anon_sym_DASH_EQ = 79, + anon_sym_STAR_EQ = 80, + anon_sym_SLASH_EQ = 81, + anon_sym_AT_EQ = 82, + anon_sym_SLASH_SLASH_EQ = 83, + anon_sym_PERCENT_EQ = 84, + anon_sym_STAR_STAR_EQ = 85, + anon_sym_GT_GT_EQ = 86, + anon_sym_LT_LT_EQ = 87, + anon_sym_AMP_EQ = 88, + anon_sym_CARET_EQ = 89, + anon_sym_PIPE_EQ = 90, + anon_sym_yield = 91, + sym_ellipsis = 92, + anon_sym_LBRACE = 93, + anon_sym_RBRACE = 94, + sym_escape_sequence = 95, + sym__not_escape_sequence = 96, + aux_sym_format_specifier_token1 = 97, + sym_type_conversion = 98, + sym_integer = 99, + sym_float = 100, + anon_sym_await = 101, + anon_sym_struct = 102, + sym_true = 103, + sym_false = 104, + sym_none = 105, + sym_comment = 106, + sym_line_continuation = 107, + sym__newline = 108, + sym__indent = 109, + sym__dedent = 110, + sym_string_start = 111, + sym__string_content = 112, + sym_escape_interpolation = 113, + sym_string_end = 114, + sym_module = 115, + sym__statement = 116, + sym__simple_statements = 117, + sym_print_statement = 118, + sym_chevron = 119, + sym_assert_statement = 120, + sym_expression_statement = 121, + sym_named_expression = 122, + sym__named_expression_lhs = 123, + sym_return_statement = 124, + sym_delete_statement = 125, + sym_pass_statement = 126, + sym_break_statement = 127, + sym_continue_statement = 128, + sym_if_statement = 129, + sym_elif_clause = 130, + sym_else_clause = 131, + sym_match_statement = 132, + sym__match_block = 133, + sym_case_clause = 134, + sym_for_statement = 135, + sym_while_statement = 136, + sym_with_statement = 137, + sym_with_clause = 138, + sym_with_item = 139, + sym_function_definition = 140, + sym_parameters = 141, + sym_lambda_parameters = 142, + sym_list_splat = 143, + sym_dictionary_splat = 144, + sym_exec_statement = 145, + sym_type_parameter = 146, + sym_parenthesized_list_splat = 147, + sym_argument_list = 148, + sym_decorated_definition = 149, + sym_decorator = 150, + sym_block = 151, + sym_expression_list = 152, + sym__parameters = 153, + sym__patterns = 154, + sym_parameter = 155, + sym_pattern = 156, + sym_tuple_pattern = 157, + sym_list_pattern = 158, + sym_default_parameter = 159, + sym_typed_default_parameter = 160, + sym_list_splat_pattern = 161, + sym_dictionary_splat_pattern = 162, + sym_as_pattern = 163, + sym__expression_within_for_in_clause = 164, + sym_expression = 165, + sym_primary_expression = 166, + sym_not_operator = 167, + sym_boolean_operator = 168, + sym_binary_operator = 169, + sym_unary_operator = 170, + sym_comparison_operator = 171, + sym_lambda = 172, + sym_lambda_within_for_in_clause = 173, + sym_assignment = 174, + sym_augmented_assignment = 175, + sym_pattern_list = 176, + sym__right_hand_side = 177, + sym_attribute = 178, + sym_subscript = 179, + sym_slice = 180, + sym_call = 181, + sym_typed_parameter = 182, + sym_type = 183, + sym_splat_type = 184, + sym_generic_type = 185, + sym_union_type = 186, + sym_constrained_type = 187, + sym_member_type = 188, + sym_keyword_argument = 189, + sym_list = 190, + sym_set = 191, + sym_tuple = 192, + sym_dictionary = 193, + sym_pair = 194, + sym_list_comprehension = 195, + sym_dictionary_comprehension = 196, + sym_set_comprehension = 197, + sym__comprehension_clauses = 198, + sym_parenthesized_expression = 199, + sym__collection_elements = 200, + sym_for_in_clause = 201, + sym_if_clause = 202, + sym_conditional_expression = 203, + sym_string = 204, + sym_string_content = 205, + sym_interpolation = 206, + sym__f_expression = 207, + sym_format_specifier = 208, + sym_positional_separator = 209, + sym_keyword_separator = 210, + aux_sym_module_repeat1 = 211, + aux_sym__simple_statements_repeat1 = 212, + aux_sym_print_statement_repeat1 = 213, + aux_sym_assert_statement_repeat1 = 214, + aux_sym_if_statement_repeat1 = 215, + aux_sym_match_statement_repeat1 = 216, + aux_sym__match_block_repeat1 = 217, + aux_sym_case_clause_repeat1 = 218, + aux_sym_with_clause_repeat1 = 219, + aux_sym_type_parameter_repeat1 = 220, + aux_sym_argument_list_repeat1 = 221, + aux_sym_decorated_definition_repeat1 = 222, + aux_sym__parameters_repeat1 = 223, + aux_sym__patterns_repeat1 = 224, + aux_sym_comparison_operator_repeat1 = 225, + aux_sym_subscript_repeat1 = 226, + aux_sym_dictionary_repeat1 = 227, + aux_sym__comprehension_clauses_repeat1 = 228, + aux_sym__collection_elements_repeat1 = 229, + aux_sym_for_in_clause_repeat1 = 230, + aux_sym_string_repeat1 = 231, + aux_sym_string_content_repeat1 = 232, + aux_sym_format_specifier_repeat1 = 233, + alias_sym_as_pattern_target = 234, + alias_sym_case_pattern = 235, + alias_sym_format_expression = 236, + anon_alias_sym_not_SPACEin = 237, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [anon_sym_SEMI] = ";", + [anon_sym_import] = "import", + [anon_sym_DOT] = ".", + [anon_sym_from] = "from", + [anon_sym___future__] = "__future__", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_COMMA] = ",", + [anon_sym_as] = "as", + [anon_sym_STAR] = "*", + [anon_sym_print] = "print", + [anon_sym_GT_GT] = ">>", + [anon_sym_assert] = "assert_keyword", + [anon_sym_eq] = "assert_builtin", + [anon_sym_ne] = "assert_builtin", + [anon_sym_contains] = "assert_builtin", + [anon_sym_fails] = "assert_builtin", + [anon_sym_assert_] = "assert_keyword", + [anon_sym_assert_eq] = "assert_keyword", + [anon_sym_assert_ne] = "assert_keyword", + [anon_sym_assert_contains] = "assert_keyword", + [anon_sym_assert_fails] = "assert_keyword", + [anon_sym_COLON_EQ] = ":=", + [anon_sym_return] = "return", + [anon_sym_del] = "del", + [anon_sym_raise] = "raise", + [anon_sym_pass] = "pass", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_if] = "if", + [anon_sym_COLON] = ":", + [anon_sym_elif] = "elif", + [anon_sym_else] = "else", + [anon_sym_match] = "match", + [anon_sym_case] = "case", + [anon_sym_async] = "async", + [anon_sym_for] = "for", + [anon_sym_in] = "in", + [anon_sym_while] = "while", + [anon_sym_try] = "try", + [anon_sym_except] = "except", + [anon_sym_finally] = "finally", + [anon_sym_with] = "with", + [anon_sym_def] = "def", + [anon_sym_DASH_GT] = "->", + [anon_sym_STAR_STAR] = "**", + [anon_sym_global] = "global", + [anon_sym_nonlocal] = "nonlocal", + [anon_sym_exec] = "exec", + [anon_sym_type] = "type", + [anon_sym_EQ] = "=", + [anon_sym_class] = "class", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_AT] = "@", + [anon_sym_not] = "not", + [anon_sym_and] = "and", + [anon_sym_or] = "or", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_PIPE] = "|", + [anon_sym_AMP] = "&", + [anon_sym_CARET] = "^", + [anon_sym_LT_LT] = "<<", + [anon_sym_TILDE] = "~", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_GT] = ">", + [anon_sym_LT_GT] = "<>", + [anon_sym_lambda] = "lambda", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_AT_EQ] = "@=", + [anon_sym_SLASH_SLASH_EQ] = "//=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_yield] = "yield", + [sym_ellipsis] = "ellipsis", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [sym_escape_sequence] = "escape_sequence", + [sym__not_escape_sequence] = "_not_escape_sequence", + [aux_sym_format_specifier_token1] = "format_specifier_token1", + [sym_type_conversion] = "type_conversion", + [sym_integer] = "integer", + [sym_float] = "float", + [anon_sym_await] = "await", + [anon_sym_struct] = "identifier", + [sym_true] = "true", + [sym_false] = "false", + [sym_none] = "none", + [sym_comment] = "comment", + [sym_line_continuation] = "line_continuation", + [sym__newline] = "_newline", + [sym__indent] = "_indent", + [sym__dedent] = "_dedent", + [sym_string_start] = "string_start", + [sym__string_content] = "_string_content", + [sym_escape_interpolation] = "escape_interpolation", + [sym_string_end] = "string_end", + [sym_module] = "module", + [sym__statement] = "_statement", + [sym__simple_statements] = "_simple_statements", + [sym_print_statement] = "print_statement", + [sym_chevron] = "chevron", + [sym_assert_statement] = "assert_statement", + [sym_expression_statement] = "expression_statement", + [sym_named_expression] = "named_expression", + [sym__named_expression_lhs] = "_named_expression_lhs", + [sym_return_statement] = "return_statement", + [sym_delete_statement] = "delete_statement", + [sym_pass_statement] = "pass_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_if_statement] = "if_statement", + [sym_elif_clause] = "elif_clause", + [sym_else_clause] = "else_clause", + [sym_match_statement] = "match_statement", + [sym__match_block] = "block", + [sym_case_clause] = "case_clause", + [sym_for_statement] = "for_statement", + [sym_while_statement] = "while_statement", + [sym_with_statement] = "with_statement", + [sym_with_clause] = "with_clause", + [sym_with_item] = "with_item", + [sym_function_definition] = "function_definition", + [sym_parameters] = "parameters", + [sym_lambda_parameters] = "lambda_parameters", + [sym_list_splat] = "list_splat", + [sym_dictionary_splat] = "dictionary_splat", + [sym_exec_statement] = "exec_statement", + [sym_type_parameter] = "type_parameter", + [sym_parenthesized_list_splat] = "parenthesized_list_splat", + [sym_argument_list] = "argument_list", + [sym_decorated_definition] = "decorated_definition", + [sym_decorator] = "decorator", + [sym_block] = "block", + [sym_expression_list] = "expression_list", + [sym__parameters] = "_parameters", + [sym__patterns] = "_patterns", + [sym_parameter] = "parameter", + [sym_pattern] = "pattern", + [sym_tuple_pattern] = "tuple_pattern", + [sym_list_pattern] = "list_pattern", + [sym_default_parameter] = "default_parameter", + [sym_typed_default_parameter] = "typed_default_parameter", + [sym_list_splat_pattern] = "list_splat_pattern", + [sym_dictionary_splat_pattern] = "dictionary_splat_pattern", + [sym_as_pattern] = "as_pattern", + [sym__expression_within_for_in_clause] = "_expression_within_for_in_clause", + [sym_expression] = "expression", + [sym_primary_expression] = "primary_expression", + [sym_not_operator] = "not_operator", + [sym_boolean_operator] = "boolean_operator", + [sym_binary_operator] = "binary_operator", + [sym_unary_operator] = "unary_operator", + [sym_comparison_operator] = "comparison_operator", + [sym_lambda] = "lambda", + [sym_lambda_within_for_in_clause] = "lambda", + [sym_assignment] = "assignment", + [sym_augmented_assignment] = "augmented_assignment", + [sym_pattern_list] = "pattern_list", + [sym__right_hand_side] = "_right_hand_side", + [sym_attribute] = "attribute", + [sym_subscript] = "subscript", + [sym_slice] = "slice", + [sym_call] = "call", + [sym_typed_parameter] = "typed_parameter", + [sym_type] = "type", + [sym_splat_type] = "splat_type", + [sym_generic_type] = "generic_type", + [sym_union_type] = "union_type", + [sym_constrained_type] = "constrained_type", + [sym_member_type] = "member_type", + [sym_keyword_argument] = "keyword_argument", + [sym_list] = "list", + [sym_set] = "set", + [sym_tuple] = "tuple", + [sym_dictionary] = "dictionary", + [sym_pair] = "pair", + [sym_list_comprehension] = "list_comprehension", + [sym_dictionary_comprehension] = "dictionary_comprehension", + [sym_set_comprehension] = "set_comprehension", + [sym__comprehension_clauses] = "_comprehension_clauses", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym__collection_elements] = "_collection_elements", + [sym_for_in_clause] = "for_in_clause", + [sym_if_clause] = "if_clause", + [sym_conditional_expression] = "conditional_expression", + [sym_string] = "string", + [sym_string_content] = "string_content", + [sym_interpolation] = "interpolation", + [sym__f_expression] = "_f_expression", + [sym_format_specifier] = "format_specifier", + [sym_positional_separator] = "positional_separator", + [sym_keyword_separator] = "keyword_separator", + [aux_sym_module_repeat1] = "module_repeat1", + [aux_sym__simple_statements_repeat1] = "_simple_statements_repeat1", + [aux_sym_print_statement_repeat1] = "print_statement_repeat1", + [aux_sym_assert_statement_repeat1] = "assert_statement_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_match_statement_repeat1] = "match_statement_repeat1", + [aux_sym__match_block_repeat1] = "_match_block_repeat1", + [aux_sym_case_clause_repeat1] = "case_clause_repeat1", + [aux_sym_with_clause_repeat1] = "with_clause_repeat1", + [aux_sym_type_parameter_repeat1] = "type_parameter_repeat1", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_decorated_definition_repeat1] = "decorated_definition_repeat1", + [aux_sym__parameters_repeat1] = "_parameters_repeat1", + [aux_sym__patterns_repeat1] = "_patterns_repeat1", + [aux_sym_comparison_operator_repeat1] = "comparison_operator_repeat1", + [aux_sym_subscript_repeat1] = "subscript_repeat1", + [aux_sym_dictionary_repeat1] = "dictionary_repeat1", + [aux_sym__comprehension_clauses_repeat1] = "_comprehension_clauses_repeat1", + [aux_sym__collection_elements_repeat1] = "_collection_elements_repeat1", + [aux_sym_for_in_clause_repeat1] = "for_in_clause_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_string_content_repeat1] = "string_content_repeat1", + [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", + [alias_sym_as_pattern_target] = "as_pattern_target", + [alias_sym_case_pattern] = "case_pattern", + [alias_sym_format_expression] = "format_expression", + [anon_alias_sym_not_SPACEin] = "not in", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_import] = anon_sym_import, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_from] = anon_sym_from, + [anon_sym___future__] = anon_sym___future__, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_as] = anon_sym_as, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_print] = anon_sym_print, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_assert] = anon_sym_assert, + [anon_sym_eq] = anon_sym_eq, + [anon_sym_ne] = anon_sym_eq, + [anon_sym_contains] = anon_sym_eq, + [anon_sym_fails] = anon_sym_eq, + [anon_sym_assert_] = anon_sym_assert, + [anon_sym_assert_eq] = anon_sym_assert, + [anon_sym_assert_ne] = anon_sym_assert, + [anon_sym_assert_contains] = anon_sym_assert, + [anon_sym_assert_fails] = anon_sym_assert, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_return] = anon_sym_return, + [anon_sym_del] = anon_sym_del, + [anon_sym_raise] = anon_sym_raise, + [anon_sym_pass] = anon_sym_pass, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_if] = anon_sym_if, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_elif] = anon_sym_elif, + [anon_sym_else] = anon_sym_else, + [anon_sym_match] = anon_sym_match, + [anon_sym_case] = anon_sym_case, + [anon_sym_async] = anon_sym_async, + [anon_sym_for] = anon_sym_for, + [anon_sym_in] = anon_sym_in, + [anon_sym_while] = anon_sym_while, + [anon_sym_try] = anon_sym_try, + [anon_sym_except] = anon_sym_except, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_with] = anon_sym_with, + [anon_sym_def] = anon_sym_def, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_global] = anon_sym_global, + [anon_sym_nonlocal] = anon_sym_nonlocal, + [anon_sym_exec] = anon_sym_exec, + [anon_sym_type] = anon_sym_type, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_class] = anon_sym_class, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_not] = anon_sym_not, + [anon_sym_and] = anon_sym_and, + [anon_sym_or] = anon_sym_or, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [anon_sym_lambda] = anon_sym_lambda, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_AT_EQ] = anon_sym_AT_EQ, + [anon_sym_SLASH_SLASH_EQ] = anon_sym_SLASH_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_yield] = anon_sym_yield, + [sym_ellipsis] = sym_ellipsis, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [sym_escape_sequence] = sym_escape_sequence, + [sym__not_escape_sequence] = sym__not_escape_sequence, + [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, + [sym_type_conversion] = sym_type_conversion, + [sym_integer] = sym_integer, + [sym_float] = sym_float, + [anon_sym_await] = anon_sym_await, + [anon_sym_struct] = sym_identifier, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_none] = sym_none, + [sym_comment] = sym_comment, + [sym_line_continuation] = sym_line_continuation, + [sym__newline] = sym__newline, + [sym__indent] = sym__indent, + [sym__dedent] = sym__dedent, + [sym_string_start] = sym_string_start, + [sym__string_content] = sym__string_content, + [sym_escape_interpolation] = sym_escape_interpolation, + [sym_string_end] = sym_string_end, + [sym_module] = sym_module, + [sym__statement] = sym__statement, + [sym__simple_statements] = sym__simple_statements, + [sym_print_statement] = sym_print_statement, + [sym_chevron] = sym_chevron, + [sym_assert_statement] = sym_assert_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_named_expression] = sym_named_expression, + [sym__named_expression_lhs] = sym__named_expression_lhs, + [sym_return_statement] = sym_return_statement, + [sym_delete_statement] = sym_delete_statement, + [sym_pass_statement] = sym_pass_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_if_statement] = sym_if_statement, + [sym_elif_clause] = sym_elif_clause, + [sym_else_clause] = sym_else_clause, + [sym_match_statement] = sym_match_statement, + [sym__match_block] = sym_block, + [sym_case_clause] = sym_case_clause, + [sym_for_statement] = sym_for_statement, + [sym_while_statement] = sym_while_statement, + [sym_with_statement] = sym_with_statement, + [sym_with_clause] = sym_with_clause, + [sym_with_item] = sym_with_item, + [sym_function_definition] = sym_function_definition, + [sym_parameters] = sym_parameters, + [sym_lambda_parameters] = sym_lambda_parameters, + [sym_list_splat] = sym_list_splat, + [sym_dictionary_splat] = sym_dictionary_splat, + [sym_exec_statement] = sym_exec_statement, + [sym_type_parameter] = sym_type_parameter, + [sym_parenthesized_list_splat] = sym_parenthesized_list_splat, + [sym_argument_list] = sym_argument_list, + [sym_decorated_definition] = sym_decorated_definition, + [sym_decorator] = sym_decorator, + [sym_block] = sym_block, + [sym_expression_list] = sym_expression_list, + [sym__parameters] = sym__parameters, + [sym__patterns] = sym__patterns, + [sym_parameter] = sym_parameter, + [sym_pattern] = sym_pattern, + [sym_tuple_pattern] = sym_tuple_pattern, + [sym_list_pattern] = sym_list_pattern, + [sym_default_parameter] = sym_default_parameter, + [sym_typed_default_parameter] = sym_typed_default_parameter, + [sym_list_splat_pattern] = sym_list_splat_pattern, + [sym_dictionary_splat_pattern] = sym_dictionary_splat_pattern, + [sym_as_pattern] = sym_as_pattern, + [sym__expression_within_for_in_clause] = sym__expression_within_for_in_clause, + [sym_expression] = sym_expression, + [sym_primary_expression] = sym_primary_expression, + [sym_not_operator] = sym_not_operator, + [sym_boolean_operator] = sym_boolean_operator, + [sym_binary_operator] = sym_binary_operator, + [sym_unary_operator] = sym_unary_operator, + [sym_comparison_operator] = sym_comparison_operator, + [sym_lambda] = sym_lambda, + [sym_lambda_within_for_in_clause] = sym_lambda, + [sym_assignment] = sym_assignment, + [sym_augmented_assignment] = sym_augmented_assignment, + [sym_pattern_list] = sym_pattern_list, + [sym__right_hand_side] = sym__right_hand_side, + [sym_attribute] = sym_attribute, + [sym_subscript] = sym_subscript, + [sym_slice] = sym_slice, + [sym_call] = sym_call, + [sym_typed_parameter] = sym_typed_parameter, + [sym_type] = sym_type, + [sym_splat_type] = sym_splat_type, + [sym_generic_type] = sym_generic_type, + [sym_union_type] = sym_union_type, + [sym_constrained_type] = sym_constrained_type, + [sym_member_type] = sym_member_type, + [sym_keyword_argument] = sym_keyword_argument, + [sym_list] = sym_list, + [sym_set] = sym_set, + [sym_tuple] = sym_tuple, + [sym_dictionary] = sym_dictionary, + [sym_pair] = sym_pair, + [sym_list_comprehension] = sym_list_comprehension, + [sym_dictionary_comprehension] = sym_dictionary_comprehension, + [sym_set_comprehension] = sym_set_comprehension, + [sym__comprehension_clauses] = sym__comprehension_clauses, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym__collection_elements] = sym__collection_elements, + [sym_for_in_clause] = sym_for_in_clause, + [sym_if_clause] = sym_if_clause, + [sym_conditional_expression] = sym_conditional_expression, + [sym_string] = sym_string, + [sym_string_content] = sym_string_content, + [sym_interpolation] = sym_interpolation, + [sym__f_expression] = sym__f_expression, + [sym_format_specifier] = sym_format_specifier, + [sym_positional_separator] = sym_positional_separator, + [sym_keyword_separator] = sym_keyword_separator, + [aux_sym_module_repeat1] = aux_sym_module_repeat1, + [aux_sym__simple_statements_repeat1] = aux_sym__simple_statements_repeat1, + [aux_sym_print_statement_repeat1] = aux_sym_print_statement_repeat1, + [aux_sym_assert_statement_repeat1] = aux_sym_assert_statement_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_match_statement_repeat1] = aux_sym_match_statement_repeat1, + [aux_sym__match_block_repeat1] = aux_sym__match_block_repeat1, + [aux_sym_case_clause_repeat1] = aux_sym_case_clause_repeat1, + [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, + [aux_sym_type_parameter_repeat1] = aux_sym_type_parameter_repeat1, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_decorated_definition_repeat1] = aux_sym_decorated_definition_repeat1, + [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, + [aux_sym__patterns_repeat1] = aux_sym__patterns_repeat1, + [aux_sym_comparison_operator_repeat1] = aux_sym_comparison_operator_repeat1, + [aux_sym_subscript_repeat1] = aux_sym_subscript_repeat1, + [aux_sym_dictionary_repeat1] = aux_sym_dictionary_repeat1, + [aux_sym__comprehension_clauses_repeat1] = aux_sym__comprehension_clauses_repeat1, + [aux_sym__collection_elements_repeat1] = aux_sym__collection_elements_repeat1, + [aux_sym_for_in_clause_repeat1] = aux_sym_for_in_clause_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, + [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, + [alias_sym_as_pattern_target] = alias_sym_as_pattern_target, + [alias_sym_case_pattern] = alias_sym_case_pattern, + [alias_sym_format_expression] = alias_sym_format_expression, + [anon_alias_sym_not_SPACEin] = anon_alias_sym_not_SPACEin, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_from] = { + .visible = true, + .named = false, + }, + [anon_sym___future__] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_print] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_assert] = { + .visible = true, + .named = true, + }, + [anon_sym_eq] = { + .visible = true, + .named = true, + }, + [anon_sym_ne] = { + .visible = true, + .named = true, + }, + [anon_sym_contains] = { + .visible = true, + .named = true, + }, + [anon_sym_fails] = { + .visible = true, + .named = true, + }, + [anon_sym_assert_] = { + .visible = true, + .named = true, + }, + [anon_sym_assert_eq] = { + .visible = true, + .named = true, + }, + [anon_sym_assert_ne] = { + .visible = true, + .named = true, + }, + [anon_sym_assert_contains] = { + .visible = true, + .named = true, + }, + [anon_sym_assert_fails] = { + .visible = true, + .named = true, + }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_del] = { + .visible = true, + .named = false, + }, + [anon_sym_raise] = { + .visible = true, + .named = false, + }, + [anon_sym_pass] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_elif] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_async] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_except] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_def] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_global] = { + .visible = true, + .named = false, + }, + [anon_sym_nonlocal] = { + .visible = true, + .named = false, + }, + [anon_sym_exec] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_lambda] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_yield] = { + .visible = true, + .named = false, + }, + [sym_ellipsis] = { + .visible = true, + .named = true, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym__not_escape_sequence] = { + .visible = false, + .named = true, + }, + [aux_sym_format_specifier_token1] = { + .visible = false, + .named = false, + }, + [sym_type_conversion] = { + .visible = true, + .named = true, + }, + [sym_integer] = { + .visible = true, + .named = true, + }, + [sym_float] = { + .visible = true, + .named = true, + }, + [anon_sym_await] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_none] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym_line_continuation] = { + .visible = true, + .named = true, + }, + [sym__newline] = { + .visible = false, + .named = true, + }, + [sym__indent] = { + .visible = false, + .named = true, + }, + [sym__dedent] = { + .visible = false, + .named = true, + }, + [sym_string_start] = { + .visible = true, + .named = true, + }, + [sym__string_content] = { + .visible = false, + .named = true, + }, + [sym_escape_interpolation] = { + .visible = true, + .named = true, + }, + [sym_string_end] = { + .visible = true, + .named = true, + }, + [sym_module] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym__simple_statements] = { + .visible = false, + .named = true, + }, + [sym_print_statement] = { + .visible = true, + .named = true, + }, + [sym_chevron] = { + .visible = true, + .named = true, + }, + [sym_assert_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_named_expression] = { + .visible = true, + .named = true, + }, + [sym__named_expression_lhs] = { + .visible = false, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_delete_statement] = { + .visible = true, + .named = true, + }, + [sym_pass_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_elif_clause] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_match_statement] = { + .visible = true, + .named = true, + }, + [sym__match_block] = { + .visible = true, + .named = true, + }, + [sym_case_clause] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_with_statement] = { + .visible = true, + .named = true, + }, + [sym_with_clause] = { + .visible = true, + .named = true, + }, + [sym_with_item] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym_parameters] = { + .visible = true, + .named = true, + }, + [sym_lambda_parameters] = { + .visible = true, + .named = true, + }, + [sym_list_splat] = { + .visible = true, + .named = true, + }, + [sym_dictionary_splat] = { + .visible = true, + .named = true, + }, + [sym_exec_statement] = { + .visible = true, + .named = true, + }, + [sym_type_parameter] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_list_splat] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_decorated_definition] = { + .visible = true, + .named = true, + }, + [sym_decorator] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_expression_list] = { + .visible = true, + .named = true, + }, + [sym__parameters] = { + .visible = false, + .named = true, + }, + [sym__patterns] = { + .visible = false, + .named = true, + }, + [sym_parameter] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tuple_pattern] = { + .visible = true, + .named = true, + }, + [sym_list_pattern] = { + .visible = true, + .named = true, + }, + [sym_default_parameter] = { + .visible = true, + .named = true, + }, + [sym_typed_default_parameter] = { + .visible = true, + .named = true, + }, + [sym_list_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_dictionary_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_as_pattern] = { + .visible = true, + .named = true, + }, + [sym__expression_within_for_in_clause] = { + .visible = false, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_not_operator] = { + .visible = true, + .named = true, + }, + [sym_boolean_operator] = { + .visible = true, + .named = true, + }, + [sym_binary_operator] = { + .visible = true, + .named = true, + }, + [sym_unary_operator] = { + .visible = true, + .named = true, + }, + [sym_comparison_operator] = { + .visible = true, + .named = true, + }, + [sym_lambda] = { + .visible = true, + .named = true, + }, + [sym_lambda_within_for_in_clause] = { + .visible = true, + .named = true, + }, + [sym_assignment] = { + .visible = true, + .named = true, + }, + [sym_augmented_assignment] = { + .visible = true, + .named = true, + }, + [sym_pattern_list] = { + .visible = true, + .named = true, + }, + [sym__right_hand_side] = { + .visible = false, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_subscript] = { + .visible = true, + .named = true, + }, + [sym_slice] = { + .visible = true, + .named = true, + }, + [sym_call] = { + .visible = true, + .named = true, + }, + [sym_typed_parameter] = { + .visible = true, + .named = true, + }, + [sym_type] = { + .visible = true, + .named = true, + }, + [sym_splat_type] = { + .visible = true, + .named = true, + }, + [sym_generic_type] = { + .visible = true, + .named = true, + }, + [sym_union_type] = { + .visible = true, + .named = true, + }, + [sym_constrained_type] = { + .visible = true, + .named = true, + }, + [sym_member_type] = { + .visible = true, + .named = true, + }, + [sym_keyword_argument] = { + .visible = true, + .named = true, + }, + [sym_list] = { + .visible = true, + .named = true, + }, + [sym_set] = { + .visible = true, + .named = true, + }, + [sym_tuple] = { + .visible = true, + .named = true, + }, + [sym_dictionary] = { + .visible = true, + .named = true, + }, + [sym_pair] = { + .visible = true, + .named = true, + }, + [sym_list_comprehension] = { + .visible = true, + .named = true, + }, + [sym_dictionary_comprehension] = { + .visible = true, + .named = true, + }, + [sym_set_comprehension] = { + .visible = true, + .named = true, + }, + [sym__comprehension_clauses] = { + .visible = false, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym__collection_elements] = { + .visible = false, + .named = true, + }, + [sym_for_in_clause] = { + .visible = true, + .named = true, + }, + [sym_if_clause] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_string_content] = { + .visible = true, + .named = true, + }, + [sym_interpolation] = { + .visible = true, + .named = true, + }, + [sym__f_expression] = { + .visible = false, + .named = true, + }, + [sym_format_specifier] = { + .visible = true, + .named = true, + }, + [sym_positional_separator] = { + .visible = true, + .named = true, + }, + [sym_keyword_separator] = { + .visible = true, + .named = true, + }, + [aux_sym_module_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__simple_statements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_print_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_assert_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__match_block_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_case_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_with_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_type_parameter_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_decorated_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__patterns_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_comparison_operator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_subscript_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dictionary_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__comprehension_clauses_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__collection_elements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_for_in_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_content_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_format_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_as_pattern_target] = { + .visible = true, + .named = true, + }, + [alias_sym_case_pattern] = { + .visible = true, + .named = true, + }, + [alias_sym_format_expression] = { + .visible = true, + .named = true, + }, + [anon_alias_sym_not_SPACEin] = { + .visible = true, + .named = false, + }, +}; + +enum { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_attribute = 5, + field_body = 6, + field_code = 7, + field_condition = 8, + field_consequence = 9, + field_definition = 10, + field_expression = 11, + field_format_specifier = 12, + field_function = 13, + field_guard = 14, + field_key = 15, + field_left = 16, + field_name = 17, + field_object = 18, + field_operator = 19, + field_operators = 20, + field_parameters = 21, + field_pattern = 22, + field_return_type = 23, + field_right = 24, + field_subject = 25, + field_subscript = 26, + field_type = 27, + field_type_conversion = 28, + field_type_parameters = 29, + field_value = 30, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_attribute] = "attribute", + [field_body] = "body", + [field_code] = "code", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_definition] = "definition", + [field_expression] = "expression", + [field_format_specifier] = "format_specifier", + [field_function] = "function", + [field_guard] = "guard", + [field_key] = "key", + [field_left] = "left", + [field_name] = "name", + [field_object] = "object", + [field_operator] = "operator", + [field_operators] = "operators", + [field_parameters] = "parameters", + [field_pattern] = "pattern", + [field_return_type] = "return_type", + [field_right] = "right", + [field_subject] = "subject", + [field_subscript] = "subscript", + [field_type] = "type", + [field_type_conversion] = "type_conversion", + [field_type_parameters] = "type_parameters", + [field_value] = "value", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [4] = {.index = 0, .length = 1}, + [5] = {.index = 1, .length = 1}, + [6] = {.index = 2, .length = 1}, + [7] = {.index = 3, .length = 2}, + [8] = {.index = 5, .length = 2}, + [9] = {.index = 7, .length = 1}, + [10] = {.index = 8, .length = 1}, + [11] = {.index = 9, .length = 1}, + [12] = {.index = 10, .length = 2}, + [13] = {.index = 12, .length = 1}, + [14] = {.index = 13, .length = 2}, + [15] = {.index = 15, .length = 2}, + [16] = {.index = 17, .length = 2}, + [17] = {.index = 19, .length = 3}, + [18] = {.index = 22, .length = 1}, + [19] = {.index = 23, .length = 2}, + [20] = {.index = 25, .length = 1}, + [21] = {.index = 26, .length = 2}, + [22] = {.index = 28, .length = 1}, + [24] = {.index = 29, .length = 2}, + [25] = {.index = 31, .length = 2}, + [26] = {.index = 33, .length = 1}, + [27] = {.index = 34, .length = 3}, + [28] = {.index = 37, .length = 2}, + [29] = {.index = 39, .length = 2}, + [30] = {.index = 41, .length = 1}, + [31] = {.index = 42, .length = 1}, + [32] = {.index = 43, .length = 1}, + [33] = {.index = 44, .length = 2}, + [34] = {.index = 46, .length = 2}, + [35] = {.index = 48, .length = 2}, + [36] = {.index = 50, .length = 2}, + [38] = {.index = 52, .length = 2}, + [39] = {.index = 54, .length = 2}, + [40] = {.index = 56, .length = 1}, + [41] = {.index = 57, .length = 3}, + [42] = {.index = 60, .length = 3}, + [43] = {.index = 63, .length = 3}, + [44] = {.index = 66, .length = 3}, + [45] = {.index = 69, .length = 4}, + [46] = {.index = 73, .length = 1}, + [47] = {.index = 74, .length = 3}, + [48] = {.index = 77, .length = 3}, + [49] = {.index = 80, .length = 2}, + [50] = {.index = 82, .length = 3}, + [51] = {.index = 85, .length = 3}, + [52] = {.index = 13, .length = 2}, + [53] = {.index = 88, .length = 1}, + [54] = {.index = 89, .length = 3}, + [55] = {.index = 92, .length = 2}, + [56] = {.index = 94, .length = 2}, + [57] = {.index = 96, .length = 2}, + [58] = {.index = 98, .length = 3}, + [59] = {.index = 101, .length = 4}, + [60] = {.index = 105, .length = 2}, + [61] = {.index = 107, .length = 4}, + [62] = {.index = 111, .length = 4}, + [63] = {.index = 115, .length = 1}, + [64] = {.index = 116, .length = 4}, + [65] = {.index = 120, .length = 2}, + [66] = {.index = 122, .length = 3}, + [67] = {.index = 125, .length = 3}, + [68] = {.index = 128, .length = 4}, + [69] = {.index = 132, .length = 4}, + [70] = {.index = 136, .length = 4}, + [71] = {.index = 140, .length = 2}, + [72] = {.index = 142, .length = 3}, + [73] = {.index = 145, .length = 3}, + [74] = {.index = 12, .length = 1}, + [75] = {.index = 148, .length = 5}, + [76] = {.index = 153, .length = 3}, + [77] = {.index = 156, .length = 4}, + [78] = {.index = 160, .length = 4}, + [79] = {.index = 164, .length = 4}, + [80] = {.index = 168, .length = 4}, + [81] = {.index = 172, .length = 4}, + [82] = {.index = 176, .length = 5}, + [83] = {.index = 181, .length = 2}, + [84] = {.index = 183, .length = 3}, + [85] = {.index = 186, .length = 2}, + [86] = {.index = 188, .length = 1}, + [87] = {.index = 189, .length = 2}, + [88] = {.index = 191, .length = 2}, + [89] = {.index = 193, .length = 4}, + [90] = {.index = 197, .length = 4}, + [91] = {.index = 201, .length = 4}, + [92] = {.index = 205, .length = 5}, + [93] = {.index = 210, .length = 5}, + [94] = {.index = 215, .length = 5}, + [95] = {.index = 220, .length = 5}, + [96] = {.index = 225, .length = 3}, + [97] = {.index = 228, .length = 2}, + [98] = {.index = 230, .length = 3}, + [99] = {.index = 233, .length = 3}, + [100] = {.index = 236, .length = 3}, + [101] = {.index = 239, .length = 5}, + [102] = {.index = 244, .length = 5}, + [103] = {.index = 249, .length = 5}, + [104] = {.index = 254, .length = 6}, + [105] = {.index = 260, .length = 3}, + [106] = {.index = 263, .length = 3}, + [107] = {.index = 266, .length = 4}, + [108] = {.index = 270, .length = 3}, + [109] = {.index = 273, .length = 4}, + [110] = {.index = 277, .length = 4}, + [111] = {.index = 281, .length = 6}, + [112] = {.index = 287, .length = 4}, + [113] = {.index = 291, .length = 4}, + [114] = {.index = 295, .length = 4}, + [115] = {.index = 299, .length = 5}, + [116] = {.index = 304, .length = 5}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_argument, 1}, + [1] = + {field_value, 0}, + [2] = + {field_code, 1}, + [3] = + {field_argument, 1}, + {field_operator, 0}, + [5] = + {field_arguments, 1}, + {field_function, 0}, + [7] = + {field_operators, 1, .inherited = true}, + [8] = + {field_definition, 1}, + [9] = + {field_argument, 2, .inherited = true}, + [10] = + {field_argument, 1}, + {field_argument, 2, .inherited = true}, + [12] = + {field_body, 2}, + [13] = + {field_name, 0}, + {field_value, 2}, + [15] = + {field_left, 0}, + {field_type, 2}, + [17] = + {field_left, 0}, + {field_right, 2}, + [19] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [22] = + {field_alias, 2}, + [23] = + {field_attribute, 2}, + {field_object, 0}, + [25] = + {field_operators, 0}, + [26] = + {field_operators, 0, .inherited = true}, + {field_operators, 1, .inherited = true}, + [28] = + {field_expression, 1}, + [29] = + {field_argument, 0, .inherited = true}, + {field_argument, 1, .inherited = true}, + [31] = + {field_condition, 1}, + {field_consequence, 3}, + [33] = + {field_subject, 1}, + [34] = + {field_alternative, 3, .inherited = true}, + {field_body, 3}, + {field_subject, 1}, + [37] = + {field_subject, 0, .inherited = true}, + {field_subject, 1, .inherited = true}, + [39] = + {field_body, 3}, + {field_condition, 1}, + [41] = + {field_body, 3}, + [42] = + {field_body, 1}, + [43] = + {field_type, 2}, + [44] = + {field_body, 3}, + {field_parameters, 1}, + [46] = + {field_key, 0}, + {field_value, 2}, + [48] = + {field_subscript, 2}, + {field_value, 0}, + [50] = + {field_operators, 0}, + {field_operators, 1}, + [52] = + {field_expression, 1}, + {field_type_conversion, 2}, + [54] = + {field_expression, 1}, + {field_format_specifier, 2}, + [56] = + {field_alternative, 0}, + [57] = + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 3}, + [60] = + {field_alternative, 4, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + [63] = + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [66] = + {field_alternative, 4, .inherited = true}, + {field_body, 4}, + {field_subject, 1}, + [69] = + {field_alternative, 4, .inherited = true}, + {field_body, 4}, + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [73] = + {field_body, 4}, + [74] = + {field_alternative, 4}, + {field_body, 3}, + {field_condition, 1}, + [77] = + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [80] = + {field_body, 3}, + {field_body, 4}, + [82] = + {field_body, 4}, + {field_name, 1}, + {field_parameters, 2}, + [85] = + {field_left, 0}, + {field_right, 4}, + {field_type, 2}, + [88] = + {field_subscript, 1}, + [89] = + {field_subscript, 2}, + {field_subscript, 3, .inherited = true}, + {field_value, 0}, + [92] = + {field_subscript, 0, .inherited = true}, + {field_subscript, 1, .inherited = true}, + [94] = + {field_expression, 1}, + {field_type_conversion, 3}, + [96] = + {field_expression, 1}, + {field_format_specifier, 3}, + [98] = + {field_expression, 1}, + {field_format_specifier, 3}, + {field_type_conversion, 2}, + [101] = + {field_alternative, 4, .inherited = true}, + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + [105] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [107] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [111] = + {field_alternative, 5, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [115] = + {field_alternative, 1, .inherited = true}, + [116] = + {field_alternative, 5, .inherited = true}, + {field_body, 5}, + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [120] = + {field_body, 4}, + {field_body, 5}, + [122] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 3}, + [125] = + {field_body, 5}, + {field_left, 1}, + {field_right, 3}, + [128] = + {field_alternative, 5}, + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [132] = + {field_body, 4}, + {field_body, 5}, + {field_name, 1}, + {field_parameters, 2}, + [136] = + {field_body, 5}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [140] = + {field_left, 1}, + {field_right, 3}, + [142] = + {field_name, 0}, + {field_type, 2}, + {field_value, 4}, + [145] = + {field_expression, 1}, + {field_format_specifier, 4}, + {field_type_conversion, 3}, + [148] = + {field_alternative, 5, .inherited = true}, + {field_alternative, 6}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [153] = + {field_body, 6}, + {field_left, 2}, + {field_right, 4}, + [156] = + {field_body, 5}, + {field_body, 6}, + {field_name, 2}, + {field_parameters, 3}, + [160] = + {field_body, 6}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [164] = + {field_alternative, 6}, + {field_body, 5}, + {field_left, 1}, + {field_right, 3}, + [168] = + {field_body, 5}, + {field_body, 6}, + {field_left, 1}, + {field_right, 3}, + [172] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [176] = + {field_body, 5}, + {field_body, 6}, + {field_name, 1}, + {field_parameters, 3}, + {field_type_parameters, 2}, + [181] = + {field_left, 2}, + {field_right, 4}, + [183] = + {field_left, 1}, + {field_right, 3}, + {field_right, 4}, + [186] = + {field_body, 2}, + {field_body, 3}, + [188] = + {field_pattern, 1}, + [189] = + {field_consequence, 3}, + {field_pattern, 1}, + [191] = + {field_pattern, 0, .inherited = true}, + {field_pattern, 1, .inherited = true}, + [193] = + {field_alternative, 7}, + {field_body, 6}, + {field_left, 2}, + {field_right, 4}, + [197] = + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [201] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [205] = + {field_body, 6}, + {field_body, 7}, + {field_name, 2}, + {field_parameters, 4}, + {field_type_parameters, 3}, + [210] = + {field_alternative, 7}, + {field_body, 5}, + {field_body, 6}, + {field_left, 1}, + {field_right, 3}, + [215] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [220] = + {field_body, 7}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [225] = + {field_left, 2}, + {field_right, 4}, + {field_right, 5}, + [228] = + {field_consequence, 4}, + {field_pattern, 1}, + [230] = + {field_consequence, 3}, + {field_consequence, 4}, + {field_pattern, 1}, + [233] = + {field_consequence, 4}, + {field_guard, 2}, + {field_pattern, 1}, + [236] = + {field_consequence, 4}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [239] = + {field_alternative, 8}, + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [244] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [249] = + {field_body, 8}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 6}, + {field_type_parameters, 3}, + [254] = + {field_body, 7}, + {field_body, 8}, + {field_name, 1}, + {field_parameters, 3}, + {field_return_type, 5}, + {field_type_parameters, 2}, + [260] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_pattern, 1}, + [263] = + {field_consequence, 5}, + {field_guard, 3}, + {field_pattern, 1}, + [266] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_guard, 2}, + {field_pattern, 1}, + [270] = + {field_consequence, 5}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [273] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [277] = + {field_consequence, 5}, + {field_guard, 3}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [281] = + {field_body, 8}, + {field_body, 9}, + {field_name, 2}, + {field_parameters, 4}, + {field_return_type, 6}, + {field_type_parameters, 3}, + [287] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_guard, 3}, + {field_pattern, 1}, + [291] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [295] = + {field_consequence, 6}, + {field_guard, 4}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [299] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_guard, 3}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [304] = + {field_consequence, 6}, + {field_consequence, 7}, + {field_guard, 4}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [2] = { + [0] = sym_list_splat, + }, + [3] = { + [1] = sym_identifier, + }, + [18] = { + [2] = alias_sym_as_pattern_target, + }, + [23] = { + [1] = sym_parenthesized_expression, + }, + [25] = { + [3] = sym_block, + }, + [29] = { + [3] = sym_block, + }, + [30] = { + [3] = sym_block, + }, + [36] = { + [0] = anon_alias_sym_not_SPACEin, + [1] = anon_alias_sym_not_SPACEin, + }, + [37] = { + [0] = alias_sym_format_expression, + }, + [41] = { + [3] = sym_block, + }, + [42] = { + [3] = sym_block, + }, + [46] = { + [4] = sym_block, + }, + [47] = { + [3] = sym_block, + }, + [50] = { + [4] = sym_block, + }, + [52] = { + [0] = sym_identifier, + }, + [59] = { + [3] = sym_block, + }, + [66] = { + [5] = sym_block, + }, + [67] = { + [5] = sym_block, + }, + [70] = { + [5] = sym_block, + }, + [74] = { + [2] = sym_block, + }, + [76] = { + [6] = sym_block, + }, + [78] = { + [6] = sym_block, + }, + [79] = { + [5] = sym_block, + }, + [81] = { + [6] = sym_block, + }, + [86] = { + [1] = alias_sym_case_pattern, + }, + [87] = { + [1] = alias_sym_case_pattern, + [3] = sym_block, + }, + [89] = { + [6] = sym_block, + }, + [91] = { + [7] = sym_block, + }, + [95] = { + [7] = sym_block, + }, + [97] = { + [1] = alias_sym_case_pattern, + [4] = sym_block, + }, + [98] = { + [1] = alias_sym_case_pattern, + }, + [99] = { + [1] = alias_sym_case_pattern, + [4] = sym_block, + }, + [100] = { + [1] = alias_sym_case_pattern, + [4] = sym_block, + }, + [103] = { + [8] = sym_block, + }, + [105] = { + [1] = alias_sym_case_pattern, + }, + [106] = { + [1] = alias_sym_case_pattern, + [5] = sym_block, + }, + [107] = { + [1] = alias_sym_case_pattern, + }, + [108] = { + [1] = alias_sym_case_pattern, + [5] = sym_block, + }, + [109] = { + [1] = alias_sym_case_pattern, + }, + [110] = { + [1] = alias_sym_case_pattern, + [5] = sym_block, + }, + [112] = { + [1] = alias_sym_case_pattern, + }, + [113] = { + [1] = alias_sym_case_pattern, + }, + [114] = { + [1] = alias_sym_case_pattern, + [6] = sym_block, + }, + [115] = { + [1] = alias_sym_case_pattern, + }, + [116] = { + [1] = alias_sym_case_pattern, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__simple_statements, 2, + sym__simple_statements, + sym_block, + sym_parenthesized_list_splat, 2, + sym_parenthesized_list_splat, + sym_parenthesized_expression, + sym_list_splat_pattern, 2, + sym_list_splat_pattern, + sym_list_splat, + sym_expression, 3, + sym_expression, + alias_sym_as_pattern_target, + alias_sym_case_pattern, + sym_interpolation, 2, + sym_interpolation, + alias_sym_format_expression, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 8, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 15, + [16] = 16, + [17] = 17, + [18] = 3, + [19] = 12, + [20] = 11, + [21] = 14, + [22] = 22, + [23] = 23, + [24] = 16, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 28, + [29] = 26, + [30] = 30, + [31] = 7, + [32] = 32, + [33] = 33, + [34] = 27, + [35] = 22, + [36] = 28, + [37] = 23, + [38] = 17, + [39] = 2, + [40] = 32, + [41] = 15, + [42] = 42, + [43] = 43, + [44] = 44, + [45] = 44, + [46] = 42, + [47] = 44, + [48] = 48, + [49] = 48, + [50] = 50, + [51] = 50, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 53, + [57] = 54, + [58] = 55, + [59] = 52, + [60] = 60, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 65, + [66] = 66, + [67] = 67, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 70, + [76] = 71, + [77] = 67, + [78] = 78, + [79] = 60, + [80] = 68, + [81] = 62, + [82] = 73, + [83] = 83, + [84] = 84, + [85] = 85, + [86] = 83, + [87] = 84, + [88] = 64, + [89] = 89, + [90] = 69, + [91] = 85, + [92] = 92, + [93] = 93, + [94] = 92, + [95] = 93, + [96] = 93, + [97] = 92, + [98] = 98, + [99] = 99, + [100] = 100, + [101] = 101, + [102] = 102, + [103] = 103, + [104] = 103, + [105] = 103, + [106] = 106, + [107] = 107, + [108] = 103, + [109] = 107, + [110] = 102, + [111] = 103, + [112] = 112, + [113] = 107, + [114] = 103, + [115] = 102, + [116] = 107, + [117] = 102, + [118] = 102, + [119] = 107, + [120] = 102, + [121] = 102, + [122] = 103, + [123] = 103, + [124] = 107, + [125] = 107, + [126] = 106, + [127] = 127, + [128] = 107, + [129] = 107, + [130] = 103, + [131] = 107, + [132] = 107, + [133] = 133, + [134] = 134, + [135] = 134, + [136] = 134, + [137] = 137, + [138] = 137, + [139] = 139, + [140] = 99, + [141] = 139, + [142] = 142, + [143] = 137, + [144] = 144, + [145] = 145, + [146] = 146, + [147] = 137, + [148] = 137, + [149] = 100, + [150] = 137, + [151] = 151, + [152] = 134, + [153] = 146, + [154] = 145, + [155] = 155, + [156] = 155, + [157] = 137, + [158] = 133, + [159] = 139, + [160] = 133, + [161] = 161, + [162] = 142, + [163] = 133, + [164] = 139, + [165] = 165, + [166] = 166, + [167] = 167, + [168] = 168, + [169] = 166, + [170] = 168, + [171] = 168, + [172] = 172, + [173] = 167, + [174] = 166, + [175] = 168, + [176] = 167, + [177] = 167, + [178] = 178, + [179] = 172, + [180] = 168, + [181] = 172, + [182] = 178, + [183] = 166, + [184] = 167, + [185] = 166, + [186] = 172, + [187] = 168, + [188] = 168, + [189] = 172, + [190] = 172, + [191] = 166, + [192] = 167, + [193] = 166, + [194] = 172, + [195] = 167, + [196] = 196, + [197] = 197, + [198] = 198, + [199] = 198, + [200] = 200, + [201] = 201, + [202] = 197, + [203] = 203, + [204] = 200, + [205] = 201, + [206] = 206, + [207] = 207, + [208] = 207, + [209] = 207, + [210] = 210, + [211] = 211, + [212] = 212, + [213] = 206, + [214] = 207, + [215] = 215, + [216] = 216, + [217] = 215, + [218] = 211, + [219] = 206, + [220] = 212, + [221] = 206, + [222] = 215, + [223] = 215, + [224] = 206, + [225] = 212, + [226] = 207, + [227] = 211, + [228] = 211, + [229] = 212, + [230] = 211, + [231] = 207, + [232] = 215, + [233] = 206, + [234] = 211, + [235] = 207, + [236] = 212, + [237] = 215, + [238] = 215, + [239] = 206, + [240] = 211, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 241, + [245] = 241, + [246] = 243, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 247, + [251] = 243, + [252] = 243, + [253] = 253, + [254] = 241, + [255] = 243, + [256] = 253, + [257] = 247, + [258] = 241, + [259] = 259, + [260] = 249, + [261] = 241, + [262] = 247, + [263] = 243, + [264] = 247, + [265] = 241, + [266] = 247, + [267] = 267, + [268] = 243, + [269] = 243, + [270] = 247, + [271] = 241, + [272] = 247, + [273] = 243, + [274] = 241, + [275] = 249, + [276] = 253, + [277] = 277, + [278] = 247, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, + [283] = 283, + [284] = 281, + [285] = 285, + [286] = 281, + [287] = 281, + [288] = 281, + [289] = 289, + [290] = 290, + [291] = 291, + [292] = 292, + [293] = 216, + [294] = 294, + [295] = 295, + [296] = 296, + [297] = 297, + [298] = 281, + [299] = 297, + [300] = 300, + [301] = 301, + [302] = 281, + [303] = 303, + [304] = 304, + [305] = 281, + [306] = 306, + [307] = 307, + [308] = 210, + [309] = 281, + [310] = 297, + [311] = 292, + [312] = 312, + [313] = 313, + [314] = 314, + [315] = 296, + [316] = 316, + [317] = 295, + [318] = 318, + [319] = 312, + [320] = 294, + [321] = 318, + [322] = 314, + [323] = 290, + [324] = 324, + [325] = 324, + [326] = 326, + [327] = 216, + [328] = 328, + [329] = 328, + [330] = 330, + [331] = 331, + [332] = 330, + [333] = 331, + [334] = 334, + [335] = 326, + [336] = 336, + [337] = 337, + [338] = 336, + [339] = 210, + [340] = 340, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 351, + [352] = 342, + [353] = 344, + [354] = 345, + [355] = 346, + [356] = 346, + [357] = 349, + [358] = 358, + [359] = 350, + [360] = 349, + [361] = 346, + [362] = 349, + [363] = 363, + [364] = 364, + [365] = 347, + [366] = 346, + [367] = 367, + [368] = 345, + [369] = 350, + [370] = 344, + [371] = 342, + [372] = 351, + [373] = 347, + [374] = 340, + [375] = 350, + [376] = 351, + [377] = 342, + [378] = 344, + [379] = 345, + [380] = 380, + [381] = 346, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 349, + [386] = 386, + [387] = 345, + [388] = 342, + [389] = 344, + [390] = 351, + [391] = 391, + [392] = 347, + [393] = 342, + [394] = 394, + [395] = 351, + [396] = 396, + [397] = 391, + [398] = 398, + [399] = 344, + [400] = 347, + [401] = 401, + [402] = 402, + [403] = 340, + [404] = 404, + [405] = 382, + [406] = 344, + [407] = 407, + [408] = 386, + [409] = 347, + [410] = 345, + [411] = 351, + [412] = 382, + [413] = 391, + [414] = 342, + [415] = 350, + [416] = 349, + [417] = 346, + [418] = 343, + [419] = 341, + [420] = 350, + [421] = 421, + [422] = 345, + [423] = 351, + [424] = 421, + [425] = 425, + [426] = 382, + [427] = 391, + [428] = 343, + [429] = 347, + [430] = 380, + [431] = 431, + [432] = 350, + [433] = 383, + [434] = 349, + [435] = 382, + [436] = 431, + [437] = 382, + [438] = 394, + [439] = 382, + [440] = 391, + [441] = 441, + [442] = 442, + [443] = 441, + [444] = 444, + [445] = 442, + [446] = 446, + [447] = 447, + [448] = 448, + [449] = 449, + [450] = 450, + [451] = 450, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 458, + [459] = 459, + [460] = 460, + [461] = 461, + [462] = 453, + [463] = 463, + [464] = 447, + [465] = 465, + [466] = 449, + [467] = 467, + [468] = 467, + [469] = 469, + [470] = 446, + [471] = 463, + [472] = 469, + [473] = 473, + [474] = 473, + [475] = 99, + [476] = 100, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 477, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, + [486] = 481, + [487] = 487, + [488] = 488, + [489] = 482, + [490] = 490, + [491] = 478, + [492] = 492, + [493] = 493, + [494] = 492, + [495] = 493, + [496] = 490, + [497] = 485, + [498] = 479, + [499] = 499, + [500] = 484, + [501] = 483, + [502] = 487, + [503] = 488, + [504] = 499, + [505] = 505, + [506] = 505, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 509, + [536] = 524, + [537] = 510, + [538] = 538, + [539] = 539, + [540] = 507, + [541] = 527, + [542] = 542, + [543] = 531, + [544] = 539, + [545] = 533, + [546] = 538, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 517, + [551] = 551, + [552] = 552, + [553] = 512, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 511, + [558] = 551, + [559] = 513, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 521, + [564] = 523, + [565] = 526, + [566] = 566, + [567] = 528, + [568] = 532, + [569] = 99, + [570] = 547, + [571] = 542, + [572] = 554, + [573] = 556, + [574] = 534, + [575] = 508, + [576] = 555, + [577] = 560, + [578] = 561, + [579] = 515, + [580] = 514, + [581] = 562, + [582] = 548, + [583] = 516, + [584] = 518, + [585] = 566, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 520, + [590] = 549, + [591] = 522, + [592] = 586, + [593] = 587, + [594] = 529, + [595] = 530, + [596] = 552, + [597] = 519, + [598] = 100, + [599] = 525, + [600] = 588, + [601] = 601, + [602] = 601, + [603] = 601, + [604] = 601, + [605] = 601, + [606] = 601, + [607] = 607, + [608] = 607, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 611, + [613] = 611, + [614] = 610, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 617, + [620] = 618, + [621] = 615, + [622] = 617, + [623] = 611, + [624] = 615, + [625] = 611, + [626] = 616, + [627] = 627, + [628] = 628, + [629] = 610, + [630] = 609, + [631] = 611, + [632] = 632, + [633] = 633, + [634] = 634, + [635] = 632, + [636] = 615, + [637] = 610, + [638] = 611, + [639] = 634, + [640] = 633, + [641] = 632, + [642] = 627, + [643] = 616, + [644] = 628, + [645] = 618, + [646] = 617, + [647] = 615, + [648] = 633, + [649] = 610, + [650] = 634, + [651] = 611, + [652] = 652, + [653] = 652, + [654] = 617, + [655] = 610, + [656] = 611, + [657] = 652, + [658] = 628, + [659] = 618, + [660] = 611, + [661] = 634, + [662] = 633, + [663] = 632, + [664] = 627, + [665] = 616, + [666] = 618, + [667] = 617, + [668] = 615, + [669] = 618, + [670] = 616, + [671] = 652, + [672] = 627, + [673] = 628, + [674] = 628, + [675] = 634, + [676] = 633, + [677] = 634, + [678] = 652, + [679] = 633, + [680] = 632, + [681] = 627, + [682] = 628, + [683] = 627, + [684] = 616, + [685] = 632, + [686] = 627, + [687] = 610, + [688] = 611, + [689] = 616, + [690] = 618, + [691] = 617, + [692] = 615, + [693] = 628, + [694] = 632, + [695] = 634, + [696] = 633, + [697] = 697, + [698] = 697, + [699] = 456, + [700] = 457, + [701] = 460, + [702] = 465, + [703] = 452, + [704] = 448, + [705] = 461, + [706] = 697, + [707] = 707, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 712, + [713] = 713, + [714] = 697, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 710, + [719] = 717, + [720] = 716, + [721] = 709, + [722] = 707, + [723] = 715, + [724] = 724, + [725] = 708, + [726] = 711, + [727] = 724, + [728] = 697, + [729] = 729, + [730] = 713, + [731] = 442, + [732] = 732, + [733] = 733, + [734] = 444, + [735] = 441, + [736] = 697, + [737] = 712, + [738] = 729, + [739] = 732, + [740] = 724, + [741] = 733, + [742] = 742, + [743] = 711, + [744] = 708, + [745] = 715, + [746] = 707, + [747] = 747, + [748] = 716, + [749] = 717, + [750] = 710, + [751] = 709, + [752] = 712, + [753] = 753, + [754] = 697, + [755] = 733, + [756] = 732, + [757] = 729, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 762, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 766, + [767] = 767, + [768] = 768, + [769] = 769, + [770] = 770, + [771] = 724, + [772] = 711, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 759, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 780, + [781] = 781, + [782] = 782, + [783] = 783, + [784] = 782, + [785] = 783, + [786] = 786, + [787] = 459, + [788] = 788, + [789] = 783, + [790] = 782, + [791] = 781, + [792] = 759, + [793] = 774, + [794] = 788, + [795] = 773, + [796] = 764, + [797] = 766, + [798] = 767, + [799] = 768, + [800] = 770, + [801] = 708, + [802] = 715, + [803] = 707, + [804] = 716, + [805] = 717, + [806] = 710, + [807] = 709, + [808] = 808, + [809] = 809, + [810] = 769, + [811] = 811, + [812] = 760, + [813] = 761, + [814] = 762, + [815] = 763, + [816] = 758, + [817] = 765, + [818] = 818, + [819] = 713, + [820] = 461, + [821] = 448, + [822] = 452, + [823] = 465, + [824] = 460, + [825] = 457, + [826] = 770, + [827] = 775, + [828] = 456, + [829] = 777, + [830] = 778, + [831] = 446, + [832] = 733, + [833] = 732, + [834] = 781, + [835] = 729, + [836] = 455, + [837] = 454, + [838] = 469, + [839] = 811, + [840] = 786, + [841] = 467, + [842] = 459, + [843] = 449, + [844] = 788, + [845] = 724, + [846] = 768, + [847] = 711, + [848] = 708, + [849] = 774, + [850] = 715, + [851] = 707, + [852] = 454, + [853] = 716, + [854] = 717, + [855] = 710, + [856] = 709, + [857] = 455, + [858] = 449, + [859] = 467, + [860] = 469, + [861] = 446, + [862] = 459, + [863] = 818, + [864] = 809, + [865] = 742, + [866] = 767, + [867] = 766, + [868] = 712, + [869] = 733, + [870] = 732, + [871] = 729, + [872] = 747, + [873] = 459, + [874] = 753, + [875] = 769, + [876] = 811, + [877] = 760, + [878] = 441, + [879] = 456, + [880] = 444, + [881] = 442, + [882] = 457, + [883] = 460, + [884] = 465, + [885] = 761, + [886] = 452, + [887] = 724, + [888] = 448, + [889] = 764, + [890] = 454, + [891] = 455, + [892] = 773, + [893] = 808, + [894] = 762, + [895] = 763, + [896] = 758, + [897] = 711, + [898] = 708, + [899] = 715, + [900] = 707, + [901] = 765, + [902] = 716, + [903] = 712, + [904] = 717, + [905] = 710, + [906] = 709, + [907] = 461, + [908] = 713, + [909] = 818, + [910] = 809, + [911] = 712, + [912] = 733, + [913] = 732, + [914] = 729, + [915] = 808, + [916] = 775, + [917] = 777, + [918] = 778, + [919] = 697, + [920] = 786, + [921] = 811, + [922] = 773, + [923] = 765, + [924] = 770, + [925] = 697, + [926] = 768, + [927] = 767, + [928] = 766, + [929] = 729, + [930] = 732, + [931] = 763, + [932] = 762, + [933] = 733, + [934] = 712, + [935] = 788, + [936] = 769, + [937] = 461, + [938] = 764, + [939] = 761, + [940] = 773, + [941] = 448, + [942] = 760, + [943] = 709, + [944] = 710, + [945] = 717, + [946] = 716, + [947] = 707, + [948] = 715, + [949] = 708, + [950] = 711, + [951] = 808, + [952] = 455, + [953] = 454, + [954] = 456, + [955] = 457, + [956] = 460, + [957] = 465, + [958] = 769, + [959] = 452, + [960] = 724, + [961] = 775, + [962] = 774, + [963] = 777, + [964] = 778, + [965] = 448, + [966] = 811, + [967] = 759, + [968] = 781, + [969] = 452, + [970] = 465, + [971] = 460, + [972] = 760, + [973] = 454, + [974] = 697, + [975] = 455, + [976] = 770, + [977] = 461, + [978] = 768, + [979] = 767, + [980] = 766, + [981] = 818, + [982] = 809, + [983] = 459, + [984] = 782, + [985] = 459, + [986] = 783, + [987] = 457, + [988] = 764, + [989] = 773, + [990] = 456, + [991] = 808, + [992] = 459, + [993] = 459, + [994] = 761, + [995] = 774, + [996] = 996, + [997] = 456, + [998] = 457, + [999] = 783, + [1000] = 759, + [1001] = 781, + [1002] = 786, + [1003] = 782, + [1004] = 460, + [1005] = 465, + [1006] = 454, + [1007] = 782, + [1008] = 783, + [1009] = 455, + [1010] = 452, + [1011] = 788, + [1012] = 788, + [1013] = 781, + [1014] = 759, + [1015] = 762, + [1016] = 763, + [1017] = 449, + [1018] = 774, + [1019] = 467, + [1020] = 786, + [1021] = 469, + [1022] = 1022, + [1023] = 448, + [1024] = 758, + [1025] = 808, + [1026] = 764, + [1027] = 1027, + [1028] = 458, + [1029] = 766, + [1030] = 767, + [1031] = 446, + [1032] = 768, + [1033] = 778, + [1034] = 777, + [1035] = 770, + [1036] = 778, + [1037] = 775, + [1038] = 458, + [1039] = 777, + [1040] = 786, + [1041] = 758, + [1042] = 765, + [1043] = 769, + [1044] = 461, + [1045] = 811, + [1046] = 760, + [1047] = 818, + [1048] = 761, + [1049] = 809, + [1050] = 818, + [1051] = 765, + [1052] = 809, + [1053] = 758, + [1054] = 762, + [1055] = 763, + [1056] = 775, + [1057] = 770, + [1058] = 767, + [1059] = 753, + [1060] = 788, + [1061] = 449, + [1062] = 742, + [1063] = 747, + [1064] = 753, + [1065] = 441, + [1066] = 461, + [1067] = 467, + [1068] = 786, + [1069] = 469, + [1070] = 454, + [1071] = 455, + [1072] = 448, + [1073] = 446, + [1074] = 778, + [1075] = 456, + [1076] = 777, + [1077] = 775, + [1078] = 818, + [1079] = 809, + [1080] = 452, + [1081] = 765, + [1082] = 465, + [1083] = 458, + [1084] = 758, + [1085] = 763, + [1086] = 742, + [1087] = 762, + [1088] = 761, + [1089] = 760, + [1090] = 811, + [1091] = 769, + [1092] = 747, + [1093] = 460, + [1094] = 457, + [1095] = 808, + [1096] = 742, + [1097] = 458, + [1098] = 747, + [1099] = 448, + [1100] = 766, + [1101] = 764, + [1102] = 773, + [1103] = 444, + [1104] = 442, + [1105] = 774, + [1106] = 759, + [1107] = 781, + [1108] = 782, + [1109] = 454, + [1110] = 779, + [1111] = 783, + [1112] = 455, + [1113] = 780, + [1114] = 461, + [1115] = 768, + [1116] = 459, + [1117] = 452, + [1118] = 465, + [1119] = 460, + [1120] = 457, + [1121] = 456, + [1122] = 753, + [1123] = 459, + [1124] = 459, + [1125] = 459, + [1126] = 469, + [1127] = 459, + [1128] = 446, + [1129] = 467, + [1130] = 449, + [1131] = 449, + [1132] = 469, + [1133] = 780, + [1134] = 779, + [1135] = 1135, + [1136] = 1136, + [1137] = 446, + [1138] = 467, + [1139] = 1136, + [1140] = 1136, + [1141] = 1135, + [1142] = 1135, + [1143] = 1143, + [1144] = 1136, + [1145] = 1145, + [1146] = 455, + [1147] = 454, + [1148] = 1135, + [1149] = 459, + [1150] = 1150, + [1151] = 1151, + [1152] = 1135, + [1153] = 1135, + [1154] = 1154, + [1155] = 1136, + [1156] = 1136, + [1157] = 459, + [1158] = 467, + [1159] = 1150, + [1160] = 1143, + [1161] = 779, + [1162] = 469, + [1163] = 780, + [1164] = 1135, + [1165] = 779, + [1166] = 446, + [1167] = 780, + [1168] = 1168, + [1169] = 469, + [1170] = 1170, + [1171] = 1136, + [1172] = 1172, + [1173] = 467, + [1174] = 449, + [1175] = 779, + [1176] = 449, + [1177] = 1177, + [1178] = 780, + [1179] = 454, + [1180] = 467, + [1181] = 446, + [1182] = 455, + [1183] = 1151, + [1184] = 449, + [1185] = 446, + [1186] = 469, + [1187] = 1187, + [1188] = 1188, + [1189] = 1168, + [1190] = 1190, + [1191] = 1188, + [1192] = 1170, + [1193] = 1187, + [1194] = 1194, + [1195] = 1190, + [1196] = 1188, + [1197] = 1194, + [1198] = 1172, + [1199] = 1190, + [1200] = 1145, + [1201] = 1190, + [1202] = 1188, + [1203] = 1190, + [1204] = 1188, + [1205] = 1177, + [1206] = 1188, + [1207] = 1207, + [1208] = 1154, + [1209] = 1188, + [1210] = 1188, + [1211] = 1188, + [1212] = 1190, + [1213] = 1190, + [1214] = 1214, + [1215] = 1215, + [1216] = 1215, + [1217] = 1217, + [1218] = 1217, + [1219] = 1219, + [1220] = 1220, + [1221] = 1220, + [1222] = 1222, + [1223] = 1222, + [1224] = 1222, + [1225] = 1222, + [1226] = 1222, + [1227] = 1222, + [1228] = 1222, + [1229] = 1229, + [1230] = 1230, + [1231] = 1230, + [1232] = 1232, + [1233] = 1230, + [1234] = 1234, + [1235] = 1230, + [1236] = 1236, + [1237] = 1230, + [1238] = 1238, + [1239] = 1239, + [1240] = 1240, + [1241] = 1230, + [1242] = 1242, + [1243] = 1243, + [1244] = 1230, + [1245] = 1245, + [1246] = 1246, + [1247] = 1247, + [1248] = 1236, + [1249] = 1243, + [1250] = 1232, + [1251] = 1240, + [1252] = 1252, + [1253] = 1243, + [1254] = 1247, + [1255] = 1246, + [1256] = 1229, + [1257] = 1246, + [1258] = 1258, + [1259] = 1246, + [1260] = 1229, + [1261] = 1242, + [1262] = 1246, + [1263] = 1245, + [1264] = 1247, + [1265] = 1246, + [1266] = 1236, + [1267] = 1234, + [1268] = 1245, + [1269] = 1247, + [1270] = 1232, + [1271] = 1234, + [1272] = 1258, + [1273] = 1247, + [1274] = 1240, + [1275] = 1239, + [1276] = 1247, + [1277] = 1239, + [1278] = 1278, + [1279] = 1247, + [1280] = 1246, + [1281] = 1242, + [1282] = 1245, + [1283] = 1243, + [1284] = 1234, + [1285] = 1236, + [1286] = 1258, + [1287] = 1258, + [1288] = 1243, + [1289] = 1240, + [1290] = 1242, + [1291] = 1232, + [1292] = 1245, + [1293] = 1236, + [1294] = 1240, + [1295] = 1232, + [1296] = 1229, + [1297] = 1239, + [1298] = 1298, + [1299] = 1239, + [1300] = 1229, + [1301] = 1234, + [1302] = 1243, + [1303] = 1239, + [1304] = 1234, + [1305] = 1236, + [1306] = 1245, + [1307] = 1229, + [1308] = 1240, + [1309] = 1242, + [1310] = 1232, + [1311] = 1242, + [1312] = 1312, + [1313] = 1242, + [1314] = 1239, + [1315] = 1315, + [1316] = 1316, + [1317] = 1316, + [1318] = 1318, + [1319] = 1318, + [1320] = 1320, + [1321] = 1321, + [1322] = 1322, + [1323] = 1323, + [1324] = 1243, + [1325] = 1240, + [1326] = 1232, + [1327] = 1327, + [1328] = 1318, + [1329] = 1329, + [1330] = 1245, + [1331] = 1331, + [1332] = 1318, + [1333] = 1333, + [1334] = 1321, + [1335] = 1335, + [1336] = 1318, + [1337] = 1318, + [1338] = 1236, + [1339] = 1318, + [1340] = 1322, + [1341] = 1234, + [1342] = 1318, + [1343] = 1343, + [1344] = 1318, + [1345] = 1229, + [1346] = 1346, + [1347] = 1347, + [1348] = 1348, + [1349] = 1348, + [1350] = 1347, + [1351] = 1351, + [1352] = 1352, + [1353] = 1352, + [1354] = 1354, + [1355] = 1355, + [1356] = 1356, + [1357] = 1357, + [1358] = 1347, + [1359] = 1348, + [1360] = 1352, + [1361] = 1361, + [1362] = 1347, + [1363] = 1347, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1352, + [1368] = 1368, + [1369] = 1366, + [1370] = 1370, + [1371] = 1364, + [1372] = 1355, + [1373] = 1352, + [1374] = 1374, + [1375] = 1375, + [1376] = 1347, + [1377] = 1348, + [1378] = 1348, + [1379] = 1352, + [1380] = 1365, + [1381] = 1352, + [1382] = 1356, + [1383] = 1347, + [1384] = 1348, + [1385] = 1348, + [1386] = 1298, + [1387] = 1354, + [1388] = 1388, + [1389] = 1370, + [1390] = 1390, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1395, + [1396] = 1396, + [1397] = 1397, + [1398] = 1398, + [1399] = 1399, + [1400] = 1400, + [1401] = 1401, + [1402] = 1402, + [1403] = 1394, + [1404] = 1392, + [1405] = 1405, + [1406] = 1406, + [1407] = 1407, + [1408] = 1408, + [1409] = 1409, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1407, + [1415] = 1410, + [1416] = 1402, + [1417] = 1154, + [1418] = 1418, + [1419] = 1407, + [1420] = 1420, + [1421] = 1408, + [1422] = 1422, + [1423] = 1395, + [1424] = 1424, + [1425] = 1425, + [1426] = 1426, + [1427] = 1400, + [1428] = 1428, + [1429] = 1298, + [1430] = 1430, + [1431] = 1397, + [1432] = 1409, + [1433] = 1413, + [1434] = 1411, + [1435] = 1435, + [1436] = 1412, + [1437] = 1409, + [1438] = 1412, + [1439] = 1439, + [1440] = 1440, + [1441] = 1392, + [1442] = 1409, + [1443] = 1402, + [1444] = 1444, + [1445] = 1440, + [1446] = 1331, + [1447] = 1447, + [1448] = 1405, + [1449] = 1439, + [1450] = 1428, + [1451] = 1451, + [1452] = 1452, + [1453] = 1453, + [1454] = 1406, + [1455] = 1453, + [1456] = 1396, + [1457] = 1457, + [1458] = 1444, + [1459] = 1145, + [1460] = 1460, + [1461] = 1461, + [1462] = 1462, + [1463] = 1410, + [1464] = 1464, + [1465] = 1366, + [1466] = 1466, + [1467] = 1467, + [1468] = 1468, + [1469] = 1411, + [1470] = 1470, + [1471] = 1394, + [1472] = 1394, + [1473] = 1397, + [1474] = 1411, + [1475] = 1172, + [1476] = 1476, + [1477] = 1466, + [1478] = 1478, + [1479] = 1479, + [1480] = 1470, + [1481] = 1481, + [1482] = 1482, + [1483] = 1481, + [1484] = 1484, + [1485] = 1485, + [1486] = 1478, + [1487] = 1478, + [1488] = 1439, + [1489] = 1168, + [1490] = 1482, + [1491] = 1491, + [1492] = 1492, + [1493] = 1407, + [1494] = 1428, + [1495] = 1478, + [1496] = 1496, + [1497] = 1478, + [1498] = 1392, + [1499] = 1492, + [1500] = 1177, + [1501] = 1479, + [1502] = 1430, + [1503] = 1478, + [1504] = 1478, + [1505] = 1170, + [1506] = 1410, + [1507] = 1467, + [1508] = 1439, + [1509] = 1428, + [1510] = 1510, + [1511] = 1397, + [1512] = 1512, + [1513] = 1513, + [1514] = 1514, + [1515] = 1451, + [1516] = 1485, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1517, + [1521] = 1521, + [1522] = 1522, + [1523] = 1523, + [1524] = 1524, + [1525] = 1525, + [1526] = 1521, + [1527] = 1527, + [1528] = 1528, + [1529] = 1529, + [1530] = 1530, + [1531] = 1531, + [1532] = 1532, + [1533] = 1461, + [1534] = 1524, + [1535] = 1513, + [1536] = 1536, + [1537] = 1531, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, + [1541] = 1541, + [1542] = 1542, + [1543] = 1543, + [1544] = 1544, + [1545] = 1545, + [1546] = 1540, + [1547] = 1547, + [1548] = 1539, + [1549] = 1549, + [1550] = 1550, + [1551] = 1550, + [1552] = 1542, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1543, + [1557] = 1557, + [1558] = 1542, + [1559] = 1559, + [1560] = 1560, + [1561] = 1561, + [1562] = 1562, + [1563] = 1563, + [1564] = 1564, + [1565] = 1154, + [1566] = 1566, + [1567] = 1540, + [1568] = 1539, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1573, + [1577] = 1572, + [1578] = 1578, + [1579] = 1542, + [1580] = 1564, + [1581] = 1563, + [1582] = 1425, + [1583] = 1550, + [1584] = 1584, + [1585] = 1585, + [1586] = 1555, + [1587] = 1550, + [1588] = 1553, + [1589] = 1589, + [1590] = 1590, + [1591] = 1585, + [1592] = 1584, + [1593] = 1593, + [1594] = 1574, + [1595] = 1542, + [1596] = 1596, + [1597] = 1560, + [1598] = 1572, + [1599] = 1541, + [1600] = 1544, + [1601] = 1596, + [1602] = 1574, + [1603] = 1603, + [1604] = 1571, + [1605] = 1451, + [1606] = 1539, + [1607] = 1540, + [1608] = 1608, + [1609] = 1543, + [1610] = 1145, + [1611] = 1611, + [1612] = 1559, + [1613] = 1613, + [1614] = 1562, + [1615] = 1615, + [1616] = 1168, + [1617] = 1571, + [1618] = 1618, + [1619] = 1566, + [1620] = 1574, + [1621] = 1621, + [1622] = 1571, + [1623] = 1539, + [1624] = 1523, + [1625] = 1625, + [1626] = 1538, + [1627] = 1540, + [1628] = 1589, + [1629] = 1575, + [1630] = 1630, + [1631] = 1540, + [1632] = 1544, + [1633] = 1539, + [1634] = 1572, + [1635] = 1390, + [1636] = 1571, + [1637] = 1574, + [1638] = 1398, + [1639] = 1542, + [1640] = 1401, + [1641] = 1554, + [1642] = 1550, + [1643] = 1584, + [1644] = 1585, + [1645] = 1578, + [1646] = 1646, + [1647] = 1590, + [1648] = 1550, + [1649] = 1585, + [1650] = 1584, + [1651] = 1651, + [1652] = 1652, + [1653] = 1542, + [1654] = 1461, + [1655] = 1557, + [1656] = 1572, + [1657] = 1593, + [1658] = 1658, + [1659] = 1574, + [1660] = 1539, + [1661] = 1571, + [1662] = 1540, + [1663] = 1539, + [1664] = 1540, + [1665] = 1543, + [1666] = 1666, + [1667] = 1572, + [1668] = 1563, + [1669] = 1564, + [1670] = 1670, + [1671] = 1399, + [1672] = 1672, + [1673] = 1435, + [1674] = 1457, + [1675] = 1630, + [1676] = 1145, + [1677] = 1658, + [1678] = 1585, + [1679] = 1679, + [1680] = 1584, + [1681] = 1615, + [1682] = 1452, + [1683] = 1572, + [1684] = 1618, + [1685] = 1547, + [1686] = 1550, + [1687] = 1670, + [1688] = 1585, + [1689] = 1584, + [1690] = 1560, + [1691] = 1596, + [1692] = 1542, + [1693] = 1542, + [1694] = 1574, + [1695] = 1571, + [1696] = 1539, + [1697] = 1540, + [1698] = 1698, + [1699] = 1584, + [1700] = 1652, + [1701] = 1549, + [1702] = 1651, + [1703] = 1585, + [1704] = 1145, + [1705] = 1658, + [1706] = 1573, + [1707] = 1611, + [1708] = 1708, + [1709] = 1709, + [1710] = 1708, + [1711] = 1711, + [1712] = 1712, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, + [1719] = 1719, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, + [1729] = 1723, + [1730] = 1730, + [1731] = 1168, + [1732] = 1732, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1177, + [1737] = 1170, + [1738] = 1738, + [1739] = 1739, + [1740] = 1740, + [1741] = 492, + [1742] = 1177, + [1743] = 1743, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1747, + [1748] = 1748, + [1749] = 1749, + [1750] = 1170, + [1751] = 1725, + [1752] = 490, + [1753] = 1724, + [1754] = 1715, + [1755] = 1755, + [1756] = 1721, + [1757] = 1721, + [1758] = 1715, + [1759] = 1759, + [1760] = 1672, + [1761] = 483, + [1762] = 1735, + [1763] = 1724, + [1764] = 1740, + [1765] = 1734, + [1766] = 1730, + [1767] = 1767, + [1768] = 1172, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1728, + [1773] = 1773, + [1774] = 1172, + [1775] = 1775, + [1776] = 1776, + [1777] = 1777, + [1778] = 478, + [1779] = 1779, + [1780] = 485, + [1781] = 1781, + [1782] = 1767, + [1783] = 1783, + [1784] = 1784, + [1785] = 1785, + [1786] = 1786, + [1787] = 1726, + [1788] = 1788, + [1789] = 1789, + [1790] = 1790, + [1791] = 1789, + [1792] = 1792, + [1793] = 1793, + [1794] = 1794, + [1795] = 1795, + [1796] = 1796, + [1797] = 1797, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1801, + [1802] = 1797, + [1803] = 1803, + [1804] = 1800, + [1805] = 1799, + [1806] = 1796, + [1807] = 1796, + [1808] = 1788, + [1809] = 1795, + [1810] = 1800, + [1811] = 1811, + [1812] = 1793, + [1813] = 1789, + [1814] = 1790, + [1815] = 1788, + [1816] = 1811, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1794, + [1823] = 1823, + [1824] = 1799, + [1825] = 1794, + [1826] = 1826, + [1827] = 1827, + [1828] = 1798, + [1829] = 1829, + [1830] = 1794, + [1831] = 1817, + [1832] = 1832, + [1833] = 1833, + [1834] = 1834, + [1835] = 1792, + [1836] = 1797, + [1837] = 1820, + [1838] = 1820, + [1839] = 1833, + [1840] = 1840, + [1841] = 1797, + [1842] = 1792, + [1843] = 1798, + [1844] = 1800, + [1845] = 1799, + [1846] = 1819, + [1847] = 1818, + [1848] = 1796, + [1849] = 1849, + [1850] = 1817, + [1851] = 1795, + [1852] = 1826, + [1853] = 1811, + [1854] = 1790, + [1855] = 1855, + [1856] = 1856, + [1857] = 1794, + [1858] = 1793, + [1859] = 1793, + [1860] = 1860, + [1861] = 1861, + [1862] = 1862, + [1863] = 1788, + [1864] = 1790, + [1865] = 1790, + [1866] = 1788, + [1867] = 1823, + [1868] = 1811, + [1869] = 1840, + [1870] = 1789, + [1871] = 1793, + [1872] = 1817, + [1873] = 1873, + [1874] = 1818, + [1875] = 1794, + [1876] = 1789, + [1877] = 1795, + [1878] = 1796, + [1879] = 1799, + [1880] = 1820, + [1881] = 1800, + [1882] = 1834, + [1883] = 1798, + [1884] = 1797, + [1885] = 1797, + [1886] = 1817, + [1887] = 1800, + [1888] = 1799, + [1889] = 1792, + [1890] = 1890, + [1891] = 1829, + [1892] = 1818, + [1893] = 1796, + [1894] = 1795, + [1895] = 1794, + [1896] = 1896, + [1897] = 1897, + [1898] = 1793, + [1899] = 1794, + [1900] = 1789, + [1901] = 1861, + [1902] = 1790, + [1903] = 1788, + [1904] = 1904, + [1905] = 1793, + [1906] = 1873, + [1907] = 1817, + [1908] = 1818, + [1909] = 1817, + [1910] = 1820, + [1911] = 1856, + [1912] = 1789, + [1913] = 1913, + [1914] = 1820, + [1915] = 1915, + [1916] = 1790, + [1917] = 1797, + [1918] = 1788, + [1919] = 1919, + [1920] = 1794, + [1921] = 1800, + [1922] = 1799, + [1923] = 1923, + [1924] = 1811, + [1925] = 1862, + [1926] = 1820, + [1927] = 1796, + [1928] = 1923, + [1929] = 1827, + [1930] = 1795, + [1931] = 1821, + [1932] = 1915, + [1933] = 1933, + [1934] = 1832, + [1935] = 1803, + [1936] = 1795, + [1937] = 1860, +}; + +static inline bool sym_identifier_character_set_1(int32_t c) { + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 931 + ? (c < 748 + ? (c < 192 + ? (c < 170 + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'z') + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1649 + ? (c < 1376 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || c == 1369)) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43514 + ? (c < 4193 + ? (c < 2707 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2579 + ? (c < 2527 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c >= 2524 && c <= 2525))) + : (c <= 2529 || (c < 2565 + ? (c < 2556 + ? (c >= 2544 && c <= 2545) + : c <= 2556) + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2649 + ? (c < 2613 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611) + : (c <= 2614 || (c >= 2616 && c <= 2617))) + : (c <= 2652 || (c < 2693 + ? (c < 2674 + ? c == 2654 + : c <= 2676) + : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) + : (c <= 2728 || (c < 3242 + ? (c < 2962 + ? (c < 2858 + ? (c < 2784 + ? (c < 2741 + ? (c < 2738 + ? (c >= 2730 && c <= 2736) + : c <= 2739) + : (c <= 2745 || (c < 2768 + ? c == 2749 + : c <= 2768))) + : (c <= 2785 || (c < 2831 + ? (c < 2821 + ? c == 2809 + : c <= 2828) + : (c <= 2832 || (c >= 2835 && c <= 2856))))) + : (c <= 2864 || (c < 2911 + ? (c < 2877 + ? (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2949 + ? (c < 2947 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c >= 2958 && c <= 2960))))))) + : (c <= 2965 || (c < 3090 + ? (c < 2984 + ? (c < 2974 + ? (c < 2972 + ? (c >= 2969 && c <= 2970) + : c <= 2972) + : (c <= 2975 || (c >= 2979 && c <= 2980))) + : (c <= 2986 || (c < 3077 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024) + : (c <= 3084 || (c >= 3086 && c <= 3088))))) + : (c <= 3112 || (c < 3168 + ? (c < 3160 + ? (c < 3133 + ? (c >= 3114 && c <= 3129) + : c <= 3133) + : (c <= 3162 || c == 3165)) + : (c <= 3169 || (c < 3214 + ? (c < 3205 + ? c == 3200 + : c <= 3212) + : (c <= 3216 || (c >= 3218 && c <= 3240))))))))) + : (c <= 3251 || (c < 3648 + ? (c < 3412 + ? (c < 3332 + ? (c < 3293 + ? (c < 3261 + ? (c >= 3253 && c <= 3257) + : c <= 3261) + : (c <= 3294 || (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314))) + : (c <= 3340 || (c < 3389 + ? (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386) + : (c <= 3389 || c == 3406)))) + : (c <= 3414 || (c < 3507 + ? (c < 3461 + ? (c < 3450 + ? (c >= 3423 && c <= 3425) + : c <= 3455) + : (c <= 3478 || (c >= 3482 && c <= 3505))) + : (c <= 3515 || (c < 3585 + ? (c < 3520 + ? c == 3517 + : c <= 3526) + : (c <= 3632 || c == 3634)))))) + : (c <= 3654 || (c < 3782 + ? (c < 3749 + ? (c < 3718 + ? (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716) + : (c <= 3722 || (c >= 3724 && c <= 3747))) + : (c <= 3749 || (c < 3773 + ? (c < 3762 + ? (c >= 3751 && c <= 3760) + : c <= 3762) + : (c <= 3773 || (c >= 3776 && c <= 3780))))) + : (c <= 3782 || (c < 3976 + ? (c < 3904 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : c <= 3840) + : (c <= 3911 || (c >= 3913 && c <= 3948))) + : (c <= 3980 || (c < 4176 + ? (c < 4159 + ? (c >= 4096 && c <= 4138) + : c <= 4159) + : (c <= 4181 || (c >= 4186 && c <= 4189))))))))))))) + : (c <= 4193 || (c < 8134 + ? (c < 6176 + ? (c < 4808 + ? (c < 4688 + ? (c < 4295 + ? (c < 4213 + ? (c < 4206 + ? (c >= 4197 && c <= 4198) + : c <= 4208) + : (c <= 4225 || (c < 4256 + ? c == 4238 + : c <= 4293))) + : (c <= 4295 || (c < 4348 + ? (c < 4304 + ? c == 4301 + : c <= 4346) + : (c <= 4680 || (c >= 4682 && c <= 4685))))) + : (c <= 4694 || (c < 4752 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))) + : (c <= 4784 || (c < 4800 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : c <= 4798) + : (c <= 4800 || (c >= 4802 && c <= 4805))))))) + : (c <= 4822 || (c < 5792 + ? (c < 5024 + ? (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c >= 4992 && c <= 5007))) + : (c <= 5109 || (c < 5743 + ? (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740) + : (c <= 5759 || (c >= 5761 && c <= 5786))))) + : (c <= 5866 || (c < 5984 + ? (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5905) + : (c <= 5937 || (c >= 5952 && c <= 5969))) + : (c <= 5996 || (c < 6103 + ? (c < 6016 + ? (c >= 5998 && c <= 6000) + : c <= 6067) + : (c <= 6103 || c == 6108)))))))) + : (c <= 6264 || (c < 7312 + ? (c < 6823 + ? (c < 6512 + ? (c < 6320 + ? (c < 6314 + ? (c >= 6272 && c <= 6312) + : c <= 6314) + : (c <= 6389 || (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509))) + : (c <= 6516 || (c < 6656 + ? (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601) + : (c <= 6678 || (c >= 6688 && c <= 6740))))) + : (c <= 6823 || (c < 7098 + ? (c < 7043 + ? (c < 6981 + ? (c >= 6917 && c <= 6963) + : c <= 6988) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7258 + ? (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247) + : (c <= 7293 || (c >= 7296 && c <= 7304))))))) + : (c <= 7354 || (c < 8008 + ? (c < 7418 + ? (c < 7406 + ? (c < 7401 + ? (c >= 7357 && c <= 7359) + : c <= 7404) + : (c <= 7411 || (c >= 7413 && c <= 7414))) + : (c <= 7418 || (c < 7960 + ? (c < 7680 + ? (c >= 7424 && c <= 7615) + : c <= 7957) + : (c <= 7965 || (c >= 7968 && c <= 8005))))) + : (c <= 8013 || (c < 8031 + ? (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)) + : (c <= 8061 || (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))))))))))) + : (c <= 8140 || (c < 12337 + ? (c < 8544 + ? (c < 8458 + ? (c < 8305 + ? (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188))) + : (c <= 8305 || (c < 8450 + ? (c < 8336 + ? c == 8319 + : c <= 8348) + : (c <= 8450 || c == 8455)))) + : (c <= 8467 || (c < 8488 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)) + : (c <= 8488 || (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)))))) + : (c <= 8584 || (c < 11680 + ? (c < 11559 + ? (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))) + : (c <= 11559 || (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c >= 11648 && c <= 11670))))) + : (c <= 11686 || (c < 11720 + ? (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))) + : (c <= 11726 || (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))))))))) + : (c <= 12341 || (c < 42891 + ? (c < 19968 + ? (c < 12549 + ? (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c < 12540 + ? (c >= 12449 && c <= 12538) + : c <= 12543))) + : (c <= 12591 || (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c >= 13312 && c <= 19903))))) + : (c <= 42124 || (c < 42560 + ? (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))) + : (c <= 42606 || (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))))))) + : (c <= 42954 || (c < 43250 + ? (c < 43011 + ? (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))) + : (c <= 43013 || (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))))) + : (c <= 43255 || (c < 43360 + ? (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))) + : (c <= 43388 || (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))))))))))))))) + : (c <= 43518 || (c < 70727 + ? (c < 66956 + ? (c < 64914 + ? (c < 43868 + ? (c < 43714 + ? (c < 43646 + ? (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c < 43642 + ? (c >= 43616 && c <= 43638) + : c <= 43642))) + : (c <= 43695 || (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || c == 43712)))) + : (c <= 43714 || (c < 43785 + ? (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))))))) + : (c <= 43881 || (c < 64287 + ? (c < 63744 + ? (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || c == 64285)))) + : (c <= 64296 || (c < 64323 + ? (c < 64318 + ? (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316) + : (c <= 64318 || (c >= 64320 && c <= 64321))) + : (c <= 64324 || (c < 64612 + ? (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605) + : (c <= 64829 || (c >= 64848 && c <= 64911))))))))) + : (c <= 64967 || (c < 65599 + ? (c < 65382 + ? (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65008 && c <= 65017) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c >= 65345 && c <= 65370))))) + : (c <= 65437 || (c < 65498 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65440 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c >= 65490 && c <= 65495))) + : (c <= 65500 || (c < 65576 + ? (c < 65549 + ? (c >= 65536 && c <= 65547) + : c <= 65574) + : (c <= 65594 || (c >= 65596 && c <= 65597))))))) + : (c <= 65613 || (c < 66464 + ? (c < 66208 + ? (c < 65856 + ? (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786) + : (c <= 65908 || (c >= 66176 && c <= 66204))) + : (c <= 66256 || (c < 66384 + ? (c < 66349 + ? (c >= 66304 && c <= 66335) + : c <= 66378) + : (c <= 66421 || (c >= 66432 && c <= 66461))))) + : (c <= 66499 || (c < 66776 + ? (c < 66560 + ? (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517) + : (c <= 66717 || (c >= 66736 && c <= 66771))) + : (c <= 66811 || (c < 66928 + ? (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915) + : (c <= 66938 || (c >= 66940 && c <= 66954))))))))))) + : (c <= 66962 || (c < 68864 + ? (c < 67828 + ? (c < 67506 + ? (c < 67072 + ? (c < 66979 + ? (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977) + : (c <= 66993 || (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004))) + : (c <= 67382 || (c < 67456 + ? (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431) + : (c <= 67461 || (c >= 67463 && c <= 67504))))) + : (c <= 67514 || (c < 67644 + ? (c < 67594 + ? (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592) + : (c <= 67637 || (c >= 67639 && c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c >= 67808 && c <= 67826))))))) + : (c <= 67829 || (c < 68224 + ? (c < 68096 + ? (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68096 || (c < 68121 + ? (c < 68117 + ? (c >= 68112 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c >= 68192 && c <= 68220))))) + : (c <= 68252 || (c < 68448 + ? (c < 68352 + ? (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324) + : (c <= 68405 || (c >= 68416 && c <= 68437))) + : (c <= 68466 || (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c >= 68800 && c <= 68850))))))))) + : (c <= 68899 || (c < 70106 + ? (c < 69749 + ? (c < 69488 + ? (c < 69376 + ? (c < 69296 + ? (c >= 69248 && c <= 69289) + : c <= 69297) + : (c <= 69404 || (c < 69424 + ? c == 69415 + : c <= 69445))) + : (c <= 69505 || (c < 69635 + ? (c < 69600 + ? (c >= 69552 && c <= 69572) + : c <= 69622) + : (c <= 69687 || (c >= 69745 && c <= 69746))))) + : (c <= 69749 || (c < 69959 + ? (c < 69891 + ? (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864) + : (c <= 69926 || c == 69956)) + : (c <= 69959 || (c < 70019 + ? (c < 70006 + ? (c >= 69968 && c <= 70002) + : c <= 70006) + : (c <= 70066 || (c >= 70081 && c <= 70084))))))) + : (c <= 70106 || (c < 70405 + ? (c < 70280 + ? (c < 70163 + ? (c < 70144 + ? c == 70108 + : c <= 70161) + : (c <= 70187 || (c >= 70272 && c <= 70278))) + : (c <= 70280 || (c < 70303 + ? (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301) + : (c <= 70312 || (c >= 70320 && c <= 70366))))) + : (c <= 70412 || (c < 70453 + ? (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c >= 70450 && c <= 70451))) + : (c <= 70457 || (c < 70493 + ? (c < 70480 + ? c == 70461 + : c <= 70480) + : (c <= 70497 || (c >= 70656 && c <= 70708))))))))))))) + : (c <= 70730 || (c < 119894 + ? (c < 73056 + ? (c < 72001 + ? (c < 71424 + ? (c < 71128 + ? (c < 70852 + ? (c < 70784 + ? (c >= 70751 && c <= 70753) + : c <= 70831) + : (c <= 70853 || (c < 71040 + ? c == 70855 + : c <= 71086))) + : (c <= 71131 || (c < 71296 + ? (c < 71236 + ? (c >= 71168 && c <= 71215) + : c <= 71236) + : (c <= 71338 || c == 71352)))) + : (c <= 71450 || (c < 71945 + ? (c < 71840 + ? (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723) + : (c <= 71903 || (c >= 71935 && c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71983 || c == 71999)))))) + : (c <= 72001 || (c < 72349 + ? (c < 72192 + ? (c < 72161 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72144) + : (c <= 72161 || c == 72163)) + : (c <= 72192 || (c < 72272 + ? (c < 72250 + ? (c >= 72203 && c <= 72242) + : c <= 72250) + : (c <= 72272 || (c >= 72284 && c <= 72329))))) + : (c <= 72349 || (c < 72818 + ? (c < 72714 + ? (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712) + : (c <= 72750 || c == 72768)) + : (c <= 72847 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73008 || c == 73030)))))))) + : (c <= 73061 || (c < 93952 + ? (c < 82944 + ? (c < 73728 + ? (c < 73112 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73097) + : (c <= 73112 || (c < 73648 + ? (c >= 73440 && c <= 73458) + : c <= 73648))) + : (c <= 74649 || (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c >= 77824 && c <= 78894))))) + : (c <= 83526 || (c < 92928 + ? (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))) + : (c <= 92975 || (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))))))) + : (c <= 94026 || (c < 110589 + ? (c < 94208 + ? (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)) + : (c <= 100343 || (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))))) + : (c <= 110590 || (c < 113664 + ? (c < 110948 + ? (c < 110928 + ? (c >= 110592 && c <= 110882) + : c <= 110930) + : (c <= 110951 || (c >= 110960 && c <= 111355))) + : (c <= 113770 || (c < 113808 + ? (c < 113792 + ? (c >= 113776 && c <= 113788) + : c <= 113800) + : (c <= 113817 || (c >= 119808 && c <= 119892))))))))))) + : (c <= 119964 || (c < 125259 + ? (c < 120572 + ? (c < 120086 + ? (c < 119995 + ? (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))) + : (c <= 119995 || (c < 120071 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069) + : (c <= 120074 || (c >= 120077 && c <= 120084))))) + : (c <= 120092 || (c < 120138 + ? (c < 120128 + ? (c < 120123 + ? (c >= 120094 && c <= 120121) + : c <= 120126) + : (c <= 120132 || c == 120134)) + : (c <= 120144 || (c < 120514 + ? (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512) + : (c <= 120538 || (c >= 120540 && c <= 120570))))))) + : (c <= 120596 || (c < 123191 + ? (c < 120714 + ? (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c >= 120688 && c <= 120712))) + : (c <= 120744 || (c < 122624 + ? (c < 120772 + ? (c >= 120746 && c <= 120770) + : c <= 120779) + : (c <= 122654 || (c >= 123136 && c <= 123180))))) + : (c <= 123197 || (c < 124904 + ? (c < 123584 + ? (c < 123536 + ? c == 123214 + : c <= 123565) + : (c <= 123627 || (c >= 124896 && c <= 124902))) + : (c <= 124907 || (c < 124928 + ? (c < 124912 + ? (c >= 124909 && c <= 124910) + : c <= 124926) + : (c <= 125124 || (c >= 125184 && c <= 125251))))))))) + : (c <= 125259 || (c < 126559 + ? (c < 126535 + ? (c < 126505 + ? (c < 126497 + ? (c < 126469 + ? (c >= 126464 && c <= 126467) + : c <= 126495) + : (c <= 126498 || (c < 126503 + ? c == 126500 + : c <= 126503))) + : (c <= 126514 || (c < 126523 + ? (c < 126521 + ? (c >= 126516 && c <= 126519) + : c <= 126521) + : (c <= 126523 || c == 126530)))) + : (c <= 126535 || (c < 126548 + ? (c < 126541 + ? (c < 126539 + ? c == 126537 + : c <= 126539) + : (c <= 126543 || (c >= 126545 && c <= 126546))) + : (c <= 126548 || (c < 126555 + ? (c < 126553 + ? c == 126551 + : c <= 126553) + : (c <= 126555 || c == 126557)))))) + : (c <= 126559 || (c < 126625 + ? (c < 126580 + ? (c < 126567 + ? (c < 126564 + ? (c >= 126561 && c <= 126562) + : c <= 126564) + : (c <= 126570 || (c >= 126572 && c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c >= 126603 && c <= 126619))))) + : (c <= 126627 || (c < 177984 + ? (c < 131072 + ? (c < 126635 + ? (c >= 126629 && c <= 126633) + : c <= 126651) + : (c <= 173791 || (c >= 173824 && c <= 177976))) + : (c <= 178205 || (c < 194560 + ? (c < 183984 + ? (c >= 178208 && c <= 183969) + : c <= 191456) + : (c <= 195101 || (c >= 196608 && c <= 201546))))))))))))))))); +} + +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43616 + ? (c < 3782 + ? (c < 2748 + ? (c < 2045 + ? (c < 1015 + ? (c < 710 + ? (c < 181 + ? (c < '_' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : c <= 'Z') + : (c <= '_' || (c < 170 + ? (c >= 'a' && c <= 'z') + : c <= 170))) + : (c <= 181 || (c < 192 + ? (c < 186 + ? c == 183 + : c <= 186) + : (c <= 214 || (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705))))) + : (c <= 721 || (c < 891 + ? (c < 750 + ? (c < 748 + ? (c >= 736 && c <= 740) + : c <= 748) + : (c <= 750 || (c < 886 + ? (c >= 768 && c <= 884) + : c <= 887))) + : (c <= 893 || (c < 908 + ? (c < 902 + ? c == 895 + : c <= 906) + : (c <= 908 || (c < 931 + ? (c >= 910 && c <= 929) + : c <= 1013))))))) + : (c <= 1153 || (c < 1519 + ? (c < 1425 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1155 && c <= 1159) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1469 || (c < 1476 + ? (c < 1473 + ? c == 1471 + : c <= 1474) + : (c <= 1477 || (c < 1488 + ? c == 1479 + : c <= 1514))))) + : (c <= 1522 || (c < 1770 + ? (c < 1646 + ? (c < 1568 + ? (c >= 1552 && c <= 1562) + : c <= 1641) + : (c <= 1747 || (c < 1759 + ? (c >= 1749 && c <= 1756) + : c <= 1768))) + : (c <= 1788 || (c < 1869 + ? (c < 1808 + ? c == 1791 + : c <= 1866) + : (c <= 1969 || (c < 2042 + ? (c >= 1984 && c <= 2037) + : c <= 2042))))))))) + : (c <= 2045 || (c < 2558 + ? (c < 2451 + ? (c < 2200 + ? (c < 2144 + ? (c < 2112 + ? (c >= 2048 && c <= 2093) + : c <= 2139) + : (c <= 2154 || (c < 2185 + ? (c >= 2160 && c <= 2183) + : c <= 2190))) + : (c <= 2273 || (c < 2417 + ? (c < 2406 + ? (c >= 2275 && c <= 2403) + : c <= 2415) + : (c <= 2435 || (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448))))) + : (c <= 2472 || (c < 2507 + ? (c < 2486 + ? (c < 2482 + ? (c >= 2474 && c <= 2480) + : c <= 2482) + : (c <= 2489 || (c < 2503 + ? (c >= 2492 && c <= 2500) + : c <= 2504))) + : (c <= 2510 || (c < 2527 + ? (c < 2524 + ? c == 2519 + : c <= 2525) + : (c <= 2531 || (c < 2556 + ? (c >= 2534 && c <= 2545) + : c <= 2556))))))) + : (c <= 2558 || (c < 2635 + ? (c < 2610 + ? (c < 2575 + ? (c < 2565 + ? (c >= 2561 && c <= 2563) + : c <= 2570) + : (c <= 2576 || (c < 2602 + ? (c >= 2579 && c <= 2600) + : c <= 2608))) + : (c <= 2611 || (c < 2620 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2620 || (c < 2631 + ? (c >= 2622 && c <= 2626) + : c <= 2632))))) + : (c <= 2637 || (c < 2693 + ? (c < 2654 + ? (c < 2649 + ? c == 2641 + : c <= 2652) + : (c <= 2654 || (c < 2689 + ? (c >= 2662 && c <= 2677) + : c <= 2691))) + : (c <= 2701 || (c < 2730 + ? (c < 2707 + ? (c >= 2703 && c <= 2705) + : c <= 2728) + : (c <= 2736 || (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745))))))))))) + : (c <= 2757 || (c < 3168 + ? (c < 2958 + ? (c < 2866 + ? (c < 2809 + ? (c < 2768 + ? (c < 2763 + ? (c >= 2759 && c <= 2761) + : c <= 2765) + : (c <= 2768 || (c < 2790 + ? (c >= 2784 && c <= 2787) + : c <= 2799))) + : (c <= 2815 || (c < 2831 + ? (c < 2821 + ? (c >= 2817 && c <= 2819) + : c <= 2828) + : (c <= 2832 || (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864))))) + : (c <= 2867 || (c < 2908 + ? (c < 2887 + ? (c < 2876 + ? (c >= 2869 && c <= 2873) + : c <= 2884) + : (c <= 2888 || (c < 2901 + ? (c >= 2891 && c <= 2893) + : c <= 2903))) + : (c <= 2909 || (c < 2929 + ? (c < 2918 + ? (c >= 2911 && c <= 2915) + : c <= 2927) + : (c <= 2929 || (c < 2949 + ? (c >= 2946 && c <= 2947) + : c <= 2954))))))) + : (c <= 2960 || (c < 3031 + ? (c < 2984 + ? (c < 2972 + ? (c < 2969 + ? (c >= 2962 && c <= 2965) + : c <= 2970) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))) + : (c <= 2986 || (c < 3014 + ? (c < 3006 + ? (c >= 2990 && c <= 3001) + : c <= 3010) + : (c <= 3016 || (c < 3024 + ? (c >= 3018 && c <= 3021) + : c <= 3024))))) + : (c <= 3031 || (c < 3132 + ? (c < 3086 + ? (c < 3072 + ? (c >= 3046 && c <= 3055) + : c <= 3084) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : c <= 3129))) + : (c <= 3140 || (c < 3157 + ? (c < 3146 + ? (c >= 3142 && c <= 3144) + : c <= 3149) + : (c <= 3158 || (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165))))))))) + : (c <= 3171 || (c < 3450 + ? (c < 3293 + ? (c < 3242 + ? (c < 3205 + ? (c < 3200 + ? (c >= 3174 && c <= 3183) + : c <= 3203) + : (c <= 3212 || (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240))) + : (c <= 3251 || (c < 3270 + ? (c < 3260 + ? (c >= 3253 && c <= 3257) + : c <= 3268) + : (c <= 3272 || (c < 3285 + ? (c >= 3274 && c <= 3277) + : c <= 3286))))) + : (c <= 3294 || (c < 3346 + ? (c < 3313 + ? (c < 3302 + ? (c >= 3296 && c <= 3299) + : c <= 3311) + : (c <= 3314 || (c < 3342 + ? (c >= 3328 && c <= 3340) + : c <= 3344))) + : (c <= 3396 || (c < 3412 + ? (c < 3402 + ? (c >= 3398 && c <= 3400) + : c <= 3406) + : (c <= 3415 || (c < 3430 + ? (c >= 3423 && c <= 3427) + : c <= 3439))))))) + : (c <= 3455 || (c < 3570 + ? (c < 3520 + ? (c < 3482 + ? (c < 3461 + ? (c >= 3457 && c <= 3459) + : c <= 3478) + : (c <= 3505 || (c < 3517 + ? (c >= 3507 && c <= 3515) + : c <= 3517))) + : (c <= 3526 || (c < 3542 + ? (c < 3535 + ? c == 3530 + : c <= 3540) + : (c <= 3542 || (c < 3558 + ? (c >= 3544 && c <= 3551) + : c <= 3567))))) + : (c <= 3571 || (c < 3718 + ? (c < 3664 + ? (c < 3648 + ? (c >= 3585 && c <= 3642) + : c <= 3662) + : (c <= 3673 || (c < 3716 + ? (c >= 3713 && c <= 3714) + : c <= 3716))) + : (c <= 3722 || (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3773 || (c >= 3776 && c <= 3780))))))))))))) + : (c <= 3782 || (c < 8025 + ? (c < 5888 + ? (c < 4688 + ? (c < 3953 + ? (c < 3872 + ? (c < 3804 + ? (c < 3792 + ? (c >= 3784 && c <= 3789) + : c <= 3801) + : (c <= 3807 || (c < 3864 + ? c == 3840 + : c <= 3865))) + : (c <= 3881 || (c < 3897 + ? (c < 3895 + ? c == 3893 + : c <= 3895) + : (c <= 3897 || (c < 3913 + ? (c >= 3902 && c <= 3911) + : c <= 3948))))) + : (c <= 3972 || (c < 4256 + ? (c < 4038 + ? (c < 3993 + ? (c >= 3974 && c <= 3991) + : c <= 4028) + : (c <= 4038 || (c < 4176 + ? (c >= 4096 && c <= 4169) + : c <= 4253))) + : (c <= 4293 || (c < 4304 + ? (c < 4301 + ? c == 4295 + : c <= 4301) + : (c <= 4346 || (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685))))))) + : (c <= 4694 || (c < 4882 + ? (c < 4786 + ? (c < 4704 + ? (c < 4698 + ? c == 4696 + : c <= 4701) + : (c <= 4744 || (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784))) + : (c <= 4789 || (c < 4802 + ? (c < 4800 + ? (c >= 4792 && c <= 4798) + : c <= 4800) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))))) + : (c <= 4885 || (c < 5112 + ? (c < 4969 + ? (c < 4957 + ? (c >= 4888 && c <= 4954) + : c <= 4959) + : (c <= 4977 || (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109))) + : (c <= 5117 || (c < 5761 + ? (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759) + : (c <= 5786 || (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880))))))))) + : (c <= 5909 || (c < 6688 + ? (c < 6176 + ? (c < 6016 + ? (c < 5984 + ? (c < 5952 + ? (c >= 5919 && c <= 5940) + : c <= 5971) + : (c <= 5996 || (c < 6002 + ? (c >= 5998 && c <= 6000) + : c <= 6003))) + : (c <= 6099 || (c < 6112 + ? (c < 6108 + ? c == 6103 + : c <= 6109) + : (c <= 6121 || (c < 6159 + ? (c >= 6155 && c <= 6157) + : c <= 6169))))) + : (c <= 6264 || (c < 6470 + ? (c < 6400 + ? (c < 6320 + ? (c >= 6272 && c <= 6314) + : c <= 6389) + : (c <= 6430 || (c < 6448 + ? (c >= 6432 && c <= 6443) + : c <= 6459))) + : (c <= 6509 || (c < 6576 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : c <= 6571) + : (c <= 6601 || (c < 6656 + ? (c >= 6608 && c <= 6618) + : c <= 6683))))))) + : (c <= 6750 || (c < 7232 + ? (c < 6847 + ? (c < 6800 + ? (c < 6783 + ? (c >= 6752 && c <= 6780) + : c <= 6793) + : (c <= 6809 || (c < 6832 + ? c == 6823 + : c <= 6845))) + : (c <= 6862 || (c < 7019 + ? (c < 6992 + ? (c >= 6912 && c <= 6988) + : c <= 7001) + : (c <= 7027 || (c < 7168 + ? (c >= 7040 && c <= 7155) + : c <= 7223))))) + : (c <= 7241 || (c < 7380 + ? (c < 7312 + ? (c < 7296 + ? (c >= 7245 && c <= 7293) + : c <= 7304) + : (c <= 7354 || (c < 7376 + ? (c >= 7357 && c <= 7359) + : c <= 7378))) + : (c <= 7418 || (c < 7968 + ? (c < 7960 + ? (c >= 7424 && c <= 7957) + : c <= 7965) + : (c <= 8005 || (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023))))))))))) + : (c <= 8025 || (c < 11720 + ? (c < 8458 + ? (c < 8178 + ? (c < 8126 + ? (c < 8031 + ? (c < 8029 + ? c == 8027 + : c <= 8029) + : (c <= 8061 || (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124))) + : (c <= 8126 || (c < 8144 + ? (c < 8134 + ? (c >= 8130 && c <= 8132) + : c <= 8140) + : (c <= 8147 || (c < 8160 + ? (c >= 8150 && c <= 8155) + : c <= 8172))))) + : (c <= 8180 || (c < 8336 + ? (c < 8276 + ? (c < 8255 + ? (c >= 8182 && c <= 8188) + : c <= 8256) + : (c <= 8276 || (c < 8319 + ? c == 8305 + : c <= 8319))) + : (c <= 8348 || (c < 8421 + ? (c < 8417 + ? (c >= 8400 && c <= 8412) + : c <= 8417) + : (c <= 8432 || (c < 8455 + ? c == 8450 + : c <= 8455))))))) + : (c <= 8467 || (c < 11499 + ? (c < 8490 + ? (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || (c < 8488 + ? c == 8486 + : c <= 8488))) + : (c <= 8505 || (c < 8526 + ? (c < 8517 + ? (c >= 8508 && c <= 8511) + : c <= 8521) + : (c <= 8526 || (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492))))) + : (c <= 11507 || (c < 11647 + ? (c < 11565 + ? (c < 11559 + ? (c >= 11520 && c <= 11557) + : c <= 11559) + : (c <= 11565 || (c < 11631 + ? (c >= 11568 && c <= 11623) + : c <= 11631))) + : (c <= 11670 || (c < 11696 + ? (c < 11688 + ? (c >= 11680 && c <= 11686) + : c <= 11694) + : (c <= 11702 || (c < 11712 + ? (c >= 11704 && c <= 11710) + : c <= 11718))))))))) + : (c <= 11726 || (c < 42623 + ? (c < 12540 + ? (c < 12337 + ? (c < 11744 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 11775 || (c < 12321 + ? (c >= 12293 && c <= 12295) + : c <= 12335))) + : (c <= 12341 || (c < 12441 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12442 || (c < 12449 + ? (c >= 12445 && c <= 12447) + : c <= 12538))))) + : (c <= 12543 || (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42539 || (c < 42612 + ? (c >= 42560 && c <= 42607) + : c <= 42621))))))) + : (c <= 42737 || (c < 43232 + ? (c < 42965 + ? (c < 42891 + ? (c < 42786 + ? (c >= 42775 && c <= 42783) + : c <= 42888) + : (c <= 42954 || (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963))) + : (c <= 42969 || (c < 43072 + ? (c < 43052 + ? (c >= 42994 && c <= 43047) + : c <= 43052) + : (c <= 43123 || (c < 43216 + ? (c >= 43136 && c <= 43205) + : c <= 43225))))) + : (c <= 43255 || (c < 43471 + ? (c < 43312 + ? (c < 43261 + ? c == 43259 + : c <= 43309) + : (c <= 43347 || (c < 43392 + ? (c >= 43360 && c <= 43388) + : c <= 43456))) + : (c <= 43481 || (c < 43584 + ? (c < 43520 + ? (c >= 43488 && c <= 43518) + : c <= 43574) + : (c <= 43597 || (c >= 43600 && c <= 43609))))))))))))))) + : (c <= 43638 || (c < 71453 + ? (c < 67639 + ? (c < 65345 + ? (c < 64312 + ? (c < 43888 + ? (c < 43785 + ? (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))) + : (c <= 43790 || (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c < 43868 + ? (c >= 43824 && c <= 43866) + : c <= 43881))))) + : (c <= 44010 || (c < 63744 + ? (c < 44032 + ? (c < 44016 + ? (c >= 44012 && c <= 44013) + : c <= 44025) + : (c <= 55203 || (c < 55243 + ? (c >= 55216 && c <= 55238) + : c <= 55291))) + : (c <= 64109 || (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64298 + ? (c >= 64285 && c <= 64296) + : c <= 64310))))))) + : (c <= 64316 || (c < 65075 + ? (c < 64612 + ? (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c < 64467 + ? (c >= 64326 && c <= 64433) + : c <= 64605))) + : (c <= 64829 || (c < 65008 + ? (c < 64914 + ? (c >= 64848 && c <= 64911) + : c <= 64967) + : (c <= 65017 || (c < 65056 + ? (c >= 65024 && c <= 65039) + : c <= 65071))))) + : (c <= 65076 || (c < 65147 + ? (c < 65139 + ? (c < 65137 + ? (c >= 65101 && c <= 65103) + : c <= 65137) + : (c <= 65139 || (c < 65145 + ? c == 65143 + : c <= 65145))) + : (c <= 65147 || (c < 65296 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65305 || (c < 65343 + ? (c >= 65313 && c <= 65338) + : c <= 65343))))))))) + : (c <= 65370 || (c < 66513 + ? (c < 65664 + ? (c < 65536 + ? (c < 65482 + ? (c < 65474 + ? (c >= 65382 && c <= 65470) + : c <= 65479) + : (c <= 65487 || (c < 65498 + ? (c >= 65490 && c <= 65495) + : c <= 65500))) + : (c <= 65547 || (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c < 65616 + ? (c >= 65599 && c <= 65613) + : c <= 65629))))) + : (c <= 65786 || (c < 66304 + ? (c < 66176 + ? (c < 66045 + ? (c >= 65856 && c <= 65908) + : c <= 66045) + : (c <= 66204 || (c < 66272 + ? (c >= 66208 && c <= 66256) + : c <= 66272))) + : (c <= 66335 || (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66426) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))))))) + : (c <= 66517 || (c < 66979 + ? (c < 66864 + ? (c < 66736 + ? (c < 66720 + ? (c >= 66560 && c <= 66717) + : c <= 66729) + : (c <= 66771 || (c < 66816 + ? (c >= 66776 && c <= 66811) + : c <= 66855))) + : (c <= 66915 || (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c < 66967 + ? (c >= 66964 && c <= 66965) + : c <= 66977))))) + : (c <= 66993 || (c < 67456 + ? (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c < 67424 + ? (c >= 67392 && c <= 67413) + : c <= 67431))) + : (c <= 67461 || (c < 67584 + ? (c < 67506 + ? (c >= 67463 && c <= 67504) + : c <= 67514) + : (c <= 67589 || (c < 67594 + ? c == 67592 + : c <= 67637))))))))))) + : (c <= 67640 || (c < 69956 + ? (c < 68448 + ? (c < 68101 + ? (c < 67828 + ? (c < 67680 + ? (c < 67647 + ? c == 67644 + : c <= 67669) + : (c <= 67702 || (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826))) + : (c <= 67829 || (c < 67968 + ? (c < 67872 + ? (c >= 67840 && c <= 67861) + : c <= 67897) + : (c <= 68023 || (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68099))))) + : (c <= 68102 || (c < 68192 + ? (c < 68121 + ? (c < 68117 + ? (c >= 68108 && c <= 68115) + : c <= 68119) + : (c <= 68149 || (c < 68159 + ? (c >= 68152 && c <= 68154) + : c <= 68159))) + : (c <= 68220 || (c < 68297 + ? (c < 68288 + ? (c >= 68224 && c <= 68252) + : c <= 68295) + : (c <= 68326 || (c < 68416 + ? (c >= 68352 && c <= 68405) + : c <= 68437))))))) + : (c <= 68466 || (c < 69424 + ? (c < 68912 + ? (c < 68736 + ? (c < 68608 + ? (c >= 68480 && c <= 68497) + : c <= 68680) + : (c <= 68786 || (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68903))) + : (c <= 68921 || (c < 69296 + ? (c < 69291 + ? (c >= 69248 && c <= 69289) + : c <= 69292) + : (c <= 69297 || (c < 69415 + ? (c >= 69376 && c <= 69404) + : c <= 69415))))) + : (c <= 69456 || (c < 69759 + ? (c < 69600 + ? (c < 69552 + ? (c >= 69488 && c <= 69509) + : c <= 69572) + : (c <= 69622 || (c < 69734 + ? (c >= 69632 && c <= 69702) + : c <= 69749))) + : (c <= 69818 || (c < 69872 + ? (c < 69840 + ? c == 69826 + : c <= 69864) + : (c <= 69881 || (c < 69942 + ? (c >= 69888 && c <= 69940) + : c <= 69951))))))))) + : (c <= 69959 || (c < 70459 + ? (c < 70282 + ? (c < 70108 + ? (c < 70016 + ? (c < 70006 + ? (c >= 69968 && c <= 70003) + : c <= 70006) + : (c <= 70084 || (c < 70094 + ? (c >= 70089 && c <= 70092) + : c <= 70106))) + : (c <= 70108 || (c < 70206 + ? (c < 70163 + ? (c >= 70144 && c <= 70161) + : c <= 70199) + : (c <= 70206 || (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280))))) + : (c <= 70285 || (c < 70405 + ? (c < 70320 + ? (c < 70303 + ? (c >= 70287 && c <= 70301) + : c <= 70312) + : (c <= 70378 || (c < 70400 + ? (c >= 70384 && c <= 70393) + : c <= 70403))) + : (c <= 70412 || (c < 70442 + ? (c < 70419 + ? (c >= 70415 && c <= 70416) + : c <= 70440) + : (c <= 70448 || (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457))))))) + : (c <= 70468 || (c < 70855 + ? (c < 70502 + ? (c < 70480 + ? (c < 70475 + ? (c >= 70471 && c <= 70472) + : c <= 70477) + : (c <= 70480 || (c < 70493 + ? c == 70487 + : c <= 70499))) + : (c <= 70508 || (c < 70736 + ? (c < 70656 + ? (c >= 70512 && c <= 70516) + : c <= 70730) + : (c <= 70745 || (c < 70784 + ? (c >= 70750 && c <= 70753) + : c <= 70853))))) + : (c <= 70855 || (c < 71236 + ? (c < 71096 + ? (c < 71040 + ? (c >= 70864 && c <= 70873) + : c <= 71093) + : (c <= 71104 || (c < 71168 + ? (c >= 71128 && c <= 71133) + : c <= 71232))) + : (c <= 71236 || (c < 71360 + ? (c < 71296 + ? (c >= 71248 && c <= 71257) + : c <= 71352) + : (c <= 71369 || (c >= 71424 && c <= 71450))))))))))))) + : (c <= 71467 || (c < 119973 + ? (c < 77824 + ? (c < 72760 + ? (c < 72016 + ? (c < 71945 + ? (c < 71680 + ? (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494) + : (c <= 71738 || (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942))) + : (c <= 71945 || (c < 71960 + ? (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958) + : (c <= 71989 || (c < 71995 + ? (c >= 71991 && c <= 71992) + : c <= 72003))))) + : (c <= 72025 || (c < 72263 + ? (c < 72154 + ? (c < 72106 + ? (c >= 72096 && c <= 72103) + : c <= 72151) + : (c <= 72161 || (c < 72192 + ? (c >= 72163 && c <= 72164) + : c <= 72254))) + : (c <= 72263 || (c < 72368 + ? (c < 72349 + ? (c >= 72272 && c <= 72345) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72758))))))) + : (c <= 72768 || (c < 73056 + ? (c < 72968 + ? (c < 72850 + ? (c < 72818 + ? (c >= 72784 && c <= 72793) + : c <= 72847) + : (c <= 72871 || (c < 72960 + ? (c >= 72873 && c <= 72886) + : c <= 72966))) + : (c <= 72969 || (c < 73020 + ? (c < 73018 + ? (c >= 72971 && c <= 73014) + : c <= 73018) + : (c <= 73021 || (c < 73040 + ? (c >= 73023 && c <= 73031) + : c <= 73049))))) + : (c <= 73061 || (c < 73440 + ? (c < 73104 + ? (c < 73066 + ? (c >= 73063 && c <= 73064) + : c <= 73102) + : (c <= 73105 || (c < 73120 + ? (c >= 73107 && c <= 73112) + : c <= 73129))) + : (c <= 73462 || (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))))))))) + : (c <= 78894 || (c < 110576 + ? (c < 93027 + ? (c < 92864 + ? (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c < 92784 + ? (c >= 92768 && c <= 92777) + : c <= 92862))) + : (c <= 92873 || (c < 92928 + ? (c < 92912 + ? (c >= 92880 && c <= 92909) + : c <= 92916) + : (c <= 92982 || (c < 93008 + ? (c >= 92992 && c <= 92995) + : c <= 93017))))) + : (c <= 93047 || (c < 94176 + ? (c < 93952 + ? (c < 93760 + ? (c >= 93053 && c <= 93071) + : c <= 93823) + : (c <= 94026 || (c < 94095 + ? (c >= 94031 && c <= 94087) + : c <= 94111))) + : (c <= 94177 || (c < 94208 + ? (c < 94192 + ? (c >= 94179 && c <= 94180) + : c <= 94193) + : (c <= 100343 || (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640))))))) + : (c <= 110579 || (c < 118528 + ? (c < 110960 + ? (c < 110592 + ? (c < 110589 + ? (c >= 110581 && c <= 110587) + : c <= 110590) + : (c <= 110882 || (c < 110948 + ? (c >= 110928 && c <= 110930) + : c <= 110951))) + : (c <= 111355 || (c < 113792 + ? (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788) + : (c <= 113800 || (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822))))) + : (c <= 118573 || (c < 119210 + ? (c < 119149 + ? (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145) + : (c <= 119154 || (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179))) + : (c <= 119213 || (c < 119894 + ? (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892) + : (c <= 119964 || (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970))))))))))) + : (c <= 119974 || (c < 124912 + ? (c < 120746 + ? (c < 120134 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c < 120128 + ? (c >= 120123 && c <= 120126) + : c <= 120132))))) + : (c <= 120134 || (c < 120572 + ? (c < 120488 + ? (c < 120146 + ? (c >= 120138 && c <= 120144) + : c <= 120485) + : (c <= 120512 || (c < 120540 + ? (c >= 120514 && c <= 120538) + : c <= 120570))) + : (c <= 120596 || (c < 120656 + ? (c < 120630 + ? (c >= 120598 && c <= 120628) + : c <= 120654) + : (c <= 120686 || (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744))))))) + : (c <= 120770 || (c < 122907 + ? (c < 121476 + ? (c < 121344 + ? (c < 120782 + ? (c >= 120772 && c <= 120779) + : c <= 120831) + : (c <= 121398 || (c < 121461 + ? (c >= 121403 && c <= 121452) + : c <= 121461))) + : (c <= 121476 || (c < 122624 + ? (c < 121505 + ? (c >= 121499 && c <= 121503) + : c <= 121519) + : (c <= 122654 || (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904))))) + : (c <= 122913 || (c < 123214 + ? (c < 123136 + ? (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922) + : (c <= 123180 || (c < 123200 + ? (c >= 123184 && c <= 123197) + : c <= 123209))) + : (c <= 123214 || (c < 124896 + ? (c < 123584 + ? (c >= 123536 && c <= 123566) + : c <= 123641) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177976) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + switch (state) { + case 0: + if (eof) ADVANCE(53); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(51) + if (lookahead == '\r') SKIP(51) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(87); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(82); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '0') ADVANCE(134); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(107); + if (lookahead == '@') ADVANCE(77); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(127); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '~') ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(144); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(146); + END_STATE(); + case 2: + if (lookahead == '\n') ADVANCE(126); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(3) + if (lookahead == '\r') ADVANCE(129); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '\\') ADVANCE(128); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '}') ADVANCE(125); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(129); + if (lookahead != 0) ADVANCE(130); + END_STATE(); + case 4: + if (lookahead == '.') ADVANCE(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + END_STATE(); + case 5: + if (lookahead == '.') ADVANCE(123); + END_STATE(); + case 6: + if (lookahead == '/') ADVANCE(16); + if (lookahead == '=') ADVANCE(113); + END_STATE(); + case 7: + if (lookahead == '<') ADVANCE(17); + END_STATE(); + case 8: + if (lookahead == '=') ADVANCE(104); + END_STATE(); + case 9: + if (lookahead == '=') ADVANCE(104); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + END_STATE(); + case 10: + if (lookahead == '=') ADVANCE(116); + END_STATE(); + case 11: + if (lookahead == '=') ADVANCE(120); + END_STATE(); + case 12: + if (lookahead == '=') ADVANCE(114); + END_STATE(); + case 13: + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 14: + if (lookahead == '=') ADVANCE(122); + END_STATE(); + case 15: + if (lookahead == '=') ADVANCE(117); + END_STATE(); + case 16: + if (lookahead == '=') ADVANCE(115); + END_STATE(); + case 17: + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 18: + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 19: + if (lookahead == '>') ADVANCE(69); + END_STATE(); + case 20: + if (lookahead == '>') ADVANCE(18); + END_STATE(); + case 21: + if (lookahead == '_') ADVANCE(28); + if (lookahead == '0' || + lookahead == '1') ADVANCE(136); + END_STATE(); + case 22: + if (lookahead == '_') ADVANCE(37); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(137); + END_STATE(); + case 23: + if (lookahead == '_') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); + END_STATE(); + case 24: + if (lookahead == '{') ADVANCE(50); + END_STATE(); + case 25: + if (lookahead == '}') ADVANCE(126); + if (lookahead != 0) ADVANCE(25); + END_STATE(); + case 26: + if (!eof && lookahead == 0 || + lookahead == '\n') ADVANCE(146); + if (lookahead == '\r') ADVANCE(1); + END_STATE(); + case 27: + if (lookahead == '+' || + lookahead == '-') ADVANCE(39); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(141); + END_STATE(); + case 28: + if (lookahead == '0' || + lookahead == '1') ADVANCE(136); + END_STATE(); + case 29: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(29) + if (lookahead == '\r') SKIP(29) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(87); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(57); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '0') ADVANCE(134); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(107); + if (lookahead == '@') ADVANCE(77); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '~') ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(144); + END_STATE(); + case 30: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(30) + if (lookahead == '\r') SKIP(30) + if (lookahead == '#') ADVANCE(145); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(4); + if (lookahead == '/') ADVANCE(83); + if (lookahead == '0') ADVANCE(134); + if (lookahead == ':') ADVANCE(67); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '~') ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(144); + END_STATE(); + case 31: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(31) + if (lookahead == '\r') SKIP(31) + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(10); + if (lookahead == '&') ADVANCE(11); + if (lookahead == '(') ADVANCE(57); + if (lookahead == '*') ADVANCE(63); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(4); + if (lookahead == '/') ADVANCE(6); + if (lookahead == '0') ADVANCE(134); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(7); + if (lookahead == '=') ADVANCE(72); + if (lookahead == '>') ADVANCE(20); + if (lookahead == '@') ADVANCE(12); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '^') ADVANCE(13); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '|') ADVANCE(14); + if (lookahead == '~') ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(144); + END_STATE(); + case 32: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(32) + if (lookahead == '\r') SKIP(32) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(87); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(57); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(55); + if (lookahead == '/') ADVANCE(84); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(107); + if (lookahead == '@') ADVANCE(77); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '|') ADVANCE(91); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(144); + END_STATE(); + case 33: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(33) + if (lookahead == '\r') SKIP(33) + if (lookahead == '!') ADVANCE(8); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(87); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(81); + if (lookahead == '.') ADVANCE(55); + if (lookahead == '/') ADVANCE(84); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(107); + if (lookahead == '@') ADVANCE(77); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '|') ADVANCE(91); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(144); + END_STATE(); + case 34: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(34) + if (lookahead == '\r') SKIP(34) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(86); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(55); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(100); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(108); + if (lookahead == '@') ADVANCE(76); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(94); + if (lookahead == '|') ADVANCE(90); + if (lookahead == '}') ADVANCE(125); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(144); + END_STATE(); + case 35: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(35) + if (lookahead == '\r') SKIP(35) + if (lookahead == '#') ADVANCE(145); + if (lookahead == '-') ADVANCE(19); + if (lookahead == ':') ADVANCE(67); + if (lookahead == '\\') ADVANCE(26); + END_STATE(); + case 36: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(36) + if (lookahead == '\r') SKIP(36) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(86); + if (lookahead == '&') ADVANCE(92); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(62); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(55); + if (lookahead == '/') ADVANCE(85); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(100); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(108); + if (lookahead == '@') ADVANCE(76); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(94); + if (lookahead == '|') ADVANCE(90); + if (lookahead == '}') ADVANCE(125); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(144); + END_STATE(); + case 37: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(137); + END_STATE(); + case 38: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(126); + END_STATE(); + case 39: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(141); + END_STATE(); + case 40: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38); + END_STATE(); + case 41: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(126); + END_STATE(); + case 42: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); + END_STATE(); + case 43: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(41); + END_STATE(); + case 44: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(43); + END_STATE(); + case 45: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(44); + END_STATE(); + case 46: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(45); + END_STATE(); + case 47: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(46); + END_STATE(); + case 48: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(47); + END_STATE(); + case 49: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(48); + END_STATE(); + case 50: + if (lookahead != 0 && + lookahead != '}') ADVANCE(25); + END_STATE(); + case 51: + if (eof) ADVANCE(53); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(51) + if (lookahead == '\r') SKIP(51) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '%') ADVANCE(87); + if (lookahead == '&') ADVANCE(93); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(61); + if (lookahead == '+') ADVANCE(79); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(82); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '/') ADVANCE(84); + if (lookahead == '0') ADVANCE(134); + if (lookahead == ':') ADVANCE(68); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(99); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(107); + if (lookahead == '@') ADVANCE(77); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '^') ADVANCE(95); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '|') ADVANCE(91); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '~') ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(144); + END_STATE(); + case 52: + if (eof) ADVANCE(53); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(52) + if (lookahead == '\r') SKIP(52) + if (lookahead == '!') ADVANCE(9); + if (lookahead == '#') ADVANCE(145); + if (lookahead == '(') ADVANCE(57); + if (lookahead == ')') ADVANCE(58); + if (lookahead == '*') ADVANCE(60); + if (lookahead == '+') ADVANCE(78); + if (lookahead == ',') ADVANCE(59); + if (lookahead == '-') ADVANCE(80); + if (lookahead == '.') ADVANCE(56); + if (lookahead == '0') ADVANCE(134); + if (lookahead == ':') ADVANCE(67); + if (lookahead == ';') ADVANCE(54); + if (lookahead == '<') ADVANCE(101); + if (lookahead == '=') ADVANCE(73); + if (lookahead == '>') ADVANCE(106); + if (lookahead == '@') ADVANCE(76); + if (lookahead == '[') ADVANCE(74); + if (lookahead == '\\') ADVANCE(26); + if (lookahead == ']') ADVANCE(75); + if (lookahead == '{') ADVANCE(124); + if (lookahead == '}') ADVANCE(125); + if (lookahead == '~') ADVANCE(98); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(133); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(144); + END_STATE(); + case 53: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(5); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(71); + if (lookahead == '=') ADVANCE(112); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(70); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(15); + if (lookahead == '=') ADVANCE(112); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_GT_GT); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(118); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(66); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(117); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(103); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(114); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(110); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(111); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '>') ADVANCE(69); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_SLASH); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(89); + if (lookahead == '=') ADVANCE(113); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(88); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(116); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(115); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(122); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_AMP); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(120); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(121); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_LT_LT); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(119); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(97); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '>') ADVANCE(109); + END_STATE(); + case 100: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(96); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '>') ADVANCE(109); + END_STATE(); + case 101: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(102); + if (lookahead == '>') ADVANCE(109); + END_STATE(); + case 102: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 104: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 105: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(105); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(65); + END_STATE(); + case 108: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(105); + if (lookahead == '>') ADVANCE(64); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 112: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 114: + ACCEPT_TOKEN(anon_sym_AT_EQ); + END_STATE(); + case 115: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 118: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 119: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 120: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 121: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 123: + ACCEPT_TOKEN(sym_ellipsis); + END_STATE(); + case 124: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 125: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 126: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 127: + ACCEPT_TOKEN(sym__not_escape_sequence); + if (!eof && lookahead == 0) ADVANCE(146); + if (lookahead == '\n') ADVANCE(126); + if (lookahead == '\r') ADVANCE(2); + if (lookahead == 'N') ADVANCE(24); + if (lookahead == 'U') ADVANCE(49); + if (lookahead == 'u') ADVANCE(45); + if (lookahead == 'x') ADVANCE(43); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '\\' || + lookahead == 'a' || + lookahead == 'b' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40); + END_STATE(); + case 128: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (!eof && lookahead == 0) ADVANCE(130); + if (lookahead == '\r') ADVANCE(130); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(130); + END_STATE(); + case 129: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == '\r') ADVANCE(129); + if (lookahead == '#') ADVANCE(130); + if (lookahead == '\\') ADVANCE(128); + if (lookahead == '\t' || + lookahead == 11 || + lookahead == '\f' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(129); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(130); + END_STATE(); + case 130: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(130); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_type_conversion); + END_STATE(); + case 132: + ACCEPT_TOKEN(sym_integer); + END_STATE(); + case 133: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(142); + if (lookahead == '_') ADVANCE(135); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(27); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + END_STATE(); + case 134: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(142); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(21); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(22); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(23); + if (lookahead == '_') ADVANCE(135); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(27); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + END_STATE(); + case 135: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(142); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(27); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(133); + END_STATE(); + case 136: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(28); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(132); + if (lookahead == '0' || + lookahead == '1') ADVANCE(136); + END_STATE(); + case 137: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(37); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(137); + END_STATE(); + case 138: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(42); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(132); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(138); + END_STATE(); + case 139: + ACCEPT_TOKEN(sym_float); + END_STATE(); + case 140: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(142); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(27); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + END_STATE(); + case 141: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(143); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(141); + END_STATE(); + case 142: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(27); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(140); + END_STATE(); + case 143: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(139); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(141); + END_STATE(); + case 144: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(144); + END_STATE(); + case 145: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(145); + END_STATE(); + case 146: + ACCEPT_TOKEN(sym_line_continuation); + END_STATE(); + default: + return false; + } +} + +static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { + START_LEXER(); + switch (state) { + case 0: + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(0) + if (lookahead == '\r') SKIP(0) + if (lookahead == 'F') ADVANCE(1); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '_') ADVANCE(4); + if (lookahead == 'a') ADVANCE(5); + if (lookahead == 'b') ADVANCE(6); + if (lookahead == 'c') ADVANCE(7); + if (lookahead == 'd') ADVANCE(8); + if (lookahead == 'e') ADVANCE(9); + if (lookahead == 'f') ADVANCE(10); + if (lookahead == 'g') ADVANCE(11); + if (lookahead == 'i') ADVANCE(12); + if (lookahead == 'l') ADVANCE(13); + if (lookahead == 'm') ADVANCE(14); + if (lookahead == 'n') ADVANCE(15); + if (lookahead == 'o') ADVANCE(16); + if (lookahead == 'p') ADVANCE(17); + if (lookahead == 'r') ADVANCE(18); + if (lookahead == 's') ADVANCE(19); + if (lookahead == 't') ADVANCE(20); + if (lookahead == 'w') ADVANCE(21); + if (lookahead == 'y') ADVANCE(22); + END_STATE(); + case 1: + if (lookahead == 'a') ADVANCE(23); + END_STATE(); + case 2: + if (lookahead == 'o') ADVANCE(24); + END_STATE(); + case 3: + if (lookahead == 'r') ADVANCE(25); + END_STATE(); + case 4: + if (lookahead == '_') ADVANCE(26); + END_STATE(); + case 5: + if (lookahead == 'n') ADVANCE(27); + if (lookahead == 's') ADVANCE(28); + if (lookahead == 'w') ADVANCE(29); + END_STATE(); + case 6: + if (lookahead == 'r') ADVANCE(30); + END_STATE(); + case 7: + if (lookahead == 'a') ADVANCE(31); + if (lookahead == 'l') ADVANCE(32); + if (lookahead == 'o') ADVANCE(33); + END_STATE(); + case 8: + if (lookahead == 'e') ADVANCE(34); + END_STATE(); + case 9: + if (lookahead == 'l') ADVANCE(35); + if (lookahead == 'q') ADVANCE(36); + if (lookahead == 'x') ADVANCE(37); + END_STATE(); + case 10: + if (lookahead == 'a') ADVANCE(38); + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'o') ADVANCE(40); + if (lookahead == 'r') ADVANCE(41); + END_STATE(); + case 11: + if (lookahead == 'l') ADVANCE(42); + END_STATE(); + case 12: + if (lookahead == 'f') ADVANCE(43); + if (lookahead == 'm') ADVANCE(44); + if (lookahead == 'n') ADVANCE(45); + END_STATE(); + case 13: + if (lookahead == 'a') ADVANCE(46); + END_STATE(); + case 14: + if (lookahead == 'a') ADVANCE(47); + END_STATE(); + case 15: + if (lookahead == 'e') ADVANCE(48); + if (lookahead == 'o') ADVANCE(49); + END_STATE(); + case 16: + if (lookahead == 'r') ADVANCE(50); + END_STATE(); + case 17: + if (lookahead == 'a') ADVANCE(51); + if (lookahead == 'r') ADVANCE(52); + END_STATE(); + case 18: + if (lookahead == 'a') ADVANCE(53); + if (lookahead == 'e') ADVANCE(54); + END_STATE(); + case 19: + if (lookahead == 't') ADVANCE(55); + END_STATE(); + case 20: + if (lookahead == 'r') ADVANCE(56); + if (lookahead == 'y') ADVANCE(57); + END_STATE(); + case 21: + if (lookahead == 'h') ADVANCE(58); + if (lookahead == 'i') ADVANCE(59); + END_STATE(); + case 22: + if (lookahead == 'i') ADVANCE(60); + END_STATE(); + case 23: + if (lookahead == 'l') ADVANCE(61); + END_STATE(); + case 24: + if (lookahead == 'n') ADVANCE(62); + END_STATE(); + case 25: + if (lookahead == 'u') ADVANCE(63); + END_STATE(); + case 26: + if (lookahead == 'f') ADVANCE(64); + END_STATE(); + case 27: + if (lookahead == 'd') ADVANCE(65); + END_STATE(); + case 28: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(66); + if (lookahead == 'y') ADVANCE(67); + END_STATE(); + case 29: + if (lookahead == 'a') ADVANCE(68); + END_STATE(); + case 30: + if (lookahead == 'e') ADVANCE(69); + END_STATE(); + case 31: + if (lookahead == 's') ADVANCE(70); + END_STATE(); + case 32: + if (lookahead == 'a') ADVANCE(71); + END_STATE(); + case 33: + if (lookahead == 'n') ADVANCE(72); + END_STATE(); + case 34: + if (lookahead == 'f') ADVANCE(73); + if (lookahead == 'l') ADVANCE(74); + END_STATE(); + case 35: + if (lookahead == 'i') ADVANCE(75); + if (lookahead == 's') ADVANCE(76); + END_STATE(); + case 36: + ACCEPT_TOKEN(anon_sym_eq); + END_STATE(); + case 37: + if (lookahead == 'c') ADVANCE(77); + if (lookahead == 'e') ADVANCE(78); + END_STATE(); + case 38: + if (lookahead == 'i') ADVANCE(79); + END_STATE(); + case 39: + if (lookahead == 'n') ADVANCE(80); + END_STATE(); + case 40: + if (lookahead == 'r') ADVANCE(81); + END_STATE(); + case 41: + if (lookahead == 'o') ADVANCE(82); + END_STATE(); + case 42: + if (lookahead == 'o') ADVANCE(83); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 44: + if (lookahead == 'p') ADVANCE(84); + END_STATE(); + case 45: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 46: + if (lookahead == 'm') ADVANCE(85); + END_STATE(); + case 47: + if (lookahead == 't') ADVANCE(86); + END_STATE(); + case 48: + ACCEPT_TOKEN(anon_sym_ne); + END_STATE(); + case 49: + if (lookahead == 'n') ADVANCE(87); + if (lookahead == 't') ADVANCE(88); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 51: + if (lookahead == 's') ADVANCE(89); + END_STATE(); + case 52: + if (lookahead == 'i') ADVANCE(90); + END_STATE(); + case 53: + if (lookahead == 'i') ADVANCE(91); + END_STATE(); + case 54: + if (lookahead == 't') ADVANCE(92); + END_STATE(); + case 55: + if (lookahead == 'r') ADVANCE(93); + END_STATE(); + case 56: + if (lookahead == 'y') ADVANCE(94); + END_STATE(); + case 57: + if (lookahead == 'p') ADVANCE(95); + END_STATE(); + case 58: + if (lookahead == 'i') ADVANCE(96); + END_STATE(); + case 59: + if (lookahead == 't') ADVANCE(97); + END_STATE(); + case 60: + if (lookahead == 'e') ADVANCE(98); + END_STATE(); + case 61: + if (lookahead == 's') ADVANCE(99); + END_STATE(); + case 62: + if (lookahead == 'e') ADVANCE(100); + END_STATE(); + case 63: + if (lookahead == 'e') ADVANCE(101); + END_STATE(); + case 64: + if (lookahead == 'u') ADVANCE(102); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 66: + if (lookahead == 'e') ADVANCE(103); + END_STATE(); + case 67: + if (lookahead == 'n') ADVANCE(104); + END_STATE(); + case 68: + if (lookahead == 'i') ADVANCE(105); + END_STATE(); + case 69: + if (lookahead == 'a') ADVANCE(106); + END_STATE(); + case 70: + if (lookahead == 'e') ADVANCE(107); + END_STATE(); + case 71: + if (lookahead == 's') ADVANCE(108); + END_STATE(); + case 72: + if (lookahead == 't') ADVANCE(109); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_def); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_del); + END_STATE(); + case 75: + if (lookahead == 'f') ADVANCE(110); + END_STATE(); + case 76: + if (lookahead == 'e') ADVANCE(111); + END_STATE(); + case 77: + if (lookahead == 'e') ADVANCE(112); + END_STATE(); + case 78: + if (lookahead == 'c') ADVANCE(113); + END_STATE(); + case 79: + if (lookahead == 'l') ADVANCE(114); + END_STATE(); + case 80: + if (lookahead == 'a') ADVANCE(115); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 82: + if (lookahead == 'm') ADVANCE(116); + END_STATE(); + case 83: + if (lookahead == 'b') ADVANCE(117); + END_STATE(); + case 84: + if (lookahead == 'o') ADVANCE(118); + END_STATE(); + case 85: + if (lookahead == 'b') ADVANCE(119); + END_STATE(); + case 86: + if (lookahead == 'c') ADVANCE(120); + END_STATE(); + case 87: + if (lookahead == 'l') ADVANCE(121); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 89: + if (lookahead == 's') ADVANCE(122); + END_STATE(); + case 90: + if (lookahead == 'n') ADVANCE(123); + END_STATE(); + case 91: + if (lookahead == 's') ADVANCE(124); + END_STATE(); + case 92: + if (lookahead == 'u') ADVANCE(125); + END_STATE(); + case 93: + if (lookahead == 'u') ADVANCE(126); + END_STATE(); + case 94: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 95: + if (lookahead == 'e') ADVANCE(127); + END_STATE(); + case 96: + if (lookahead == 'l') ADVANCE(128); + END_STATE(); + case 97: + if (lookahead == 'h') ADVANCE(129); + END_STATE(); + case 98: + if (lookahead == 'l') ADVANCE(130); + END_STATE(); + case 99: + if (lookahead == 'e') ADVANCE(131); + END_STATE(); + case 100: + ACCEPT_TOKEN(sym_none); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 102: + if (lookahead == 't') ADVANCE(132); + END_STATE(); + case 103: + if (lookahead == 'r') ADVANCE(133); + END_STATE(); + case 104: + if (lookahead == 'c') ADVANCE(134); + END_STATE(); + case 105: + if (lookahead == 't') ADVANCE(135); + END_STATE(); + case 106: + if (lookahead == 'k') ADVANCE(136); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 108: + if (lookahead == 's') ADVANCE(137); + END_STATE(); + case 109: + if (lookahead == 'a') ADVANCE(138); + if (lookahead == 'i') ADVANCE(139); + END_STATE(); + case 110: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 112: + if (lookahead == 'p') ADVANCE(140); + END_STATE(); + case 113: + ACCEPT_TOKEN(anon_sym_exec); + END_STATE(); + case 114: + if (lookahead == 's') ADVANCE(141); + END_STATE(); + case 115: + if (lookahead == 'l') ADVANCE(142); + END_STATE(); + case 116: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 117: + if (lookahead == 'a') ADVANCE(143); + END_STATE(); + case 118: + if (lookahead == 'r') ADVANCE(144); + END_STATE(); + case 119: + if (lookahead == 'd') ADVANCE(145); + END_STATE(); + case 120: + if (lookahead == 'h') ADVANCE(146); + END_STATE(); + case 121: + if (lookahead == 'o') ADVANCE(147); + END_STATE(); + case 122: + ACCEPT_TOKEN(anon_sym_pass); + END_STATE(); + case 123: + if (lookahead == 't') ADVANCE(148); + END_STATE(); + case 124: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 125: + if (lookahead == 'r') ADVANCE(150); + END_STATE(); + case 126: + if (lookahead == 'c') ADVANCE(151); + END_STATE(); + case 127: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 128: + if (lookahead == 'e') ADVANCE(152); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 130: + if (lookahead == 'd') ADVANCE(153); + END_STATE(); + case 131: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 132: + if (lookahead == 'u') ADVANCE(154); + END_STATE(); + case 133: + if (lookahead == 't') ADVANCE(155); + END_STATE(); + case 134: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 135: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 136: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 137: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 138: + if (lookahead == 'i') ADVANCE(156); + END_STATE(); + case 139: + if (lookahead == 'n') ADVANCE(157); + END_STATE(); + case 140: + if (lookahead == 't') ADVANCE(158); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_fails); + END_STATE(); + case 142: + if (lookahead == 'l') ADVANCE(159); + END_STATE(); + case 143: + if (lookahead == 'l') ADVANCE(160); + END_STATE(); + case 144: + if (lookahead == 't') ADVANCE(161); + END_STATE(); + case 145: + if (lookahead == 'a') ADVANCE(162); + END_STATE(); + case 146: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 147: + if (lookahead == 'c') ADVANCE(163); + END_STATE(); + case 148: + ACCEPT_TOKEN(anon_sym_print); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_raise); + END_STATE(); + case 150: + if (lookahead == 'n') ADVANCE(164); + END_STATE(); + case 151: + if (lookahead == 't') ADVANCE(165); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 154: + if (lookahead == 'r') ADVANCE(166); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_assert); + if (lookahead == '_') ADVANCE(167); + END_STATE(); + case 156: + if (lookahead == 'n') ADVANCE(168); + END_STATE(); + case 157: + if (lookahead == 'u') ADVANCE(169); + END_STATE(); + case 158: + ACCEPT_TOKEN(anon_sym_except); + END_STATE(); + case 159: + if (lookahead == 'y') ADVANCE(170); + END_STATE(); + case 160: + ACCEPT_TOKEN(anon_sym_global); + END_STATE(); + case 161: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_lambda); + END_STATE(); + case 163: + if (lookahead == 'a') ADVANCE(171); + END_STATE(); + case 164: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 166: + if (lookahead == 'e') ADVANCE(172); + END_STATE(); + case 167: + ACCEPT_TOKEN(anon_sym_assert_); + if (lookahead == 'c') ADVANCE(173); + if (lookahead == 'e') ADVANCE(174); + if (lookahead == 'f') ADVANCE(175); + if (lookahead == 'n') ADVANCE(176); + END_STATE(); + case 168: + if (lookahead == 's') ADVANCE(177); + END_STATE(); + case 169: + if (lookahead == 'e') ADVANCE(178); + END_STATE(); + case 170: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 171: + if (lookahead == 'l') ADVANCE(179); + END_STATE(); + case 172: + if (lookahead == '_') ADVANCE(180); + END_STATE(); + case 173: + if (lookahead == 'o') ADVANCE(181); + END_STATE(); + case 174: + if (lookahead == 'q') ADVANCE(182); + END_STATE(); + case 175: + if (lookahead == 'a') ADVANCE(183); + END_STATE(); + case 176: + if (lookahead == 'e') ADVANCE(184); + END_STATE(); + case 177: + ACCEPT_TOKEN(anon_sym_contains); + END_STATE(); + case 178: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 179: + ACCEPT_TOKEN(anon_sym_nonlocal); + END_STATE(); + case 180: + if (lookahead == '_') ADVANCE(185); + END_STATE(); + case 181: + if (lookahead == 'n') ADVANCE(186); + END_STATE(); + case 182: + ACCEPT_TOKEN(anon_sym_assert_eq); + END_STATE(); + case 183: + if (lookahead == 'i') ADVANCE(187); + END_STATE(); + case 184: + ACCEPT_TOKEN(anon_sym_assert_ne); + END_STATE(); + case 185: + ACCEPT_TOKEN(anon_sym___future__); + END_STATE(); + case 186: + if (lookahead == 't') ADVANCE(188); + END_STATE(); + case 187: + if (lookahead == 'l') ADVANCE(189); + END_STATE(); + case 188: + if (lookahead == 'a') ADVANCE(190); + END_STATE(); + case 189: + if (lookahead == 's') ADVANCE(191); + END_STATE(); + case 190: + if (lookahead == 'i') ADVANCE(192); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_assert_fails); + END_STATE(); + case 192: + if (lookahead == 'n') ADVANCE(193); + END_STATE(); + case 193: + if (lookahead == 's') ADVANCE(194); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_assert_contains); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 52, .external_lex_state = 2}, + [2] = {.lex_state = 52, .external_lex_state = 3}, + [3] = {.lex_state = 52, .external_lex_state = 3}, + [4] = {.lex_state = 52, .external_lex_state = 3}, + [5] = {.lex_state = 52, .external_lex_state = 3}, + [6] = {.lex_state = 52, .external_lex_state = 3}, + [7] = {.lex_state = 52, .external_lex_state = 3}, + [8] = {.lex_state = 52, .external_lex_state = 3}, + [9] = {.lex_state = 52, .external_lex_state = 3}, + [10] = {.lex_state = 52, .external_lex_state = 3}, + [11] = {.lex_state = 52, .external_lex_state = 3}, + [12] = {.lex_state = 52, .external_lex_state = 3}, + [13] = {.lex_state = 52, .external_lex_state = 3}, + [14] = {.lex_state = 52, .external_lex_state = 3}, + [15] = {.lex_state = 52, .external_lex_state = 3}, + [16] = {.lex_state = 52, .external_lex_state = 3}, + [17] = {.lex_state = 52, .external_lex_state = 3}, + [18] = {.lex_state = 52, .external_lex_state = 3}, + [19] = {.lex_state = 52, .external_lex_state = 3}, + [20] = {.lex_state = 52, .external_lex_state = 3}, + [21] = {.lex_state = 52, .external_lex_state = 3}, + [22] = {.lex_state = 52, .external_lex_state = 3}, + [23] = {.lex_state = 52, .external_lex_state = 3}, + [24] = {.lex_state = 52, .external_lex_state = 3}, + [25] = {.lex_state = 52, .external_lex_state = 3}, + [26] = {.lex_state = 52, .external_lex_state = 3}, + [27] = {.lex_state = 52, .external_lex_state = 3}, + [28] = {.lex_state = 52, .external_lex_state = 3}, + [29] = {.lex_state = 52, .external_lex_state = 3}, + [30] = {.lex_state = 52, .external_lex_state = 3}, + [31] = {.lex_state = 52, .external_lex_state = 3}, + [32] = {.lex_state = 52, .external_lex_state = 3}, + [33] = {.lex_state = 52, .external_lex_state = 3}, + [34] = {.lex_state = 52, .external_lex_state = 3}, + [35] = {.lex_state = 52, .external_lex_state = 3}, + [36] = {.lex_state = 52, .external_lex_state = 3}, + [37] = {.lex_state = 52, .external_lex_state = 3}, + [38] = {.lex_state = 52, .external_lex_state = 3}, + [39] = {.lex_state = 52, .external_lex_state = 3}, + [40] = {.lex_state = 52, .external_lex_state = 3}, + [41] = {.lex_state = 52, .external_lex_state = 3}, + [42] = {.lex_state = 52, .external_lex_state = 2}, + [43] = {.lex_state = 52, .external_lex_state = 2}, + [44] = {.lex_state = 52, .external_lex_state = 3}, + [45] = {.lex_state = 52, .external_lex_state = 3}, + [46] = {.lex_state = 52, .external_lex_state = 3}, + [47] = {.lex_state = 52, .external_lex_state = 3}, + [48] = {.lex_state = 29, .external_lex_state = 4}, + [49] = {.lex_state = 29, .external_lex_state = 4}, + [50] = {.lex_state = 29, .external_lex_state = 4}, + [51] = {.lex_state = 29, .external_lex_state = 4}, + [52] = {.lex_state = 30, .external_lex_state = 5}, + [53] = {.lex_state = 30, .external_lex_state = 5}, + [54] = {.lex_state = 30, .external_lex_state = 5}, + [55] = {.lex_state = 30, .external_lex_state = 5}, + [56] = {.lex_state = 30, .external_lex_state = 5}, + [57] = {.lex_state = 30, .external_lex_state = 5}, + [58] = {.lex_state = 30, .external_lex_state = 5}, + [59] = {.lex_state = 30, .external_lex_state = 5}, + [60] = {.lex_state = 52, .external_lex_state = 5}, + [61] = {.lex_state = 52, .external_lex_state = 5}, + [62] = {.lex_state = 52, .external_lex_state = 5}, + [63] = {.lex_state = 52, .external_lex_state = 5}, + [64] = {.lex_state = 52, .external_lex_state = 5}, + [65] = {.lex_state = 52, .external_lex_state = 5}, + [66] = {.lex_state = 52, .external_lex_state = 5}, + [67] = {.lex_state = 52, .external_lex_state = 5}, + [68] = {.lex_state = 52, .external_lex_state = 5}, + [69] = {.lex_state = 52, .external_lex_state = 5}, + [70] = {.lex_state = 52, .external_lex_state = 5}, + [71] = {.lex_state = 52, .external_lex_state = 5}, + [72] = {.lex_state = 52, .external_lex_state = 5}, + [73] = {.lex_state = 52, .external_lex_state = 5}, + [74] = {.lex_state = 52, .external_lex_state = 5}, + [75] = {.lex_state = 52, .external_lex_state = 5}, + [76] = {.lex_state = 52, .external_lex_state = 5}, + [77] = {.lex_state = 52, .external_lex_state = 5}, + [78] = {.lex_state = 52, .external_lex_state = 5}, + [79] = {.lex_state = 52, .external_lex_state = 5}, + [80] = {.lex_state = 52, .external_lex_state = 5}, + [81] = {.lex_state = 52, .external_lex_state = 5}, + [82] = {.lex_state = 52, .external_lex_state = 5}, + [83] = {.lex_state = 52, .external_lex_state = 5}, + [84] = {.lex_state = 52, .external_lex_state = 5}, + [85] = {.lex_state = 52, .external_lex_state = 5}, + [86] = {.lex_state = 52, .external_lex_state = 5}, + [87] = {.lex_state = 52, .external_lex_state = 5}, + [88] = {.lex_state = 52, .external_lex_state = 5}, + [89] = {.lex_state = 52, .external_lex_state = 5}, + [90] = {.lex_state = 52, .external_lex_state = 5}, + [91] = {.lex_state = 52, .external_lex_state = 5}, + [92] = {.lex_state = 52, .external_lex_state = 4}, + [93] = {.lex_state = 52, .external_lex_state = 4}, + [94] = {.lex_state = 52, .external_lex_state = 4}, + [95] = {.lex_state = 52, .external_lex_state = 4}, + [96] = {.lex_state = 52, .external_lex_state = 4}, + [97] = {.lex_state = 52, .external_lex_state = 4}, + [98] = {.lex_state = 52, .external_lex_state = 2}, + [99] = {.lex_state = 31, .external_lex_state = 4}, + [100] = {.lex_state = 31, .external_lex_state = 4}, + [101] = {.lex_state = 52, .external_lex_state = 2}, + [102] = {.lex_state = 30, .external_lex_state = 6}, + [103] = {.lex_state = 52, .external_lex_state = 7}, + [104] = {.lex_state = 52, .external_lex_state = 7}, + [105] = {.lex_state = 52, .external_lex_state = 7}, + [106] = {.lex_state = 52, .external_lex_state = 7}, + [107] = {.lex_state = 52, .external_lex_state = 8}, + [108] = {.lex_state = 52, .external_lex_state = 7}, + [109] = {.lex_state = 52, .external_lex_state = 8}, + [110] = {.lex_state = 30, .external_lex_state = 6}, + [111] = {.lex_state = 52, .external_lex_state = 7}, + [112] = {.lex_state = 52, .external_lex_state = 2}, + [113] = {.lex_state = 52, .external_lex_state = 8}, + [114] = {.lex_state = 52, .external_lex_state = 7}, + [115] = {.lex_state = 30, .external_lex_state = 6}, + [116] = {.lex_state = 52, .external_lex_state = 8}, + [117] = {.lex_state = 30, .external_lex_state = 6}, + [118] = {.lex_state = 30, .external_lex_state = 6}, + [119] = {.lex_state = 52, .external_lex_state = 8}, + [120] = {.lex_state = 30, .external_lex_state = 6}, + [121] = {.lex_state = 30, .external_lex_state = 6}, + [122] = {.lex_state = 52, .external_lex_state = 7}, + [123] = {.lex_state = 52, .external_lex_state = 7}, + [124] = {.lex_state = 52, .external_lex_state = 8}, + [125] = {.lex_state = 52, .external_lex_state = 8}, + [126] = {.lex_state = 52, .external_lex_state = 7}, + [127] = {.lex_state = 52, .external_lex_state = 2}, + [128] = {.lex_state = 52, .external_lex_state = 8}, + [129] = {.lex_state = 52, .external_lex_state = 8}, + [130] = {.lex_state = 52, .external_lex_state = 7}, + [131] = {.lex_state = 52, .external_lex_state = 8}, + [132] = {.lex_state = 52, .external_lex_state = 8}, + [133] = {.lex_state = 30, .external_lex_state = 2}, + [134] = {.lex_state = 30, .external_lex_state = 2}, + [135] = {.lex_state = 30, .external_lex_state = 2}, + [136] = {.lex_state = 30, .external_lex_state = 2}, + [137] = {.lex_state = 30, .external_lex_state = 7}, + [138] = {.lex_state = 30, .external_lex_state = 7}, + [139] = {.lex_state = 30, .external_lex_state = 2}, + [140] = {.lex_state = 31, .external_lex_state = 2}, + [141] = {.lex_state = 30, .external_lex_state = 2}, + [142] = {.lex_state = 30, .external_lex_state = 2}, + [143] = {.lex_state = 30, .external_lex_state = 7}, + [144] = {.lex_state = 30, .external_lex_state = 2}, + [145] = {.lex_state = 30, .external_lex_state = 2}, + [146] = {.lex_state = 30, .external_lex_state = 2}, + [147] = {.lex_state = 30, .external_lex_state = 7}, + [148] = {.lex_state = 30, .external_lex_state = 7}, + [149] = {.lex_state = 31, .external_lex_state = 2}, + [150] = {.lex_state = 30, .external_lex_state = 7}, + [151] = {.lex_state = 30, .external_lex_state = 2}, + [152] = {.lex_state = 30, .external_lex_state = 2}, + [153] = {.lex_state = 30, .external_lex_state = 2}, + [154] = {.lex_state = 30, .external_lex_state = 2}, + [155] = {.lex_state = 30, .external_lex_state = 2}, + [156] = {.lex_state = 30, .external_lex_state = 2}, + [157] = {.lex_state = 30, .external_lex_state = 7}, + [158] = {.lex_state = 30, .external_lex_state = 2}, + [159] = {.lex_state = 30, .external_lex_state = 2}, + [160] = {.lex_state = 30, .external_lex_state = 2}, + [161] = {.lex_state = 30, .external_lex_state = 2}, + [162] = {.lex_state = 30, .external_lex_state = 2}, + [163] = {.lex_state = 30, .external_lex_state = 2}, + [164] = {.lex_state = 30, .external_lex_state = 2}, + [165] = {.lex_state = 30, .external_lex_state = 2}, + [166] = {.lex_state = 30, .external_lex_state = 7}, + [167] = {.lex_state = 30, .external_lex_state = 7}, + [168] = {.lex_state = 30, .external_lex_state = 7}, + [169] = {.lex_state = 30, .external_lex_state = 7}, + [170] = {.lex_state = 30, .external_lex_state = 7}, + [171] = {.lex_state = 30, .external_lex_state = 7}, + [172] = {.lex_state = 30, .external_lex_state = 7}, + [173] = {.lex_state = 30, .external_lex_state = 7}, + [174] = {.lex_state = 30, .external_lex_state = 7}, + [175] = {.lex_state = 30, .external_lex_state = 7}, + [176] = {.lex_state = 30, .external_lex_state = 7}, + [177] = {.lex_state = 30, .external_lex_state = 7}, + [178] = {.lex_state = 52, .external_lex_state = 2}, + [179] = {.lex_state = 30, .external_lex_state = 7}, + [180] = {.lex_state = 30, .external_lex_state = 7}, + [181] = {.lex_state = 30, .external_lex_state = 7}, + [182] = {.lex_state = 52, .external_lex_state = 2}, + [183] = {.lex_state = 30, .external_lex_state = 7}, + [184] = {.lex_state = 30, .external_lex_state = 7}, + [185] = {.lex_state = 30, .external_lex_state = 7}, + [186] = {.lex_state = 30, .external_lex_state = 7}, + [187] = {.lex_state = 30, .external_lex_state = 7}, + [188] = {.lex_state = 30, .external_lex_state = 7}, + [189] = {.lex_state = 30, .external_lex_state = 7}, + [190] = {.lex_state = 30, .external_lex_state = 7}, + [191] = {.lex_state = 30, .external_lex_state = 7}, + [192] = {.lex_state = 30, .external_lex_state = 7}, + [193] = {.lex_state = 30, .external_lex_state = 7}, + [194] = {.lex_state = 30, .external_lex_state = 7}, + [195] = {.lex_state = 30, .external_lex_state = 7}, + [196] = {.lex_state = 52, .external_lex_state = 7}, + [197] = {.lex_state = 52, .external_lex_state = 8}, + [198] = {.lex_state = 52, .external_lex_state = 8}, + [199] = {.lex_state = 52, .external_lex_state = 6}, + [200] = {.lex_state = 52, .external_lex_state = 6}, + [201] = {.lex_state = 52, .external_lex_state = 6}, + [202] = {.lex_state = 52, .external_lex_state = 6}, + [203] = {.lex_state = 30, .external_lex_state = 2}, + [204] = {.lex_state = 52, .external_lex_state = 8}, + [205] = {.lex_state = 52, .external_lex_state = 8}, + [206] = {.lex_state = 52, .external_lex_state = 8}, + [207] = {.lex_state = 30, .external_lex_state = 6}, + [208] = {.lex_state = 30, .external_lex_state = 6}, + [209] = {.lex_state = 30, .external_lex_state = 6}, + [210] = {.lex_state = 52, .external_lex_state = 6}, + [211] = {.lex_state = 30, .external_lex_state = 6}, + [212] = {.lex_state = 52, .external_lex_state = 7}, + [213] = {.lex_state = 52, .external_lex_state = 8}, + [214] = {.lex_state = 30, .external_lex_state = 6}, + [215] = {.lex_state = 52, .external_lex_state = 7}, + [216] = {.lex_state = 52, .external_lex_state = 6}, + [217] = {.lex_state = 52, .external_lex_state = 7}, + [218] = {.lex_state = 30, .external_lex_state = 6}, + [219] = {.lex_state = 52, .external_lex_state = 8}, + [220] = {.lex_state = 52, .external_lex_state = 7}, + [221] = {.lex_state = 52, .external_lex_state = 8}, + [222] = {.lex_state = 52, .external_lex_state = 7}, + [223] = {.lex_state = 52, .external_lex_state = 7}, + [224] = {.lex_state = 52, .external_lex_state = 8}, + [225] = {.lex_state = 52, .external_lex_state = 7}, + [226] = {.lex_state = 30, .external_lex_state = 6}, + [227] = {.lex_state = 30, .external_lex_state = 6}, + [228] = {.lex_state = 30, .external_lex_state = 6}, + [229] = {.lex_state = 52, .external_lex_state = 7}, + [230] = {.lex_state = 30, .external_lex_state = 6}, + [231] = {.lex_state = 30, .external_lex_state = 6}, + [232] = {.lex_state = 52, .external_lex_state = 7}, + [233] = {.lex_state = 52, .external_lex_state = 8}, + [234] = {.lex_state = 30, .external_lex_state = 6}, + [235] = {.lex_state = 30, .external_lex_state = 6}, + [236] = {.lex_state = 52, .external_lex_state = 7}, + [237] = {.lex_state = 52, .external_lex_state = 7}, + [238] = {.lex_state = 52, .external_lex_state = 7}, + [239] = {.lex_state = 52, .external_lex_state = 8}, + [240] = {.lex_state = 30, .external_lex_state = 6}, + [241] = {.lex_state = 52, .external_lex_state = 8}, + [242] = {.lex_state = 52, .external_lex_state = 2}, + [243] = {.lex_state = 52, .external_lex_state = 8}, + [244] = {.lex_state = 52, .external_lex_state = 8}, + [245] = {.lex_state = 52, .external_lex_state = 8}, + [246] = {.lex_state = 52, .external_lex_state = 8}, + [247] = {.lex_state = 52, .external_lex_state = 8}, + [248] = {.lex_state = 30, .external_lex_state = 2}, + [249] = {.lex_state = 52, .external_lex_state = 8}, + [250] = {.lex_state = 52, .external_lex_state = 8}, + [251] = {.lex_state = 52, .external_lex_state = 8}, + [252] = {.lex_state = 52, .external_lex_state = 8}, + [253] = {.lex_state = 52, .external_lex_state = 8}, + [254] = {.lex_state = 52, .external_lex_state = 8}, + [255] = {.lex_state = 52, .external_lex_state = 8}, + [256] = {.lex_state = 52, .external_lex_state = 6}, + [257] = {.lex_state = 52, .external_lex_state = 8}, + [258] = {.lex_state = 52, .external_lex_state = 8}, + [259] = {.lex_state = 52, .external_lex_state = 8}, + [260] = {.lex_state = 52, .external_lex_state = 6}, + [261] = {.lex_state = 52, .external_lex_state = 8}, + [262] = {.lex_state = 52, .external_lex_state = 8}, + [263] = {.lex_state = 52, .external_lex_state = 8}, + [264] = {.lex_state = 52, .external_lex_state = 8}, + [265] = {.lex_state = 52, .external_lex_state = 8}, + [266] = {.lex_state = 52, .external_lex_state = 8}, + [267] = {.lex_state = 52, .external_lex_state = 8}, + [268] = {.lex_state = 52, .external_lex_state = 8}, + [269] = {.lex_state = 52, .external_lex_state = 8}, + [270] = {.lex_state = 52, .external_lex_state = 8}, + [271] = {.lex_state = 52, .external_lex_state = 8}, + [272] = {.lex_state = 52, .external_lex_state = 8}, + [273] = {.lex_state = 52, .external_lex_state = 8}, + [274] = {.lex_state = 52, .external_lex_state = 8}, + [275] = {.lex_state = 52, .external_lex_state = 7}, + [276] = {.lex_state = 52, .external_lex_state = 7}, + [277] = {.lex_state = 52, .external_lex_state = 2}, + [278] = {.lex_state = 52, .external_lex_state = 8}, + [279] = {.lex_state = 52, .external_lex_state = 4}, + [280] = {.lex_state = 52, .external_lex_state = 4}, + [281] = {.lex_state = 52, .external_lex_state = 2}, + [282] = {.lex_state = 52, .external_lex_state = 2}, + [283] = {.lex_state = 52, .external_lex_state = 7}, + [284] = {.lex_state = 52, .external_lex_state = 2}, + [285] = {.lex_state = 52, .external_lex_state = 4}, + [286] = {.lex_state = 52, .external_lex_state = 2}, + [287] = {.lex_state = 52, .external_lex_state = 2}, + [288] = {.lex_state = 52, .external_lex_state = 2}, + [289] = {.lex_state = 52, .external_lex_state = 4}, + [290] = {.lex_state = 52, .external_lex_state = 2}, + [291] = {.lex_state = 52, .external_lex_state = 4}, + [292] = {.lex_state = 52, .external_lex_state = 2}, + [293] = {.lex_state = 52, .external_lex_state = 4}, + [294] = {.lex_state = 52, .external_lex_state = 2}, + [295] = {.lex_state = 52, .external_lex_state = 2}, + [296] = {.lex_state = 52, .external_lex_state = 2}, + [297] = {.lex_state = 52, .external_lex_state = 2}, + [298] = {.lex_state = 52, .external_lex_state = 2}, + [299] = {.lex_state = 52, .external_lex_state = 2}, + [300] = {.lex_state = 52, .external_lex_state = 8}, + [301] = {.lex_state = 52, .external_lex_state = 4}, + [302] = {.lex_state = 52, .external_lex_state = 2}, + [303] = {.lex_state = 52, .external_lex_state = 8}, + [304] = {.lex_state = 52, .external_lex_state = 2}, + [305] = {.lex_state = 52, .external_lex_state = 2}, + [306] = {.lex_state = 52, .external_lex_state = 8}, + [307] = {.lex_state = 52, .external_lex_state = 4}, + [308] = {.lex_state = 52, .external_lex_state = 4}, + [309] = {.lex_state = 52, .external_lex_state = 2}, + [310] = {.lex_state = 52, .external_lex_state = 2}, + [311] = {.lex_state = 52, .external_lex_state = 2}, + [312] = {.lex_state = 52, .external_lex_state = 2}, + [313] = {.lex_state = 52, .external_lex_state = 7}, + [314] = {.lex_state = 52, .external_lex_state = 2}, + [315] = {.lex_state = 52, .external_lex_state = 2}, + [316] = {.lex_state = 52, .external_lex_state = 2}, + [317] = {.lex_state = 52, .external_lex_state = 2}, + [318] = {.lex_state = 32, .external_lex_state = 4}, + [319] = {.lex_state = 52, .external_lex_state = 2}, + [320] = {.lex_state = 52, .external_lex_state = 2}, + [321] = {.lex_state = 32, .external_lex_state = 4}, + [322] = {.lex_state = 52, .external_lex_state = 2}, + [323] = {.lex_state = 52, .external_lex_state = 2}, + [324] = {.lex_state = 32, .external_lex_state = 9}, + [325] = {.lex_state = 32, .external_lex_state = 9}, + [326] = {.lex_state = 52, .external_lex_state = 2}, + [327] = {.lex_state = 52, .external_lex_state = 2}, + [328] = {.lex_state = 52, .external_lex_state = 2}, + [329] = {.lex_state = 52, .external_lex_state = 2}, + [330] = {.lex_state = 52, .external_lex_state = 2}, + [331] = {.lex_state = 52, .external_lex_state = 2}, + [332] = {.lex_state = 52, .external_lex_state = 2}, + [333] = {.lex_state = 52, .external_lex_state = 2}, + [334] = {.lex_state = 52, .external_lex_state = 2}, + [335] = {.lex_state = 52, .external_lex_state = 2}, + [336] = {.lex_state = 52, .external_lex_state = 2}, + [337] = {.lex_state = 52, .external_lex_state = 2}, + [338] = {.lex_state = 52, .external_lex_state = 2}, + [339] = {.lex_state = 52, .external_lex_state = 2}, + [340] = {.lex_state = 52, .external_lex_state = 2}, + [341] = {.lex_state = 52, .external_lex_state = 2}, + [342] = {.lex_state = 52, .external_lex_state = 2}, + [343] = {.lex_state = 52, .external_lex_state = 2}, + [344] = {.lex_state = 52, .external_lex_state = 2}, + [345] = {.lex_state = 52, .external_lex_state = 2}, + [346] = {.lex_state = 52, .external_lex_state = 2}, + [347] = {.lex_state = 52, .external_lex_state = 2}, + [348] = {.lex_state = 32, .external_lex_state = 9}, + [349] = {.lex_state = 52, .external_lex_state = 2}, + [350] = {.lex_state = 52, .external_lex_state = 2}, + [351] = {.lex_state = 52, .external_lex_state = 2}, + [352] = {.lex_state = 52, .external_lex_state = 2}, + [353] = {.lex_state = 52, .external_lex_state = 2}, + [354] = {.lex_state = 52, .external_lex_state = 2}, + [355] = {.lex_state = 52, .external_lex_state = 2}, + [356] = {.lex_state = 52, .external_lex_state = 2}, + [357] = {.lex_state = 52, .external_lex_state = 2}, + [358] = {.lex_state = 52, .external_lex_state = 2}, + [359] = {.lex_state = 52, .external_lex_state = 2}, + [360] = {.lex_state = 52, .external_lex_state = 2}, + [361] = {.lex_state = 52, .external_lex_state = 2}, + [362] = {.lex_state = 52, .external_lex_state = 2}, + [363] = {.lex_state = 52, .external_lex_state = 2}, + [364] = {.lex_state = 52, .external_lex_state = 2}, + [365] = {.lex_state = 52, .external_lex_state = 2}, + [366] = {.lex_state = 52, .external_lex_state = 2}, + [367] = {.lex_state = 52, .external_lex_state = 2}, + [368] = {.lex_state = 52, .external_lex_state = 2}, + [369] = {.lex_state = 52, .external_lex_state = 2}, + [370] = {.lex_state = 52, .external_lex_state = 2}, + [371] = {.lex_state = 52, .external_lex_state = 2}, + [372] = {.lex_state = 52, .external_lex_state = 2}, + [373] = {.lex_state = 52, .external_lex_state = 2}, + [374] = {.lex_state = 52, .external_lex_state = 2}, + [375] = {.lex_state = 52, .external_lex_state = 2}, + [376] = {.lex_state = 52, .external_lex_state = 2}, + [377] = {.lex_state = 52, .external_lex_state = 2}, + [378] = {.lex_state = 52, .external_lex_state = 2}, + [379] = {.lex_state = 52, .external_lex_state = 2}, + [380] = {.lex_state = 52, .external_lex_state = 2}, + [381] = {.lex_state = 52, .external_lex_state = 2}, + [382] = {.lex_state = 52, .external_lex_state = 2}, + [383] = {.lex_state = 52, .external_lex_state = 2}, + [384] = {.lex_state = 52, .external_lex_state = 2}, + [385] = {.lex_state = 52, .external_lex_state = 2}, + [386] = {.lex_state = 52, .external_lex_state = 2}, + [387] = {.lex_state = 52, .external_lex_state = 2}, + [388] = {.lex_state = 52, .external_lex_state = 2}, + [389] = {.lex_state = 52, .external_lex_state = 2}, + [390] = {.lex_state = 52, .external_lex_state = 2}, + [391] = {.lex_state = 52, .external_lex_state = 2}, + [392] = {.lex_state = 52, .external_lex_state = 2}, + [393] = {.lex_state = 52, .external_lex_state = 2}, + [394] = {.lex_state = 52, .external_lex_state = 2}, + [395] = {.lex_state = 52, .external_lex_state = 2}, + [396] = {.lex_state = 52, .external_lex_state = 2}, + [397] = {.lex_state = 52, .external_lex_state = 2}, + [398] = {.lex_state = 52, .external_lex_state = 2}, + [399] = {.lex_state = 52, .external_lex_state = 2}, + [400] = {.lex_state = 52, .external_lex_state = 2}, + [401] = {.lex_state = 52, .external_lex_state = 2}, + [402] = {.lex_state = 52, .external_lex_state = 2}, + [403] = {.lex_state = 52, .external_lex_state = 2}, + [404] = {.lex_state = 52, .external_lex_state = 2}, + [405] = {.lex_state = 52, .external_lex_state = 2}, + [406] = {.lex_state = 52, .external_lex_state = 2}, + [407] = {.lex_state = 52, .external_lex_state = 2}, + [408] = {.lex_state = 52, .external_lex_state = 2}, + [409] = {.lex_state = 52, .external_lex_state = 2}, + [410] = {.lex_state = 52, .external_lex_state = 2}, + [411] = {.lex_state = 52, .external_lex_state = 2}, + [412] = {.lex_state = 52, .external_lex_state = 2}, + [413] = {.lex_state = 52, .external_lex_state = 2}, + [414] = {.lex_state = 52, .external_lex_state = 2}, + [415] = {.lex_state = 52, .external_lex_state = 2}, + [416] = {.lex_state = 52, .external_lex_state = 2}, + [417] = {.lex_state = 52, .external_lex_state = 2}, + [418] = {.lex_state = 52, .external_lex_state = 2}, + [419] = {.lex_state = 52, .external_lex_state = 2}, + [420] = {.lex_state = 52, .external_lex_state = 2}, + [421] = {.lex_state = 52, .external_lex_state = 2}, + [422] = {.lex_state = 52, .external_lex_state = 2}, + [423] = {.lex_state = 52, .external_lex_state = 2}, + [424] = {.lex_state = 52, .external_lex_state = 2}, + [425] = {.lex_state = 52, .external_lex_state = 2}, + [426] = {.lex_state = 52, .external_lex_state = 2}, + [427] = {.lex_state = 52, .external_lex_state = 2}, + [428] = {.lex_state = 52, .external_lex_state = 2}, + [429] = {.lex_state = 52, .external_lex_state = 2}, + [430] = {.lex_state = 52, .external_lex_state = 2}, + [431] = {.lex_state = 52, .external_lex_state = 2}, + [432] = {.lex_state = 52, .external_lex_state = 2}, + [433] = {.lex_state = 52, .external_lex_state = 2}, + [434] = {.lex_state = 52, .external_lex_state = 2}, + [435] = {.lex_state = 52, .external_lex_state = 2}, + [436] = {.lex_state = 52, .external_lex_state = 2}, + [437] = {.lex_state = 52, .external_lex_state = 2}, + [438] = {.lex_state = 52, .external_lex_state = 2}, + [439] = {.lex_state = 52, .external_lex_state = 2}, + [440] = {.lex_state = 52, .external_lex_state = 2}, + [441] = {.lex_state = 32, .external_lex_state = 9}, + [442] = {.lex_state = 32, .external_lex_state = 9}, + [443] = {.lex_state = 32, .external_lex_state = 9}, + [444] = {.lex_state = 32, .external_lex_state = 9}, + [445] = {.lex_state = 32, .external_lex_state = 9}, + [446] = {.lex_state = 33, .external_lex_state = 9}, + [447] = {.lex_state = 52, .external_lex_state = 2}, + [448] = {.lex_state = 33, .external_lex_state = 9}, + [449] = {.lex_state = 33, .external_lex_state = 9}, + [450] = {.lex_state = 52, .external_lex_state = 2}, + [451] = {.lex_state = 52, .external_lex_state = 3}, + [452] = {.lex_state = 33, .external_lex_state = 9}, + [453] = {.lex_state = 52, .external_lex_state = 3}, + [454] = {.lex_state = 33, .external_lex_state = 9}, + [455] = {.lex_state = 33, .external_lex_state = 9}, + [456] = {.lex_state = 33, .external_lex_state = 9}, + [457] = {.lex_state = 33, .external_lex_state = 9}, + [458] = {.lex_state = 33, .external_lex_state = 9}, + [459] = {.lex_state = 33, .external_lex_state = 9}, + [460] = {.lex_state = 33, .external_lex_state = 9}, + [461] = {.lex_state = 33, .external_lex_state = 9}, + [462] = {.lex_state = 52, .external_lex_state = 2}, + [463] = {.lex_state = 52, .external_lex_state = 3}, + [464] = {.lex_state = 52, .external_lex_state = 3}, + [465] = {.lex_state = 33, .external_lex_state = 9}, + [466] = {.lex_state = 33, .external_lex_state = 9}, + [467] = {.lex_state = 33, .external_lex_state = 9}, + [468] = {.lex_state = 33, .external_lex_state = 9}, + [469] = {.lex_state = 33, .external_lex_state = 9}, + [470] = {.lex_state = 33, .external_lex_state = 9}, + [471] = {.lex_state = 52, .external_lex_state = 2}, + [472] = {.lex_state = 33, .external_lex_state = 9}, + [473] = {.lex_state = 52, .external_lex_state = 2}, + [474] = {.lex_state = 52, .external_lex_state = 3}, + [475] = {.lex_state = 52, .external_lex_state = 6}, + [476] = {.lex_state = 52, .external_lex_state = 6}, + [477] = {.lex_state = 52, .external_lex_state = 2}, + [478] = {.lex_state = 52, .external_lex_state = 2}, + [479] = {.lex_state = 52, .external_lex_state = 2}, + [480] = {.lex_state = 52, .external_lex_state = 3}, + [481] = {.lex_state = 52, .external_lex_state = 2}, + [482] = {.lex_state = 52, .external_lex_state = 2}, + [483] = {.lex_state = 52, .external_lex_state = 3}, + [484] = {.lex_state = 52, .external_lex_state = 3}, + [485] = {.lex_state = 52, .external_lex_state = 2}, + [486] = {.lex_state = 52, .external_lex_state = 3}, + [487] = {.lex_state = 52, .external_lex_state = 3}, + [488] = {.lex_state = 52, .external_lex_state = 2}, + [489] = {.lex_state = 52, .external_lex_state = 3}, + [490] = {.lex_state = 52, .external_lex_state = 3}, + [491] = {.lex_state = 52, .external_lex_state = 3}, + [492] = {.lex_state = 52, .external_lex_state = 2}, + [493] = {.lex_state = 52, .external_lex_state = 3}, + [494] = {.lex_state = 52, .external_lex_state = 3}, + [495] = {.lex_state = 52, .external_lex_state = 2}, + [496] = {.lex_state = 52, .external_lex_state = 2}, + [497] = {.lex_state = 52, .external_lex_state = 3}, + [498] = {.lex_state = 52, .external_lex_state = 3}, + [499] = {.lex_state = 52, .external_lex_state = 2}, + [500] = {.lex_state = 52, .external_lex_state = 2}, + [501] = {.lex_state = 52, .external_lex_state = 2}, + [502] = {.lex_state = 52, .external_lex_state = 2}, + [503] = {.lex_state = 52, .external_lex_state = 3}, + [504] = {.lex_state = 52, .external_lex_state = 3}, + [505] = {.lex_state = 52, .external_lex_state = 7}, + [506] = {.lex_state = 52, .external_lex_state = 7}, + [507] = {.lex_state = 52, .external_lex_state = 3}, + [508] = {.lex_state = 52, .external_lex_state = 2}, + [509] = {.lex_state = 52, .external_lex_state = 2}, + [510] = {.lex_state = 52, .external_lex_state = 2}, + [511] = {.lex_state = 52, .external_lex_state = 2}, + [512] = {.lex_state = 52, .external_lex_state = 2}, + [513] = {.lex_state = 52, .external_lex_state = 2}, + [514] = {.lex_state = 52, .external_lex_state = 7}, + [515] = {.lex_state = 52, .external_lex_state = 3}, + [516] = {.lex_state = 52, .external_lex_state = 2}, + [517] = {.lex_state = 52, .external_lex_state = 2}, + [518] = {.lex_state = 52, .external_lex_state = 3}, + [519] = {.lex_state = 52, .external_lex_state = 2}, + [520] = {.lex_state = 52, .external_lex_state = 3}, + [521] = {.lex_state = 52, .external_lex_state = 2}, + [522] = {.lex_state = 52, .external_lex_state = 3}, + [523] = {.lex_state = 52, .external_lex_state = 2}, + [524] = {.lex_state = 52, .external_lex_state = 2}, + [525] = {.lex_state = 52, .external_lex_state = 3}, + [526] = {.lex_state = 52, .external_lex_state = 2}, + [527] = {.lex_state = 52, .external_lex_state = 3}, + [528] = {.lex_state = 52, .external_lex_state = 2}, + [529] = {.lex_state = 52, .external_lex_state = 3}, + [530] = {.lex_state = 52, .external_lex_state = 3}, + [531] = {.lex_state = 52, .external_lex_state = 3}, + [532] = {.lex_state = 52, .external_lex_state = 2}, + [533] = {.lex_state = 52, .external_lex_state = 2}, + [534] = {.lex_state = 52, .external_lex_state = 3}, + [535] = {.lex_state = 52, .external_lex_state = 3}, + [536] = {.lex_state = 52, .external_lex_state = 3}, + [537] = {.lex_state = 52, .external_lex_state = 2}, + [538] = {.lex_state = 52, .external_lex_state = 2}, + [539] = {.lex_state = 52, .external_lex_state = 2}, + [540] = {.lex_state = 52, .external_lex_state = 2}, + [541] = {.lex_state = 52, .external_lex_state = 2}, + [542] = {.lex_state = 52, .external_lex_state = 2}, + [543] = {.lex_state = 52, .external_lex_state = 2}, + [544] = {.lex_state = 52, .external_lex_state = 3}, + [545] = {.lex_state = 52, .external_lex_state = 3}, + [546] = {.lex_state = 52, .external_lex_state = 3}, + [547] = {.lex_state = 52, .external_lex_state = 3}, + [548] = {.lex_state = 52, .external_lex_state = 2}, + [549] = {.lex_state = 52, .external_lex_state = 3}, + [550] = {.lex_state = 52, .external_lex_state = 3}, + [551] = {.lex_state = 52, .external_lex_state = 3}, + [552] = {.lex_state = 52, .external_lex_state = 3}, + [553] = {.lex_state = 52, .external_lex_state = 3}, + [554] = {.lex_state = 52, .external_lex_state = 2}, + [555] = {.lex_state = 52, .external_lex_state = 2}, + [556] = {.lex_state = 52, .external_lex_state = 2}, + [557] = {.lex_state = 52, .external_lex_state = 3}, + [558] = {.lex_state = 52, .external_lex_state = 2}, + [559] = {.lex_state = 52, .external_lex_state = 3}, + [560] = {.lex_state = 52, .external_lex_state = 2}, + [561] = {.lex_state = 52, .external_lex_state = 2}, + [562] = {.lex_state = 52, .external_lex_state = 2}, + [563] = {.lex_state = 52, .external_lex_state = 3}, + [564] = {.lex_state = 52, .external_lex_state = 3}, + [565] = {.lex_state = 52, .external_lex_state = 3}, + [566] = {.lex_state = 52, .external_lex_state = 8}, + [567] = {.lex_state = 52, .external_lex_state = 3}, + [568] = {.lex_state = 52, .external_lex_state = 3}, + [569] = {.lex_state = 52, .external_lex_state = 2}, + [570] = {.lex_state = 52, .external_lex_state = 2}, + [571] = {.lex_state = 52, .external_lex_state = 3}, + [572] = {.lex_state = 52, .external_lex_state = 3}, + [573] = {.lex_state = 52, .external_lex_state = 3}, + [574] = {.lex_state = 52, .external_lex_state = 2}, + [575] = {.lex_state = 52, .external_lex_state = 3}, + [576] = {.lex_state = 52, .external_lex_state = 2}, + [577] = {.lex_state = 52, .external_lex_state = 3}, + [578] = {.lex_state = 52, .external_lex_state = 3}, + [579] = {.lex_state = 52, .external_lex_state = 2}, + [580] = {.lex_state = 52, .external_lex_state = 8}, + [581] = {.lex_state = 52, .external_lex_state = 3}, + [582] = {.lex_state = 52, .external_lex_state = 2}, + [583] = {.lex_state = 52, .external_lex_state = 3}, + [584] = {.lex_state = 52, .external_lex_state = 2}, + [585] = {.lex_state = 52, .external_lex_state = 7}, + [586] = {.lex_state = 52, .external_lex_state = 2}, + [587] = {.lex_state = 52, .external_lex_state = 2}, + [588] = {.lex_state = 52, .external_lex_state = 2}, + [589] = {.lex_state = 52, .external_lex_state = 2}, + [590] = {.lex_state = 52, .external_lex_state = 2}, + [591] = {.lex_state = 52, .external_lex_state = 2}, + [592] = {.lex_state = 52, .external_lex_state = 3}, + [593] = {.lex_state = 52, .external_lex_state = 3}, + [594] = {.lex_state = 52, .external_lex_state = 2}, + [595] = {.lex_state = 52, .external_lex_state = 2}, + [596] = {.lex_state = 52, .external_lex_state = 2}, + [597] = {.lex_state = 52, .external_lex_state = 2}, + [598] = {.lex_state = 52, .external_lex_state = 2}, + [599] = {.lex_state = 52, .external_lex_state = 2}, + [600] = {.lex_state = 52, .external_lex_state = 3}, + [601] = {.lex_state = 52, .external_lex_state = 2}, + [602] = {.lex_state = 52, .external_lex_state = 2}, + [603] = {.lex_state = 52, .external_lex_state = 2}, + [604] = {.lex_state = 52, .external_lex_state = 2}, + [605] = {.lex_state = 52, .external_lex_state = 2}, + [606] = {.lex_state = 52, .external_lex_state = 2}, + [607] = {.lex_state = 52, .external_lex_state = 7}, + [608] = {.lex_state = 52, .external_lex_state = 2}, + [609] = {.lex_state = 52, .external_lex_state = 2}, + [610] = {.lex_state = 52, .external_lex_state = 2}, + [611] = {.lex_state = 52, .external_lex_state = 2}, + [612] = {.lex_state = 52, .external_lex_state = 2}, + [613] = {.lex_state = 52, .external_lex_state = 2}, + [614] = {.lex_state = 52, .external_lex_state = 2}, + [615] = {.lex_state = 52, .external_lex_state = 2}, + [616] = {.lex_state = 52, .external_lex_state = 2}, + [617] = {.lex_state = 52, .external_lex_state = 2}, + [618] = {.lex_state = 52, .external_lex_state = 2}, + [619] = {.lex_state = 52, .external_lex_state = 2}, + [620] = {.lex_state = 52, .external_lex_state = 2}, + [621] = {.lex_state = 52, .external_lex_state = 2}, + [622] = {.lex_state = 52, .external_lex_state = 2}, + [623] = {.lex_state = 52, .external_lex_state = 2}, + [624] = {.lex_state = 52, .external_lex_state = 2}, + [625] = {.lex_state = 52, .external_lex_state = 2}, + [626] = {.lex_state = 52, .external_lex_state = 2}, + [627] = {.lex_state = 52, .external_lex_state = 2}, + [628] = {.lex_state = 52, .external_lex_state = 2}, + [629] = {.lex_state = 52, .external_lex_state = 2}, + [630] = {.lex_state = 52, .external_lex_state = 2}, + [631] = {.lex_state = 52, .external_lex_state = 2}, + [632] = {.lex_state = 52, .external_lex_state = 2}, + [633] = {.lex_state = 52, .external_lex_state = 2}, + [634] = {.lex_state = 52, .external_lex_state = 2}, + [635] = {.lex_state = 52, .external_lex_state = 2}, + [636] = {.lex_state = 52, .external_lex_state = 2}, + [637] = {.lex_state = 52, .external_lex_state = 2}, + [638] = {.lex_state = 52, .external_lex_state = 2}, + [639] = {.lex_state = 52, .external_lex_state = 2}, + [640] = {.lex_state = 52, .external_lex_state = 2}, + [641] = {.lex_state = 52, .external_lex_state = 2}, + [642] = {.lex_state = 52, .external_lex_state = 2}, + [643] = {.lex_state = 52, .external_lex_state = 2}, + [644] = {.lex_state = 52, .external_lex_state = 2}, + [645] = {.lex_state = 52, .external_lex_state = 2}, + [646] = {.lex_state = 52, .external_lex_state = 2}, + [647] = {.lex_state = 52, .external_lex_state = 2}, + [648] = {.lex_state = 52, .external_lex_state = 2}, + [649] = {.lex_state = 52, .external_lex_state = 2}, + [650] = {.lex_state = 52, .external_lex_state = 2}, + [651] = {.lex_state = 52, .external_lex_state = 2}, + [652] = {.lex_state = 52, .external_lex_state = 2}, + [653] = {.lex_state = 52, .external_lex_state = 2}, + [654] = {.lex_state = 52, .external_lex_state = 2}, + [655] = {.lex_state = 52, .external_lex_state = 2}, + [656] = {.lex_state = 52, .external_lex_state = 2}, + [657] = {.lex_state = 52, .external_lex_state = 2}, + [658] = {.lex_state = 52, .external_lex_state = 2}, + [659] = {.lex_state = 52, .external_lex_state = 2}, + [660] = {.lex_state = 52, .external_lex_state = 2}, + [661] = {.lex_state = 52, .external_lex_state = 2}, + [662] = {.lex_state = 52, .external_lex_state = 2}, + [663] = {.lex_state = 52, .external_lex_state = 2}, + [664] = {.lex_state = 52, .external_lex_state = 2}, + [665] = {.lex_state = 52, .external_lex_state = 2}, + [666] = {.lex_state = 52, .external_lex_state = 2}, + [667] = {.lex_state = 52, .external_lex_state = 2}, + [668] = {.lex_state = 52, .external_lex_state = 2}, + [669] = {.lex_state = 52, .external_lex_state = 2}, + [670] = {.lex_state = 52, .external_lex_state = 2}, + [671] = {.lex_state = 52, .external_lex_state = 2}, + [672] = {.lex_state = 52, .external_lex_state = 2}, + [673] = {.lex_state = 52, .external_lex_state = 2}, + [674] = {.lex_state = 52, .external_lex_state = 2}, + [675] = {.lex_state = 52, .external_lex_state = 2}, + [676] = {.lex_state = 52, .external_lex_state = 2}, + [677] = {.lex_state = 52, .external_lex_state = 2}, + [678] = {.lex_state = 52, .external_lex_state = 2}, + [679] = {.lex_state = 52, .external_lex_state = 2}, + [680] = {.lex_state = 52, .external_lex_state = 2}, + [681] = {.lex_state = 52, .external_lex_state = 2}, + [682] = {.lex_state = 52, .external_lex_state = 2}, + [683] = {.lex_state = 52, .external_lex_state = 2}, + [684] = {.lex_state = 52, .external_lex_state = 2}, + [685] = {.lex_state = 52, .external_lex_state = 2}, + [686] = {.lex_state = 52, .external_lex_state = 2}, + [687] = {.lex_state = 52, .external_lex_state = 2}, + [688] = {.lex_state = 52, .external_lex_state = 2}, + [689] = {.lex_state = 52, .external_lex_state = 2}, + [690] = {.lex_state = 52, .external_lex_state = 2}, + [691] = {.lex_state = 52, .external_lex_state = 2}, + [692] = {.lex_state = 52, .external_lex_state = 2}, + [693] = {.lex_state = 52, .external_lex_state = 2}, + [694] = {.lex_state = 52, .external_lex_state = 2}, + [695] = {.lex_state = 52, .external_lex_state = 2}, + [696] = {.lex_state = 52, .external_lex_state = 2}, + [697] = {.lex_state = 34, .external_lex_state = 10}, + [698] = {.lex_state = 34, .external_lex_state = 10}, + [699] = {.lex_state = 34, .external_lex_state = 10}, + [700] = {.lex_state = 34, .external_lex_state = 10}, + [701] = {.lex_state = 34, .external_lex_state = 10}, + [702] = {.lex_state = 34, .external_lex_state = 10}, + [703] = {.lex_state = 34, .external_lex_state = 10}, + [704] = {.lex_state = 34, .external_lex_state = 10}, + [705] = {.lex_state = 34, .external_lex_state = 10}, + [706] = {.lex_state = 34, .external_lex_state = 9}, + [707] = {.lex_state = 34, .external_lex_state = 9}, + [708] = {.lex_state = 34, .external_lex_state = 9}, + [709] = {.lex_state = 34, .external_lex_state = 10}, + [710] = {.lex_state = 34, .external_lex_state = 10}, + [711] = {.lex_state = 34, .external_lex_state = 9}, + [712] = {.lex_state = 34, .external_lex_state = 10}, + [713] = {.lex_state = 36, .external_lex_state = 11}, + [714] = {.lex_state = 34, .external_lex_state = 9}, + [715] = {.lex_state = 34, .external_lex_state = 9}, + [716] = {.lex_state = 34, .external_lex_state = 9}, + [717] = {.lex_state = 34, .external_lex_state = 9}, + [718] = {.lex_state = 34, .external_lex_state = 9}, + [719] = {.lex_state = 34, .external_lex_state = 10}, + [720] = {.lex_state = 34, .external_lex_state = 10}, + [721] = {.lex_state = 34, .external_lex_state = 9}, + [722] = {.lex_state = 34, .external_lex_state = 10}, + [723] = {.lex_state = 34, .external_lex_state = 10}, + [724] = {.lex_state = 34, .external_lex_state = 9}, + [725] = {.lex_state = 34, .external_lex_state = 10}, + [726] = {.lex_state = 34, .external_lex_state = 10}, + [727] = {.lex_state = 34, .external_lex_state = 10}, + [728] = {.lex_state = 34, .external_lex_state = 12}, + [729] = {.lex_state = 36, .external_lex_state = 10}, + [730] = {.lex_state = 36, .external_lex_state = 9}, + [731] = {.lex_state = 36, .external_lex_state = 10}, + [732] = {.lex_state = 36, .external_lex_state = 10}, + [733] = {.lex_state = 36, .external_lex_state = 10}, + [734] = {.lex_state = 36, .external_lex_state = 10}, + [735] = {.lex_state = 36, .external_lex_state = 10}, + [736] = {.lex_state = 34, .external_lex_state = 13}, + [737] = {.lex_state = 34, .external_lex_state = 10}, + [738] = {.lex_state = 36, .external_lex_state = 10}, + [739] = {.lex_state = 36, .external_lex_state = 10}, + [740] = {.lex_state = 34, .external_lex_state = 10}, + [741] = {.lex_state = 36, .external_lex_state = 10}, + [742] = {.lex_state = 36, .external_lex_state = 10}, + [743] = {.lex_state = 34, .external_lex_state = 10}, + [744] = {.lex_state = 34, .external_lex_state = 10}, + [745] = {.lex_state = 34, .external_lex_state = 10}, + [746] = {.lex_state = 34, .external_lex_state = 10}, + [747] = {.lex_state = 36, .external_lex_state = 10}, + [748] = {.lex_state = 34, .external_lex_state = 10}, + [749] = {.lex_state = 34, .external_lex_state = 10}, + [750] = {.lex_state = 34, .external_lex_state = 10}, + [751] = {.lex_state = 34, .external_lex_state = 10}, + [752] = {.lex_state = 34, .external_lex_state = 9}, + [753] = {.lex_state = 36, .external_lex_state = 10}, + [754] = {.lex_state = 34, .external_lex_state = 11}, + [755] = {.lex_state = 36, .external_lex_state = 9}, + [756] = {.lex_state = 36, .external_lex_state = 9}, + [757] = {.lex_state = 36, .external_lex_state = 9}, + [758] = {.lex_state = 34, .external_lex_state = 10}, + [759] = {.lex_state = 34, .external_lex_state = 9}, + [760] = {.lex_state = 34, .external_lex_state = 10}, + [761] = {.lex_state = 34, .external_lex_state = 10}, + [762] = {.lex_state = 34, .external_lex_state = 10}, + [763] = {.lex_state = 34, .external_lex_state = 10}, + [764] = {.lex_state = 34, .external_lex_state = 10}, + [765] = {.lex_state = 34, .external_lex_state = 10}, + [766] = {.lex_state = 34, .external_lex_state = 10}, + [767] = {.lex_state = 34, .external_lex_state = 10}, + [768] = {.lex_state = 34, .external_lex_state = 10}, + [769] = {.lex_state = 34, .external_lex_state = 10}, + [770] = {.lex_state = 34, .external_lex_state = 10}, + [771] = {.lex_state = 34, .external_lex_state = 11}, + [772] = {.lex_state = 34, .external_lex_state = 11}, + [773] = {.lex_state = 34, .external_lex_state = 10}, + [774] = {.lex_state = 34, .external_lex_state = 10}, + [775] = {.lex_state = 34, .external_lex_state = 10}, + [776] = {.lex_state = 34, .external_lex_state = 10}, + [777] = {.lex_state = 34, .external_lex_state = 10}, + [778] = {.lex_state = 34, .external_lex_state = 10}, + [779] = {.lex_state = 33, .external_lex_state = 9}, + [780] = {.lex_state = 33, .external_lex_state = 9}, + [781] = {.lex_state = 34, .external_lex_state = 10}, + [782] = {.lex_state = 34, .external_lex_state = 10}, + [783] = {.lex_state = 34, .external_lex_state = 9}, + [784] = {.lex_state = 34, .external_lex_state = 9}, + [785] = {.lex_state = 34, .external_lex_state = 10}, + [786] = {.lex_state = 34, .external_lex_state = 10}, + [787] = {.lex_state = 34, .external_lex_state = 10}, + [788] = {.lex_state = 34, .external_lex_state = 10}, + [789] = {.lex_state = 34, .external_lex_state = 10}, + [790] = {.lex_state = 34, .external_lex_state = 10}, + [791] = {.lex_state = 34, .external_lex_state = 10}, + [792] = {.lex_state = 34, .external_lex_state = 10}, + [793] = {.lex_state = 34, .external_lex_state = 10}, + [794] = {.lex_state = 34, .external_lex_state = 9}, + [795] = {.lex_state = 34, .external_lex_state = 10}, + [796] = {.lex_state = 34, .external_lex_state = 10}, + [797] = {.lex_state = 34, .external_lex_state = 10}, + [798] = {.lex_state = 34, .external_lex_state = 10}, + [799] = {.lex_state = 34, .external_lex_state = 10}, + [800] = {.lex_state = 34, .external_lex_state = 10}, + [801] = {.lex_state = 34, .external_lex_state = 11}, + [802] = {.lex_state = 34, .external_lex_state = 11}, + [803] = {.lex_state = 34, .external_lex_state = 11}, + [804] = {.lex_state = 34, .external_lex_state = 11}, + [805] = {.lex_state = 34, .external_lex_state = 11}, + [806] = {.lex_state = 34, .external_lex_state = 11}, + [807] = {.lex_state = 34, .external_lex_state = 11}, + [808] = {.lex_state = 34, .external_lex_state = 10}, + [809] = {.lex_state = 34, .external_lex_state = 10}, + [810] = {.lex_state = 34, .external_lex_state = 10}, + [811] = {.lex_state = 34, .external_lex_state = 10}, + [812] = {.lex_state = 34, .external_lex_state = 10}, + [813] = {.lex_state = 34, .external_lex_state = 10}, + [814] = {.lex_state = 34, .external_lex_state = 10}, + [815] = {.lex_state = 34, .external_lex_state = 10}, + [816] = {.lex_state = 34, .external_lex_state = 10}, + [817] = {.lex_state = 34, .external_lex_state = 10}, + [818] = {.lex_state = 34, .external_lex_state = 10}, + [819] = {.lex_state = 36, .external_lex_state = 12}, + [820] = {.lex_state = 34, .external_lex_state = 10}, + [821] = {.lex_state = 34, .external_lex_state = 10}, + [822] = {.lex_state = 34, .external_lex_state = 10}, + [823] = {.lex_state = 34, .external_lex_state = 10}, + [824] = {.lex_state = 34, .external_lex_state = 10}, + [825] = {.lex_state = 34, .external_lex_state = 10}, + [826] = {.lex_state = 34, .external_lex_state = 9}, + [827] = {.lex_state = 34, .external_lex_state = 10}, + [828] = {.lex_state = 34, .external_lex_state = 10}, + [829] = {.lex_state = 34, .external_lex_state = 10}, + [830] = {.lex_state = 34, .external_lex_state = 10}, + [831] = {.lex_state = 34, .external_lex_state = 10}, + [832] = {.lex_state = 36, .external_lex_state = 12}, + [833] = {.lex_state = 36, .external_lex_state = 12}, + [834] = {.lex_state = 34, .external_lex_state = 9}, + [835] = {.lex_state = 36, .external_lex_state = 12}, + [836] = {.lex_state = 34, .external_lex_state = 10}, + [837] = {.lex_state = 34, .external_lex_state = 10}, + [838] = {.lex_state = 34, .external_lex_state = 10}, + [839] = {.lex_state = 34, .external_lex_state = 10}, + [840] = {.lex_state = 34, .external_lex_state = 10}, + [841] = {.lex_state = 34, .external_lex_state = 10}, + [842] = {.lex_state = 34, .external_lex_state = 10}, + [843] = {.lex_state = 34, .external_lex_state = 10}, + [844] = {.lex_state = 34, .external_lex_state = 10}, + [845] = {.lex_state = 34, .external_lex_state = 12}, + [846] = {.lex_state = 34, .external_lex_state = 9}, + [847] = {.lex_state = 34, .external_lex_state = 12}, + [848] = {.lex_state = 34, .external_lex_state = 12}, + [849] = {.lex_state = 34, .external_lex_state = 9}, + [850] = {.lex_state = 34, .external_lex_state = 12}, + [851] = {.lex_state = 34, .external_lex_state = 12}, + [852] = {.lex_state = 34, .external_lex_state = 10}, + [853] = {.lex_state = 34, .external_lex_state = 12}, + [854] = {.lex_state = 34, .external_lex_state = 12}, + [855] = {.lex_state = 34, .external_lex_state = 12}, + [856] = {.lex_state = 34, .external_lex_state = 12}, + [857] = {.lex_state = 34, .external_lex_state = 10}, + [858] = {.lex_state = 33, .external_lex_state = 9}, + [859] = {.lex_state = 33, .external_lex_state = 9}, + [860] = {.lex_state = 33, .external_lex_state = 9}, + [861] = {.lex_state = 33, .external_lex_state = 9}, + [862] = {.lex_state = 34, .external_lex_state = 10}, + [863] = {.lex_state = 34, .external_lex_state = 9}, + [864] = {.lex_state = 34, .external_lex_state = 9}, + [865] = {.lex_state = 36, .external_lex_state = 12}, + [866] = {.lex_state = 34, .external_lex_state = 9}, + [867] = {.lex_state = 34, .external_lex_state = 9}, + [868] = {.lex_state = 34, .external_lex_state = 12}, + [869] = {.lex_state = 36, .external_lex_state = 11}, + [870] = {.lex_state = 36, .external_lex_state = 11}, + [871] = {.lex_state = 36, .external_lex_state = 11}, + [872] = {.lex_state = 36, .external_lex_state = 12}, + [873] = {.lex_state = 34, .external_lex_state = 9}, + [874] = {.lex_state = 36, .external_lex_state = 12}, + [875] = {.lex_state = 34, .external_lex_state = 9}, + [876] = {.lex_state = 34, .external_lex_state = 9}, + [877] = {.lex_state = 34, .external_lex_state = 9}, + [878] = {.lex_state = 36, .external_lex_state = 12}, + [879] = {.lex_state = 34, .external_lex_state = 9}, + [880] = {.lex_state = 36, .external_lex_state = 12}, + [881] = {.lex_state = 36, .external_lex_state = 12}, + [882] = {.lex_state = 34, .external_lex_state = 9}, + [883] = {.lex_state = 34, .external_lex_state = 9}, + [884] = {.lex_state = 34, .external_lex_state = 9}, + [885] = {.lex_state = 34, .external_lex_state = 9}, + [886] = {.lex_state = 34, .external_lex_state = 9}, + [887] = {.lex_state = 34, .external_lex_state = 13}, + [888] = {.lex_state = 34, .external_lex_state = 9}, + [889] = {.lex_state = 34, .external_lex_state = 9}, + [890] = {.lex_state = 34, .external_lex_state = 9}, + [891] = {.lex_state = 34, .external_lex_state = 9}, + [892] = {.lex_state = 34, .external_lex_state = 9}, + [893] = {.lex_state = 34, .external_lex_state = 10}, + [894] = {.lex_state = 34, .external_lex_state = 9}, + [895] = {.lex_state = 34, .external_lex_state = 9}, + [896] = {.lex_state = 34, .external_lex_state = 9}, + [897] = {.lex_state = 34, .external_lex_state = 13}, + [898] = {.lex_state = 34, .external_lex_state = 13}, + [899] = {.lex_state = 34, .external_lex_state = 13}, + [900] = {.lex_state = 34, .external_lex_state = 13}, + [901] = {.lex_state = 34, .external_lex_state = 9}, + [902] = {.lex_state = 34, .external_lex_state = 13}, + [903] = {.lex_state = 34, .external_lex_state = 13}, + [904] = {.lex_state = 34, .external_lex_state = 13}, + [905] = {.lex_state = 34, .external_lex_state = 13}, + [906] = {.lex_state = 34, .external_lex_state = 13}, + [907] = {.lex_state = 34, .external_lex_state = 9}, + [908] = {.lex_state = 36, .external_lex_state = 13}, + [909] = {.lex_state = 34, .external_lex_state = 10}, + [910] = {.lex_state = 34, .external_lex_state = 10}, + [911] = {.lex_state = 34, .external_lex_state = 11}, + [912] = {.lex_state = 36, .external_lex_state = 13}, + [913] = {.lex_state = 36, .external_lex_state = 13}, + [914] = {.lex_state = 36, .external_lex_state = 13}, + [915] = {.lex_state = 34, .external_lex_state = 9}, + [916] = {.lex_state = 34, .external_lex_state = 9}, + [917] = {.lex_state = 34, .external_lex_state = 9}, + [918] = {.lex_state = 34, .external_lex_state = 9}, + [919] = {.lex_state = 34, .external_lex_state = 12}, + [920] = {.lex_state = 34, .external_lex_state = 9}, + [921] = {.lex_state = 34, .external_lex_state = 13}, + [922] = {.lex_state = 34, .external_lex_state = 12}, + [923] = {.lex_state = 34, .external_lex_state = 13}, + [924] = {.lex_state = 34, .external_lex_state = 11}, + [925] = {.lex_state = 34, .external_lex_state = 12}, + [926] = {.lex_state = 34, .external_lex_state = 11}, + [927] = {.lex_state = 34, .external_lex_state = 11}, + [928] = {.lex_state = 34, .external_lex_state = 11}, + [929] = {.lex_state = 36, .external_lex_state = 12}, + [930] = {.lex_state = 36, .external_lex_state = 12}, + [931] = {.lex_state = 34, .external_lex_state = 13}, + [932] = {.lex_state = 34, .external_lex_state = 13}, + [933] = {.lex_state = 36, .external_lex_state = 12}, + [934] = {.lex_state = 34, .external_lex_state = 12}, + [935] = {.lex_state = 34, .external_lex_state = 11}, + [936] = {.lex_state = 34, .external_lex_state = 11}, + [937] = {.lex_state = 34, .external_lex_state = 11}, + [938] = {.lex_state = 34, .external_lex_state = 11}, + [939] = {.lex_state = 34, .external_lex_state = 13}, + [940] = {.lex_state = 34, .external_lex_state = 11}, + [941] = {.lex_state = 34, .external_lex_state = 11}, + [942] = {.lex_state = 34, .external_lex_state = 13}, + [943] = {.lex_state = 34, .external_lex_state = 12}, + [944] = {.lex_state = 34, .external_lex_state = 12}, + [945] = {.lex_state = 34, .external_lex_state = 12}, + [946] = {.lex_state = 34, .external_lex_state = 12}, + [947] = {.lex_state = 34, .external_lex_state = 12}, + [948] = {.lex_state = 34, .external_lex_state = 12}, + [949] = {.lex_state = 34, .external_lex_state = 12}, + [950] = {.lex_state = 34, .external_lex_state = 12}, + [951] = {.lex_state = 34, .external_lex_state = 13}, + [952] = {.lex_state = 34, .external_lex_state = 11}, + [953] = {.lex_state = 34, .external_lex_state = 11}, + [954] = {.lex_state = 34, .external_lex_state = 12}, + [955] = {.lex_state = 34, .external_lex_state = 12}, + [956] = {.lex_state = 34, .external_lex_state = 12}, + [957] = {.lex_state = 34, .external_lex_state = 12}, + [958] = {.lex_state = 34, .external_lex_state = 13}, + [959] = {.lex_state = 34, .external_lex_state = 12}, + [960] = {.lex_state = 34, .external_lex_state = 12}, + [961] = {.lex_state = 34, .external_lex_state = 13}, + [962] = {.lex_state = 34, .external_lex_state = 11}, + [963] = {.lex_state = 34, .external_lex_state = 13}, + [964] = {.lex_state = 34, .external_lex_state = 13}, + [965] = {.lex_state = 34, .external_lex_state = 12}, + [966] = {.lex_state = 34, .external_lex_state = 11}, + [967] = {.lex_state = 34, .external_lex_state = 11}, + [968] = {.lex_state = 34, .external_lex_state = 11}, + [969] = {.lex_state = 34, .external_lex_state = 11}, + [970] = {.lex_state = 34, .external_lex_state = 11}, + [971] = {.lex_state = 34, .external_lex_state = 11}, + [972] = {.lex_state = 34, .external_lex_state = 11}, + [973] = {.lex_state = 34, .external_lex_state = 12}, + [974] = {.lex_state = 34, .external_lex_state = 10}, + [975] = {.lex_state = 34, .external_lex_state = 12}, + [976] = {.lex_state = 34, .external_lex_state = 13}, + [977] = {.lex_state = 34, .external_lex_state = 12}, + [978] = {.lex_state = 34, .external_lex_state = 13}, + [979] = {.lex_state = 34, .external_lex_state = 13}, + [980] = {.lex_state = 34, .external_lex_state = 13}, + [981] = {.lex_state = 34, .external_lex_state = 12}, + [982] = {.lex_state = 34, .external_lex_state = 12}, + [983] = {.lex_state = 34, .external_lex_state = 11}, + [984] = {.lex_state = 34, .external_lex_state = 11}, + [985] = {.lex_state = 34, .external_lex_state = 13}, + [986] = {.lex_state = 34, .external_lex_state = 11}, + [987] = {.lex_state = 34, .external_lex_state = 11}, + [988] = {.lex_state = 34, .external_lex_state = 13}, + [989] = {.lex_state = 34, .external_lex_state = 13}, + [990] = {.lex_state = 34, .external_lex_state = 11}, + [991] = {.lex_state = 34, .external_lex_state = 12}, + [992] = {.lex_state = 34, .external_lex_state = 12}, + [993] = {.lex_state = 34, .external_lex_state = 12}, + [994] = {.lex_state = 34, .external_lex_state = 11}, + [995] = {.lex_state = 34, .external_lex_state = 13}, + [996] = {.lex_state = 36, .external_lex_state = 11}, + [997] = {.lex_state = 34, .external_lex_state = 13}, + [998] = {.lex_state = 34, .external_lex_state = 13}, + [999] = {.lex_state = 34, .external_lex_state = 12}, + [1000] = {.lex_state = 34, .external_lex_state = 13}, + [1001] = {.lex_state = 34, .external_lex_state = 13}, + [1002] = {.lex_state = 34, .external_lex_state = 13}, + [1003] = {.lex_state = 34, .external_lex_state = 12}, + [1004] = {.lex_state = 34, .external_lex_state = 13}, + [1005] = {.lex_state = 34, .external_lex_state = 13}, + [1006] = {.lex_state = 34, .external_lex_state = 13}, + [1007] = {.lex_state = 34, .external_lex_state = 13}, + [1008] = {.lex_state = 34, .external_lex_state = 13}, + [1009] = {.lex_state = 34, .external_lex_state = 13}, + [1010] = {.lex_state = 34, .external_lex_state = 13}, + [1011] = {.lex_state = 34, .external_lex_state = 13}, + [1012] = {.lex_state = 34, .external_lex_state = 12}, + [1013] = {.lex_state = 34, .external_lex_state = 12}, + [1014] = {.lex_state = 34, .external_lex_state = 12}, + [1015] = {.lex_state = 34, .external_lex_state = 11}, + [1016] = {.lex_state = 34, .external_lex_state = 11}, + [1017] = {.lex_state = 34, .external_lex_state = 12}, + [1018] = {.lex_state = 34, .external_lex_state = 12}, + [1019] = {.lex_state = 34, .external_lex_state = 12}, + [1020] = {.lex_state = 34, .external_lex_state = 12}, + [1021] = {.lex_state = 34, .external_lex_state = 12}, + [1022] = {.lex_state = 36, .external_lex_state = 11}, + [1023] = {.lex_state = 34, .external_lex_state = 13}, + [1024] = {.lex_state = 34, .external_lex_state = 13}, + [1025] = {.lex_state = 34, .external_lex_state = 11}, + [1026] = {.lex_state = 34, .external_lex_state = 12}, + [1027] = {.lex_state = 36, .external_lex_state = 11}, + [1028] = {.lex_state = 34, .external_lex_state = 11}, + [1029] = {.lex_state = 34, .external_lex_state = 12}, + [1030] = {.lex_state = 34, .external_lex_state = 12}, + [1031] = {.lex_state = 34, .external_lex_state = 12}, + [1032] = {.lex_state = 34, .external_lex_state = 12}, + [1033] = {.lex_state = 34, .external_lex_state = 12}, + [1034] = {.lex_state = 34, .external_lex_state = 12}, + [1035] = {.lex_state = 34, .external_lex_state = 12}, + [1036] = {.lex_state = 34, .external_lex_state = 11}, + [1037] = {.lex_state = 34, .external_lex_state = 12}, + [1038] = {.lex_state = 34, .external_lex_state = 9}, + [1039] = {.lex_state = 34, .external_lex_state = 11}, + [1040] = {.lex_state = 34, .external_lex_state = 11}, + [1041] = {.lex_state = 34, .external_lex_state = 11}, + [1042] = {.lex_state = 34, .external_lex_state = 11}, + [1043] = {.lex_state = 34, .external_lex_state = 12}, + [1044] = {.lex_state = 34, .external_lex_state = 13}, + [1045] = {.lex_state = 34, .external_lex_state = 12}, + [1046] = {.lex_state = 34, .external_lex_state = 12}, + [1047] = {.lex_state = 34, .external_lex_state = 13}, + [1048] = {.lex_state = 34, .external_lex_state = 12}, + [1049] = {.lex_state = 34, .external_lex_state = 13}, + [1050] = {.lex_state = 34, .external_lex_state = 11}, + [1051] = {.lex_state = 34, .external_lex_state = 12}, + [1052] = {.lex_state = 34, .external_lex_state = 11}, + [1053] = {.lex_state = 34, .external_lex_state = 12}, + [1054] = {.lex_state = 34, .external_lex_state = 12}, + [1055] = {.lex_state = 34, .external_lex_state = 12}, + [1056] = {.lex_state = 34, .external_lex_state = 11}, + [1057] = {.lex_state = 34, .external_lex_state = 12}, + [1058] = {.lex_state = 34, .external_lex_state = 12}, + [1059] = {.lex_state = 36, .external_lex_state = 12}, + [1060] = {.lex_state = 34, .external_lex_state = 12}, + [1061] = {.lex_state = 33, .external_lex_state = 13}, + [1062] = {.lex_state = 36, .external_lex_state = 11}, + [1063] = {.lex_state = 36, .external_lex_state = 11}, + [1064] = {.lex_state = 36, .external_lex_state = 11}, + [1065] = {.lex_state = 36, .external_lex_state = 11}, + [1066] = {.lex_state = 34, .external_lex_state = 12}, + [1067] = {.lex_state = 33, .external_lex_state = 13}, + [1068] = {.lex_state = 34, .external_lex_state = 12}, + [1069] = {.lex_state = 33, .external_lex_state = 13}, + [1070] = {.lex_state = 34, .external_lex_state = 12}, + [1071] = {.lex_state = 34, .external_lex_state = 12}, + [1072] = {.lex_state = 34, .external_lex_state = 12}, + [1073] = {.lex_state = 33, .external_lex_state = 13}, + [1074] = {.lex_state = 34, .external_lex_state = 12}, + [1075] = {.lex_state = 34, .external_lex_state = 12}, + [1076] = {.lex_state = 34, .external_lex_state = 12}, + [1077] = {.lex_state = 34, .external_lex_state = 12}, + [1078] = {.lex_state = 34, .external_lex_state = 12}, + [1079] = {.lex_state = 34, .external_lex_state = 12}, + [1080] = {.lex_state = 34, .external_lex_state = 12}, + [1081] = {.lex_state = 34, .external_lex_state = 12}, + [1082] = {.lex_state = 34, .external_lex_state = 12}, + [1083] = {.lex_state = 34, .external_lex_state = 13}, + [1084] = {.lex_state = 34, .external_lex_state = 12}, + [1085] = {.lex_state = 34, .external_lex_state = 12}, + [1086] = {.lex_state = 36, .external_lex_state = 10}, + [1087] = {.lex_state = 34, .external_lex_state = 12}, + [1088] = {.lex_state = 34, .external_lex_state = 12}, + [1089] = {.lex_state = 34, .external_lex_state = 12}, + [1090] = {.lex_state = 34, .external_lex_state = 12}, + [1091] = {.lex_state = 34, .external_lex_state = 12}, + [1092] = {.lex_state = 36, .external_lex_state = 10}, + [1093] = {.lex_state = 34, .external_lex_state = 12}, + [1094] = {.lex_state = 34, .external_lex_state = 12}, + [1095] = {.lex_state = 34, .external_lex_state = 12}, + [1096] = {.lex_state = 36, .external_lex_state = 12}, + [1097] = {.lex_state = 34, .external_lex_state = 12}, + [1098] = {.lex_state = 36, .external_lex_state = 12}, + [1099] = {.lex_state = 33, .external_lex_state = 13}, + [1100] = {.lex_state = 34, .external_lex_state = 12}, + [1101] = {.lex_state = 34, .external_lex_state = 12}, + [1102] = {.lex_state = 34, .external_lex_state = 12}, + [1103] = {.lex_state = 36, .external_lex_state = 11}, + [1104] = {.lex_state = 36, .external_lex_state = 11}, + [1105] = {.lex_state = 34, .external_lex_state = 12}, + [1106] = {.lex_state = 34, .external_lex_state = 12}, + [1107] = {.lex_state = 34, .external_lex_state = 12}, + [1108] = {.lex_state = 34, .external_lex_state = 12}, + [1109] = {.lex_state = 33, .external_lex_state = 13}, + [1110] = {.lex_state = 33, .external_lex_state = 13}, + [1111] = {.lex_state = 34, .external_lex_state = 12}, + [1112] = {.lex_state = 33, .external_lex_state = 13}, + [1113] = {.lex_state = 33, .external_lex_state = 13}, + [1114] = {.lex_state = 33, .external_lex_state = 13}, + [1115] = {.lex_state = 34, .external_lex_state = 12}, + [1116] = {.lex_state = 34, .external_lex_state = 12}, + [1117] = {.lex_state = 33, .external_lex_state = 13}, + [1118] = {.lex_state = 33, .external_lex_state = 13}, + [1119] = {.lex_state = 33, .external_lex_state = 13}, + [1120] = {.lex_state = 33, .external_lex_state = 13}, + [1121] = {.lex_state = 33, .external_lex_state = 13}, + [1122] = {.lex_state = 36, .external_lex_state = 10}, + [1123] = {.lex_state = 33, .external_lex_state = 13}, + [1124] = {.lex_state = 34, .external_lex_state = 12}, + [1125] = {.lex_state = 34, .external_lex_state = 10}, + [1126] = {.lex_state = 34, .external_lex_state = 11}, + [1127] = {.lex_state = 34, .external_lex_state = 11}, + [1128] = {.lex_state = 34, .external_lex_state = 11}, + [1129] = {.lex_state = 34, .external_lex_state = 11}, + [1130] = {.lex_state = 34, .external_lex_state = 11}, + [1131] = {.lex_state = 34, .external_lex_state = 10}, + [1132] = {.lex_state = 34, .external_lex_state = 10}, + [1133] = {.lex_state = 34, .external_lex_state = 10}, + [1134] = {.lex_state = 34, .external_lex_state = 10}, + [1135] = {.lex_state = 33, .external_lex_state = 9}, + [1136] = {.lex_state = 33, .external_lex_state = 9}, + [1137] = {.lex_state = 34, .external_lex_state = 10}, + [1138] = {.lex_state = 34, .external_lex_state = 10}, + [1139] = {.lex_state = 33, .external_lex_state = 11}, + [1140] = {.lex_state = 33, .external_lex_state = 13}, + [1141] = {.lex_state = 33, .external_lex_state = 13}, + [1142] = {.lex_state = 33, .external_lex_state = 11}, + [1143] = {.lex_state = 34, .external_lex_state = 11}, + [1144] = {.lex_state = 52, .external_lex_state = 10}, + [1145] = {.lex_state = 31, .external_lex_state = 9}, + [1146] = {.lex_state = 34, .external_lex_state = 11}, + [1147] = {.lex_state = 34, .external_lex_state = 11}, + [1148] = {.lex_state = 52, .external_lex_state = 10}, + [1149] = {.lex_state = 34, .external_lex_state = 11}, + [1150] = {.lex_state = 34, .external_lex_state = 11}, + [1151] = {.lex_state = 34, .external_lex_state = 11}, + [1152] = {.lex_state = 52, .external_lex_state = 10}, + [1153] = {.lex_state = 33, .external_lex_state = 12}, + [1154] = {.lex_state = 31, .external_lex_state = 9}, + [1155] = {.lex_state = 33, .external_lex_state = 12}, + [1156] = {.lex_state = 52, .external_lex_state = 10}, + [1157] = {.lex_state = 34, .external_lex_state = 13}, + [1158] = {.lex_state = 34, .external_lex_state = 12}, + [1159] = {.lex_state = 34, .external_lex_state = 13}, + [1160] = {.lex_state = 34, .external_lex_state = 13}, + [1161] = {.lex_state = 34, .external_lex_state = 13}, + [1162] = {.lex_state = 34, .external_lex_state = 13}, + [1163] = {.lex_state = 34, .external_lex_state = 13}, + [1164] = {.lex_state = 52, .external_lex_state = 12}, + [1165] = {.lex_state = 34, .external_lex_state = 12}, + [1166] = {.lex_state = 34, .external_lex_state = 11}, + [1167] = {.lex_state = 34, .external_lex_state = 12}, + [1168] = {.lex_state = 31, .external_lex_state = 9}, + [1169] = {.lex_state = 34, .external_lex_state = 11}, + [1170] = {.lex_state = 31, .external_lex_state = 9}, + [1171] = {.lex_state = 52, .external_lex_state = 12}, + [1172] = {.lex_state = 31, .external_lex_state = 9}, + [1173] = {.lex_state = 34, .external_lex_state = 11}, + [1174] = {.lex_state = 34, .external_lex_state = 11}, + [1175] = {.lex_state = 34, .external_lex_state = 11}, + [1176] = {.lex_state = 34, .external_lex_state = 12}, + [1177] = {.lex_state = 31, .external_lex_state = 9}, + [1178] = {.lex_state = 34, .external_lex_state = 11}, + [1179] = {.lex_state = 34, .external_lex_state = 13}, + [1180] = {.lex_state = 34, .external_lex_state = 13}, + [1181] = {.lex_state = 34, .external_lex_state = 12}, + [1182] = {.lex_state = 34, .external_lex_state = 13}, + [1183] = {.lex_state = 34, .external_lex_state = 13}, + [1184] = {.lex_state = 34, .external_lex_state = 13}, + [1185] = {.lex_state = 34, .external_lex_state = 13}, + [1186] = {.lex_state = 34, .external_lex_state = 12}, + [1187] = {.lex_state = 30, .external_lex_state = 13}, + [1188] = {.lex_state = 34, .external_lex_state = 13}, + [1189] = {.lex_state = 31, .external_lex_state = 13}, + [1190] = {.lex_state = 30, .external_lex_state = 13}, + [1191] = {.lex_state = 34, .external_lex_state = 13}, + [1192] = {.lex_state = 31, .external_lex_state = 13}, + [1193] = {.lex_state = 30, .external_lex_state = 13}, + [1194] = {.lex_state = 31, .external_lex_state = 13}, + [1195] = {.lex_state = 30, .external_lex_state = 13}, + [1196] = {.lex_state = 34, .external_lex_state = 13}, + [1197] = {.lex_state = 31, .external_lex_state = 13}, + [1198] = {.lex_state = 31, .external_lex_state = 13}, + [1199] = {.lex_state = 30, .external_lex_state = 13}, + [1200] = {.lex_state = 31, .external_lex_state = 13}, + [1201] = {.lex_state = 30, .external_lex_state = 13}, + [1202] = {.lex_state = 34, .external_lex_state = 13}, + [1203] = {.lex_state = 30, .external_lex_state = 13}, + [1204] = {.lex_state = 34, .external_lex_state = 13}, + [1205] = {.lex_state = 31, .external_lex_state = 13}, + [1206] = {.lex_state = 34, .external_lex_state = 13}, + [1207] = {.lex_state = 31, .external_lex_state = 9}, + [1208] = {.lex_state = 31, .external_lex_state = 13}, + [1209] = {.lex_state = 34, .external_lex_state = 13}, + [1210] = {.lex_state = 34, .external_lex_state = 13}, + [1211] = {.lex_state = 34, .external_lex_state = 13}, + [1212] = {.lex_state = 30, .external_lex_state = 13}, + [1213] = {.lex_state = 30, .external_lex_state = 13}, + [1214] = {.lex_state = 30, .external_lex_state = 11}, + [1215] = {.lex_state = 30, .external_lex_state = 13}, + [1216] = {.lex_state = 30, .external_lex_state = 11}, + [1217] = {.lex_state = 30, .external_lex_state = 11}, + [1218] = {.lex_state = 30, .external_lex_state = 13}, + [1219] = {.lex_state = 31, .external_lex_state = 13}, + [1220] = {.lex_state = 30, .external_lex_state = 13}, + [1221] = {.lex_state = 30, .external_lex_state = 13}, + [1222] = {.lex_state = 52, .external_lex_state = 10}, + [1223] = {.lex_state = 52, .external_lex_state = 10}, + [1224] = {.lex_state = 52, .external_lex_state = 10}, + [1225] = {.lex_state = 52, .external_lex_state = 10}, + [1226] = {.lex_state = 52, .external_lex_state = 10}, + [1227] = {.lex_state = 52, .external_lex_state = 10}, + [1228] = {.lex_state = 52, .external_lex_state = 10}, + [1229] = {.lex_state = 33, .external_lex_state = 9}, + [1230] = {.lex_state = 52, .external_lex_state = 12}, + [1231] = {.lex_state = 52, .external_lex_state = 12}, + [1232] = {.lex_state = 33, .external_lex_state = 9}, + [1233] = {.lex_state = 52, .external_lex_state = 12}, + [1234] = {.lex_state = 33, .external_lex_state = 9}, + [1235] = {.lex_state = 52, .external_lex_state = 12}, + [1236] = {.lex_state = 33, .external_lex_state = 9}, + [1237] = {.lex_state = 52, .external_lex_state = 12}, + [1238] = {.lex_state = 33, .external_lex_state = 9}, + [1239] = {.lex_state = 33, .external_lex_state = 9}, + [1240] = {.lex_state = 33, .external_lex_state = 9}, + [1241] = {.lex_state = 52, .external_lex_state = 12}, + [1242] = {.lex_state = 33, .external_lex_state = 9}, + [1243] = {.lex_state = 33, .external_lex_state = 9}, + [1244] = {.lex_state = 52, .external_lex_state = 12}, + [1245] = {.lex_state = 33, .external_lex_state = 9}, + [1246] = {.lex_state = 0, .external_lex_state = 14}, + [1247] = {.lex_state = 0, .external_lex_state = 14}, + [1248] = {.lex_state = 33, .external_lex_state = 13}, + [1249] = {.lex_state = 33, .external_lex_state = 13}, + [1250] = {.lex_state = 33, .external_lex_state = 11}, + [1251] = {.lex_state = 33, .external_lex_state = 11}, + [1252] = {.lex_state = 52, .external_lex_state = 10}, + [1253] = {.lex_state = 33, .external_lex_state = 11}, + [1254] = {.lex_state = 0, .external_lex_state = 14}, + [1255] = {.lex_state = 0, .external_lex_state = 14}, + [1256] = {.lex_state = 33, .external_lex_state = 13}, + [1257] = {.lex_state = 0, .external_lex_state = 14}, + [1258] = {.lex_state = 33, .external_lex_state = 9}, + [1259] = {.lex_state = 0, .external_lex_state = 14}, + [1260] = {.lex_state = 33, .external_lex_state = 11}, + [1261] = {.lex_state = 33, .external_lex_state = 11}, + [1262] = {.lex_state = 0, .external_lex_state = 14}, + [1263] = {.lex_state = 33, .external_lex_state = 11}, + [1264] = {.lex_state = 0, .external_lex_state = 14}, + [1265] = {.lex_state = 0, .external_lex_state = 14}, + [1266] = {.lex_state = 33, .external_lex_state = 11}, + [1267] = {.lex_state = 33, .external_lex_state = 13}, + [1268] = {.lex_state = 33, .external_lex_state = 13}, + [1269] = {.lex_state = 0, .external_lex_state = 14}, + [1270] = {.lex_state = 33, .external_lex_state = 13}, + [1271] = {.lex_state = 33, .external_lex_state = 11}, + [1272] = {.lex_state = 33, .external_lex_state = 11}, + [1273] = {.lex_state = 0, .external_lex_state = 14}, + [1274] = {.lex_state = 33, .external_lex_state = 13}, + [1275] = {.lex_state = 33, .external_lex_state = 11}, + [1276] = {.lex_state = 0, .external_lex_state = 14}, + [1277] = {.lex_state = 33, .external_lex_state = 13}, + [1278] = {.lex_state = 0, .external_lex_state = 14}, + [1279] = {.lex_state = 0, .external_lex_state = 14}, + [1280] = {.lex_state = 0, .external_lex_state = 14}, + [1281] = {.lex_state = 33, .external_lex_state = 13}, + [1282] = {.lex_state = 52, .external_lex_state = 10}, + [1283] = {.lex_state = 52, .external_lex_state = 10}, + [1284] = {.lex_state = 52, .external_lex_state = 10}, + [1285] = {.lex_state = 52, .external_lex_state = 10}, + [1286] = {.lex_state = 33, .external_lex_state = 13}, + [1287] = {.lex_state = 33, .external_lex_state = 12}, + [1288] = {.lex_state = 33, .external_lex_state = 12}, + [1289] = {.lex_state = 33, .external_lex_state = 12}, + [1290] = {.lex_state = 52, .external_lex_state = 10}, + [1291] = {.lex_state = 33, .external_lex_state = 12}, + [1292] = {.lex_state = 33, .external_lex_state = 12}, + [1293] = {.lex_state = 33, .external_lex_state = 12}, + [1294] = {.lex_state = 52, .external_lex_state = 10}, + [1295] = {.lex_state = 52, .external_lex_state = 10}, + [1296] = {.lex_state = 52, .external_lex_state = 10}, + [1297] = {.lex_state = 33, .external_lex_state = 12}, + [1298] = {.lex_state = 52, .external_lex_state = 10}, + [1299] = {.lex_state = 52, .external_lex_state = 10}, + [1300] = {.lex_state = 52, .external_lex_state = 10}, + [1301] = {.lex_state = 33, .external_lex_state = 12}, + [1302] = {.lex_state = 52, .external_lex_state = 10}, + [1303] = {.lex_state = 52, .external_lex_state = 10}, + [1304] = {.lex_state = 52, .external_lex_state = 10}, + [1305] = {.lex_state = 52, .external_lex_state = 10}, + [1306] = {.lex_state = 52, .external_lex_state = 10}, + [1307] = {.lex_state = 33, .external_lex_state = 12}, + [1308] = {.lex_state = 52, .external_lex_state = 10}, + [1309] = {.lex_state = 33, .external_lex_state = 12}, + [1310] = {.lex_state = 52, .external_lex_state = 10}, + [1311] = {.lex_state = 52, .external_lex_state = 10}, + [1312] = {.lex_state = 52, .external_lex_state = 9}, + [1313] = {.lex_state = 52, .external_lex_state = 12}, + [1314] = {.lex_state = 52, .external_lex_state = 12}, + [1315] = {.lex_state = 52, .external_lex_state = 9}, + [1316] = {.lex_state = 52, .external_lex_state = 10}, + [1317] = {.lex_state = 52, .external_lex_state = 12}, + [1318] = {.lex_state = 52, .external_lex_state = 12}, + [1319] = {.lex_state = 52, .external_lex_state = 12}, + [1320] = {.lex_state = 52, .external_lex_state = 9}, + [1321] = {.lex_state = 52, .external_lex_state = 10}, + [1322] = {.lex_state = 52, .external_lex_state = 10}, + [1323] = {.lex_state = 52, .external_lex_state = 9}, + [1324] = {.lex_state = 52, .external_lex_state = 12}, + [1325] = {.lex_state = 52, .external_lex_state = 12}, + [1326] = {.lex_state = 52, .external_lex_state = 12}, + [1327] = {.lex_state = 52, .external_lex_state = 9}, + [1328] = {.lex_state = 52, .external_lex_state = 12}, + [1329] = {.lex_state = 52, .external_lex_state = 9}, + [1330] = {.lex_state = 52, .external_lex_state = 12}, + [1331] = {.lex_state = 52, .external_lex_state = 10}, + [1332] = {.lex_state = 52, .external_lex_state = 12}, + [1333] = {.lex_state = 52, .external_lex_state = 9}, + [1334] = {.lex_state = 52, .external_lex_state = 12}, + [1335] = {.lex_state = 52, .external_lex_state = 9}, + [1336] = {.lex_state = 52, .external_lex_state = 12}, + [1337] = {.lex_state = 52, .external_lex_state = 12}, + [1338] = {.lex_state = 52, .external_lex_state = 12}, + [1339] = {.lex_state = 52, .external_lex_state = 12}, + [1340] = {.lex_state = 52, .external_lex_state = 12}, + [1341] = {.lex_state = 52, .external_lex_state = 12}, + [1342] = {.lex_state = 52, .external_lex_state = 12}, + [1343] = {.lex_state = 52, .external_lex_state = 13}, + [1344] = {.lex_state = 52, .external_lex_state = 12}, + [1345] = {.lex_state = 52, .external_lex_state = 12}, + [1346] = {.lex_state = 0, .external_lex_state = 14}, + [1347] = {.lex_state = 52, .external_lex_state = 10}, + [1348] = {.lex_state = 52, .external_lex_state = 11}, + [1349] = {.lex_state = 52, .external_lex_state = 11}, + [1350] = {.lex_state = 52, .external_lex_state = 10}, + [1351] = {.lex_state = 52, .external_lex_state = 9}, + [1352] = {.lex_state = 52, .external_lex_state = 11}, + [1353] = {.lex_state = 52, .external_lex_state = 11}, + [1354] = {.lex_state = 52, .external_lex_state = 13}, + [1355] = {.lex_state = 52, .external_lex_state = 13}, + [1356] = {.lex_state = 52, .external_lex_state = 12}, + [1357] = {.lex_state = 52, .external_lex_state = 11}, + [1358] = {.lex_state = 52, .external_lex_state = 10}, + [1359] = {.lex_state = 52, .external_lex_state = 11}, + [1360] = {.lex_state = 52, .external_lex_state = 11}, + [1361] = {.lex_state = 52, .external_lex_state = 12}, + [1362] = {.lex_state = 52, .external_lex_state = 10}, + [1363] = {.lex_state = 52, .external_lex_state = 10}, + [1364] = {.lex_state = 52, .external_lex_state = 13}, + [1365] = {.lex_state = 52, .external_lex_state = 12}, + [1366] = {.lex_state = 52, .external_lex_state = 12}, + [1367] = {.lex_state = 52, .external_lex_state = 11}, + [1368] = {.lex_state = 52, .external_lex_state = 12}, + [1369] = {.lex_state = 52, .external_lex_state = 10}, + [1370] = {.lex_state = 52, .external_lex_state = 10}, + [1371] = {.lex_state = 52, .external_lex_state = 13}, + [1372] = {.lex_state = 52, .external_lex_state = 13}, + [1373] = {.lex_state = 52, .external_lex_state = 11}, + [1374] = {.lex_state = 52, .external_lex_state = 12}, + [1375] = {.lex_state = 0, .external_lex_state = 14}, + [1376] = {.lex_state = 52, .external_lex_state = 10}, + [1377] = {.lex_state = 52, .external_lex_state = 11}, + [1378] = {.lex_state = 52, .external_lex_state = 11}, + [1379] = {.lex_state = 52, .external_lex_state = 11}, + [1380] = {.lex_state = 52, .external_lex_state = 10}, + [1381] = {.lex_state = 52, .external_lex_state = 11}, + [1382] = {.lex_state = 52, .external_lex_state = 10}, + [1383] = {.lex_state = 52, .external_lex_state = 10}, + [1384] = {.lex_state = 52, .external_lex_state = 11}, + [1385] = {.lex_state = 52, .external_lex_state = 11}, + [1386] = {.lex_state = 52, .external_lex_state = 9}, + [1387] = {.lex_state = 52, .external_lex_state = 13}, + [1388] = {.lex_state = 52, .external_lex_state = 9}, + [1389] = {.lex_state = 52, .external_lex_state = 12}, + [1390] = {.lex_state = 0, .external_lex_state = 14}, + [1391] = {.lex_state = 52, .external_lex_state = 11}, + [1392] = {.lex_state = 33, .external_lex_state = 13}, + [1393] = {.lex_state = 52, .external_lex_state = 13}, + [1394] = {.lex_state = 33, .external_lex_state = 11}, + [1395] = {.lex_state = 52, .external_lex_state = 11}, + [1396] = {.lex_state = 52, .external_lex_state = 12}, + [1397] = {.lex_state = 33, .external_lex_state = 9}, + [1398] = {.lex_state = 0, .external_lex_state = 14}, + [1399] = {.lex_state = 0, .external_lex_state = 14}, + [1400] = {.lex_state = 52, .external_lex_state = 11}, + [1401] = {.lex_state = 0, .external_lex_state = 14}, + [1402] = {.lex_state = 52, .external_lex_state = 12}, + [1403] = {.lex_state = 33, .external_lex_state = 9}, + [1404] = {.lex_state = 33, .external_lex_state = 9}, + [1405] = {.lex_state = 52, .external_lex_state = 11}, + [1406] = {.lex_state = 52, .external_lex_state = 10}, + [1407] = {.lex_state = 33, .external_lex_state = 11}, + [1408] = {.lex_state = 52, .external_lex_state = 10}, + [1409] = {.lex_state = 33, .external_lex_state = 12}, + [1410] = {.lex_state = 33, .external_lex_state = 11}, + [1411] = {.lex_state = 33, .external_lex_state = 11}, + [1412] = {.lex_state = 52, .external_lex_state = 12}, + [1413] = {.lex_state = 52, .external_lex_state = 13}, + [1414] = {.lex_state = 33, .external_lex_state = 9}, + [1415] = {.lex_state = 33, .external_lex_state = 9}, + [1416] = {.lex_state = 52, .external_lex_state = 10}, + [1417] = {.lex_state = 52, .external_lex_state = 10}, + [1418] = {.lex_state = 52, .external_lex_state = 13}, + [1419] = {.lex_state = 33, .external_lex_state = 13}, + [1420] = {.lex_state = 52, .external_lex_state = 12}, + [1421] = {.lex_state = 52, .external_lex_state = 12}, + [1422] = {.lex_state = 52, .external_lex_state = 11}, + [1423] = {.lex_state = 52, .external_lex_state = 13}, + [1424] = {.lex_state = 52, .external_lex_state = 12}, + [1425] = {.lex_state = 0, .external_lex_state = 14}, + [1426] = {.lex_state = 52, .external_lex_state = 11}, + [1427] = {.lex_state = 52, .external_lex_state = 13}, + [1428] = {.lex_state = 33, .external_lex_state = 9}, + [1429] = {.lex_state = 52, .external_lex_state = 13}, + [1430] = {.lex_state = 33, .external_lex_state = 11}, + [1431] = {.lex_state = 33, .external_lex_state = 11}, + [1432] = {.lex_state = 33, .external_lex_state = 12}, + [1433] = {.lex_state = 52, .external_lex_state = 11}, + [1434] = {.lex_state = 33, .external_lex_state = 9}, + [1435] = {.lex_state = 0, .external_lex_state = 14}, + [1436] = {.lex_state = 52, .external_lex_state = 11}, + [1437] = {.lex_state = 33, .external_lex_state = 12}, + [1438] = {.lex_state = 52, .external_lex_state = 10}, + [1439] = {.lex_state = 33, .external_lex_state = 9}, + [1440] = {.lex_state = 52, .external_lex_state = 13}, + [1441] = {.lex_state = 33, .external_lex_state = 11}, + [1442] = {.lex_state = 33, .external_lex_state = 12}, + [1443] = {.lex_state = 52, .external_lex_state = 11}, + [1444] = {.lex_state = 52, .external_lex_state = 10}, + [1445] = {.lex_state = 52, .external_lex_state = 13}, + [1446] = {.lex_state = 52, .external_lex_state = 10}, + [1447] = {.lex_state = 33, .external_lex_state = 9}, + [1448] = {.lex_state = 52, .external_lex_state = 10}, + [1449] = {.lex_state = 33, .external_lex_state = 11}, + [1450] = {.lex_state = 33, .external_lex_state = 11}, + [1451] = {.lex_state = 52, .external_lex_state = 10}, + [1452] = {.lex_state = 0, .external_lex_state = 14}, + [1453] = {.lex_state = 52, .external_lex_state = 12}, + [1454] = {.lex_state = 52, .external_lex_state = 12}, + [1455] = {.lex_state = 52, .external_lex_state = 10}, + [1456] = {.lex_state = 52, .external_lex_state = 10}, + [1457] = {.lex_state = 0, .external_lex_state = 14}, + [1458] = {.lex_state = 52, .external_lex_state = 12}, + [1459] = {.lex_state = 52, .external_lex_state = 10}, + [1460] = {.lex_state = 52, .external_lex_state = 12}, + [1461] = {.lex_state = 52, .external_lex_state = 10}, + [1462] = {.lex_state = 52, .external_lex_state = 13}, + [1463] = {.lex_state = 33, .external_lex_state = 13}, + [1464] = {.lex_state = 3, .external_lex_state = 10}, + [1465] = {.lex_state = 52, .external_lex_state = 13}, + [1466] = {.lex_state = 52, .external_lex_state = 10}, + [1467] = {.lex_state = 52, .external_lex_state = 10}, + [1468] = {.lex_state = 33, .external_lex_state = 12}, + [1469] = {.lex_state = 33, .external_lex_state = 12}, + [1470] = {.lex_state = 52, .external_lex_state = 13}, + [1471] = {.lex_state = 33, .external_lex_state = 12}, + [1472] = {.lex_state = 33, .external_lex_state = 13}, + [1473] = {.lex_state = 33, .external_lex_state = 12}, + [1474] = {.lex_state = 33, .external_lex_state = 13}, + [1475] = {.lex_state = 52, .external_lex_state = 10}, + [1476] = {.lex_state = 3, .external_lex_state = 10}, + [1477] = {.lex_state = 52, .external_lex_state = 10}, + [1478] = {.lex_state = 52, .external_lex_state = 13}, + [1479] = {.lex_state = 52, .external_lex_state = 10}, + [1480] = {.lex_state = 52, .external_lex_state = 13}, + [1481] = {.lex_state = 52, .external_lex_state = 13}, + [1482] = {.lex_state = 52, .external_lex_state = 13}, + [1483] = {.lex_state = 52, .external_lex_state = 13}, + [1484] = {.lex_state = 52, .external_lex_state = 9}, + [1485] = {.lex_state = 33, .external_lex_state = 11}, + [1486] = {.lex_state = 52, .external_lex_state = 13}, + [1487] = {.lex_state = 52, .external_lex_state = 13}, + [1488] = {.lex_state = 33, .external_lex_state = 13}, + [1489] = {.lex_state = 52, .external_lex_state = 10}, + [1490] = {.lex_state = 52, .external_lex_state = 13}, + [1491] = {.lex_state = 52, .external_lex_state = 13}, + [1492] = {.lex_state = 52, .external_lex_state = 10}, + [1493] = {.lex_state = 33, .external_lex_state = 12}, + [1494] = {.lex_state = 33, .external_lex_state = 13}, + [1495] = {.lex_state = 52, .external_lex_state = 13}, + [1496] = {.lex_state = 52, .external_lex_state = 13}, + [1497] = {.lex_state = 52, .external_lex_state = 13}, + [1498] = {.lex_state = 33, .external_lex_state = 12}, + [1499] = {.lex_state = 52, .external_lex_state = 12}, + [1500] = {.lex_state = 52, .external_lex_state = 10}, + [1501] = {.lex_state = 52, .external_lex_state = 12}, + [1502] = {.lex_state = 33, .external_lex_state = 13}, + [1503] = {.lex_state = 52, .external_lex_state = 13}, + [1504] = {.lex_state = 52, .external_lex_state = 13}, + [1505] = {.lex_state = 52, .external_lex_state = 10}, + [1506] = {.lex_state = 33, .external_lex_state = 12}, + [1507] = {.lex_state = 52, .external_lex_state = 12}, + [1508] = {.lex_state = 33, .external_lex_state = 12}, + [1509] = {.lex_state = 33, .external_lex_state = 12}, + [1510] = {.lex_state = 3, .external_lex_state = 10}, + [1511] = {.lex_state = 33, .external_lex_state = 13}, + [1512] = {.lex_state = 52, .external_lex_state = 13}, + [1513] = {.lex_state = 52, .external_lex_state = 10}, + [1514] = {.lex_state = 52, .external_lex_state = 13}, + [1515] = {.lex_state = 52, .external_lex_state = 9}, + [1516] = {.lex_state = 33, .external_lex_state = 13}, + [1517] = {.lex_state = 52, .external_lex_state = 15}, + [1518] = {.lex_state = 52, .external_lex_state = 9}, + [1519] = {.lex_state = 52, .external_lex_state = 9}, + [1520] = {.lex_state = 52, .external_lex_state = 15}, + [1521] = {.lex_state = 52, .external_lex_state = 13}, + [1522] = {.lex_state = 52, .external_lex_state = 13}, + [1523] = {.lex_state = 52, .external_lex_state = 11}, + [1524] = {.lex_state = 52, .external_lex_state = 13}, + [1525] = {.lex_state = 52, .external_lex_state = 9}, + [1526] = {.lex_state = 52, .external_lex_state = 13}, + [1527] = {.lex_state = 52, .external_lex_state = 9}, + [1528] = {.lex_state = 52, .external_lex_state = 15}, + [1529] = {.lex_state = 52, .external_lex_state = 9}, + [1530] = {.lex_state = 52, .external_lex_state = 9}, + [1531] = {.lex_state = 52, .external_lex_state = 15}, + [1532] = {.lex_state = 52, .external_lex_state = 9}, + [1533] = {.lex_state = 52, .external_lex_state = 9}, + [1534] = {.lex_state = 52, .external_lex_state = 13}, + [1535] = {.lex_state = 52, .external_lex_state = 10}, + [1536] = {.lex_state = 52, .external_lex_state = 9}, + [1537] = {.lex_state = 52, .external_lex_state = 15}, + [1538] = {.lex_state = 52, .external_lex_state = 12}, + [1539] = {.lex_state = 52, .external_lex_state = 12}, + [1540] = {.lex_state = 52, .external_lex_state = 12}, + [1541] = {.lex_state = 52, .external_lex_state = 10}, + [1542] = {.lex_state = 52, .external_lex_state = 12}, + [1543] = {.lex_state = 52, .external_lex_state = 12}, + [1544] = {.lex_state = 52, .external_lex_state = 10}, + [1545] = {.lex_state = 52, .external_lex_state = 9}, + [1546] = {.lex_state = 52, .external_lex_state = 12}, + [1547] = {.lex_state = 52, .external_lex_state = 10}, + [1548] = {.lex_state = 52, .external_lex_state = 12}, + [1549] = {.lex_state = 52, .external_lex_state = 13}, + [1550] = {.lex_state = 52, .external_lex_state = 10}, + [1551] = {.lex_state = 52, .external_lex_state = 10}, + [1552] = {.lex_state = 52, .external_lex_state = 12}, + [1553] = {.lex_state = 52, .external_lex_state = 13}, + [1554] = {.lex_state = 52, .external_lex_state = 13}, + [1555] = {.lex_state = 33, .external_lex_state = 13}, + [1556] = {.lex_state = 52, .external_lex_state = 12}, + [1557] = {.lex_state = 52, .external_lex_state = 12}, + [1558] = {.lex_state = 52, .external_lex_state = 12}, + [1559] = {.lex_state = 52, .external_lex_state = 13}, + [1560] = {.lex_state = 52, .external_lex_state = 9}, + [1561] = {.lex_state = 52, .external_lex_state = 13}, + [1562] = {.lex_state = 52, .external_lex_state = 16}, + [1563] = {.lex_state = 52, .external_lex_state = 11}, + [1564] = {.lex_state = 52, .external_lex_state = 11}, + [1565] = {.lex_state = 52, .external_lex_state = 13}, + [1566] = {.lex_state = 52, .external_lex_state = 13}, + [1567] = {.lex_state = 52, .external_lex_state = 12}, + [1568] = {.lex_state = 52, .external_lex_state = 12}, + [1569] = {.lex_state = 52, .external_lex_state = 9}, + [1570] = {.lex_state = 52, .external_lex_state = 13}, + [1571] = {.lex_state = 52, .external_lex_state = 11}, + [1572] = {.lex_state = 52, .external_lex_state = 10}, + [1573] = {.lex_state = 52, .external_lex_state = 9}, + [1574] = {.lex_state = 52, .external_lex_state = 11}, + [1575] = {.lex_state = 52, .external_lex_state = 11}, + [1576] = {.lex_state = 52, .external_lex_state = 9}, + [1577] = {.lex_state = 52, .external_lex_state = 10}, + [1578] = {.lex_state = 52, .external_lex_state = 13}, + [1579] = {.lex_state = 52, .external_lex_state = 12}, + [1580] = {.lex_state = 52, .external_lex_state = 11}, + [1581] = {.lex_state = 52, .external_lex_state = 11}, + [1582] = {.lex_state = 3, .external_lex_state = 10}, + [1583] = {.lex_state = 52, .external_lex_state = 10}, + [1584] = {.lex_state = 52, .external_lex_state = 11}, + [1585] = {.lex_state = 52, .external_lex_state = 11}, + [1586] = {.lex_state = 33, .external_lex_state = 13}, + [1587] = {.lex_state = 52, .external_lex_state = 10}, + [1588] = {.lex_state = 52, .external_lex_state = 13}, + [1589] = {.lex_state = 33, .external_lex_state = 13}, + [1590] = {.lex_state = 33, .external_lex_state = 13}, + [1591] = {.lex_state = 52, .external_lex_state = 11}, + [1592] = {.lex_state = 52, .external_lex_state = 11}, + [1593] = {.lex_state = 33, .external_lex_state = 13}, + [1594] = {.lex_state = 52, .external_lex_state = 11}, + [1595] = {.lex_state = 52, .external_lex_state = 12}, + [1596] = {.lex_state = 52, .external_lex_state = 10}, + [1597] = {.lex_state = 52, .external_lex_state = 9}, + [1598] = {.lex_state = 52, .external_lex_state = 10}, + [1599] = {.lex_state = 52, .external_lex_state = 10}, + [1600] = {.lex_state = 52, .external_lex_state = 12}, + [1601] = {.lex_state = 52, .external_lex_state = 11}, + [1602] = {.lex_state = 52, .external_lex_state = 11}, + [1603] = {.lex_state = 52, .external_lex_state = 13}, + [1604] = {.lex_state = 52, .external_lex_state = 11}, + [1605] = {.lex_state = 52, .external_lex_state = 13}, + [1606] = {.lex_state = 52, .external_lex_state = 12}, + [1607] = {.lex_state = 52, .external_lex_state = 12}, + [1608] = {.lex_state = 52, .external_lex_state = 11}, + [1609] = {.lex_state = 52, .external_lex_state = 12}, + [1610] = {.lex_state = 52, .external_lex_state = 12}, + [1611] = {.lex_state = 52, .external_lex_state = 13}, + [1612] = {.lex_state = 52, .external_lex_state = 13}, + [1613] = {.lex_state = 52, .external_lex_state = 11}, + [1614] = {.lex_state = 52, .external_lex_state = 16}, + [1615] = {.lex_state = 52, .external_lex_state = 16}, + [1616] = {.lex_state = 52, .external_lex_state = 11}, + [1617] = {.lex_state = 52, .external_lex_state = 11}, + [1618] = {.lex_state = 52, .external_lex_state = 13}, + [1619] = {.lex_state = 52, .external_lex_state = 11}, + [1620] = {.lex_state = 52, .external_lex_state = 11}, + [1621] = {.lex_state = 52, .external_lex_state = 11}, + [1622] = {.lex_state = 52, .external_lex_state = 11}, + [1623] = {.lex_state = 52, .external_lex_state = 12}, + [1624] = {.lex_state = 52, .external_lex_state = 13}, + [1625] = {.lex_state = 52, .external_lex_state = 12}, + [1626] = {.lex_state = 52, .external_lex_state = 11}, + [1627] = {.lex_state = 52, .external_lex_state = 12}, + [1628] = {.lex_state = 33, .external_lex_state = 13}, + [1629] = {.lex_state = 52, .external_lex_state = 13}, + [1630] = {.lex_state = 52, .external_lex_state = 13}, + [1631] = {.lex_state = 52, .external_lex_state = 12}, + [1632] = {.lex_state = 52, .external_lex_state = 11}, + [1633] = {.lex_state = 52, .external_lex_state = 12}, + [1634] = {.lex_state = 52, .external_lex_state = 10}, + [1635] = {.lex_state = 3, .external_lex_state = 10}, + [1636] = {.lex_state = 52, .external_lex_state = 11}, + [1637] = {.lex_state = 52, .external_lex_state = 11}, + [1638] = {.lex_state = 3, .external_lex_state = 10}, + [1639] = {.lex_state = 52, .external_lex_state = 12}, + [1640] = {.lex_state = 3, .external_lex_state = 10}, + [1641] = {.lex_state = 52, .external_lex_state = 11}, + [1642] = {.lex_state = 52, .external_lex_state = 10}, + [1643] = {.lex_state = 52, .external_lex_state = 11}, + [1644] = {.lex_state = 52, .external_lex_state = 11}, + [1645] = {.lex_state = 52, .external_lex_state = 13}, + [1646] = {.lex_state = 52, .external_lex_state = 12}, + [1647] = {.lex_state = 33, .external_lex_state = 13}, + [1648] = {.lex_state = 52, .external_lex_state = 10}, + [1649] = {.lex_state = 52, .external_lex_state = 11}, + [1650] = {.lex_state = 52, .external_lex_state = 11}, + [1651] = {.lex_state = 52, .external_lex_state = 16}, + [1652] = {.lex_state = 52, .external_lex_state = 16}, + [1653] = {.lex_state = 52, .external_lex_state = 12}, + [1654] = {.lex_state = 52, .external_lex_state = 13}, + [1655] = {.lex_state = 52, .external_lex_state = 11}, + [1656] = {.lex_state = 52, .external_lex_state = 10}, + [1657] = {.lex_state = 33, .external_lex_state = 13}, + [1658] = {.lex_state = 52, .external_lex_state = 11}, + [1659] = {.lex_state = 52, .external_lex_state = 11}, + [1660] = {.lex_state = 52, .external_lex_state = 12}, + [1661] = {.lex_state = 52, .external_lex_state = 11}, + [1662] = {.lex_state = 52, .external_lex_state = 12}, + [1663] = {.lex_state = 52, .external_lex_state = 12}, + [1664] = {.lex_state = 52, .external_lex_state = 12}, + [1665] = {.lex_state = 52, .external_lex_state = 12}, + [1666] = {.lex_state = 52, .external_lex_state = 13}, + [1667] = {.lex_state = 52, .external_lex_state = 10}, + [1668] = {.lex_state = 52, .external_lex_state = 11}, + [1669] = {.lex_state = 52, .external_lex_state = 11}, + [1670] = {.lex_state = 52, .external_lex_state = 13}, + [1671] = {.lex_state = 3, .external_lex_state = 10}, + [1672] = {.lex_state = 52, .external_lex_state = 11}, + [1673] = {.lex_state = 3, .external_lex_state = 10}, + [1674] = {.lex_state = 3, .external_lex_state = 10}, + [1675] = {.lex_state = 52, .external_lex_state = 11}, + [1676] = {.lex_state = 52, .external_lex_state = 11}, + [1677] = {.lex_state = 52, .external_lex_state = 10}, + [1678] = {.lex_state = 52, .external_lex_state = 11}, + [1679] = {.lex_state = 52, .external_lex_state = 10}, + [1680] = {.lex_state = 52, .external_lex_state = 11}, + [1681] = {.lex_state = 52, .external_lex_state = 16}, + [1682] = {.lex_state = 3, .external_lex_state = 10}, + [1683] = {.lex_state = 52, .external_lex_state = 10}, + [1684] = {.lex_state = 52, .external_lex_state = 11}, + [1685] = {.lex_state = 52, .external_lex_state = 10}, + [1686] = {.lex_state = 52, .external_lex_state = 10}, + [1687] = {.lex_state = 52, .external_lex_state = 11}, + [1688] = {.lex_state = 52, .external_lex_state = 11}, + [1689] = {.lex_state = 52, .external_lex_state = 11}, + [1690] = {.lex_state = 52, .external_lex_state = 9}, + [1691] = {.lex_state = 52, .external_lex_state = 12}, + [1692] = {.lex_state = 52, .external_lex_state = 12}, + [1693] = {.lex_state = 52, .external_lex_state = 12}, + [1694] = {.lex_state = 52, .external_lex_state = 11}, + [1695] = {.lex_state = 52, .external_lex_state = 11}, + [1696] = {.lex_state = 52, .external_lex_state = 12}, + [1697] = {.lex_state = 52, .external_lex_state = 12}, + [1698] = {.lex_state = 3, .external_lex_state = 10}, + [1699] = {.lex_state = 52, .external_lex_state = 11}, + [1700] = {.lex_state = 52, .external_lex_state = 16}, + [1701] = {.lex_state = 52, .external_lex_state = 13}, + [1702] = {.lex_state = 52, .external_lex_state = 16}, + [1703] = {.lex_state = 52, .external_lex_state = 11}, + [1704] = {.lex_state = 52, .external_lex_state = 13}, + [1705] = {.lex_state = 52, .external_lex_state = 12}, + [1706] = {.lex_state = 52, .external_lex_state = 9}, + [1707] = {.lex_state = 52, .external_lex_state = 13}, + [1708] = {.lex_state = 52, .external_lex_state = 13}, + [1709] = {.lex_state = 52, .external_lex_state = 15}, + [1710] = {.lex_state = 52, .external_lex_state = 11}, + [1711] = {.lex_state = 52, .external_lex_state = 15}, + [1712] = {.lex_state = 52, .external_lex_state = 15}, + [1713] = {.lex_state = 52, .external_lex_state = 15}, + [1714] = {.lex_state = 52, .external_lex_state = 9}, + [1715] = {.lex_state = 52, .external_lex_state = 12}, + [1716] = {.lex_state = 52, .external_lex_state = 9}, + [1717] = {.lex_state = 52, .external_lex_state = 15}, + [1718] = {.lex_state = 52, .external_lex_state = 15}, + [1719] = {.lex_state = 52, .external_lex_state = 9}, + [1720] = {.lex_state = 52, .external_lex_state = 15}, + [1721] = {.lex_state = 52, .external_lex_state = 12}, + [1722] = {.lex_state = 52, .external_lex_state = 15}, + [1723] = {.lex_state = 52, .external_lex_state = 13}, + [1724] = {.lex_state = 52, .external_lex_state = 12}, + [1725] = {.lex_state = 52, .external_lex_state = 11}, + [1726] = {.lex_state = 52, .external_lex_state = 13}, + [1727] = {.lex_state = 52, .external_lex_state = 15}, + [1728] = {.lex_state = 52, .external_lex_state = 13}, + [1729] = {.lex_state = 52, .external_lex_state = 13}, + [1730] = {.lex_state = 35, .external_lex_state = 13}, + [1731] = {.lex_state = 52, .external_lex_state = 12}, + [1732] = {.lex_state = 52, .external_lex_state = 9}, + [1733] = {.lex_state = 35, .external_lex_state = 13}, + [1734] = {.lex_state = 35, .external_lex_state = 13}, + [1735] = {.lex_state = 52, .external_lex_state = 11}, + [1736] = {.lex_state = 52, .external_lex_state = 11}, + [1737] = {.lex_state = 52, .external_lex_state = 12}, + [1738] = {.lex_state = 52, .external_lex_state = 15}, + [1739] = {.lex_state = 52, .external_lex_state = 15}, + [1740] = {.lex_state = 35, .external_lex_state = 13}, + [1741] = {.lex_state = 52, .external_lex_state = 15}, + [1742] = {.lex_state = 52, .external_lex_state = 12}, + [1743] = {.lex_state = 35, .external_lex_state = 13}, + [1744] = {.lex_state = 52, .external_lex_state = 15}, + [1745] = {.lex_state = 52, .external_lex_state = 12}, + [1746] = {.lex_state = 52, .external_lex_state = 15}, + [1747] = {.lex_state = 52, .external_lex_state = 11}, + [1748] = {.lex_state = 52, .external_lex_state = 9}, + [1749] = {.lex_state = 52, .external_lex_state = 15}, + [1750] = {.lex_state = 52, .external_lex_state = 11}, + [1751] = {.lex_state = 52, .external_lex_state = 13}, + [1752] = {.lex_state = 52, .external_lex_state = 15}, + [1753] = {.lex_state = 52, .external_lex_state = 10}, + [1754] = {.lex_state = 52, .external_lex_state = 10}, + [1755] = {.lex_state = 52, .external_lex_state = 15}, + [1756] = {.lex_state = 52, .external_lex_state = 10}, + [1757] = {.lex_state = 52, .external_lex_state = 11}, + [1758] = {.lex_state = 52, .external_lex_state = 11}, + [1759] = {.lex_state = 52, .external_lex_state = 15}, + [1760] = {.lex_state = 52, .external_lex_state = 13}, + [1761] = {.lex_state = 52, .external_lex_state = 15}, + [1762] = {.lex_state = 52, .external_lex_state = 13}, + [1763] = {.lex_state = 52, .external_lex_state = 11}, + [1764] = {.lex_state = 35, .external_lex_state = 13}, + [1765] = {.lex_state = 35, .external_lex_state = 13}, + [1766] = {.lex_state = 35, .external_lex_state = 13}, + [1767] = {.lex_state = 35, .external_lex_state = 13}, + [1768] = {.lex_state = 52, .external_lex_state = 11}, + [1769] = {.lex_state = 52, .external_lex_state = 15}, + [1770] = {.lex_state = 52, .external_lex_state = 15}, + [1771] = {.lex_state = 52, .external_lex_state = 9}, + [1772] = {.lex_state = 52, .external_lex_state = 11}, + [1773] = {.lex_state = 52, .external_lex_state = 15}, + [1774] = {.lex_state = 52, .external_lex_state = 12}, + [1775] = {.lex_state = 52, .external_lex_state = 9}, + [1776] = {.lex_state = 52, .external_lex_state = 15}, + [1777] = {.lex_state = 52, .external_lex_state = 9}, + [1778] = {.lex_state = 52, .external_lex_state = 15}, + [1779] = {.lex_state = 52, .external_lex_state = 9}, + [1780] = {.lex_state = 52, .external_lex_state = 15}, + [1781] = {.lex_state = 52, .external_lex_state = 9}, + [1782] = {.lex_state = 35, .external_lex_state = 13}, + [1783] = {.lex_state = 52, .external_lex_state = 15}, + [1784] = {.lex_state = 52, .external_lex_state = 10}, + [1785] = {.lex_state = 52, .external_lex_state = 11}, + [1786] = {.lex_state = 52, .external_lex_state = 13}, + [1787] = {.lex_state = 52, .external_lex_state = 13}, + [1788] = {.lex_state = 52, .external_lex_state = 12}, + [1789] = {.lex_state = 52, .external_lex_state = 10}, + [1790] = {.lex_state = 52, .external_lex_state = 13}, + [1791] = {.lex_state = 52, .external_lex_state = 10}, + [1792] = {.lex_state = 52, .external_lex_state = 13}, + [1793] = {.lex_state = 52, .external_lex_state = 10}, + [1794] = {.lex_state = 52, .external_lex_state = 13}, + [1795] = {.lex_state = 52, .external_lex_state = 13}, + [1796] = {.lex_state = 52, .external_lex_state = 12}, + [1797] = {.lex_state = 52, .external_lex_state = 11}, + [1798] = {.lex_state = 52, .external_lex_state = 13}, + [1799] = {.lex_state = 52, .external_lex_state = 10}, + [1800] = {.lex_state = 52, .external_lex_state = 10}, + [1801] = {.lex_state = 52, .external_lex_state = 13}, + [1802] = {.lex_state = 52, .external_lex_state = 11}, + [1803] = {.lex_state = 52, .external_lex_state = 13}, + [1804] = {.lex_state = 52, .external_lex_state = 10}, + [1805] = {.lex_state = 52, .external_lex_state = 10}, + [1806] = {.lex_state = 52, .external_lex_state = 12}, + [1807] = {.lex_state = 52, .external_lex_state = 12}, + [1808] = {.lex_state = 52, .external_lex_state = 12}, + [1809] = {.lex_state = 52, .external_lex_state = 13}, + [1810] = {.lex_state = 52, .external_lex_state = 10}, + [1811] = {.lex_state = 52, .external_lex_state = 12}, + [1812] = {.lex_state = 52, .external_lex_state = 10}, + [1813] = {.lex_state = 52, .external_lex_state = 10}, + [1814] = {.lex_state = 52, .external_lex_state = 13}, + [1815] = {.lex_state = 52, .external_lex_state = 12}, + [1816] = {.lex_state = 52, .external_lex_state = 12}, + [1817] = {.lex_state = 52, .external_lex_state = 11}, + [1818] = {.lex_state = 52, .external_lex_state = 11}, + [1819] = {.lex_state = 52, .external_lex_state = 13}, + [1820] = {.lex_state = 29, .external_lex_state = 13}, + [1821] = {.lex_state = 52, .external_lex_state = 13}, + [1822] = {.lex_state = 52, .external_lex_state = 13}, + [1823] = {.lex_state = 52, .external_lex_state = 13}, + [1824] = {.lex_state = 52, .external_lex_state = 10}, + [1825] = {.lex_state = 52, .external_lex_state = 13}, + [1826] = {.lex_state = 52, .external_lex_state = 13}, + [1827] = {.lex_state = 52, .external_lex_state = 13}, + [1828] = {.lex_state = 52, .external_lex_state = 13}, + [1829] = {.lex_state = 52, .external_lex_state = 10}, + [1830] = {.lex_state = 52, .external_lex_state = 13}, + [1831] = {.lex_state = 52, .external_lex_state = 11}, + [1832] = {.lex_state = 52, .external_lex_state = 13}, + [1833] = {.lex_state = 52, .external_lex_state = 10}, + [1834] = {.lex_state = 52, .external_lex_state = 10}, + [1835] = {.lex_state = 52, .external_lex_state = 13}, + [1836] = {.lex_state = 52, .external_lex_state = 11}, + [1837] = {.lex_state = 29, .external_lex_state = 13}, + [1838] = {.lex_state = 29, .external_lex_state = 13}, + [1839] = {.lex_state = 52, .external_lex_state = 10}, + [1840] = {.lex_state = 52, .external_lex_state = 10}, + [1841] = {.lex_state = 52, .external_lex_state = 11}, + [1842] = {.lex_state = 52, .external_lex_state = 13}, + [1843] = {.lex_state = 52, .external_lex_state = 13}, + [1844] = {.lex_state = 52, .external_lex_state = 10}, + [1845] = {.lex_state = 52, .external_lex_state = 10}, + [1846] = {.lex_state = 52, .external_lex_state = 13}, + [1847] = {.lex_state = 52, .external_lex_state = 11}, + [1848] = {.lex_state = 52, .external_lex_state = 12}, + [1849] = {.lex_state = 52, .external_lex_state = 13}, + [1850] = {.lex_state = 52, .external_lex_state = 11}, + [1851] = {.lex_state = 52, .external_lex_state = 13}, + [1852] = {.lex_state = 52, .external_lex_state = 13}, + [1853] = {.lex_state = 52, .external_lex_state = 12}, + [1854] = {.lex_state = 52, .external_lex_state = 13}, + [1855] = {.lex_state = 52, .external_lex_state = 13}, + [1856] = {.lex_state = 52, .external_lex_state = 13}, + [1857] = {.lex_state = 52, .external_lex_state = 13}, + [1858] = {.lex_state = 52, .external_lex_state = 10}, + [1859] = {.lex_state = 52, .external_lex_state = 10}, + [1860] = {.lex_state = 52, .external_lex_state = 13}, + [1861] = {.lex_state = 52, .external_lex_state = 13}, + [1862] = {.lex_state = 52, .external_lex_state = 13}, + [1863] = {.lex_state = 52, .external_lex_state = 12}, + [1864] = {.lex_state = 52, .external_lex_state = 13}, + [1865] = {.lex_state = 52, .external_lex_state = 13}, + [1866] = {.lex_state = 52, .external_lex_state = 12}, + [1867] = {.lex_state = 52, .external_lex_state = 13}, + [1868] = {.lex_state = 52, .external_lex_state = 12}, + [1869] = {.lex_state = 52, .external_lex_state = 10}, + [1870] = {.lex_state = 52, .external_lex_state = 10}, + [1871] = {.lex_state = 52, .external_lex_state = 10}, + [1872] = {.lex_state = 52, .external_lex_state = 11}, + [1873] = {.lex_state = 52, .external_lex_state = 13}, + [1874] = {.lex_state = 52, .external_lex_state = 11}, + [1875] = {.lex_state = 52, .external_lex_state = 13}, + [1876] = {.lex_state = 52, .external_lex_state = 10}, + [1877] = {.lex_state = 52, .external_lex_state = 13}, + [1878] = {.lex_state = 52, .external_lex_state = 12}, + [1879] = {.lex_state = 52, .external_lex_state = 10}, + [1880] = {.lex_state = 29, .external_lex_state = 13}, + [1881] = {.lex_state = 52, .external_lex_state = 10}, + [1882] = {.lex_state = 52, .external_lex_state = 10}, + [1883] = {.lex_state = 52, .external_lex_state = 13}, + [1884] = {.lex_state = 52, .external_lex_state = 11}, + [1885] = {.lex_state = 52, .external_lex_state = 11}, + [1886] = {.lex_state = 52, .external_lex_state = 11}, + [1887] = {.lex_state = 52, .external_lex_state = 10}, + [1888] = {.lex_state = 52, .external_lex_state = 10}, + [1889] = {.lex_state = 52, .external_lex_state = 13}, + [1890] = {.lex_state = 52, .external_lex_state = 13}, + [1891] = {.lex_state = 52, .external_lex_state = 10}, + [1892] = {.lex_state = 52, .external_lex_state = 11}, + [1893] = {.lex_state = 52, .external_lex_state = 12}, + [1894] = {.lex_state = 52, .external_lex_state = 13}, + [1895] = {.lex_state = 52, .external_lex_state = 13}, + [1896] = {.lex_state = 52, .external_lex_state = 13}, + [1897] = {.lex_state = 52, .external_lex_state = 13}, + [1898] = {.lex_state = 52, .external_lex_state = 10}, + [1899] = {.lex_state = 52, .external_lex_state = 13}, + [1900] = {.lex_state = 52, .external_lex_state = 10}, + [1901] = {.lex_state = 52, .external_lex_state = 13}, + [1902] = {.lex_state = 52, .external_lex_state = 13}, + [1903] = {.lex_state = 52, .external_lex_state = 12}, + [1904] = {.lex_state = 52, .external_lex_state = 11}, + [1905] = {.lex_state = 52, .external_lex_state = 10}, + [1906] = {.lex_state = 52, .external_lex_state = 13}, + [1907] = {.lex_state = 52, .external_lex_state = 11}, + [1908] = {.lex_state = 52, .external_lex_state = 11}, + [1909] = {.lex_state = 52, .external_lex_state = 11}, + [1910] = {.lex_state = 29, .external_lex_state = 13}, + [1911] = {.lex_state = 52, .external_lex_state = 13}, + [1912] = {.lex_state = 52, .external_lex_state = 10}, + [1913] = {.lex_state = 52, .external_lex_state = 13}, + [1914] = {.lex_state = 29, .external_lex_state = 13}, + [1915] = {.lex_state = 52, .external_lex_state = 13}, + [1916] = {.lex_state = 52, .external_lex_state = 13}, + [1917] = {.lex_state = 52, .external_lex_state = 11}, + [1918] = {.lex_state = 52, .external_lex_state = 12}, + [1919] = {.lex_state = 52, .external_lex_state = 13}, + [1920] = {.lex_state = 52, .external_lex_state = 13}, + [1921] = {.lex_state = 52, .external_lex_state = 10}, + [1922] = {.lex_state = 52, .external_lex_state = 10}, + [1923] = {.lex_state = 52, .external_lex_state = 13}, + [1924] = {.lex_state = 52, .external_lex_state = 12}, + [1925] = {.lex_state = 52, .external_lex_state = 13}, + [1926] = {.lex_state = 29, .external_lex_state = 13}, + [1927] = {.lex_state = 52, .external_lex_state = 12}, + [1928] = {.lex_state = 52, .external_lex_state = 13}, + [1929] = {.lex_state = 52, .external_lex_state = 13}, + [1930] = {.lex_state = 52, .external_lex_state = 13}, + [1931] = {.lex_state = 52, .external_lex_state = 13}, + [1932] = {.lex_state = 52, .external_lex_state = 13}, + [1933] = {.lex_state = 52, .external_lex_state = 13}, + [1934] = {.lex_state = 52, .external_lex_state = 13}, + [1935] = {.lex_state = 52, .external_lex_state = 13}, + [1936] = {.lex_state = 52, .external_lex_state = 13}, + [1937] = {.lex_state = 52, .external_lex_state = 13}, +}; + +enum { + ts_external_token__newline = 0, + ts_external_token__indent = 1, + ts_external_token__dedent = 2, + ts_external_token_string_start = 3, + ts_external_token__string_content = 4, + ts_external_token_escape_interpolation = 5, + ts_external_token_string_end = 6, + ts_external_token_comment = 7, + ts_external_token_RBRACK = 8, + ts_external_token_RPAREN = 9, + ts_external_token_RBRACE = 10, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token_string_start] = sym_string_start, + [ts_external_token__string_content] = sym__string_content, + [ts_external_token_escape_interpolation] = sym_escape_interpolation, + [ts_external_token_string_end] = sym_string_end, + [ts_external_token_comment] = sym_comment, + [ts_external_token_RBRACK] = anon_sym_RBRACK, + [ts_external_token_RPAREN] = anon_sym_RPAREN, + [ts_external_token_RBRACE] = anon_sym_RBRACE, +}; + +static const bool ts_external_scanner_states[17][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token__string_content] = true, + [ts_external_token_escape_interpolation] = true, + [ts_external_token_string_end] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, + }, + [2] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [3] = { + [ts_external_token__dedent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [4] = { + [ts_external_token__newline] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [5] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + }, + [6] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [7] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [8] = { + [ts_external_token_string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [9] = { + [ts_external_token__newline] = true, + [ts_external_token_comment] = true, + }, + [10] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [11] = { + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [12] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [13] = { + [ts_external_token_comment] = true, + }, + [14] = { + [ts_external_token__string_content] = true, + [ts_external_token_escape_interpolation] = true, + [ts_external_token_string_end] = true, + [ts_external_token_comment] = true, + }, + [15] = { + [ts_external_token__dedent] = true, + [ts_external_token_comment] = true, + }, + [16] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token_comment] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_from] = ACTIONS(1), + [anon_sym___future__] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_print] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), + [anon_sym_eq] = ACTIONS(1), + [anon_sym_ne] = ACTIONS(1), + [anon_sym_contains] = ACTIONS(1), + [anon_sym_fails] = ACTIONS(1), + [anon_sym_assert_] = ACTIONS(1), + [anon_sym_assert_eq] = ACTIONS(1), + [anon_sym_assert_ne] = ACTIONS(1), + [anon_sym_assert_contains] = ACTIONS(1), + [anon_sym_assert_fails] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_del] = ACTIONS(1), + [anon_sym_raise] = ACTIONS(1), + [anon_sym_pass] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_except] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_def] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_global] = ACTIONS(1), + [anon_sym_nonlocal] = ACTIONS(1), + [anon_sym_exec] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [anon_sym_lambda] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_AT_EQ] = ACTIONS(1), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_yield] = ACTIONS(1), + [sym_ellipsis] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [sym__not_escape_sequence] = ACTIONS(1), + [sym_type_conversion] = ACTIONS(1), + [sym_integer] = ACTIONS(1), + [sym_float] = ACTIONS(1), + [anon_sym_await] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_none] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(5), + [sym__newline] = ACTIONS(1), + [sym__indent] = ACTIONS(1), + [sym__dedent] = ACTIONS(1), + [sym_string_start] = ACTIONS(1), + [sym__string_content] = ACTIONS(1), + [sym_escape_interpolation] = ACTIONS(1), + [sym_string_end] = ACTIONS(1), + }, + [1] = { + [sym_module] = STATE(1919), + [sym__statement] = STATE(43), + [sym__simple_statements] = STATE(43), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_if_statement] = STATE(43), + [sym_match_statement] = STATE(43), + [sym_for_statement] = STATE(43), + [sym_while_statement] = STATE(43), + [sym_with_statement] = STATE(43), + [sym_function_definition] = STATE(43), + [sym_exec_statement] = STATE(1690), + [sym_decorated_definition] = STATE(43), + [sym_decorator] = STATE(1445), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(43), + [aux_sym_decorated_definition_repeat1] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(7), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_match] = ACTIONS(33), + [anon_sym_async] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_with] = ACTIONS(41), + [anon_sym_def] = ACTIONS(43), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(67), + }, + [2] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(546), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [3] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(502), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [4] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1744), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [5] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1722), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [6] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1720), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [7] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(593), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [8] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(551), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [9] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1712), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [10] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(558), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [11] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(563), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [12] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(532), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [13] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1709), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [14] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(549), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [15] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(477), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [16] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(571), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [17] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(453), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [18] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(487), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [19] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(568), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [20] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(521), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [21] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(590), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [22] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(486), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [23] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(524), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [24] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(542), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [25] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1755), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [26] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(579), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [27] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(493), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [28] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(575), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [29] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(515), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [30] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1713), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [31] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(587), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [32] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(578), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [33] = { + [sym__statement] = STATE(47), + [sym__simple_statements] = STATE(47), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(47), + [sym_match_statement] = STATE(47), + [sym_for_statement] = STATE(47), + [sym_while_statement] = STATE(47), + [sym_with_statement] = STATE(47), + [sym_function_definition] = STATE(47), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(47), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(1783), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(47), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(87), + [sym_string_start] = ACTIONS(67), + }, + [34] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(495), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [35] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(481), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [36] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(508), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [37] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(536), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [38] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(462), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [39] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(538), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [40] = { + [sym__statement] = STATE(45), + [sym__simple_statements] = STATE(45), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(45), + [sym_match_statement] = STATE(45), + [sym_for_statement] = STATE(45), + [sym_while_statement] = STATE(45), + [sym_with_statement] = STATE(45), + [sym_function_definition] = STATE(45), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(45), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(561), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(45), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(85), + [sym_string_start] = ACTIONS(67), + }, + [41] = { + [sym__statement] = STATE(44), + [sym__simple_statements] = STATE(44), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(44), + [sym_match_statement] = STATE(44), + [sym_for_statement] = STATE(44), + [sym_while_statement] = STATE(44), + [sym_with_statement] = STATE(44), + [sym_function_definition] = STATE(44), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(44), + [sym_decorator] = STATE(1440), + [sym_block] = STATE(480), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(44), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(83), + [sym_string_start] = ACTIONS(67), + }, + [42] = { + [sym__statement] = STATE(42), + [sym__simple_statements] = STATE(42), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_if_statement] = STATE(42), + [sym_match_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_with_statement] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_exec_statement] = STATE(1690), + [sym_decorated_definition] = STATE(42), + [sym_decorator] = STATE(1445), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(42), + [aux_sym_decorated_definition_repeat1] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(89), + [sym_identifier] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(94), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_print] = ACTIONS(100), + [anon_sym_assert] = ACTIONS(103), + [anon_sym_assert_] = ACTIONS(106), + [anon_sym_assert_eq] = ACTIONS(106), + [anon_sym_assert_ne] = ACTIONS(106), + [anon_sym_assert_contains] = ACTIONS(106), + [anon_sym_assert_fails] = ACTIONS(106), + [anon_sym_return] = ACTIONS(109), + [anon_sym_del] = ACTIONS(112), + [anon_sym_pass] = ACTIONS(115), + [anon_sym_break] = ACTIONS(118), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_if] = ACTIONS(124), + [anon_sym_match] = ACTIONS(127), + [anon_sym_async] = ACTIONS(130), + [anon_sym_for] = ACTIONS(133), + [anon_sym_while] = ACTIONS(136), + [anon_sym_with] = ACTIONS(139), + [anon_sym_def] = ACTIONS(142), + [anon_sym_exec] = ACTIONS(145), + [anon_sym_type] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(154), + [anon_sym_not] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_lambda] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(169), + [sym_integer] = ACTIONS(172), + [sym_float] = ACTIONS(166), + [anon_sym_await] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(175), + [sym_true] = ACTIONS(172), + [sym_false] = ACTIONS(172), + [sym_none] = ACTIONS(172), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(178), + }, + [43] = { + [sym__statement] = STATE(42), + [sym__simple_statements] = STATE(42), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_if_statement] = STATE(42), + [sym_match_statement] = STATE(42), + [sym_for_statement] = STATE(42), + [sym_while_statement] = STATE(42), + [sym_with_statement] = STATE(42), + [sym_function_definition] = STATE(42), + [sym_exec_statement] = STATE(1690), + [sym_decorated_definition] = STATE(42), + [sym_decorator] = STATE(1445), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(42), + [aux_sym_decorated_definition_repeat1] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(181), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_match] = ACTIONS(33), + [anon_sym_async] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_while] = ACTIONS(39), + [anon_sym_with] = ACTIONS(41), + [anon_sym_def] = ACTIONS(43), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(67), + }, + [44] = { + [sym__statement] = STATE(46), + [sym__simple_statements] = STATE(46), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(46), + [sym_match_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_with_statement] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(46), + [sym_decorator] = STATE(1440), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(46), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(183), + [sym_string_start] = ACTIONS(67), + }, + [45] = { + [sym__statement] = STATE(46), + [sym__simple_statements] = STATE(46), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(46), + [sym_match_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_with_statement] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(46), + [sym_decorator] = STATE(1440), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(46), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(185), + [sym_string_start] = ACTIONS(67), + }, + [46] = { + [sym__statement] = STATE(46), + [sym__simple_statements] = STATE(46), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(46), + [sym_match_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_with_statement] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(46), + [sym_decorator] = STATE(1440), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(46), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(91), + [anon_sym_LPAREN] = ACTIONS(94), + [anon_sym_STAR] = ACTIONS(97), + [anon_sym_print] = ACTIONS(100), + [anon_sym_assert] = ACTIONS(103), + [anon_sym_assert_] = ACTIONS(106), + [anon_sym_assert_eq] = ACTIONS(106), + [anon_sym_assert_ne] = ACTIONS(106), + [anon_sym_assert_contains] = ACTIONS(106), + [anon_sym_assert_fails] = ACTIONS(106), + [anon_sym_return] = ACTIONS(109), + [anon_sym_del] = ACTIONS(112), + [anon_sym_pass] = ACTIONS(115), + [anon_sym_break] = ACTIONS(118), + [anon_sym_continue] = ACTIONS(121), + [anon_sym_if] = ACTIONS(187), + [anon_sym_match] = ACTIONS(190), + [anon_sym_async] = ACTIONS(193), + [anon_sym_for] = ACTIONS(196), + [anon_sym_while] = ACTIONS(199), + [anon_sym_with] = ACTIONS(202), + [anon_sym_def] = ACTIONS(205), + [anon_sym_exec] = ACTIONS(145), + [anon_sym_type] = ACTIONS(148), + [anon_sym_LBRACK] = ACTIONS(151), + [anon_sym_AT] = ACTIONS(154), + [anon_sym_not] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(160), + [anon_sym_DASH] = ACTIONS(160), + [anon_sym_TILDE] = ACTIONS(160), + [anon_sym_lambda] = ACTIONS(163), + [sym_ellipsis] = ACTIONS(166), + [anon_sym_LBRACE] = ACTIONS(169), + [sym_integer] = ACTIONS(172), + [sym_float] = ACTIONS(166), + [anon_sym_await] = ACTIONS(175), + [anon_sym_struct] = ACTIONS(175), + [sym_true] = ACTIONS(172), + [sym_false] = ACTIONS(172), + [sym_none] = ACTIONS(172), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(89), + [sym_string_start] = ACTIONS(178), + }, + [47] = { + [sym__statement] = STATE(46), + [sym__simple_statements] = STATE(46), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_if_statement] = STATE(46), + [sym_match_statement] = STATE(46), + [sym_for_statement] = STATE(46), + [sym_while_statement] = STATE(46), + [sym_with_statement] = STATE(46), + [sym_function_definition] = STATE(46), + [sym_exec_statement] = STATE(1597), + [sym_decorated_definition] = STATE(46), + [sym_decorator] = STATE(1440), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [aux_sym_module_repeat1] = STATE(46), + [aux_sym_decorated_definition_repeat1] = STATE(1440), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_if] = ACTIONS(69), + [anon_sym_match] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_for] = ACTIONS(75), + [anon_sym_while] = ACTIONS(77), + [anon_sym_with] = ACTIONS(79), + [anon_sym_def] = ACTIONS(81), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_AT] = ACTIONS(51), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__dedent] = ACTIONS(208), + [sym_string_start] = ACTIONS(67), + }, + [48] = { + [sym_chevron] = STATE(1536), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_list_splat_pattern] = STATE(915), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(706), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_attribute] = STATE(794), + [sym_subscript] = STATE(794), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(219), + [anon_sym_as] = ACTIONS(214), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_if] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(231), + [anon_sym_match] = ACTIONS(225), + [anon_sym_async] = ACTIONS(225), + [anon_sym_in] = ACTIONS(214), + [anon_sym_STAR_STAR] = ACTIONS(214), + [anon_sym_exec] = ACTIONS(225), + [anon_sym_type] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(236), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_not] = ACTIONS(241), + [anon_sym_and] = ACTIONS(214), + [anon_sym_or] = ACTIONS(214), + [anon_sym_PLUS] = ACTIONS(244), + [anon_sym_DASH] = ACTIONS(244), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(214), + [anon_sym_SLASH_SLASH] = ACTIONS(214), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_AMP] = ACTIONS(214), + [anon_sym_CARET] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_LT_GT] = ACTIONS(212), + [anon_sym_lambda] = ACTIONS(57), + [anon_sym_PLUS_EQ] = ACTIONS(247), + [anon_sym_DASH_EQ] = ACTIONS(247), + [anon_sym_STAR_EQ] = ACTIONS(247), + [anon_sym_SLASH_EQ] = ACTIONS(247), + [anon_sym_AT_EQ] = ACTIONS(247), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), + [anon_sym_PERCENT_EQ] = ACTIONS(247), + [anon_sym_STAR_STAR_EQ] = ACTIONS(247), + [anon_sym_GT_GT_EQ] = ACTIONS(247), + [anon_sym_LT_LT_EQ] = ACTIONS(247), + [anon_sym_AMP_EQ] = ACTIONS(247), + [anon_sym_CARET_EQ] = ACTIONS(247), + [anon_sym_PIPE_EQ] = ACTIONS(247), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(225), + [anon_sym_struct] = ACTIONS(225), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(212), + [sym_string_start] = ACTIONS(67), + }, + [49] = { + [sym_chevron] = STATE(1536), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_list_splat_pattern] = STATE(915), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1327), + [sym_primary_expression] = STATE(706), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_attribute] = STATE(794), + [sym_subscript] = STATE(794), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(219), + [anon_sym_as] = ACTIONS(214), + [anon_sym_STAR] = ACTIONS(222), + [anon_sym_print] = ACTIONS(225), + [anon_sym_GT_GT] = ACTIONS(227), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_if] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(236), + [anon_sym_match] = ACTIONS(225), + [anon_sym_async] = ACTIONS(225), + [anon_sym_in] = ACTIONS(214), + [anon_sym_STAR_STAR] = ACTIONS(214), + [anon_sym_exec] = ACTIONS(225), + [anon_sym_type] = ACTIONS(234), + [anon_sym_EQ] = ACTIONS(236), + [anon_sym_LBRACK] = ACTIONS(238), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_not] = ACTIONS(241), + [anon_sym_and] = ACTIONS(214), + [anon_sym_or] = ACTIONS(214), + [anon_sym_PLUS] = ACTIONS(244), + [anon_sym_DASH] = ACTIONS(244), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(214), + [anon_sym_SLASH_SLASH] = ACTIONS(214), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_AMP] = ACTIONS(214), + [anon_sym_CARET] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_LT_GT] = ACTIONS(212), + [anon_sym_lambda] = ACTIONS(57), + [anon_sym_PLUS_EQ] = ACTIONS(247), + [anon_sym_DASH_EQ] = ACTIONS(247), + [anon_sym_STAR_EQ] = ACTIONS(247), + [anon_sym_SLASH_EQ] = ACTIONS(247), + [anon_sym_AT_EQ] = ACTIONS(247), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), + [anon_sym_PERCENT_EQ] = ACTIONS(247), + [anon_sym_STAR_STAR_EQ] = ACTIONS(247), + [anon_sym_GT_GT_EQ] = ACTIONS(247), + [anon_sym_LT_LT_EQ] = ACTIONS(247), + [anon_sym_AMP_EQ] = ACTIONS(247), + [anon_sym_CARET_EQ] = ACTIONS(247), + [anon_sym_PIPE_EQ] = ACTIONS(247), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(225), + [anon_sym_struct] = ACTIONS(225), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(212), + [sym_string_start] = ACTIONS(67), + }, + [50] = { + [sym_named_expression] = STATE(1267), + [sym__named_expression_lhs] = STATE(1820), + [sym_list_splat_pattern] = STATE(951), + [sym_as_pattern] = STATE(1267), + [sym_expression] = STATE(1372), + [sym_primary_expression] = STATE(736), + [sym_not_operator] = STATE(1267), + [sym_boolean_operator] = STATE(1267), + [sym_binary_operator] = STATE(1011), + [sym_unary_operator] = STATE(1011), + [sym_comparison_operator] = STATE(1267), + [sym_lambda] = STATE(1267), + [sym_attribute] = STATE(1011), + [sym_subscript] = STATE(1011), + [sym_call] = STATE(1011), + [sym_list] = STATE(1011), + [sym_set] = STATE(1011), + [sym_tuple] = STATE(1011), + [sym_dictionary] = STATE(1011), + [sym_list_comprehension] = STATE(1011), + [sym_dictionary_comprehension] = STATE(1011), + [sym_set_comprehension] = STATE(1011), + [sym_parenthesized_expression] = STATE(1011), + [sym_conditional_expression] = STATE(1267), + [sym_string] = STATE(1011), + [sym_identifier] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_COMMA] = ACTIONS(219), + [anon_sym_as] = ACTIONS(214), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_print] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(214), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_if] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(236), + [anon_sym_match] = ACTIONS(255), + [anon_sym_async] = ACTIONS(255), + [anon_sym_in] = ACTIONS(214), + [anon_sym_STAR_STAR] = ACTIONS(214), + [anon_sym_exec] = ACTIONS(255), + [anon_sym_type] = ACTIONS(257), + [anon_sym_EQ] = ACTIONS(236), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_not] = ACTIONS(261), + [anon_sym_and] = ACTIONS(214), + [anon_sym_or] = ACTIONS(214), + [anon_sym_PLUS] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(263), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(214), + [anon_sym_SLASH_SLASH] = ACTIONS(214), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_AMP] = ACTIONS(214), + [anon_sym_CARET] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_TILDE] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_LT_GT] = ACTIONS(212), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_PLUS_EQ] = ACTIONS(247), + [anon_sym_DASH_EQ] = ACTIONS(247), + [anon_sym_STAR_EQ] = ACTIONS(247), + [anon_sym_SLASH_EQ] = ACTIONS(247), + [anon_sym_AT_EQ] = ACTIONS(247), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), + [anon_sym_PERCENT_EQ] = ACTIONS(247), + [anon_sym_STAR_STAR_EQ] = ACTIONS(247), + [anon_sym_GT_GT_EQ] = ACTIONS(247), + [anon_sym_LT_LT_EQ] = ACTIONS(247), + [anon_sym_AMP_EQ] = ACTIONS(247), + [anon_sym_CARET_EQ] = ACTIONS(247), + [anon_sym_PIPE_EQ] = ACTIONS(247), + [sym_ellipsis] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(271), + [sym_integer] = ACTIONS(273), + [sym_float] = ACTIONS(269), + [anon_sym_await] = ACTIONS(255), + [anon_sym_struct] = ACTIONS(255), + [sym_true] = ACTIONS(273), + [sym_false] = ACTIONS(273), + [sym_none] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(212), + [sym_string_start] = ACTIONS(275), + }, + [51] = { + [sym_named_expression] = STATE(1267), + [sym__named_expression_lhs] = STATE(1820), + [sym_list_splat_pattern] = STATE(951), + [sym_as_pattern] = STATE(1267), + [sym_expression] = STATE(1355), + [sym_primary_expression] = STATE(736), + [sym_not_operator] = STATE(1267), + [sym_boolean_operator] = STATE(1267), + [sym_binary_operator] = STATE(1011), + [sym_unary_operator] = STATE(1011), + [sym_comparison_operator] = STATE(1267), + [sym_lambda] = STATE(1267), + [sym_attribute] = STATE(1011), + [sym_subscript] = STATE(1011), + [sym_call] = STATE(1011), + [sym_list] = STATE(1011), + [sym_set] = STATE(1011), + [sym_tuple] = STATE(1011), + [sym_dictionary] = STATE(1011), + [sym_list_comprehension] = STATE(1011), + [sym_dictionary_comprehension] = STATE(1011), + [sym_set_comprehension] = STATE(1011), + [sym_parenthesized_expression] = STATE(1011), + [sym_conditional_expression] = STATE(1267), + [sym_string] = STATE(1011), + [sym_identifier] = ACTIONS(249), + [anon_sym_SEMI] = ACTIONS(212), + [anon_sym_DOT] = ACTIONS(214), + [anon_sym_LPAREN] = ACTIONS(251), + [anon_sym_COMMA] = ACTIONS(219), + [anon_sym_as] = ACTIONS(214), + [anon_sym_STAR] = ACTIONS(253), + [anon_sym_print] = ACTIONS(255), + [anon_sym_GT_GT] = ACTIONS(214), + [anon_sym_COLON_EQ] = ACTIONS(229), + [anon_sym_if] = ACTIONS(214), + [anon_sym_COLON] = ACTIONS(236), + [anon_sym_match] = ACTIONS(255), + [anon_sym_async] = ACTIONS(255), + [anon_sym_in] = ACTIONS(214), + [anon_sym_STAR_STAR] = ACTIONS(214), + [anon_sym_exec] = ACTIONS(255), + [anon_sym_type] = ACTIONS(257), + [anon_sym_EQ] = ACTIONS(236), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_AT] = ACTIONS(214), + [anon_sym_not] = ACTIONS(261), + [anon_sym_and] = ACTIONS(214), + [anon_sym_or] = ACTIONS(214), + [anon_sym_PLUS] = ACTIONS(263), + [anon_sym_DASH] = ACTIONS(263), + [anon_sym_SLASH] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(214), + [anon_sym_SLASH_SLASH] = ACTIONS(214), + [anon_sym_PIPE] = ACTIONS(214), + [anon_sym_AMP] = ACTIONS(214), + [anon_sym_CARET] = ACTIONS(214), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_TILDE] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(214), + [anon_sym_LT_EQ] = ACTIONS(212), + [anon_sym_EQ_EQ] = ACTIONS(212), + [anon_sym_BANG_EQ] = ACTIONS(212), + [anon_sym_GT_EQ] = ACTIONS(212), + [anon_sym_GT] = ACTIONS(214), + [anon_sym_LT_GT] = ACTIONS(212), + [anon_sym_lambda] = ACTIONS(267), + [anon_sym_PLUS_EQ] = ACTIONS(247), + [anon_sym_DASH_EQ] = ACTIONS(247), + [anon_sym_STAR_EQ] = ACTIONS(247), + [anon_sym_SLASH_EQ] = ACTIONS(247), + [anon_sym_AT_EQ] = ACTIONS(247), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(247), + [anon_sym_PERCENT_EQ] = ACTIONS(247), + [anon_sym_STAR_STAR_EQ] = ACTIONS(247), + [anon_sym_GT_GT_EQ] = ACTIONS(247), + [anon_sym_LT_LT_EQ] = ACTIONS(247), + [anon_sym_AMP_EQ] = ACTIONS(247), + [anon_sym_CARET_EQ] = ACTIONS(247), + [anon_sym_PIPE_EQ] = ACTIONS(247), + [sym_ellipsis] = ACTIONS(269), + [anon_sym_LBRACE] = ACTIONS(271), + [sym_integer] = ACTIONS(273), + [sym_float] = ACTIONS(269), + [anon_sym_await] = ACTIONS(255), + [anon_sym_struct] = ACTIONS(255), + [sym_true] = ACTIONS(273), + [sym_false] = ACTIONS(273), + [sym_none] = ACTIONS(273), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(212), + [sym_string_start] = ACTIONS(275), + }, + [52] = { + [sym__simple_statements] = STATE(567), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(295), + [sym__indent] = ACTIONS(297), + [sym_string_start] = ACTIONS(67), + }, + [53] = { + [sym__simple_statements] = STATE(556), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(299), + [sym__indent] = ACTIONS(301), + [sym_string_start] = ACTIONS(67), + }, + [54] = { + [sym__simple_statements] = STATE(562), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(303), + [sym__indent] = ACTIONS(305), + [sym_string_start] = ACTIONS(67), + }, + [55] = { + [sym__simple_statements] = STATE(588), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(307), + [sym__indent] = ACTIONS(309), + [sym_string_start] = ACTIONS(67), + }, + [56] = { + [sym__simple_statements] = STATE(573), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(311), + [sym__indent] = ACTIONS(313), + [sym_string_start] = ACTIONS(67), + }, + [57] = { + [sym__simple_statements] = STATE(581), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(315), + [sym__indent] = ACTIONS(317), + [sym_string_start] = ACTIONS(67), + }, + [58] = { + [sym__simple_statements] = STATE(600), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(319), + [sym__indent] = ACTIONS(321), + [sym_string_start] = ACTIONS(67), + }, + [59] = { + [sym__simple_statements] = STATE(528), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(466), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1238), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(468), + [sym_subscript] = STATE(468), + [sym_call] = STATE(794), + [sym_type] = STATE(1488), + [sym_splat_type] = STATE(1511), + [sym_generic_type] = STATE(1511), + [sym_union_type] = STATE(1511), + [sym_constrained_type] = STATE(1511), + [sym_member_type] = STATE(1511), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(277), + [anon_sym_LPAREN] = ACTIONS(279), + [anon_sym_STAR] = ACTIONS(281), + [anon_sym_print] = ACTIONS(283), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(285), + [anon_sym_async] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(287), + [anon_sym_exec] = ACTIONS(289), + [anon_sym_type] = ACTIONS(291), + [anon_sym_LBRACK] = ACTIONS(293), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(285), + [anon_sym_struct] = ACTIONS(285), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(323), + [sym__indent] = ACTIONS(325), + [sym_string_start] = ACTIONS(67), + }, + [60] = { + [sym__simple_statements] = STATE(479), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(327), + [sym__indent] = ACTIONS(329), + [sym_string_start] = ACTIONS(67), + }, + [61] = { + [sym__simple_statements] = STATE(1749), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(331), + [sym__indent] = ACTIONS(333), + [sym_string_start] = ACTIONS(67), + }, + [62] = { + [sym__simple_statements] = STATE(499), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(335), + [sym__indent] = ACTIONS(337), + [sym_string_start] = ACTIONS(67), + }, + [63] = { + [sym__simple_statements] = STATE(1769), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(339), + [sym__indent] = ACTIONS(341), + [sym_string_start] = ACTIONS(67), + }, + [64] = { + [sym__simple_statements] = STATE(482), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(343), + [sym__indent] = ACTIONS(345), + [sym_string_start] = ACTIONS(67), + }, + [65] = { + [sym__simple_statements] = STATE(1738), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(347), + [sym__indent] = ACTIONS(349), + [sym_string_start] = ACTIONS(67), + }, + [66] = { + [sym__simple_statements] = STATE(1718), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(351), + [sym__indent] = ACTIONS(353), + [sym_string_start] = ACTIONS(67), + }, + [67] = { + [sym__simple_statements] = STATE(533), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(355), + [sym__indent] = ACTIONS(357), + [sym_string_start] = ACTIONS(67), + }, + [68] = { + [sym__simple_statements] = STATE(523), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(359), + [sym__indent] = ACTIONS(361), + [sym_string_start] = ACTIONS(67), + }, + [69] = { + [sym__simple_statements] = STATE(574), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(363), + [sym__indent] = ACTIONS(365), + [sym_string_start] = ACTIONS(67), + }, + [70] = { + [sym__simple_statements] = STATE(450), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(367), + [sym__indent] = ACTIONS(369), + [sym_string_start] = ACTIONS(67), + }, + [71] = { + [sym__simple_statements] = STATE(500), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(371), + [sym__indent] = ACTIONS(373), + [sym_string_start] = ACTIONS(67), + }, + [72] = { + [sym__simple_statements] = STATE(1739), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(375), + [sym__indent] = ACTIONS(377), + [sym_string_start] = ACTIONS(67), + }, + [73] = { + [sym__simple_statements] = STATE(511), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(379), + [sym__indent] = ACTIONS(381), + [sym_string_start] = ACTIONS(67), + }, + [74] = { + [sym__simple_statements] = STATE(1759), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(383), + [sym__indent] = ACTIONS(385), + [sym_string_start] = ACTIONS(67), + }, + [75] = { + [sym__simple_statements] = STATE(451), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(387), + [sym__indent] = ACTIONS(389), + [sym_string_start] = ACTIONS(67), + }, + [76] = { + [sym__simple_statements] = STATE(484), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(391), + [sym__indent] = ACTIONS(393), + [sym_string_start] = ACTIONS(67), + }, + [77] = { + [sym__simple_statements] = STATE(545), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(395), + [sym__indent] = ACTIONS(397), + [sym_string_start] = ACTIONS(67), + }, + [78] = { + [sym__simple_statements] = STATE(1746), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(399), + [sym__indent] = ACTIONS(401), + [sym_string_start] = ACTIONS(67), + }, + [79] = { + [sym__simple_statements] = STATE(498), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(403), + [sym__indent] = ACTIONS(405), + [sym_string_start] = ACTIONS(67), + }, + [80] = { + [sym__simple_statements] = STATE(564), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(407), + [sym__indent] = ACTIONS(409), + [sym_string_start] = ACTIONS(67), + }, + [81] = { + [sym__simple_statements] = STATE(504), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(411), + [sym__indent] = ACTIONS(413), + [sym_string_start] = ACTIONS(67), + }, + [82] = { + [sym__simple_statements] = STATE(557), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(415), + [sym__indent] = ACTIONS(417), + [sym_string_start] = ACTIONS(67), + }, + [83] = { + [sym__simple_statements] = STATE(553), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(419), + [sym__indent] = ACTIONS(421), + [sym_string_start] = ACTIONS(67), + }, + [84] = { + [sym__simple_statements] = STATE(589), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(423), + [sym__indent] = ACTIONS(425), + [sym_string_start] = ACTIONS(67), + }, + [85] = { + [sym__simple_statements] = STATE(509), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(427), + [sym__indent] = ACTIONS(429), + [sym_string_start] = ACTIONS(67), + }, + [86] = { + [sym__simple_statements] = STATE(512), + [sym_print_statement] = STATE(1690), + [sym_assert_statement] = STATE(1690), + [sym_expression_statement] = STATE(1690), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1690), + [sym_delete_statement] = STATE(1690), + [sym_pass_statement] = STATE(1690), + [sym_break_statement] = STATE(1690), + [sym_continue_statement] = STATE(1690), + [sym_exec_statement] = STATE(1690), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(431), + [sym__indent] = ACTIONS(433), + [sym_string_start] = ACTIONS(67), + }, + [87] = { + [sym__simple_statements] = STATE(520), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(435), + [sym__indent] = ACTIONS(437), + [sym_string_start] = ACTIONS(67), + }, + [88] = { + [sym__simple_statements] = STATE(489), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(439), + [sym__indent] = ACTIONS(441), + [sym_string_start] = ACTIONS(67), + }, + [89] = { + [sym__simple_statements] = STATE(1773), + [sym_print_statement] = STATE(1560), + [sym_assert_statement] = STATE(1560), + [sym_expression_statement] = STATE(1560), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1560), + [sym_delete_statement] = STATE(1560), + [sym_pass_statement] = STATE(1560), + [sym_break_statement] = STATE(1560), + [sym_continue_statement] = STATE(1560), + [sym_exec_statement] = STATE(1560), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(443), + [sym__indent] = ACTIONS(445), + [sym_string_start] = ACTIONS(67), + }, + [90] = { + [sym__simple_statements] = STATE(534), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(447), + [sym__indent] = ACTIONS(449), + [sym_string_start] = ACTIONS(67), + }, + [91] = { + [sym__simple_statements] = STATE(535), + [sym_print_statement] = STATE(1597), + [sym_assert_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1597), + [sym_delete_statement] = STATE(1597), + [sym_pass_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_exec_statement] = STATE(1597), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(451), + [sym__indent] = ACTIONS(453), + [sym_string_start] = ACTIONS(67), + }, + [92] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(455), + [sym_string_start] = ACTIONS(67), + }, + [93] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(457), + [sym_string_start] = ACTIONS(67), + }, + [94] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(459), + [sym_string_start] = ACTIONS(67), + }, + [95] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(461), + [sym_string_start] = ACTIONS(67), + }, + [96] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(463), + [sym_string_start] = ACTIONS(67), + }, + [97] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym__newline] = ACTIONS(465), + [sym_string_start] = ACTIONS(67), + }, + [98] = { + [sym_print_statement] = STATE(1781), + [sym_assert_statement] = STATE(1781), + [sym_expression_statement] = STATE(1781), + [sym_named_expression] = STATE(1234), + [sym__named_expression_lhs] = STATE(1914), + [sym_return_statement] = STATE(1781), + [sym_delete_statement] = STATE(1781), + [sym_pass_statement] = STATE(1781), + [sym_break_statement] = STATE(1781), + [sym_continue_statement] = STATE(1781), + [sym_exec_statement] = STATE(1781), + [sym_pattern] = STATE(1197), + [sym_tuple_pattern] = STATE(1198), + [sym_list_pattern] = STATE(1198), + [sym_list_splat_pattern] = STATE(449), + [sym_as_pattern] = STATE(1234), + [sym_expression] = STATE(1323), + [sym_primary_expression] = STATE(714), + [sym_not_operator] = STATE(1234), + [sym_boolean_operator] = STATE(1234), + [sym_binary_operator] = STATE(794), + [sym_unary_operator] = STATE(794), + [sym_comparison_operator] = STATE(1234), + [sym_lambda] = STATE(1234), + [sym_assignment] = STATE(1732), + [sym_augmented_assignment] = STATE(1732), + [sym_pattern_list] = STATE(1219), + [sym_attribute] = STATE(467), + [sym_subscript] = STATE(467), + [sym_call] = STATE(794), + [sym_list] = STATE(794), + [sym_set] = STATE(794), + [sym_tuple] = STATE(794), + [sym_dictionary] = STATE(794), + [sym_list_comprehension] = STATE(794), + [sym_dictionary_comprehension] = STATE(794), + [sym_set_comprehension] = STATE(794), + [sym_parenthesized_expression] = STATE(794), + [sym_conditional_expression] = STATE(1234), + [sym_string] = STATE(794), + [sym_identifier] = ACTIONS(9), + [anon_sym_LPAREN] = ACTIONS(11), + [anon_sym_STAR] = ACTIONS(13), + [anon_sym_print] = ACTIONS(15), + [anon_sym_assert] = ACTIONS(17), + [anon_sym_assert_] = ACTIONS(19), + [anon_sym_assert_eq] = ACTIONS(19), + [anon_sym_assert_ne] = ACTIONS(19), + [anon_sym_assert_contains] = ACTIONS(19), + [anon_sym_assert_fails] = ACTIONS(19), + [anon_sym_return] = ACTIONS(21), + [anon_sym_del] = ACTIONS(23), + [anon_sym_pass] = ACTIONS(25), + [anon_sym_break] = ACTIONS(27), + [anon_sym_continue] = ACTIONS(29), + [anon_sym_match] = ACTIONS(65), + [anon_sym_async] = ACTIONS(65), + [anon_sym_exec] = ACTIONS(45), + [anon_sym_type] = ACTIONS(47), + [anon_sym_LBRACK] = ACTIONS(49), + [anon_sym_not] = ACTIONS(53), + [anon_sym_PLUS] = ACTIONS(55), + [anon_sym_DASH] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(55), + [anon_sym_lambda] = ACTIONS(57), + [sym_ellipsis] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(61), + [sym_integer] = ACTIONS(63), + [sym_float] = ACTIONS(59), + [anon_sym_await] = ACTIONS(65), + [anon_sym_struct] = ACTIONS(65), + [sym_true] = ACTIONS(63), + [sym_false] = ACTIONS(63), + [sym_none] = ACTIONS(63), + [sym_comment] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(3), + [sym_string_start] = ACTIONS(67), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 20, + ACTIONS(265), 1, + anon_sym_TILDE, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(467), 1, + sym_identifier, + ACTIONS(471), 1, + anon_sym_LPAREN, + ACTIONS(473), 1, + anon_sym_STAR, + ACTIONS(477), 1, + anon_sym_type, + ACTIONS(479), 1, + anon_sym_LBRACK, + STATE(858), 1, + sym_list_splat_pattern, + STATE(1177), 1, + sym_pattern, + STATE(1209), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(263), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(859), 2, + sym_attribute, + sym_subscript, + STATE(1172), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(475), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + ACTIONS(469), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [101] = 20, + ACTIONS(265), 1, + anon_sym_TILDE, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(467), 1, + sym_identifier, + ACTIONS(471), 1, + anon_sym_LPAREN, + ACTIONS(473), 1, + anon_sym_STAR, + ACTIONS(477), 1, + anon_sym_type, + ACTIONS(479), 1, + anon_sym_LBRACK, + STATE(858), 1, + sym_list_splat_pattern, + STATE(1177), 1, + sym_pattern, + STATE(1209), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(263), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(859), 2, + sym_attribute, + sym_subscript, + STATE(1172), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(475), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + ACTIONS(481), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [202] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + anon_sym_STAR, + ACTIONS(47), 1, + anon_sym_type, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + STATE(449), 1, + sym_list_splat_pattern, + STATE(714), 1, + sym_primary_expression, + STATE(1194), 1, + sym_pattern, + STATE(1207), 1, + sym_pattern_list, + STATE(1315), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + STATE(467), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1777), 4, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + ACTIONS(65), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [312] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(487), 1, + anon_sym_COMMA, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(509), 1, + anon_sym_RBRACE, + ACTIONS(513), 1, + sym_string_start, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1222), 1, + sym_expression, + STATE(1358), 1, + sym_pair, + STATE(1572), 1, + sym_dictionary_splat, + STATE(1812), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [426] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(519), 1, + anon_sym_RPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1817), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1892), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [540] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(543), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1353), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1886), 1, + sym__collection_elements, + STATE(1892), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [654] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(545), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1817), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1908), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [768] = 28, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(547), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1379), 1, + sym_expression, + STATE(1563), 1, + sym_parenthesized_list_splat, + STATE(1564), 1, + sym_list_splat, + STATE(1626), 1, + sym_pattern, + STATE(1818), 1, + sym__patterns, + STATE(1850), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [884] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(561), 1, + anon_sym_RBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1811), 1, + sym__patterns, + STATE(1815), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [998] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(577), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1817), 1, + sym__collection_elements, + STATE(1847), 1, + sym__patterns, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1112] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(579), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1815), 1, + sym__collection_elements, + STATE(1816), 1, + sym__patterns, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1226] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(581), 1, + anon_sym_COMMA, + ACTIONS(583), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1227), 1, + sym_expression, + STATE(1383), 1, + sym_pair, + STATE(1634), 1, + sym_dictionary_splat, + STATE(1871), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1340] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(585), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1817), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1892), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1454] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + anon_sym_STAR, + ACTIONS(47), 1, + anon_sym_type, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + STATE(449), 1, + sym_list_splat_pattern, + STATE(714), 1, + sym_primary_expression, + STATE(1194), 1, + sym_pattern, + STATE(1207), 1, + sym_pattern_list, + STATE(1315), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + STATE(467), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1748), 4, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + ACTIONS(65), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1564] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(587), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1235), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1811), 1, + sym__patterns, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1903), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1678] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(589), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1353), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1886), 1, + sym__collection_elements, + STATE(1892), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1792] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(591), 1, + anon_sym_COMMA, + ACTIONS(593), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1226), 1, + sym_expression, + STATE(1362), 1, + sym_pair, + STATE(1577), 1, + sym_dictionary_splat, + STATE(1859), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1906] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(595), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1815), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1853), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2020] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(597), 1, + anon_sym_COMMA, + ACTIONS(599), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1223), 1, + sym_expression, + STATE(1350), 1, + sym_pair, + STATE(1598), 1, + sym_dictionary_splat, + STATE(1793), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2134] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(601), 1, + anon_sym_COMMA, + ACTIONS(603), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1228), 1, + sym_expression, + STATE(1376), 1, + sym_pair, + STATE(1683), 1, + sym_dictionary_splat, + STATE(1858), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2248] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(605), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1815), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1924), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2362] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(607), 1, + anon_sym_COMMA, + ACTIONS(609), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1224), 1, + sym_expression, + STATE(1363), 1, + sym_pair, + STATE(1656), 1, + sym_dictionary_splat, + STATE(1905), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2476] = 27, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(485), 1, + anon_sym_LPAREN, + ACTIONS(489), 1, + anon_sym_STAR, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(611), 1, + anon_sym_COMMA, + ACTIONS(613), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1225), 1, + sym_expression, + STATE(1347), 1, + sym_pair, + STATE(1667), 1, + sym_dictionary_splat, + STATE(1898), 1, + sym__collection_elements, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1544), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2590] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(615), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1381), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1892), 1, + sym__patterns, + STATE(1907), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2704] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(617), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1817), 1, + sym__collection_elements, + STATE(1874), 1, + sym__patterns, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2818] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(619), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1244), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1808), 1, + sym__collection_elements, + STATE(1811), 1, + sym__patterns, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2932] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(621), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1231), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1788), 1, + sym__collection_elements, + STATE(1816), 1, + sym__patterns, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3046] = 28, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(623), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1352), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1668), 1, + sym_parenthesized_list_splat, + STATE(1669), 1, + sym_list_splat, + STATE(1872), 1, + sym__collection_elements, + STATE(1874), 1, + sym__patterns, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3162] = 25, + ACTIONS(9), 1, + sym_identifier, + ACTIONS(11), 1, + anon_sym_LPAREN, + ACTIONS(13), 1, + anon_sym_STAR, + ACTIONS(47), 1, + anon_sym_type, + ACTIONS(49), 1, + anon_sym_LBRACK, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + STATE(449), 1, + sym_list_splat_pattern, + STATE(714), 1, + sym_primary_expression, + STATE(1194), 1, + sym_pattern, + STATE(1207), 1, + sym_pattern_list, + STATE(1315), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + STATE(467), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1779), 4, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + ACTIONS(65), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3272] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(625), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1233), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1866), 1, + sym__collection_elements, + STATE(1868), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3386] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(627), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1815), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1868), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3500] = 27, + ACTIONS(515), 1, + sym_identifier, + ACTIONS(517), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(525), 1, + anon_sym_type, + ACTIONS(527), 1, + anon_sym_LBRACK, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(629), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1130), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1626), 1, + sym_pattern, + STATE(1817), 1, + sym__collection_elements, + STATE(1818), 1, + sym__patterns, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1129), 2, + sym_attribute, + sym_subscript, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(523), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3614] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(631), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1811), 1, + sym__patterns, + STATE(1815), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3728] = 27, + ACTIONS(549), 1, + sym_identifier, + ACTIONS(551), 1, + anon_sym_LPAREN, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(557), 1, + anon_sym_type, + ACTIONS(559), 1, + anon_sym_LBRACK, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(633), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(1017), 1, + sym_list_splat_pattern, + STATE(1244), 1, + sym_expression, + STATE(1538), 1, + sym_pattern, + STATE(1808), 1, + sym__collection_elements, + STATE(1811), 1, + sym__patterns, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1019), 2, + sym_attribute, + sym_subscript, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(555), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3842] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1488), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3947] = 23, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_STAR, + ACTIONS(647), 1, + anon_sym_STAR_STAR, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1272), 1, + sym_expression, + STATE(1450), 1, + sym_type, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1431), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4052] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1494), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4157] = 23, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(653), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_STAR, + ACTIONS(659), 1, + anon_sym_STAR_STAR, + ACTIONS(661), 1, + anon_sym_LBRACK, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1258), 1, + sym_expression, + STATE(1428), 1, + sym_type, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1397), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4262] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(667), 1, + anon_sym_RPAREN, + ACTIONS(669), 1, + anon_sym_COMMA, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1384), 1, + sym_expression, + STATE(1680), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1678), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4371] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(679), 1, + anon_sym_RPAREN, + ACTIONS(681), 1, + anon_sym_COMMA, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1348), 1, + sym_expression, + STATE(1592), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1591), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4480] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1432), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4585] = 20, + ACTIONS(265), 1, + anon_sym_TILDE, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_STAR, + ACTIONS(719), 1, + anon_sym_type, + ACTIONS(721), 1, + anon_sym_LBRACK, + STATE(1061), 1, + sym_list_splat_pattern, + STATE(1191), 1, + sym_primary_expression, + STATE(1205), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(263), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1067), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(717), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + ACTIONS(469), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [4684] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1442), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4789] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1589), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4894] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(723), 1, + anon_sym_RPAREN, + ACTIONS(725), 1, + anon_sym_COMMA, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1349), 1, + sym_expression, + STATE(1584), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1585), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5003] = 23, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(653), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_STAR, + ACTIONS(659), 1, + anon_sym_STAR_STAR, + ACTIONS(661), 1, + anon_sym_LBRACK, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1258), 1, + sym_expression, + STATE(1447), 1, + sym_type, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1397), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5108] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1657), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5213] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1647), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5318] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(727), 1, + anon_sym_RPAREN, + ACTIONS(729), 1, + anon_sym_COMMA, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1359), 1, + sym_expression, + STATE(1650), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1649), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5427] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(731), 1, + anon_sym_RPAREN, + ACTIONS(733), 1, + anon_sym_COMMA, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1385), 1, + sym_expression, + STATE(1689), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1688), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5536] = 20, + ACTIONS(265), 1, + anon_sym_TILDE, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_STAR, + ACTIONS(719), 1, + anon_sym_type, + ACTIONS(721), 1, + anon_sym_LBRACK, + STATE(1061), 1, + sym_list_splat_pattern, + STATE(1191), 1, + sym_primary_expression, + STATE(1205), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(263), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1067), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(717), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + ACTIONS(481), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [5635] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(735), 1, + anon_sym_RPAREN, + ACTIONS(737), 1, + anon_sym_COMMA, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1377), 1, + sym_expression, + STATE(1699), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1703), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5744] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1468), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5849] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1509), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5954] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1590), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6059] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1593), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6164] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1586), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6269] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1555), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6374] = 25, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(739), 1, + anon_sym_RPAREN, + ACTIONS(741), 1, + anon_sym_COMMA, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1378), 1, + sym_expression, + STATE(1643), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1644), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6483] = 23, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(653), 1, + sym_identifier, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_STAR, + ACTIONS(659), 1, + anon_sym_STAR_STAR, + ACTIONS(661), 1, + anon_sym_LBRACK, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1258), 1, + sym_expression, + STATE(1439), 1, + sym_type, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1397), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6588] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1409), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6693] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1508), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6798] = 23, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_STAR, + ACTIONS(647), 1, + anon_sym_STAR_STAR, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1272), 1, + sym_expression, + STATE(1430), 1, + sym_type, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1431), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6903] = 23, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(287), 1, + anon_sym_STAR_STAR, + ACTIONS(635), 1, + sym_identifier, + ACTIONS(637), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1286), 1, + sym_expression, + STATE(1628), 1, + sym_type, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1511), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7008] = 23, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_STAR, + ACTIONS(647), 1, + anon_sym_STAR_STAR, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1272), 1, + sym_expression, + STATE(1449), 1, + sym_type, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1431), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7113] = 23, + ACTIONS(683), 1, + sym_identifier, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(687), 1, + anon_sym_STAR, + ACTIONS(691), 1, + anon_sym_STAR_STAR, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1287), 1, + sym_expression, + STATE(1437), 1, + sym_type, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1473), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7218] = 23, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(639), 1, + sym_identifier, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(643), 1, + anon_sym_STAR, + ACTIONS(647), 1, + anon_sym_STAR_STAR, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1272), 1, + sym_expression, + STATE(1485), 1, + sym_type, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1431), 5, + sym_splat_type, + sym_generic_type, + sym_union_type, + sym_constrained_type, + sym_member_type, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7323] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(743), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7429] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(745), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7535] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(747), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7641] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(749), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7747] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(751), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7853] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(753), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7959] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(755), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8065] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(757), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8171] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(759), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8277] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(761), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8383] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(763), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8489] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(765), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8595] = 24, + ACTIONS(767), 1, + sym_identifier, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(775), 1, + anon_sym_type, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + STATE(698), 1, + sym_primary_expression, + STATE(843), 1, + sym_list_splat_pattern, + STATE(1252), 1, + sym_expression, + STATE(1786), 1, + sym_pattern, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(841), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1477), 3, + sym_expression_list, + sym_pattern_list, + sym__f_expression, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(773), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8701] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(793), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8807] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(795), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8913] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(797), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9019] = 24, + ACTIONS(767), 1, + sym_identifier, + ACTIONS(769), 1, + anon_sym_LPAREN, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(775), 1, + anon_sym_type, + ACTIONS(777), 1, + anon_sym_LBRACK, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + STATE(698), 1, + sym_primary_expression, + STATE(843), 1, + sym_list_splat_pattern, + STATE(1252), 1, + sym_expression, + STATE(1786), 1, + sym_pattern, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(841), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1466), 3, + sym_expression_list, + sym_pattern_list, + sym__f_expression, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(773), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9125] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(799), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9231] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(801), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9337] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(803), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9443] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(805), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9549] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(807), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9655] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(809), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9761] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(811), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9867] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(813), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9973] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(815), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10079] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(817), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10185] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(819), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10291] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(821), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10397] = 24, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + ACTIONS(823), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10503] = 24, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(827), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1357), 1, + sym_expression, + STATE(1608), 1, + sym_with_item, + STATE(1817), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10608] = 23, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(843), 1, + anon_sym_RBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1501), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(837), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10711] = 23, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(849), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1501), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(847), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10814] = 23, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(849), 1, + anon_sym_RBRACE, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1479), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(847), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10917] = 23, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(859), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1479), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(857), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11020] = 23, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + ACTIONS(863), 1, + anon_sym_RBRACE, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1479), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(861), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11123] = 23, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(843), 1, + anon_sym_RBRACE, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1479), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(837), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11226] = 23, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(663), 1, + sym_identifier, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(671), 1, + anon_sym_STAR, + ACTIONS(675), 1, + anon_sym_STAR_STAR, + ACTIONS(677), 1, + anon_sym_type, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1422), 1, + sym_expression, + STATE(1785), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1747), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(673), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11329] = 23, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(859), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1501), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(857), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11432] = 23, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + ACTIONS(863), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1501), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(861), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 5, + anon_sym_print, + anon_sym_match, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11535] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(867), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1235), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1903), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11637] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(869), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11739] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(871), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11841] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(873), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11943] = 21, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1298), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(881), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12041] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12143] = 24, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1381), 1, + sym_expression, + STATE(1580), 1, + sym_list_splat, + STATE(1581), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1907), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12247] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(891), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1231), 1, + sym_expression, + STATE(1788), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12349] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(893), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12451] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1379), 1, + sym_expression, + STATE(1850), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12553] = 21, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1298), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(897), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12651] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(827), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1367), 1, + sym_expression, + STATE(1817), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12753] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12855] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(901), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1237), 1, + sym_expression, + STATE(1815), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12957] = 24, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(895), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1379), 1, + sym_expression, + STATE(1563), 1, + sym_parenthesized_list_splat, + STATE(1564), 1, + sym_list_splat, + STATE(1850), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13061] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(903), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1230), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1918), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13163] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(905), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1352), 1, + sym_expression, + STATE(1872), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13265] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(907), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1353), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1886), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13367] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(909), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1244), 1, + sym_expression, + STATE(1808), 1, + sym__collection_elements, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13469] = 24, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(905), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1352), 1, + sym_expression, + STATE(1668), 1, + sym_parenthesized_list_splat, + STATE(1669), 1, + sym_list_splat, + STATE(1872), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13573] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(911), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13675] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(913), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13777] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(915), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13879] = 24, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(917), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1360), 1, + sym_expression, + STATE(1563), 1, + sym_parenthesized_list_splat, + STATE(1564), 1, + sym_list_splat, + STATE(1831), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13983] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(919), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14085] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(921), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14187] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(889), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1381), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1907), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14289] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(923), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1241), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1863), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14391] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(925), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14493] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(927), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14595] = 24, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1373), 1, + sym_expression, + STATE(1580), 1, + sym_list_splat, + STATE(1581), 1, + sym_parenthesized_list_splat, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1909), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14699] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(917), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1360), 1, + sym_expression, + STATE(1831), 1, + sym__collection_elements, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14801] = 23, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(929), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1373), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + STATE(1909), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1632), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14903] = 23, + ACTIONS(553), 1, + anon_sym_STAR, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(865), 1, + anon_sym_LPAREN, + ACTIONS(931), 1, + anon_sym_RBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1233), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + STATE(1866), 1, + sym__collection_elements, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1600), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15005] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + ACTIONS(933), 1, + anon_sym_RBRACE, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15107] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(941), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15208] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(945), 1, + anon_sym_if, + ACTIONS(947), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1462), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1849), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15309] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(949), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15410] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(951), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15511] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(953), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15612] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(955), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15713] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(957), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15814] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(253), 1, + anon_sym_STAR, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(493), 1, + anon_sym_STAR_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1512), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1784), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15913] = 22, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(959), 1, + anon_sym_LPAREN, + ACTIONS(961), 1, + anon_sym_STAR, + ACTIONS(963), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1412), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + STATE(1721), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16012] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(965), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16113] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(967), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16214] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(969), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16315] = 22, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(959), 1, + anon_sym_LPAREN, + ACTIONS(961), 1, + anon_sym_STAR, + ACTIONS(971), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1412), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + STATE(1721), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16414] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(973), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16515] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(975), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16616] = 22, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(971), 1, + anon_sym_RBRACE, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(979), 1, + anon_sym_STAR, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1438), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(1756), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16715] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(981), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16816] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(983), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16917] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(987), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1374), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(985), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17016] = 22, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(963), 1, + anon_sym_RBRACE, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(979), 1, + anon_sym_STAR, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1438), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(1756), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17115] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(989), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17216] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(991), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17317] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(993), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17418] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(995), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17519] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(997), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17620] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(999), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17721] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1003), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1361), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(1001), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17820] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1005), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17921] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1007), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18022] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1009), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18123] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1011), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18224] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1013), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18325] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1015), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18426] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1017), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18527] = 22, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(963), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1436), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1757), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18626] = 22, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(971), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1436), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1757), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18725] = 23, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(945), 1, + anon_sym_if, + ACTIONS(1019), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1462), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1913), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18826] = 23, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + ACTIONS(1021), 1, + anon_sym_RBRACK, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18927] = 22, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1312), 1, + sym_expression, + STATE(1771), 1, + sym_expression_list, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1023), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19026] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1351), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1027), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19122] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1337), 1, + sym_expression, + STATE(1579), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19220] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1368), 1, + sym_expression, + STATE(1745), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19318] = 22, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1029), 1, + anon_sym_RPAREN, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1400), 1, + sym_expression, + STATE(1772), 1, + sym_with_item, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19416] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1328), 1, + sym_expression, + STATE(1693), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19514] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1386), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1033), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19610] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1336), 1, + sym_expression, + STATE(1653), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19708] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1342), 1, + sym_expression, + STATE(1692), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19806] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1332), 1, + sym_expression, + STATE(1639), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19904] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1351), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1035), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20000] = 21, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1479), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20096] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1351), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1037), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20192] = 21, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1316), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1492), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20288] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1386), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(897), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20384] = 21, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1340), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1507), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20480] = 21, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1421), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20576] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1561), 1, + sym_with_item, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1826), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20674] = 21, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(977), 1, + anon_sym_LPAREN, + ACTIONS(979), 1, + anon_sym_STAR, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1438), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(1756), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20770] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1319), 1, + sym_expression, + STATE(1552), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20868] = 21, + ACTIONS(521), 1, + anon_sym_STAR, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(665), 1, + anon_sym_LPAREN, + ACTIONS(825), 1, + sym_identifier, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1436), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1757), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20964] = 21, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1424), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(1041), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21060] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1351), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1043), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21156] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1339), 1, + sym_expression, + STATE(1595), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21254] = 21, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1460), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(1045), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21350] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1047), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1728), 1, + sym_with_item, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21448] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1344), 1, + sym_expression, + STATE(1542), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21546] = 21, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1420), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(985), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21642] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1386), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(1049), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21738] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1386), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(881), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21834] = 22, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(939), 1, + anon_sym_COLON, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1318), 1, + sym_expression, + STATE(1558), 1, + sym_slice, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21932] = 21, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(959), 1, + anon_sym_LPAREN, + ACTIONS(961), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1412), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + STATE(1721), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22028] = 21, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1317), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1499), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22124] = 21, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1454), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22220] = 22, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1051), 1, + anon_sym_RPAREN, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1400), 1, + sym_expression, + STATE(1772), 1, + sym_with_item, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22318] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1561), 1, + sym_with_item, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1846), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22416] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1561), 1, + sym_with_item, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1852), 1, + sym_with_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22514] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1053), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1728), 1, + sym_with_item, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22612] = 21, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1408), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22708] = 11, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(231), 1, + anon_sym_COLON, + ACTIONS(236), 1, + anon_sym_EQ, + ACTIONS(1055), 1, + sym_identifier, + STATE(1569), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(212), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 21, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [22784] = 21, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1321), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1406), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22880] = 21, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_lambda, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1322), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + STATE(1467), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22976] = 10, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1055), 1, + sym_identifier, + STATE(1569), 1, + sym_string, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(236), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(212), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 21, + anon_sym_as, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [23050] = 22, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1039), 1, + anon_sym_LPAREN, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1561), 1, + sym_with_item, + STATE(1819), 1, + sym_with_clause, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23148] = 21, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1334), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + STATE(1501), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23244] = 10, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1057), 1, + anon_sym_for, + ACTIONS(1059), 1, + anon_sym_with, + ACTIONS(1061), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(236), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [23318] = 10, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1063), 1, + anon_sym_for, + ACTIONS(1065), 1, + anon_sym_with, + ACTIONS(1067), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(236), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [23392] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1387), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1925), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23487] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(897), 1, + anon_sym_COLON, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1429), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23582] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1069), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1418), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23677] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1071), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1418), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23772] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1371), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1911), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23867] = 21, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1400), 1, + sym_expression, + STATE(1772), 1, + sym_with_item, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23962] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1364), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1856), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24057] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1427), 1, + sym_expression, + STATE(1728), 1, + sym_with_item, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24152] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1073), 1, + anon_sym_DOT, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1329), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24247] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1354), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + STATE(1862), 1, + sym_expression_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24342] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1075), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1418), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24437] = 21, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1335), 1, + sym_expression, + STATE(1775), 1, + sym_expression_list, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24532] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1077), 1, + anon_sym_COLON, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1418), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24627] = 21, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(881), 1, + anon_sym_COLON, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1429), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24722] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1298), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24814] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1470), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24906] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1294), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24998] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1366), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25090] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1295), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25182] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1282), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25274] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1285), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25366] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1307), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25458] = 10, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1088), 1, + anon_sym_COLON, + ACTIONS(1091), 1, + anon_sym_EQ, + ACTIONS(1093), 1, + anon_sym_LBRACK, + STATE(1474), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1079), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + [25530] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1313), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25622] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1314), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25714] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1324), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25806] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1325), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25898] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1326), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25990] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1330), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26082] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1236), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26174] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1338), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26266] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1281), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26358] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1329), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26450] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1303), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26542] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1290), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26634] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1266), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26726] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1242), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26818] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1391), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26910] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1426), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27002] = 20, + ACTIONS(563), 1, + anon_sym_not, + ACTIONS(567), 1, + anon_sym_lambda, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(829), 1, + sym_identifier, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_type, + ACTIONS(841), 1, + anon_sym_LBRACK, + STATE(728), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + STATE(1345), 1, + sym_expression, + STATE(1838), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(835), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1341), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27094] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1293), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27186] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1393), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27278] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1292), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27370] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1277), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27462] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1291), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27554] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1289), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27646] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1288), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27738] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1296), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27830] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1429), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27922] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1297), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28014] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1249), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28106] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1274), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28198] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1270), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28290] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1245), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28382] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1433), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28474] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1248), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28566] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1495), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28658] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1490), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28750] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1351), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28842] = 20, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(693), 1, + anon_sym_type, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(935), 1, + sym_identifier, + ACTIONS(937), 1, + anon_sym_STAR, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1309), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(689), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28934] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1481), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29026] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1263), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29118] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1240), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29210] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1250), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29302] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1243), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29394] = 21, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1097), 1, + sym_identifier, + ACTIONS(1101), 1, + anon_sym_type, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1416), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(1125), 2, + sym_attribute, + sym_subscript, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1099), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29488] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1300), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29580] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1251), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29672] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1446), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29764] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1253), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29856] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1343), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29948] = 21, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1103), 1, + sym_identifier, + ACTIONS(1107), 1, + anon_sym_type, + STATE(919), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1402), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + STATE(1124), 2, + sym_attribute, + sym_subscript, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1105), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30042] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1484), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30134] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1232), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30226] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1229), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30318] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1418), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30410] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1333), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30502] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1386), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30594] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1462), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30686] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1487), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30778] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1310), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30870] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1388), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30962] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1483), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31054] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1260), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31146] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1306), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31238] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1283), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31330] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1486), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31422] = 21, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(697), 1, + anon_sym_not, + ACTIONS(701), 1, + anon_sym_lambda, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1109), 1, + sym_identifier, + ACTIONS(1113), 1, + anon_sym_type, + STATE(925), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + STATE(1402), 1, + sym_expression, + STATE(1837), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + STATE(992), 2, + sym_attribute, + sym_subscript, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1111), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1301), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1060), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31516] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1308), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31608] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1299), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31700] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1261), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31792] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1305), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31884] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1465), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31976] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1480), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32068] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1275), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32160] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1405), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32252] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1268), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32344] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1302), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32436] = 20, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(875), 1, + sym_identifier, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(883), 1, + anon_sym_type, + ACTIONS(885), 1, + anon_sym_LBRACK, + STATE(698), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + STATE(1448), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(879), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32528] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1320), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32620] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1503), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32712] = 21, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(779), 1, + anon_sym_not, + ACTIONS(783), 1, + anon_sym_lambda, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1115), 1, + sym_identifier, + ACTIONS(1119), 1, + anon_sym_type, + STATE(808), 1, + sym_list_splat_pattern, + STATE(974), 1, + sym_primary_expression, + STATE(1416), 1, + sym_expression, + STATE(1910), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + STATE(787), 2, + sym_attribute, + sym_subscript, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1117), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1304), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(788), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32806] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1369), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32898] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1256), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [32990] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1413), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33082] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1423), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33174] = 20, + ACTIONS(53), 1, + anon_sym_not, + ACTIONS(57), 1, + anon_sym_lambda, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(210), 1, + sym_identifier, + ACTIONS(234), 1, + anon_sym_type, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + STATE(706), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + STATE(1239), 1, + sym_expression, + STATE(1914), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(225), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1234), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33266] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1482), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33358] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1311), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33450] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1497), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33542] = 20, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(649), 1, + anon_sym_type, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(825), 1, + sym_identifier, + ACTIONS(1031), 1, + anon_sym_STAR, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1395), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(645), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33634] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1478), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33726] = 20, + ACTIONS(483), 1, + sym_identifier, + ACTIONS(495), 1, + anon_sym_type, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(499), 1, + anon_sym_not, + ACTIONS(503), 1, + anon_sym_lambda, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + STATE(697), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + STATE(1331), 1, + sym_expression, + STATE(1926), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(491), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1284), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33818] = 20, + ACTIONS(249), 1, + sym_identifier, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(257), 1, + anon_sym_type, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(261), 1, + anon_sym_not, + ACTIONS(267), 1, + anon_sym_lambda, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + STATE(736), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1504), 1, + sym_expression, + STATE(1820), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(255), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1267), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [33910] = 21, + ACTIONS(529), 1, + anon_sym_not, + ACTIONS(533), 1, + anon_sym_lambda, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1121), 1, + sym_identifier, + ACTIONS(1125), 1, + anon_sym_type, + STATE(754), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + STATE(1443), 1, + sym_expression, + STATE(1880), 1, + sym__named_expression_lhs, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + STATE(1127), 2, + sym_attribute, + sym_subscript, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1123), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1271), 7, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + STATE(935), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [34004] = 7, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(236), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34069] = 8, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(231), 1, + anon_sym_COLON, + ACTIONS(236), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34136] = 8, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(231), 1, + anon_sym_COLON, + ACTIONS(236), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34203] = 7, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1091), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1095), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34268] = 7, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(236), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(247), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(214), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34333] = 6, + ACTIONS(1134), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1129), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1136), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1132), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34395] = 8, + ACTIONS(1142), 1, + anon_sym_elif, + ACTIONS(1144), 1, + anon_sym_else, + STATE(473), 1, + aux_sym_if_statement_repeat1, + STATE(488), 1, + sym_elif_clause, + STATE(543), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1138), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1140), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34461] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34517] = 6, + ACTIONS(1091), 1, + anon_sym_EQ, + ACTIONS(1152), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1155), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [34579] = 8, + ACTIONS(1142), 1, + anon_sym_elif, + ACTIONS(1144), 1, + anon_sym_else, + STATE(447), 1, + aux_sym_if_statement_repeat1, + STATE(488), 1, + sym_elif_clause, + STATE(599), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1157), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1159), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34645] = 8, + ACTIONS(1161), 1, + anon_sym_elif, + ACTIONS(1163), 1, + anon_sym_else, + STATE(464), 1, + aux_sym_if_statement_repeat1, + STATE(503), 1, + sym_elif_clause, + STATE(525), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1157), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1159), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34711] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34767] = 8, + ACTIONS(1161), 1, + anon_sym_elif, + ACTIONS(1163), 1, + anon_sym_else, + STATE(463), 1, + aux_sym_if_statement_repeat1, + STATE(503), 1, + sym_elif_clause, + STATE(527), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1171), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1169), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34833] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1175), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1178), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34893] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1175), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1178), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [34953] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35009] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35065] = 7, + ACTIONS(1199), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1189), 2, + anon_sym_DOT, + anon_sym_COLON, + ACTIONS(1191), 2, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1194), 12, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 27, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35129] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1191), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1194), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35189] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35245] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35301] = 8, + ACTIONS(1142), 1, + anon_sym_elif, + ACTIONS(1144), 1, + anon_sym_else, + STATE(471), 1, + aux_sym_if_statement_repeat1, + STATE(488), 1, + sym_elif_clause, + STATE(541), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1171), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1169), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35367] = 8, + ACTIONS(1161), 1, + anon_sym_elif, + ACTIONS(1163), 1, + anon_sym_else, + STATE(474), 1, + aux_sym_if_statement_repeat1, + STATE(503), 1, + sym_elif_clause, + STATE(559), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1211), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1209), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35433] = 8, + ACTIONS(1161), 1, + anon_sym_elif, + ACTIONS(1163), 1, + anon_sym_else, + STATE(474), 1, + aux_sym_if_statement_repeat1, + STATE(503), 1, + sym_elif_clause, + STATE(531), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1138), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1140), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35499] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_EQ, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [35555] = 6, + ACTIONS(1091), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1152), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1095), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1155), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35617] = 6, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(1091), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35679] = 6, + ACTIONS(1091), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1081), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1095), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1084), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35741] = 6, + ACTIONS(1220), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1215), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1222), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35803] = 6, + ACTIONS(1129), 1, + anon_sym_COMMA, + ACTIONS(1134), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1136), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1132), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35865] = 8, + ACTIONS(1142), 1, + anon_sym_elif, + ACTIONS(1144), 1, + anon_sym_else, + STATE(473), 1, + aux_sym_if_statement_repeat1, + STATE(488), 1, + sym_elif_clause, + STATE(513), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1211), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1209), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35931] = 6, + ACTIONS(1215), 1, + anon_sym_COMMA, + ACTIONS(1220), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1222), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1218), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [35993] = 6, + ACTIONS(1228), 1, + anon_sym_elif, + STATE(473), 1, + aux_sym_if_statement_repeat1, + STATE(488), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1224), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1226), 31, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36054] = 6, + ACTIONS(1231), 1, + anon_sym_elif, + STATE(474), 1, + aux_sym_if_statement_repeat1, + STATE(503), 1, + sym_elif_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1224), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1226), 31, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36115] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1234), 1, + sym_identifier, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_type, + ACTIONS(1244), 1, + anon_sym_LBRACK, + STATE(1131), 1, + sym_list_splat_pattern, + STATE(1188), 1, + sym_primary_expression, + STATE(1500), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1138), 2, + sym_attribute, + sym_subscript, + STATE(1475), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(469), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1240), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [36201] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1234), 1, + sym_identifier, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_type, + ACTIONS(1244), 1, + anon_sym_LBRACK, + STATE(1131), 1, + sym_list_splat_pattern, + STATE(1188), 1, + sym_primary_expression, + STATE(1500), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1138), 2, + sym_attribute, + sym_subscript, + STATE(1475), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(481), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1240), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [36287] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1246), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1248), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36340] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1250), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1252), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1254), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1256), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36446] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1246), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1248), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36499] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(517), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1258), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1260), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36556] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(526), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1262), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1264), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1268), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1266), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36666] = 5, + ACTIONS(1163), 1, + anon_sym_else, + STATE(518), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1272), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1270), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1274), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1276), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36776] = 5, + ACTIONS(1163), 1, + anon_sym_else, + STATE(550), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1258), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1260), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36833] = 5, + ACTIONS(1163), 1, + anon_sym_else, + STATE(577), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1280), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1278), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36890] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1282), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1284), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36943] = 5, + ACTIONS(1163), 1, + anon_sym_else, + STATE(565), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1262), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1264), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37000] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1288), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1286), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37053] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1250), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1252), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37106] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1290), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1292), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37159] = 5, + ACTIONS(1163), 1, + anon_sym_else, + STATE(592), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1296), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1294), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37216] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1290), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1292), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37269] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(586), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1296), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1294), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37326] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1288), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1286), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37379] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1274), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1276), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37432] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1254), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1256), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37485] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(554), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1298), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1300), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37542] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(584), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1272), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1270), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37599] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1268), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1266), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37652] = 5, + ACTIONS(1144), 1, + anon_sym_else, + STATE(560), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1280), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1278), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37709] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1282), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1284), 32, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37762] = 5, + ACTIONS(1163), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1298), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1300), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37819] = 20, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1306), 1, + anon_sym_RPAREN, + ACTIONS(1310), 1, + anon_sym_type, + ACTIONS(1312), 1, + anon_sym_LBRACK, + STATE(1174), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + STATE(1626), 1, + sym_pattern, + STATE(1892), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1173), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1308), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [37905] = 20, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym_type, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1314), 1, + anon_sym_RPAREN, + STATE(1174), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + STATE(1626), 1, + sym_pattern, + STATE(1874), 1, + sym__patterns, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1173), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1308), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [37991] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1318), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1316), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38042] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1320), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1322), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38093] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1324), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1326), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38144] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1707), 1, + sym_pattern, + STATE(1934), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [38227] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1338), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1340), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38278] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1344), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38329] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1346), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1348), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38380] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym_type, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1350), 1, + anon_sym_RPAREN, + STATE(1174), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + STATE(1736), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1173), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1308), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [38463] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1354), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1352), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38514] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1356), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38565] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1360), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1362), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38616] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1366), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1364), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38667] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1701), 1, + sym_pattern, + STATE(1931), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [38750] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1370), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1368), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38801] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1372), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1374), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38852] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1378), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1376), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38903] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1380), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1382), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38954] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1384), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1386), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39005] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1390), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1388), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39056] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1392), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1394), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39107] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1398), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1396), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39158] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1400), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1402), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39209] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1406), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1404), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39260] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1410), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1408), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39311] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1414), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1412), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39362] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1418), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1420), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1422), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39464] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1426), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1424), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39515] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1324), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1326), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39566] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1384), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1386), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39617] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1611), 1, + sym_pattern, + STATE(1832), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [39700] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1428), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1430), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39751] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1432), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1434), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39802] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1318), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1316), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39853] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1398), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1396), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39904] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1436), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1438), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39955] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1414), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1412), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40006] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1432), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1434), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40057] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1420), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1422), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1428), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1430), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40159] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1442), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1440), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40210] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1553), 1, + sym_pattern, + STATE(1823), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40293] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1446), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1444), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40344] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1360), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1362), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40395] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1450), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1448), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40446] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1454), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1452), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40497] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1342), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1344), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40548] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1456), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1458), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40599] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1645), 1, + sym_pattern, + STATE(1937), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1460), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1462), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40733] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1338), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1340), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40784] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1450), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1448), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40835] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1346), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1348), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40886] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1464), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1466), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40937] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1468), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1470), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [40988] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1472), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1474), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41039] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1372), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1374), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41090] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1380), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1382), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41141] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1392), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1394), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41192] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1476), 1, + sym_identifier, + ACTIONS(1478), 1, + anon_sym_LPAREN, + ACTIONS(1480), 1, + anon_sym_STAR, + ACTIONS(1484), 1, + anon_sym_type, + ACTIONS(1486), 1, + anon_sym_LBRACK, + ACTIONS(1488), 1, + anon_sym_RBRACK, + STATE(1176), 1, + sym_list_splat_pattern, + STATE(1202), 1, + sym_primary_expression, + STATE(1742), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1158), 2, + sym_attribute, + sym_subscript, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1482), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41275] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1400), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1402), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41326] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1416), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1418), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41377] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + ACTIONS(1490), 1, + anon_sym_in, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1205), 1, + sym_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41460] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1442), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1440), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41511] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1436), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1438), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41562] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1456), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1458), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41613] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1460), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1462), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41664] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1426), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1424), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41715] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1320), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1322), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41766] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1578), 1, + sym_pattern, + STATE(1860), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41849] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1464), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1466), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41900] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1468), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1470), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [41951] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1354), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1352), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42002] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1350), 1, + anon_sym_RBRACK, + ACTIONS(1476), 1, + sym_identifier, + ACTIONS(1478), 1, + anon_sym_LPAREN, + ACTIONS(1480), 1, + anon_sym_STAR, + ACTIONS(1484), 1, + anon_sym_type, + ACTIONS(1486), 1, + anon_sym_LBRACK, + STATE(1176), 1, + sym_list_splat_pattern, + STATE(1202), 1, + sym_primary_expression, + STATE(1742), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1158), 2, + sym_attribute, + sym_subscript, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1482), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42085] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1472), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1474), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42136] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1588), 1, + sym_pattern, + STATE(1867), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42219] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1356), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1358), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42270] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1366), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1364), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42321] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym_type, + ACTIONS(1312), 1, + anon_sym_LBRACK, + ACTIONS(1488), 1, + anon_sym_RPAREN, + STATE(1174), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + STATE(1736), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1173), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1308), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42404] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1492), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1494), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42455] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1496), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1498), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42506] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1500), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1502), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1370), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1368), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42608] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1446), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1444), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42659] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1378), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1376), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42710] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1492), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1494), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42761] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1496), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1498), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42812] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1406), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1404), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42863] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1410), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1408), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42914] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1454), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1452), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [42965] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + STATE(1549), 1, + sym_pattern, + STATE(1821), 1, + sym_pattern_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43048] = 19, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + ACTIONS(1504), 1, + anon_sym_in, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1205), 1, + sym_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43131] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1390), 12, + sym_string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1388), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [43182] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1500), 12, + sym__dedent, + sym_string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1502), 30, + anon_sym_print, + anon_sym_assert, + anon_sym_assert_, + anon_sym_assert_eq, + anon_sym_assert_ne, + anon_sym_assert_contains, + anon_sym_assert_fails, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_match, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_type, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [43233] = 18, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1302), 1, + sym_identifier, + ACTIONS(1304), 1, + anon_sym_LPAREN, + ACTIONS(1310), 1, + anon_sym_type, + ACTIONS(1312), 1, + anon_sym_LBRACK, + STATE(1174), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + STATE(1736), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1173), 2, + sym_attribute, + sym_subscript, + STATE(1768), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1308), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43313] = 18, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1476), 1, + sym_identifier, + ACTIONS(1478), 1, + anon_sym_LPAREN, + ACTIONS(1480), 1, + anon_sym_STAR, + ACTIONS(1484), 1, + anon_sym_type, + ACTIONS(1486), 1, + anon_sym_LBRACK, + STATE(1176), 1, + sym_list_splat_pattern, + STATE(1202), 1, + sym_primary_expression, + STATE(1742), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1158), 2, + sym_attribute, + sym_subscript, + STATE(1774), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1482), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43393] = 18, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1328), 1, + sym_identifier, + ACTIONS(1330), 1, + anon_sym_LPAREN, + ACTIONS(1334), 1, + anon_sym_type, + ACTIONS(1336), 1, + anon_sym_LBRACK, + STATE(1184), 1, + sym_list_splat_pattern, + STATE(1205), 1, + sym_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1180), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43473] = 18, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_type, + ACTIONS(721), 1, + anon_sym_LBRACK, + ACTIONS(1506), 1, + anon_sym_STAR, + STATE(1061), 1, + sym_list_splat_pattern, + STATE(1191), 1, + sym_primary_expression, + STATE(1205), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1067), 2, + sym_attribute, + sym_subscript, + STATE(1198), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(717), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43553] = 18, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(1234), 1, + sym_identifier, + ACTIONS(1236), 1, + anon_sym_LPAREN, + ACTIONS(1238), 1, + anon_sym_STAR, + ACTIONS(1242), 1, + anon_sym_type, + ACTIONS(1244), 1, + anon_sym_LBRACK, + STATE(1131), 1, + sym_list_splat_pattern, + STATE(1188), 1, + sym_primary_expression, + STATE(1500), 1, + sym_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1138), 2, + sym_attribute, + sym_subscript, + STATE(1475), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1240), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43633] = 18, + ACTIONS(13), 1, + anon_sym_STAR, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(467), 1, + sym_identifier, + ACTIONS(471), 1, + anon_sym_LPAREN, + ACTIONS(477), 1, + anon_sym_type, + ACTIONS(479), 1, + anon_sym_LBRACK, + STATE(858), 1, + sym_list_splat_pattern, + STATE(1177), 1, + sym_pattern, + STATE(1209), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(859), 2, + sym_attribute, + sym_subscript, + STATE(1172), 2, + sym_tuple_pattern, + sym_list_pattern, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(475), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43713] = 17, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1508), 1, + sym_identifier, + ACTIONS(1514), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(1510), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1149), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1512), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43790] = 17, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1516), 1, + sym_identifier, + ACTIONS(1520), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(1510), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(1157), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1518), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43867] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1522), 1, + sym_identifier, + ACTIONS(1526), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1143), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1524), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43940] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(903), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44009] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1532), 1, + sym_identifier, + ACTIONS(1536), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1209), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(459), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1534), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44082] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1542), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1202), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1116), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1540), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44155] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1188), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1546), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44228] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(752), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44297] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(897), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44366] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(746), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44435] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(898), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44504] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(745), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44573] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(744), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44642] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(899), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44711] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(743), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44780] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(949), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44849] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1562), 1, + sym_identifier, + ACTIONS(1566), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1191), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1123), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1564), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44922] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(950), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44991] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1568), 1, + sym_identifier, + ACTIONS(1572), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1188), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(862), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1570), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45064] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(900), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45133] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(902), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45202] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(740), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45271] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(934), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45340] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1574), 1, + sym_identifier, + ACTIONS(1578), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1160), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1576), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45413] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1580), 1, + sym_identifier, + ACTIONS(1584), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1202), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(993), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1582), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45486] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(904), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45555] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(905), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45624] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(906), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45693] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(749), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45762] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(726), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45831] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(737), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45900] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1538), 1, + sym_identifier, + ACTIONS(1542), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1204), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1116), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1540), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45973] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(721), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46042] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(718), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46111] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(717), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46180] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(716), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46249] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(707), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46318] = 14, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1530), 1, + anon_sym_type, + STATE(887), 1, + sym_primary_expression, + STATE(951), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1528), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46387] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(715), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46456] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(708), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46525] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(711), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46594] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(750), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46663] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(712), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46732] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(751), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46801] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1590), 1, + sym_identifier, + ACTIONS(1594), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(983), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1592), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46874] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1594), 1, + anon_sym_type, + ACTIONS(1596), 1, + sym_identifier, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1210), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(983), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1592), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [46947] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1536), 1, + anon_sym_type, + ACTIONS(1598), 1, + sym_identifier, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1209), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(459), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1534), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47020] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(725), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47089] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(868), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47158] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1544), 1, + sym_identifier, + ACTIONS(1548), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1211), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(842), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1546), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47231] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1604), 1, + sym_identifier, + ACTIONS(1608), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(985), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1606), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47304] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(960), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47373] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(948), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47442] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1610), 1, + sym_identifier, + ACTIONS(1614), 1, + anon_sym_type, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1196), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(873), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1612), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47515] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(807), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47584] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(806), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47653] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(805), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47722] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(804), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47791] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(803), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47860] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(802), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47929] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(801), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [47998] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(772), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48067] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(723), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48136] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(722), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48205] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1614), 1, + anon_sym_type, + ACTIONS(1620), 1, + sym_identifier, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1196), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(873), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1612), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48278] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(720), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48347] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(771), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48416] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(727), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48485] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(856), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48554] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(855), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48623] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(943), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48692] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1542), 1, + anon_sym_type, + ACTIONS(1622), 1, + sym_identifier, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1204), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(1116), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1540), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48765] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(944), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48834] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(945), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48903] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(946), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [48972] = 14, + ACTIONS(61), 1, + anon_sym_LBRACE, + ACTIONS(67), 1, + sym_string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(661), 1, + anon_sym_LBRACK, + ACTIONS(1025), 1, + anon_sym_STAR, + ACTIONS(1552), 1, + anon_sym_type, + STATE(724), 1, + sym_primary_expression, + STATE(915), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(59), 2, + sym_ellipsis, + sym_float, + ACTIONS(55), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(63), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1550), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(794), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49041] = 14, + ACTIONS(771), 1, + anon_sym_STAR, + ACTIONS(787), 1, + anon_sym_LBRACE, + ACTIONS(791), 1, + sym_string_start, + ACTIONS(877), 1, + anon_sym_LPAREN, + ACTIONS(885), 1, + anon_sym_LBRACK, + ACTIONS(1556), 1, + anon_sym_type, + STATE(748), 1, + sym_primary_expression, + STATE(808), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(785), 2, + sym_ellipsis, + sym_float, + ACTIONS(781), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(789), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1554), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(788), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49110] = 14, + ACTIONS(685), 1, + anon_sym_LPAREN, + ACTIONS(695), 1, + anon_sym_LBRACK, + ACTIONS(705), 1, + anon_sym_LBRACE, + ACTIONS(709), 1, + sym_string_start, + ACTIONS(937), 1, + anon_sym_STAR, + ACTIONS(1560), 1, + anon_sym_type, + STATE(947), 1, + sym_primary_expression, + STATE(1095), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(703), 2, + sym_ellipsis, + sym_float, + ACTIONS(699), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(707), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1558), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1060), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49179] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(854), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49248] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(853), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49317] = 14, + ACTIONS(537), 1, + anon_sym_LBRACE, + ACTIONS(541), 1, + sym_string_start, + ACTIONS(641), 1, + anon_sym_LPAREN, + ACTIONS(651), 1, + anon_sym_LBRACK, + ACTIONS(1031), 1, + anon_sym_STAR, + ACTIONS(1618), 1, + anon_sym_type, + STATE(911), 1, + sym_primary_expression, + STATE(1025), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(535), 2, + sym_ellipsis, + sym_float, + ACTIONS(531), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(539), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1616), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(935), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49386] = 16, + ACTIONS(251), 1, + anon_sym_LPAREN, + ACTIONS(259), 1, + anon_sym_LBRACK, + ACTIONS(271), 1, + anon_sym_LBRACE, + ACTIONS(275), 1, + sym_string_start, + ACTIONS(943), 1, + anon_sym_STAR, + ACTIONS(1608), 1, + anon_sym_type, + ACTIONS(1624), 1, + sym_identifier, + STATE(951), 1, + sym_list_splat_pattern, + STATE(1206), 1, + sym_primary_expression, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(269), 2, + sym_ellipsis, + sym_float, + STATE(985), 2, + sym_attribute, + sym_subscript, + ACTIONS(265), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(273), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1606), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1011), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49459] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(851), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49528] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(850), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49597] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(848), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49666] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(847), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49735] = 14, + ACTIONS(571), 1, + anon_sym_LBRACE, + ACTIONS(575), 1, + sym_string_start, + ACTIONS(831), 1, + anon_sym_LPAREN, + ACTIONS(833), 1, + anon_sym_STAR, + ACTIONS(841), 1, + anon_sym_LBRACK, + ACTIONS(1602), 1, + anon_sym_type, + STATE(845), 1, + sym_primary_expression, + STATE(991), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(569), 2, + sym_ellipsis, + sym_float, + ACTIONS(565), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(573), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1600), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(1012), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49804] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(719), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49873] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(709), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [49942] = 14, + ACTIONS(497), 1, + anon_sym_LBRACK, + ACTIONS(507), 1, + anon_sym_LBRACE, + ACTIONS(513), 1, + sym_string_start, + ACTIONS(851), 1, + anon_sym_LPAREN, + ACTIONS(853), 1, + anon_sym_STAR, + ACTIONS(1588), 1, + anon_sym_type, + STATE(710), 1, + sym_primary_expression, + STATE(893), 1, + sym_list_splat_pattern, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(505), 2, + sym_ellipsis, + sym_float, + ACTIONS(501), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(511), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(1586), 6, + anon_sym_print, + anon_sym_match, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(844), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [50011] = 19, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, + anon_sym_as, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1646), 1, + anon_sym_not, + ACTIONS(1650), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + STATE(817), 1, + sym_argument_list, + STATE(1144), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1636), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1656), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1638), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [50088] = 19, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1674), 1, + anon_sym_not, + ACTIONS(1678), 1, + anon_sym_PIPE, + ACTIONS(1680), 1, + anon_sym_AMP, + ACTIONS(1682), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + STATE(1156), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1684), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1666), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [50165] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50210] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50255] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50300] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50345] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50390] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50435] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [50480] = 19, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + ACTIONS(1702), 1, + anon_sym_not, + ACTIONS(1706), 1, + anon_sym_PIPE, + ACTIONS(1708), 1, + anon_sym_AMP, + ACTIONS(1710), 1, + anon_sym_CARET, + STATE(901), 1, + sym_argument_list, + STATE(1136), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1712), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1694), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [50557] = 10, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 22, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50615] = 13, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + ACTIONS(1710), 1, + anon_sym_CARET, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50679] = 8, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50733] = 11, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 20, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50793] = 12, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50855] = 8, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50909] = 6, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1722), 1, + anon_sym_LBRACK, + STATE(1411), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50959] = 18, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1702), 1, + anon_sym_not, + ACTIONS(1706), 1, + anon_sym_PIPE, + ACTIONS(1708), 1, + anon_sym_AMP, + ACTIONS(1710), 1, + anon_sym_CARET, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + STATE(1136), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1712), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1694), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [51033] = 14, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + ACTIONS(1708), 1, + anon_sym_AMP, + ACTIONS(1710), 1, + anon_sym_CARET, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51099] = 8, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51153] = 15, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + ACTIONS(1706), 1, + anon_sym_PIPE, + ACTIONS(1708), 1, + anon_sym_AMP, + ACTIONS(1710), 1, + anon_sym_CARET, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1730), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51221] = 11, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 20, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51281] = 15, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1636), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1730), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51349] = 8, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51403] = 8, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51457] = 10, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 22, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51515] = 14, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1636), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51581] = 15, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + ACTIONS(1706), 1, + anon_sym_PIPE, + ACTIONS(1708), 1, + anon_sym_AMP, + ACTIONS(1710), 1, + anon_sym_CARET, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1690), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1692), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1704), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1700), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1734), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1732), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51649] = 13, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1654), 1, + anon_sym_CARET, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1636), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51713] = 12, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1636), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51775] = 15, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1628), 1, + anon_sym_LPAREN, + ACTIONS(1640), 1, + anon_sym_STAR_STAR, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1650), 1, + anon_sym_PIPE, + ACTIONS(1652), 1, + anon_sym_AMP, + ACTIONS(1654), 1, + anon_sym_CARET, + STATE(817), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1634), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1636), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1648), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1644), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1734), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1732), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51843] = 19, + ACTIONS(1632), 1, + anon_sym_as, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1752), 1, + anon_sym_not, + ACTIONS(1756), 1, + anon_sym_PIPE, + ACTIONS(1758), 1, + anon_sym_AMP, + ACTIONS(1760), 1, + anon_sym_CARET, + STATE(1051), 1, + sym_argument_list, + STATE(1171), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1762), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1744), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [51919] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [51965] = 6, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1764), 1, + anon_sym_LBRACK, + STATE(1434), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 26, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52015] = 5, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52063] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52109] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52155] = 5, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52203] = 5, + ACTIONS(219), 1, + anon_sym_COMMA, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52251] = 19, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1782), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + STATE(1140), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1792), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1774), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [52327] = 8, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52381] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [52427] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [52473] = 15, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1678), 1, + anon_sym_PIPE, + ACTIONS(1680), 1, + anon_sym_AMP, + ACTIONS(1682), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1734), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1732), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52541] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [52587] = 6, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1197), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1187), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1194), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [52637] = 12, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52699] = 13, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1682), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52763] = 14, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1680), 1, + anon_sym_AMP, + ACTIONS(1682), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52829] = 10, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52887] = 6, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1181), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1173), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1178), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [52937] = 8, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [52991] = 15, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1678), 1, + anon_sym_PIPE, + ACTIONS(1680), 1, + anon_sym_AMP, + ACTIONS(1682), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1730), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1728), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53059] = 11, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53119] = 8, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1670), 1, + anon_sym_LBRACK, + STATE(765), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53173] = 8, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1688), 1, + anon_sym_LPAREN, + ACTIONS(1696), 1, + anon_sym_STAR_STAR, + ACTIONS(1698), 1, + anon_sym_LBRACK, + STATE(901), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 25, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53227] = 6, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1181), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1173), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1178), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [53277] = 19, + ACTIONS(1632), 1, + anon_sym_EQ, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1810), 1, + anon_sym_not, + ACTIONS(1814), 1, + anon_sym_PIPE, + ACTIONS(1816), 1, + anon_sym_AMP, + ACTIONS(1818), 1, + anon_sym_CARET, + STATE(1042), 1, + sym_argument_list, + STATE(1139), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1800), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1820), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1802), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [53353] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53399] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53445] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53491] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53534] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53577] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53620] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53663] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53706] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53749] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53792] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53835] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53878] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53921] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [53964] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54007] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54050] = 15, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1814), 1, + anon_sym_PIPE, + ACTIONS(1816), 1, + anon_sym_AMP, + ACTIONS(1818), 1, + anon_sym_CARET, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1800), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1734), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1732), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54117] = 12, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1800), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 17, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54221] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54264] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54307] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54350] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54393] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54436] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(212), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(214), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(247), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [54481] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(212), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(214), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(247), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [54526] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54612] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54655] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54698] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54741] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54784] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1187), 3, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + ACTIONS(1194), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [54829] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [54872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [54915] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [54958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55001] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55044] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55087] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55130] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55173] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55216] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55259] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55345] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55388] = 13, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1818), 1, + anon_sym_CARET, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1800), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55451] = 14, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1816), 1, + anon_sym_AMP, + ACTIONS(1818), 1, + anon_sym_CARET, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1800), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55516] = 10, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 21, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55573] = 8, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55626] = 15, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + ACTIONS(1814), 1, + anon_sym_PIPE, + ACTIONS(1816), 1, + anon_sym_AMP, + ACTIONS(1818), 1, + anon_sym_CARET, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1800), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1730), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1728), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55693] = 11, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1798), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1808), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 19, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55752] = 8, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55805] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [55848] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [55891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55934] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [55977] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56063] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56106] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56149] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56235] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56278] = 6, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1906), 1, + anon_sym_LBRACK, + STATE(1469), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56456] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56499] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56542] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56585] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56628] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56671] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56714] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56757] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [56800] = 4, + ACTIONS(1129), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [56845] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56890] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56935] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56978] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57023] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57070] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57117] = 4, + ACTIONS(1215), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57162] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57205] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [57248] = 4, + ACTIONS(1081), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57293] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57340] = 4, + ACTIONS(1152), 1, + anon_sym_COMMA, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [57385] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [57428] = 15, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1756), 1, + anon_sym_PIPE, + ACTIONS(1758), 1, + anon_sym_AMP, + ACTIONS(1760), 1, + anon_sym_CARET, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1734), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1732), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57495] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57538] = 12, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57599] = 13, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1760), 1, + anon_sym_CARET, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57705] = 14, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1758), 1, + anon_sym_AMP, + ACTIONS(1760), 1, + anon_sym_CARET, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57770] = 10, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57827] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [57874] = 8, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57927] = 15, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1756), 1, + anon_sym_PIPE, + ACTIONS(1758), 1, + anon_sym_AMP, + ACTIONS(1760), 1, + anon_sym_CARET, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1742), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1730), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1728), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57994] = 11, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1740), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1754), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1750), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 19, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58053] = 8, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58106] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [58153] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1150), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1155), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1095), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58198] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1079), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1084), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1095), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58243] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1213), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1218), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1222), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58288] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1127), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1132), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1136), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [58333] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [58380] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58423] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58466] = 5, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1187), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1194), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58513] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58556] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58599] = 8, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1738), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_STAR_STAR, + ACTIONS(1748), 1, + anon_sym_LBRACK, + STATE(1051), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 24, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58652] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58697] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58742] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58787] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1173), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1178), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58834] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58881] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1173), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1178), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58928] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58971] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59014] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59057] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(219), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59104] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59147] = 5, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1081), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1084), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59194] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(219), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59241] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59284] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59327] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59413] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59456] = 15, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1734), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1732), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59523] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59566] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59609] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59656] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59703] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59746] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [59789] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59875] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59918] = 12, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59979] = 13, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60042] = 14, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60107] = 10, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 21, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60164] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60207] = 8, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60260] = 8, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60313] = 15, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1730), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1728), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60380] = 11, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1716), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60439] = 8, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60492] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60535] = 6, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1093), 1, + anon_sym_LBRACK, + STATE(1474), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60584] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [60627] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [60670] = 8, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1796), 1, + anon_sym_LPAREN, + ACTIONS(1804), 1, + anon_sym_STAR_STAR, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(1042), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 24, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60723] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60768] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60813] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60901] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60944] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61030] = 18, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(1924), 1, + anon_sym_not, + ACTIONS(1928), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_AMP, + ACTIONS(1932), 1, + anon_sym_CARET, + STATE(1081), 1, + sym_argument_list, + STATE(1155), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1934), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1916), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1630), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [61103] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 29, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61146] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61188] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61230] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61272] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61314] = 18, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1924), 1, + anon_sym_not, + ACTIONS(1928), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_AMP, + ACTIONS(1932), 1, + anon_sym_CARET, + STATE(1081), 1, + sym_argument_list, + STATE(1155), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1934), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1630), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + ACTIONS(1916), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61386] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61428] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61470] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61512] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61556] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61600] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61642] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61684] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61728] = 8, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1720), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61780] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61822] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61864] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61906] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61948] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [61990] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62032] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62074] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62116] = 8, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62168] = 11, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62226] = 15, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(1928), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_AMP, + ACTIONS(1932), 1, + anon_sym_CARET, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1730), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1728), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62292] = 8, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62344] = 10, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 21, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62400] = 14, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(1930), 1, + anon_sym_AMP, + ACTIONS(1932), 1, + anon_sym_CARET, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62464] = 13, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(1932), 1, + anon_sym_CARET, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62526] = 12, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1716), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1714), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62586] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62628] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [62674] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [62720] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62762] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62804] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62846] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62888] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62930] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [62972] = 15, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1910), 1, + anon_sym_LPAREN, + ACTIONS(1918), 1, + anon_sym_STAR_STAR, + ACTIONS(1920), 1, + anon_sym_LBRACK, + ACTIONS(1928), 1, + anon_sym_PIPE, + ACTIONS(1930), 1, + anon_sym_AMP, + ACTIONS(1932), 1, + anon_sym_CARET, + STATE(1081), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1734), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1912), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1914), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1926), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1922), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1732), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63038] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63080] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63122] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63164] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63206] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63248] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63290] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63332] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63374] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63416] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63458] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63500] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63542] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [63588] = 18, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1660), 1, + anon_sym_LPAREN, + ACTIONS(1668), 1, + anon_sym_STAR_STAR, + ACTIONS(1674), 1, + anon_sym_not, + ACTIONS(1678), 1, + anon_sym_PIPE, + ACTIONS(1680), 1, + anon_sym_AMP, + ACTIONS(1682), 1, + anon_sym_CARET, + STATE(765), 1, + sym_argument_list, + STATE(1156), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1662), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1664), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1676), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1684), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1672), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1630), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + ACTIONS(1666), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63660] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [63706] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63748] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63790] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63832] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63874] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63916] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [63958] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64000] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [64046] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64088] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [64134] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64176] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64218] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64260] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64302] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64344] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64386] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1187), 2, + anon_sym_async, + anon_sym_for, + ACTIONS(1194), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64430] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [64476] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64518] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64560] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1936), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64606] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64648] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64690] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64732] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64774] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64816] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64858] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64900] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64942] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [64984] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [65030] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65072] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65114] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [65160] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65202] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65244] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65286] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65328] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65370] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65412] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65454] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1152), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1155), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65498] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65540] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1081), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1084), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65584] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65626] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1215), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1218), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65670] = 5, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(1938), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65716] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65758] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65800] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65842] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65884] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(1936), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [65930] = 7, + ACTIONS(1199), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1189), 5, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1187), 11, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [65980] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66022] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66064] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1129), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1132), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66108] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66150] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66234] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66276] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66318] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66360] = 7, + ACTIONS(1199), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1189), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1187), 11, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [66410] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66452] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66494] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66536] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66578] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66620] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66662] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66704] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66746] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66788] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66830] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66872] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66914] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66956] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [66998] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67040] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67082] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67124] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67166] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1872), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1870), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67207] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1860), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1858), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67248] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67291] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67332] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1150), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1155), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1095), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [67375] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67418] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67461] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67504] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(219), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(214), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67549] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1205), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67590] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1079), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1084), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1095), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [67633] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1900), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1898), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67674] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1213), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1218), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1222), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [67717] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [67762] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1181), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1173), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1175), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [67807] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1146), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67848] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1127), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1132), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1136), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [67891] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67932] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [67973] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68014] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1884), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1882), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68055] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68096] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68137] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1165), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68178] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1852), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1850), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68219] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68260] = 7, + ACTIONS(1199), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1189), 4, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(1187), 11, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [68309] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1824), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1822), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68350] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1844), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1842), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68391] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [68434] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1840), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1838), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68475] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1836), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1834), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68516] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1832), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1830), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68557] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1904), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1902), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68598] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1868), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1866), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68639] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [68682] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1201), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68723] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1183), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68764] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68805] = 4, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68848] = 6, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1189), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + ACTIONS(1187), 11, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 12, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [68895] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [68938] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1148), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1146), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [68979] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1856), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1854), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69020] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1848), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1846), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69061] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1876), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1874), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69102] = 5, + ACTIONS(1086), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1081), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1084), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69147] = 5, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(219), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(214), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(212), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69192] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1880), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1878), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69233] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1828), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1826), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69274] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1888), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1886), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69315] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1892), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1890), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69356] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1175), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1178), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69399] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(212), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(214), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(247), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69442] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1896), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1894), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69483] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1175), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1178), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1173), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69526] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(212), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(214), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(247), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69569] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1207), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1205), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69610] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1864), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1862), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [69651] = 5, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1187), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1191), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [69696] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1167), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1165), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69737] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1201), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69778] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1203), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1201), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69819] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1183), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69860] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1185), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1183), 19, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69901] = 4, + ACTIONS(229), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1178), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1175), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [69944] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1191), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1194), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1187), 16, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [69987] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70027] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [70067] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1215), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1218), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1213), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70109] = 3, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1194), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1191), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70149] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1129), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1132), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1127), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70191] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1081), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1084), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1079), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70233] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1152), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1155), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1150), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [70275] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1155), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1095), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1150), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70307] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1222), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1213), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70339] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70371] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70403] = 7, + ACTIONS(1945), 1, + anon_sym_EQ, + ACTIONS(1947), 1, + anon_sym_not, + STATE(1135), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1950), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1942), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [70441] = 7, + ACTIONS(1702), 1, + anon_sym_not, + ACTIONS(1955), 1, + anon_sym_EQ, + STATE(1135), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1712), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [70479] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1136), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1127), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70511] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1095), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70543] = 7, + ACTIONS(1810), 1, + anon_sym_not, + ACTIONS(1955), 1, + anon_sym_EQ, + STATE(1142), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1820), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1802), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [70580] = 7, + ACTIONS(1782), 1, + anon_sym_not, + ACTIONS(1955), 1, + anon_sym_EQ, + STATE(1141), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1792), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1774), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [70617] = 7, + ACTIONS(1945), 1, + anon_sym_EQ, + ACTIONS(1960), 1, + anon_sym_not, + STATE(1141), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1963), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1957), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [70654] = 7, + ACTIONS(1945), 1, + anon_sym_EQ, + ACTIONS(1969), 1, + anon_sym_not, + STATE(1142), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1972), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1966), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [70691] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1975), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70721] = 7, + ACTIONS(1646), 1, + anon_sym_not, + ACTIONS(1955), 1, + anon_sym_as, + STATE(1148), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1656), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [70757] = 4, + ACTIONS(1979), 1, + anon_sym_COMMA, + STATE(1145), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [70787] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1173), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70817] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1173), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70847] = 7, + ACTIONS(1945), 1, + anon_sym_as, + ACTIONS(1985), 1, + anon_sym_not, + STATE(1148), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1988), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1982), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [70883] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1187), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70913] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70943] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [70973] = 7, + ACTIONS(1945), 1, + anon_sym_EQ, + ACTIONS(1996), 1, + anon_sym_not, + STATE(1152), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1999), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1993), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [71009] = 6, + ACTIONS(2005), 1, + anon_sym_not, + STATE(1153), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2008), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2002), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [71043] = 4, + ACTIONS(2011), 1, + anon_sym_COMMA, + STATE(1145), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(481), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [71073] = 6, + ACTIONS(1924), 1, + anon_sym_not, + STATE(1153), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1934), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1916), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [71107] = 7, + ACTIONS(1674), 1, + anon_sym_not, + ACTIONS(1955), 1, + anon_sym_EQ, + STATE(1152), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1684), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1666), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [71143] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1187), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71172] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1095), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71201] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71230] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1975), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71259] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71288] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1222), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1213), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71317] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71346] = 7, + ACTIONS(1945), 1, + anon_sym_as, + ACTIONS(2016), 1, + anon_sym_not, + STATE(1164), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2019), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(2013), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1940), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [71381] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71410] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1136), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1127), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71439] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71468] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2022), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [71493] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1222), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1213), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71522] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2024), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [71547] = 7, + ACTIONS(1752), 1, + anon_sym_not, + ACTIONS(1955), 1, + anon_sym_as, + STATE(1164), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1762), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1744), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1953), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [71582] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [71607] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1095), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71636] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1155), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1150), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71665] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71694] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1155), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1150), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71723] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 18, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [71748] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(247), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71777] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1173), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71806] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1084), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1095), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1079), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71835] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1136), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1127), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71864] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1173), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71893] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(214), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1991), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(212), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71922] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1155), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1150), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71951] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1132), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1136), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(1127), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [71980] = 4, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1218), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1222), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1213), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_LBRACK, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [72009] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2032), 1, + anon_sym_COLON, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1855), 1, + sym__parameters, + STATE(1906), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72055] = 13, + ACTIONS(1626), 1, + anon_sym_DOT, + ACTIONS(1642), 1, + anon_sym_LBRACK, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72101] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2022), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72125] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2038), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1855), 1, + sym__parameters, + STATE(1864), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72171] = 13, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + ACTIONS(2040), 1, + anon_sym_DOT, + ACTIONS(2042), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72217] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2024), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72241] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2044), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1855), 1, + sym__parameters, + STATE(1873), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72287] = 6, + ACTIONS(2046), 1, + anon_sym_COMMA, + ACTIONS(2048), 1, + anon_sym_COLON, + ACTIONS(2050), 1, + anon_sym_EQ, + STATE(1154), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72319] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2054), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1854), 1, + sym_lambda_parameters, + STATE(1855), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72365] = 13, + ACTIONS(1686), 1, + anon_sym_DOT, + ACTIONS(1698), 1, + anon_sym_LBRACK, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72411] = 6, + ACTIONS(2048), 1, + anon_sym_COLON, + ACTIONS(2050), 1, + anon_sym_EQ, + ACTIONS(2056), 1, + anon_sym_COMMA, + STATE(1208), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72443] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72467] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2058), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1790), 1, + sym_lambda_parameters, + STATE(1855), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72513] = 4, + ACTIONS(2060), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72541] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2063), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1814), 1, + sym_lambda_parameters, + STATE(1855), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72587] = 13, + ACTIONS(1736), 1, + anon_sym_DOT, + ACTIONS(1748), 1, + anon_sym_LBRACK, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72633] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2065), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1855), 1, + sym__parameters, + STATE(1916), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [72679] = 13, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + ACTIONS(1908), 1, + anon_sym_DOT, + ACTIONS(1920), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72725] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72749] = 13, + ACTIONS(1766), 1, + anon_sym_DOT, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1778), 1, + anon_sym_LBRACK, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72795] = 5, + ACTIONS(2048), 1, + anon_sym_COLON, + ACTIONS(2050), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2067), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2052), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72825] = 4, + ACTIONS(2069), 1, + anon_sym_COMMA, + STATE(1200), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(481), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [72853] = 13, + ACTIONS(1724), 1, + anon_sym_DOT, + ACTIONS(1726), 1, + anon_sym_LBRACK, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72899] = 13, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + ACTIONS(1794), 1, + anon_sym_DOT, + ACTIONS(1806), 1, + anon_sym_LBRACK, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72945] = 13, + ACTIONS(1658), 1, + anon_sym_DOT, + ACTIONS(1670), 1, + anon_sym_LBRACK, + ACTIONS(1768), 1, + anon_sym_LPAREN, + ACTIONS(1776), 1, + anon_sym_STAR_STAR, + ACTIONS(1786), 1, + anon_sym_PIPE, + ACTIONS(1788), 1, + anon_sym_AMP, + ACTIONS(1790), 1, + anon_sym_CARET, + STATE(923), 1, + sym_argument_list, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1770), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1772), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1784), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1780), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [72991] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2071), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1855), 1, + sym__parameters, + STATE(1902), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73037] = 13, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2073), 1, + anon_sym_COLON, + STATE(1629), 1, + sym_parameter, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1855), 1, + sym__parameters, + STATE(1865), 1, + sym_lambda_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73083] = 12, + ACTIONS(2075), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_LPAREN, + ACTIONS(2079), 1, + anon_sym_RPAREN, + ACTIONS(2081), 1, + anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_STAR_STAR, + ACTIONS(2085), 1, + anon_sym_SLASH, + STATE(1575), 1, + sym_parameter, + STATE(1675), 1, + sym_tuple_pattern, + STATE(1904), 1, + sym__parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1672), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1735), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73126] = 11, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2087), 1, + anon_sym_COLON, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1751), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73166] = 11, + ACTIONS(2075), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_STAR_STAR, + ACTIONS(2085), 1, + anon_sym_SLASH, + ACTIONS(2087), 1, + anon_sym_RPAREN, + STATE(1675), 1, + sym_tuple_pattern, + STATE(1725), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1672), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1735), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73206] = 11, + ACTIONS(2075), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_STAR_STAR, + ACTIONS(2085), 1, + anon_sym_SLASH, + ACTIONS(2089), 1, + anon_sym_RPAREN, + STATE(1675), 1, + sym_tuple_pattern, + STATE(1725), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1672), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1735), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73246] = 11, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + ACTIONS(2089), 1, + anon_sym_COLON, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1751), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73286] = 4, + ACTIONS(2048), 1, + anon_sym_COLON, + ACTIONS(2050), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2052), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [73312] = 10, + ACTIONS(2026), 1, + sym_identifier, + ACTIONS(2028), 1, + anon_sym_LPAREN, + ACTIONS(2030), 1, + anon_sym_STAR, + ACTIONS(2034), 1, + anon_sym_STAR_STAR, + ACTIONS(2036), 1, + anon_sym_SLASH, + STATE(1630), 1, + sym_tuple_pattern, + STATE(1751), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1760), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1762), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73349] = 10, + ACTIONS(2075), 1, + sym_identifier, + ACTIONS(2077), 1, + anon_sym_LPAREN, + ACTIONS(2081), 1, + anon_sym_STAR, + ACTIONS(2083), 1, + anon_sym_STAR_STAR, + ACTIONS(2085), 1, + anon_sym_SLASH, + STATE(1675), 1, + sym_tuple_pattern, + STATE(1725), 1, + sym_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1672), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1735), 5, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [73386] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1805), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73427] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1799), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73468] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1824), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73509] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1888), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73550] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1845), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73591] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1879), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73632] = 13, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2097), 1, + anon_sym_COLON, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + STATE(1922), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73673] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [73691] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1927), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73729] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1878), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73767] = 4, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 9, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [73789] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1848), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73827] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [73845] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1893), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73883] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [73909] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1807), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [73947] = 9, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2141), 1, + anon_sym_COMMA, + STATE(1525), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2137), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(2139), 3, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_PIPE, + [73979] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74005] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 11, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74023] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1796), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [74061] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74087] = 3, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + [74107] = 12, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + STATE(1356), 1, + sym_for_in_clause, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + STATE(1806), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [74145] = 5, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2151), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74169] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2160), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74198] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2162), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1255), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74227] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [74252] = 3, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + [74271] = 4, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 8, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74292] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74309] = 8, + ACTIONS(2176), 1, + anon_sym_COMMA, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + STATE(1461), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2182), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [74338] = 3, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_PIPE, + [74357] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2188), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1262), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74386] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2190), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74415] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74432] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2192), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74461] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74486] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2194), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74515] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74532] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74557] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2200), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74586] = 5, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2202), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 7, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74609] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2205), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1265), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74638] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2207), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74667] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74692] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74709] = 5, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2209), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [74732] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2212), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1246), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74761] = 4, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [74782] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 10, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74799] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74824] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2214), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1259), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74853] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 10, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [74870] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [74895] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2216), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1280), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74924] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [74949] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2218), 1, + anon_sym_LBRACE, + ACTIONS(2224), 1, + sym__not_escape_sequence, + ACTIONS(2227), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2221), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [74978] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2229), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1257), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [75007] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2154), 1, + anon_sym_LBRACE, + ACTIONS(2158), 1, + sym__not_escape_sequence, + ACTIONS(2231), 1, + sym_string_end, + STATE(1375), 1, + aux_sym_string_content_repeat1, + ACTIONS(2156), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + STATE(1278), 3, + sym_string_content, + sym_interpolation, + aux_sym_string_repeat1, + [75036] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_PIPE, + [75061] = 5, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2233), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75083] = 3, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [75101] = 3, + ACTIONS(1632), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [75119] = 6, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75143] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [75167] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [75191] = 3, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 8, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_or, + anon_sym_PIPE, + [75209] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [75225] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [75249] = 4, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 7, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [75269] = 5, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2244), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 6, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [75291] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [75315] = 3, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [75333] = 5, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(2249), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75355] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [75371] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [75395] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2251), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [75419] = 6, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75443] = 3, + ACTIONS(2253), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [75461] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [75477] = 4, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_or, + anon_sym_RBRACE, + [75497] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [75521] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [75537] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [75561] = 5, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(2255), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [75583] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 9, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + [75599] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [75615] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [75639] = 4, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [75659] = 6, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75683] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2260), 1, + anon_sym_COMMA, + STATE(1533), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2258), 2, + sym__newline, + anon_sym_SEMI, + [75710] = 6, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2147), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [75733] = 6, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2143), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [75756] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2260), 1, + anon_sym_COMMA, + STATE(1533), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2067), 2, + sym__newline, + anon_sym_SEMI, + [75783] = 5, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2262), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75804] = 5, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2262), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [75825] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2264), 1, + anon_sym_COMMA, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2268), 1, + anon_sym_RBRACK, + STATE(1660), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [75854] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2270), 1, + anon_sym_COMMA, + ACTIONS(2272), 1, + anon_sym_RBRACK, + STATE(1548), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [75883] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1518), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2274), 2, + sym__newline, + anon_sym_SEMI, + [75910] = 5, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2262), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75931] = 5, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2262), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [75952] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2141), 1, + anon_sym_COMMA, + STATE(1525), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2137), 2, + sym__newline, + anon_sym_SEMI, + [75979] = 4, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [75998] = 3, + ACTIONS(2247), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2145), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [76015] = 5, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(2249), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2125), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [76036] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2280), 1, + anon_sym_COMMA, + STATE(1530), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2278), 2, + sym__newline, + anon_sym_SEMI, + [76063] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2282), 1, + anon_sym_COMMA, + ACTIONS(2284), 1, + anon_sym_RBRACK, + STATE(1623), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76092] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1532), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2286), 2, + sym__newline, + anon_sym_SEMI, + [76119] = 5, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(2288), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2149), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [76140] = 6, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2095), 1, + anon_sym_if, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2291), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [76163] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2293), 1, + anon_sym_COMMA, + ACTIONS(2295), 1, + anon_sym_RBRACK, + STATE(1633), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76192] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1519), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2297), 2, + sym__newline, + anon_sym_SEMI, + [76219] = 5, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2262), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [76240] = 8, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2260), 1, + anon_sym_COMMA, + STATE(1533), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2299), 2, + sym__newline, + anon_sym_SEMI, + [76267] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2301), 1, + anon_sym_COMMA, + ACTIONS(2303), 1, + anon_sym_RBRACK, + STATE(1663), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76296] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2305), 1, + anon_sym_COMMA, + ACTIONS(2307), 1, + anon_sym_RBRACK, + STATE(1568), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76325] = 6, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2115), 1, + anon_sym_if, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2131), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [76348] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(2311), 1, + anon_sym_RBRACK, + STATE(1606), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76377] = 5, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2262), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [76398] = 3, + ACTIONS(1632), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1630), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [76415] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2313), 1, + anon_sym_COMMA, + ACTIONS(2315), 1, + anon_sym_RBRACK, + STATE(1696), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76444] = 9, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(2319), 1, + anon_sym_if, + ACTIONS(2321), 1, + anon_sym_COLON, + STATE(1496), 1, + aux_sym_case_clause_repeat1, + STATE(1801), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76473] = 9, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2325), 1, + anon_sym_RBRACK, + STATE(1539), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76502] = 3, + ACTIONS(2253), 1, + anon_sym_as, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2109), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [76519] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2332), 1, + sym__not_escape_sequence, + STATE(1346), 1, + aux_sym_string_content_repeat1, + ACTIONS(2327), 2, + sym_string_end, + anon_sym_LBRACE, + ACTIONS(2329), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [76541] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2335), 1, + anon_sym_COMMA, + ACTIONS(2337), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1648), 1, + aux_sym_dictionary_repeat1, + STATE(1887), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76567] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2339), 1, + anon_sym_RPAREN, + ACTIONS(2341), 1, + anon_sym_COMMA, + STATE(1602), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76593] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2343), 1, + anon_sym_RPAREN, + ACTIONS(2345), 1, + anon_sym_COMMA, + STATE(1574), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76619] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2347), 1, + anon_sym_COMMA, + ACTIONS(2349), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1587), 1, + aux_sym_dictionary_repeat1, + STATE(1800), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76645] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2351), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [76667] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2353), 1, + anon_sym_RPAREN, + ACTIONS(2355), 1, + anon_sym_COMMA, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76693] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2357), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76719] = 8, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2361), 1, + anon_sym_COLON, + STATE(1654), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76745] = 8, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2363), 1, + anon_sym_COMMA, + ACTIONS(2365), 1, + anon_sym_COLON, + STATE(1612), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76771] = 6, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2367), 1, + anon_sym_if, + ACTIONS(2369), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1365), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [76793] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2371), 1, + anon_sym_RPAREN, + ACTIONS(2373), 1, + anon_sym_COMMA, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76819] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2376), 1, + anon_sym_COMMA, + ACTIONS(2378), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1583), 1, + aux_sym_dictionary_repeat1, + STATE(1804), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76845] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2380), 1, + anon_sym_RPAREN, + ACTIONS(2382), 1, + anon_sym_COMMA, + STATE(1659), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76871] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2384), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76897] = 7, + ACTIONS(987), 1, + anon_sym_COLON, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(985), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [76921] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2386), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1551), 1, + aux_sym_dictionary_repeat1, + STATE(1844), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76947] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2390), 1, + anon_sym_COMMA, + ACTIONS(2392), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1550), 1, + aux_sym_dictionary_repeat1, + STATE(1810), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76973] = 8, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2394), 1, + anon_sym_COLON, + STATE(1654), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [76999] = 6, + ACTIONS(2117), 1, + anon_sym_async, + ACTIONS(2119), 1, + anon_sym_for, + ACTIONS(2367), 1, + anon_sym_if, + ACTIONS(2396), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1389), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [77021] = 5, + ACTIONS(2113), 1, + anon_sym_as, + ACTIONS(2121), 1, + anon_sym_and, + ACTIONS(2123), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2398), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [77041] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2371), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77067] = 7, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2266), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2400), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [77091] = 5, + ACTIONS(2093), 1, + anon_sym_as, + ACTIONS(2103), 1, + anon_sym_and, + ACTIONS(2105), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2398), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [77111] = 6, + ACTIONS(2402), 1, + anon_sym_if, + ACTIONS(2405), 1, + anon_sym_async, + ACTIONS(2408), 1, + anon_sym_for, + ACTIONS(2411), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1370), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [77133] = 8, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2413), 1, + anon_sym_COLON, + STATE(1654), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77159] = 8, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2415), 1, + anon_sym_COMMA, + ACTIONS(2417), 1, + anon_sym_COLON, + STATE(1559), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77185] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2419), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77211] = 7, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(2421), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1041), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [77235] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2427), 1, + sym__not_escape_sequence, + STATE(1346), 1, + aux_sym_string_content_repeat1, + ACTIONS(2423), 2, + sym_string_end, + anon_sym_LBRACE, + ACTIONS(2425), 3, + sym__string_content, + sym_escape_interpolation, + sym_escape_sequence, + [77257] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2429), 1, + anon_sym_COMMA, + ACTIONS(2431), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1686), 1, + aux_sym_dictionary_repeat1, + STATE(1921), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77283] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2433), 1, + anon_sym_RPAREN, + ACTIONS(2435), 1, + anon_sym_COMMA, + STATE(1620), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77309] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2437), 1, + anon_sym_RPAREN, + ACTIONS(2439), 1, + anon_sym_COMMA, + STATE(1637), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77335] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2441), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77361] = 6, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2443), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1370), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [77383] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2445), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77409] = 6, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2369), 1, + anon_sym_RBRACE, + ACTIONS(2443), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1380), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [77431] = 8, + ACTIONS(2099), 1, + anon_sym_async, + ACTIONS(2101), 1, + anon_sym_for, + ACTIONS(2447), 1, + anon_sym_COMMA, + ACTIONS(2449), 1, + anon_sym_RBRACE, + STATE(1382), 1, + sym_for_in_clause, + STATE(1642), 1, + aux_sym_dictionary_repeat1, + STATE(1881), 1, + sym__comprehension_clauses, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77457] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(2453), 1, + anon_sym_COMMA, + STATE(1594), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77483] = 8, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(2455), 1, + anon_sym_RPAREN, + ACTIONS(2457), 1, + anon_sym_COMMA, + STATE(1694), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77509] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2251), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [77531] = 8, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2359), 1, + anon_sym_COMMA, + ACTIONS(2459), 1, + anon_sym_COLON, + STATE(1654), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77557] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2461), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [77579] = 6, + ACTIONS(2411), 1, + anon_sym_RBRACK, + ACTIONS(2463), 1, + anon_sym_if, + ACTIONS(2466), 1, + anon_sym_async, + ACTIONS(2469), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1389), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [77601] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2474), 1, + sym__not_escape_sequence, + ACTIONS(2472), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [77618] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2476), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [77639] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2478), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77652] = 7, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2398), 1, + anon_sym_COLON, + ACTIONS(2480), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77675] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1189), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77688] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2482), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [77709] = 4, + ACTIONS(2484), 1, + anon_sym_COMMA, + STATE(1453), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2486), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [77726] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77739] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2490), 1, + sym__not_escape_sequence, + ACTIONS(2488), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [77756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2494), 1, + sym__not_escape_sequence, + ACTIONS(2492), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [77773] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2496), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [77794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2500), 1, + sym__not_escape_sequence, + ACTIONS(2498), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [77811] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2502), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [77832] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1189), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77845] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2478), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77858] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2504), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [77879] = 4, + ACTIONS(2506), 1, + anon_sym_COMMA, + STATE(1456), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [77896] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2510), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77909] = 4, + ACTIONS(2512), 1, + anon_sym_COMMA, + STATE(1444), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [77926] = 7, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(2522), 1, + anon_sym_RBRACK, + ACTIONS(2524), 1, + anon_sym_PIPE, + STATE(1543), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [77949] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2526), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77962] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [77975] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [77996] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 2, + anon_sym_COMMA, + anon_sym_COLON, + [78017] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2510), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78030] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2526), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78043] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2502), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [78064] = 4, + ACTIONS(2534), 1, + anon_sym_COMMA, + STATE(1459), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(481), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [78081] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2536), 2, + anon_sym_COMMA, + anon_sym_COLON, + [78102] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2510), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78115] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1041), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [78136] = 4, + ACTIONS(2538), 1, + anon_sym_COMMA, + STATE(1458), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2514), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [78153] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [78174] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2482), 2, + anon_sym_COMMA, + anon_sym_COLON, + [78195] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1045), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [78216] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2544), 1, + sym__not_escape_sequence, + ACTIONS(2542), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [78233] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2546), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [78254] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2496), 2, + anon_sym_COMMA, + anon_sym_COLON, + [78275] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78288] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2251), 2, + anon_sym_COMMA, + anon_sym_COLON, + [78309] = 6, + ACTIONS(2550), 1, + anon_sym_DOT, + ACTIONS(2554), 1, + anon_sym_COLON, + ACTIONS(2556), 1, + anon_sym_EQ, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [78330] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78343] = 7, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(2524), 1, + anon_sym_PIPE, + ACTIONS(2560), 1, + anon_sym_RBRACK, + STATE(1665), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [78366] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2532), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [78387] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78400] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2564), 1, + sym__not_escape_sequence, + ACTIONS(2562), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [78417] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [78438] = 7, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(2524), 1, + anon_sym_PIPE, + ACTIONS(2566), 1, + anon_sym_RBRACK, + STATE(1609), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [78461] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [78482] = 5, + ACTIONS(2570), 1, + anon_sym_DOT, + ACTIONS(2572), 1, + anon_sym_COLON, + ACTIONS(2574), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [78501] = 6, + ACTIONS(51), 1, + anon_sym_AT, + ACTIONS(2576), 1, + anon_sym_async, + ACTIONS(2578), 1, + anon_sym_def, + STATE(583), 1, + sym_function_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1491), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [78522] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2478), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78535] = 7, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(2524), 1, + anon_sym_PIPE, + ACTIONS(2580), 1, + anon_sym_RBRACK, + STATE(1556), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [78558] = 6, + ACTIONS(2172), 1, + anon_sym_and, + ACTIONS(2174), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2198), 1, + anon_sym_if, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2502), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [78579] = 4, + ACTIONS(2582), 1, + anon_sym_COMMA, + STATE(1455), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2584), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [78596] = 6, + ACTIONS(51), 1, + anon_sym_AT, + ACTIONS(2586), 1, + anon_sym_async, + ACTIONS(2588), 1, + anon_sym_def, + STATE(516), 1, + sym_function_definition, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + STATE(1491), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [78617] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2291), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [78638] = 6, + ACTIONS(2570), 1, + anon_sym_DOT, + ACTIONS(2572), 1, + anon_sym_COLON, + ACTIONS(2574), 1, + anon_sym_PIPE, + ACTIONS(2592), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2590), 2, + sym__newline, + anon_sym_SEMI, + [78659] = 6, + ACTIONS(2178), 1, + anon_sym_as, + ACTIONS(2180), 1, + anon_sym_if, + ACTIONS(2184), 1, + anon_sym_and, + ACTIONS(2186), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2504), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [78680] = 5, + ACTIONS(2550), 1, + anon_sym_DOT, + ACTIONS(2554), 1, + anon_sym_COLON, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [78699] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78712] = 4, + ACTIONS(2594), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2251), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [78729] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2599), 1, + sym__not_escape_sequence, + ACTIONS(2597), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [78746] = 4, + ACTIONS(2601), 1, + anon_sym_COMMA, + STATE(1453), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2604), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [78763] = 4, + ACTIONS(2606), 1, + anon_sym_COMMA, + STATE(1396), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2508), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [78780] = 4, + ACTIONS(2608), 1, + anon_sym_COMMA, + STATE(1455), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2604), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [78797] = 4, + ACTIONS(2611), 1, + anon_sym_COMMA, + STATE(1455), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2486), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [78814] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(2615), 1, + sym__not_escape_sequence, + ACTIONS(2613), 5, + sym__string_content, + sym_escape_interpolation, + sym_string_end, + anon_sym_LBRACE, + sym_escape_sequence, + [78831] = 4, + ACTIONS(2617), 1, + anon_sym_COMMA, + STATE(1453), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2584), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [78848] = 4, + ACTIONS(2619), 1, + anon_sym_COMMA, + STATE(1459), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [78865] = 6, + ACTIONS(2236), 1, + anon_sym_as, + ACTIONS(2238), 1, + anon_sym_if, + ACTIONS(2240), 1, + anon_sym_and, + ACTIONS(2242), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2622), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [78886] = 4, + ACTIONS(2624), 1, + anon_sym_COMMA, + STATE(1451), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(881), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [78903] = 5, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2626), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [78922] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2526), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [78934] = 6, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(2630), 1, + anon_sym_RBRACE, + ACTIONS(2632), 1, + aux_sym_format_specifier_token1, + STATE(1476), 1, + aux_sym_format_specifier_repeat1, + STATE(1698), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [78954] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2398), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [78974] = 6, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2636), 1, + anon_sym_EQ, + ACTIONS(2638), 1, + anon_sym_RBRACE, + ACTIONS(2640), 1, + sym_type_conversion, + STATE(1840), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [78994] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2642), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [79006] = 5, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(2524), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2644), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [79024] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79036] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2646), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79056] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1189), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79068] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1189), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [79080] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79092] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2528), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [79104] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [79116] = 6, + ACTIONS(2628), 1, + anon_sym_LBRACE, + ACTIONS(2648), 1, + anon_sym_RBRACE, + ACTIONS(2650), 1, + aux_sym_format_specifier_token1, + STATE(1510), 1, + aux_sym_format_specifier_repeat1, + STATE(1698), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [79136] = 6, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2652), 1, + anon_sym_EQ, + ACTIONS(2654), 1, + anon_sym_RBRACE, + ACTIONS(2656), 1, + sym_type_conversion, + STATE(1869), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79156] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2658), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79176] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2604), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [79188] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2660), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79208] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2662), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79228] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2664), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79248] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2666), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79268] = 6, + ACTIONS(2127), 1, + anon_sym_and, + ACTIONS(2129), 1, + anon_sym_or, + ACTIONS(2133), 1, + anon_sym_as, + ACTIONS(2135), 1, + anon_sym_if, + ACTIONS(2668), 1, + sym__newline, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79288] = 5, + ACTIONS(2550), 1, + anon_sym_DOT, + ACTIONS(2554), 1, + anon_sym_COLON, + ACTIONS(2558), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2552), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [79306] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2480), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79326] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2670), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79346] = 5, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_COLON, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 2, + anon_sym_COMMA, + anon_sym_EQ, + [79364] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2022), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [79376] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2678), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79396] = 4, + ACTIONS(2682), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2680), 2, + anon_sym_async, + anon_sym_def, + STATE(1491), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [79412] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2685), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [79424] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2510), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79436] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [79448] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2687), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79468] = 6, + ACTIONS(2689), 1, + anon_sym_COMMA, + ACTIONS(2691), 1, + anon_sym_if, + ACTIONS(2693), 1, + anon_sym_COLON, + STATE(1522), 1, + aux_sym_case_clause_repeat1, + STATE(1933), 1, + sym_if_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79488] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2695), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79508] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2478), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79520] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2685), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [79532] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [79544] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2604), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [79556] = 6, + ACTIONS(2552), 1, + anon_sym_COMMA, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_COLON, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2697), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79576] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2699), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79596] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2701), 1, + anon_sym_else, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79616] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2024), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [79628] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2526), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79640] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2642), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [79652] = 5, + ACTIONS(2516), 1, + anon_sym_DOT, + ACTIONS(2520), 1, + anon_sym_COLON, + ACTIONS(2524), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2568), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [79670] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2548), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE, + [79682] = 6, + ACTIONS(2703), 1, + anon_sym_LBRACE, + ACTIONS(2706), 1, + anon_sym_RBRACE, + ACTIONS(2708), 1, + aux_sym_format_specifier_token1, + STATE(1510), 1, + aux_sym_format_specifier_repeat1, + STATE(1698), 1, + sym_interpolation, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + [79702] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2139), 5, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PIPE, + [79714] = 6, + ACTIONS(2164), 1, + anon_sym_as, + ACTIONS(2166), 1, + anon_sym_if, + ACTIONS(2168), 1, + anon_sym_and, + ACTIONS(2170), 1, + anon_sym_or, + ACTIONS(2711), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79734] = 5, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(2715), 1, + sym_type_conversion, + STATE(1834), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79751] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2717), 4, + anon_sym_eq, + anon_sym_ne, + anon_sym_contains, + anon_sym_fails, + [79762] = 4, + ACTIONS(2719), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2251), 2, + sym__newline, + anon_sym_SEMI, + [79777] = 5, + ACTIONS(2552), 1, + anon_sym_COMMA, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2674), 1, + anon_sym_COLON, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79794] = 5, + ACTIONS(2722), 1, + anon_sym_case, + ACTIONS(2724), 1, + sym__dedent, + STATE(1528), 1, + aux_sym__match_block_repeat1, + STATE(1727), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79811] = 4, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2726), 2, + sym__newline, + anon_sym_SEMI, + [79826] = 4, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2728), 2, + sym__newline, + anon_sym_SEMI, + [79841] = 5, + ACTIONS(2722), 1, + anon_sym_case, + ACTIONS(2730), 1, + sym__dedent, + STATE(1528), 1, + aux_sym__match_block_repeat1, + STATE(1727), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79858] = 5, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1782), 1, + sym_parameters, + STATE(1787), 1, + sym_type_parameter, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79875] = 4, + ACTIONS(2734), 1, + anon_sym_COMMA, + STATE(1522), 1, + aux_sym_case_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2737), 2, + anon_sym_if, + anon_sym_COLON, + [79890] = 4, + ACTIONS(2741), 1, + anon_sym_COLON, + ACTIONS(2743), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [79905] = 5, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1723), 1, + sym_type_parameter, + STATE(1766), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79922] = 4, + ACTIONS(2745), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1033), 2, + sym__newline, + anon_sym_SEMI, + [79937] = 5, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1726), 1, + sym_type_parameter, + STATE(1767), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79954] = 4, + ACTIONS(2749), 1, + anon_sym_COMMA, + STATE(1527), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2747), 2, + sym__newline, + anon_sym_SEMI, + [79969] = 5, + ACTIONS(2752), 1, + anon_sym_case, + ACTIONS(2755), 1, + sym__dedent, + STATE(1528), 1, + aux_sym__match_block_repeat1, + STATE(1727), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [79986] = 4, + ACTIONS(2759), 1, + anon_sym_COMMA, + STATE(1527), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2757), 2, + sym__newline, + anon_sym_SEMI, + [80001] = 4, + ACTIONS(2763), 1, + anon_sym_COMMA, + STATE(1527), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2761), 2, + sym__newline, + anon_sym_SEMI, + [80016] = 5, + ACTIONS(2722), 1, + anon_sym_case, + ACTIONS(2765), 1, + sym__dedent, + STATE(1520), 1, + aux_sym__match_block_repeat1, + STATE(1727), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80033] = 4, + ACTIONS(2276), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2767), 2, + sym__newline, + anon_sym_SEMI, + [80048] = 4, + ACTIONS(2769), 1, + anon_sym_COMMA, + STATE(1515), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(881), 2, + sym__newline, + anon_sym_SEMI, + [80063] = 5, + ACTIONS(1093), 1, + anon_sym_LBRACK, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1729), 1, + sym_type_parameter, + STATE(1730), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80080] = 5, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2771), 1, + anon_sym_RBRACE, + ACTIONS(2773), 1, + sym_type_conversion, + STATE(1882), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80097] = 4, + ACTIONS(2777), 1, + anon_sym_COMMA, + STATE(1529), 1, + aux_sym_print_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2775), 2, + sym__newline, + anon_sym_SEMI, + [80112] = 5, + ACTIONS(2722), 1, + anon_sym_case, + ACTIONS(2779), 1, + sym__dedent, + STATE(1517), 1, + aux_sym__match_block_repeat1, + STATE(1727), 1, + sym_case_clause, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80129] = 4, + ACTIONS(2781), 1, + anon_sym_COMMA, + ACTIONS(2783), 1, + anon_sym_RBRACK, + STATE(1557), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80143] = 4, + ACTIONS(2785), 1, + anon_sym_COMMA, + ACTIONS(2787), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80157] = 4, + ACTIONS(2789), 1, + anon_sym_COMMA, + ACTIONS(2791), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80171] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2793), 1, + anon_sym_RBRACE, + STATE(1829), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80185] = 4, + ACTIONS(2323), 1, + anon_sym_COMMA, + ACTIONS(2325), 1, + anon_sym_RBRACK, + STATE(1627), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80199] = 4, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2795), 1, + anon_sym_RBRACK, + STATE(1646), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80213] = 4, + ACTIONS(2091), 1, + anon_sym_COMMA, + ACTIONS(2107), 1, + anon_sym_RBRACE, + STATE(1677), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80227] = 4, + ACTIONS(2797), 1, + anon_sym_SEMI, + ACTIONS(2800), 1, + sym__newline, + STATE(1545), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80241] = 4, + ACTIONS(2802), 1, + anon_sym_COMMA, + ACTIONS(2804), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80255] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2806), 1, + anon_sym_RBRACE, + STATE(1839), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80269] = 4, + ACTIONS(2808), 1, + anon_sym_COMMA, + ACTIONS(2810), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80283] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2814), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80297] = 4, + ACTIONS(919), 1, + anon_sym_RBRACE, + ACTIONS(2816), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80311] = 4, + ACTIONS(915), 1, + anon_sym_RBRACE, + ACTIONS(2818), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80325] = 4, + ACTIONS(2270), 1, + anon_sym_COMMA, + ACTIONS(2272), 1, + anon_sym_RBRACK, + STATE(1546), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80339] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2820), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80353] = 4, + ACTIONS(2087), 1, + anon_sym_COLON, + ACTIONS(2822), 1, + anon_sym_COMMA, + STATE(1618), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80367] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2824), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80381] = 4, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2826), 1, + anon_sym_RBRACK, + STATE(1646), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80395] = 4, + ACTIONS(1350), 1, + anon_sym_RBRACK, + ACTIONS(2828), 1, + anon_sym_COMMA, + STATE(1610), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80409] = 4, + ACTIONS(2264), 1, + anon_sym_COMMA, + ACTIONS(2268), 1, + anon_sym_RBRACK, + STATE(1662), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80423] = 4, + ACTIONS(2830), 1, + anon_sym_COMMA, + ACTIONS(2832), 1, + anon_sym_COLON, + STATE(1666), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80437] = 4, + ACTIONS(2834), 1, + anon_sym_SEMI, + ACTIONS(2836), 1, + sym__newline, + STATE(1576), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80451] = 4, + ACTIONS(2838), 1, + anon_sym_COMMA, + ACTIONS(2840), 1, + anon_sym_COLON, + STATE(1603), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80465] = 4, + ACTIONS(2842), 1, + sym__newline, + ACTIONS(2844), 1, + sym__indent, + STATE(547), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80479] = 4, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2846), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80493] = 4, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2848), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80507] = 4, + ACTIONS(481), 1, + anon_sym_in, + ACTIONS(2850), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80521] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1222), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [80531] = 4, + ACTIONS(2852), 1, + anon_sym_COMMA, + ACTIONS(2854), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80545] = 4, + ACTIONS(2856), 1, + anon_sym_COMMA, + ACTIONS(2858), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80559] = 3, + ACTIONS(2862), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2860), 2, + sym__newline, + anon_sym_SEMI, + [80571] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2864), 3, + anon_sym_async, + anon_sym_def, + anon_sym_AT, + [80581] = 4, + ACTIONS(805), 1, + anon_sym_RPAREN, + ACTIONS(2866), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80595] = 4, + ACTIONS(2376), 1, + anon_sym_COMMA, + ACTIONS(2378), 1, + anon_sym_RBRACE, + STATE(1583), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80609] = 4, + ACTIONS(457), 1, + sym__newline, + ACTIONS(2868), 1, + anon_sym_SEMI, + STATE(1545), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80623] = 4, + ACTIONS(807), 1, + anon_sym_RPAREN, + ACTIONS(2870), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80637] = 4, + ACTIONS(2872), 1, + anon_sym_RPAREN, + ACTIONS(2874), 1, + anon_sym_COMMA, + STATE(1641), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80651] = 4, + ACTIONS(461), 1, + sym__newline, + ACTIONS(2876), 1, + anon_sym_SEMI, + STATE(1545), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80665] = 4, + ACTIONS(2386), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_RBRACE, + STATE(1551), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80679] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2878), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80693] = 4, + ACTIONS(2305), 1, + anon_sym_COMMA, + ACTIONS(2307), 1, + anon_sym_RBRACK, + STATE(1567), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80707] = 4, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2880), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80721] = 4, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(2882), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80735] = 3, + ACTIONS(2542), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2544), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [80747] = 4, + ACTIONS(899), 1, + anon_sym_RBRACE, + ACTIONS(2884), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80761] = 4, + ACTIONS(2886), 1, + anon_sym_RPAREN, + ACTIONS(2888), 1, + anon_sym_COMMA, + STATE(1571), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80775] = 4, + ACTIONS(2343), 1, + anon_sym_RPAREN, + ACTIONS(2345), 1, + anon_sym_COMMA, + STATE(1574), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80789] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2890), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80803] = 4, + ACTIONS(933), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80817] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2894), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80831] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2896), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80845] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2898), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80859] = 4, + ACTIONS(2339), 1, + anon_sym_RPAREN, + ACTIONS(2341), 1, + anon_sym_COMMA, + STATE(1602), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80873] = 4, + ACTIONS(2900), 1, + anon_sym_RPAREN, + ACTIONS(2902), 1, + anon_sym_COMMA, + STATE(1604), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80887] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2904), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80901] = 4, + ACTIONS(753), 1, + anon_sym_RPAREN, + ACTIONS(2906), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80915] = 4, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(2311), 1, + anon_sym_RBRACK, + STATE(1607), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80929] = 4, + ACTIONS(2530), 1, + anon_sym_RBRACE, + ACTIONS(2908), 1, + anon_sym_COMMA, + STATE(1596), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80943] = 4, + ACTIONS(2911), 1, + anon_sym_SEMI, + ACTIONS(2913), 1, + sym__newline, + STATE(1573), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80957] = 4, + ACTIONS(2347), 1, + anon_sym_COMMA, + ACTIONS(2349), 1, + anon_sym_RBRACE, + STATE(1587), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80971] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(2915), 1, + anon_sym_RBRACE, + STATE(1891), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80985] = 4, + ACTIONS(2107), 1, + anon_sym_RBRACK, + ACTIONS(2111), 1, + anon_sym_COMMA, + STATE(1705), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [80999] = 4, + ACTIONS(2530), 1, + anon_sym_RPAREN, + ACTIONS(2917), 1, + anon_sym_COMMA, + STATE(1601), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81013] = 4, + ACTIONS(761), 1, + anon_sym_RPAREN, + ACTIONS(2920), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81027] = 4, + ACTIONS(1053), 1, + anon_sym_COLON, + ACTIONS(2922), 1, + anon_sym_COMMA, + STATE(1670), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81041] = 4, + ACTIONS(797), 1, + anon_sym_RPAREN, + ACTIONS(2924), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81055] = 4, + ACTIONS(2251), 1, + anon_sym_COLON, + ACTIONS(2926), 1, + anon_sym_COMMA, + STATE(1605), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81069] = 4, + ACTIONS(2929), 1, + anon_sym_COMMA, + ACTIONS(2931), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81083] = 4, + ACTIONS(2933), 1, + anon_sym_COMMA, + ACTIONS(2935), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81097] = 4, + ACTIONS(2937), 1, + anon_sym_RPAREN, + ACTIONS(2939), 1, + anon_sym_COMMA, + STATE(1621), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81111] = 4, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(2941), 1, + anon_sym_RBRACK, + STATE(1646), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81125] = 4, + ACTIONS(1977), 1, + anon_sym_RBRACK, + ACTIONS(2943), 1, + anon_sym_COMMA, + STATE(1610), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81139] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(2946), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81153] = 4, + ACTIONS(2948), 1, + anon_sym_COMMA, + ACTIONS(2950), 1, + anon_sym_COLON, + STATE(1666), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81167] = 4, + ACTIONS(2540), 1, + anon_sym_RPAREN, + ACTIONS(2952), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81181] = 4, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(2957), 1, + sym__indent, + STATE(570), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81195] = 4, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(2957), 1, + sym__indent, + STATE(595), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81209] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2022), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [81219] = 4, + ACTIONS(811), 1, + anon_sym_RPAREN, + ACTIONS(2959), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81233] = 4, + ACTIONS(2961), 1, + anon_sym_COMMA, + ACTIONS(2964), 1, + anon_sym_COLON, + STATE(1618), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81247] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1222), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [81257] = 4, + ACTIONS(809), 1, + anon_sym_RPAREN, + ACTIONS(2966), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81271] = 4, + ACTIONS(1051), 1, + anon_sym_RPAREN, + ACTIONS(2968), 1, + anon_sym_COMMA, + STATE(1687), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81285] = 4, + ACTIONS(755), 1, + anon_sym_RPAREN, + ACTIONS(2970), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81299] = 4, + ACTIONS(2972), 1, + anon_sym_COMMA, + ACTIONS(2974), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81313] = 3, + ACTIONS(2976), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_COMMA, + anon_sym_COLON, + [81325] = 4, + ACTIONS(2978), 1, + anon_sym_COMMA, + ACTIONS(2981), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81339] = 4, + ACTIONS(2783), 1, + anon_sym_RPAREN, + ACTIONS(2983), 1, + anon_sym_COMMA, + STATE(1655), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81353] = 4, + ACTIONS(2985), 1, + anon_sym_COMMA, + ACTIONS(2987), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81367] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(2989), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81381] = 4, + ACTIONS(2872), 1, + anon_sym_COLON, + ACTIONS(2991), 1, + anon_sym_COMMA, + STATE(1554), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81395] = 3, + ACTIONS(2976), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_COMMA, + anon_sym_COLON, + [81407] = 4, + ACTIONS(2993), 1, + anon_sym_COMMA, + ACTIONS(2995), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81421] = 4, + ACTIONS(2107), 1, + anon_sym_RPAREN, + ACTIONS(2355), 1, + anon_sym_COMMA, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81435] = 4, + ACTIONS(2997), 1, + anon_sym_COMMA, + ACTIONS(2999), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81449] = 4, + ACTIONS(2447), 1, + anon_sym_COMMA, + ACTIONS(2449), 1, + anon_sym_RBRACE, + STATE(1642), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81463] = 3, + ACTIONS(2472), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2474), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81475] = 4, + ACTIONS(821), 1, + anon_sym_RPAREN, + ACTIONS(3001), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81489] = 4, + ACTIONS(751), 1, + anon_sym_RPAREN, + ACTIONS(3003), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81503] = 3, + ACTIONS(2488), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2490), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81515] = 4, + ACTIONS(2293), 1, + anon_sym_COMMA, + ACTIONS(2295), 1, + anon_sym_RBRACK, + STATE(1631), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81529] = 3, + ACTIONS(2498), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2500), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81541] = 4, + ACTIONS(2087), 1, + anon_sym_RPAREN, + ACTIONS(3005), 1, + anon_sym_COMMA, + STATE(1684), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81555] = 4, + ACTIONS(913), 1, + anon_sym_RBRACE, + ACTIONS(3007), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81569] = 4, + ACTIONS(3009), 1, + anon_sym_RPAREN, + ACTIONS(3011), 1, + anon_sym_COMMA, + STATE(1636), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81583] = 4, + ACTIONS(2437), 1, + anon_sym_RPAREN, + ACTIONS(2439), 1, + anon_sym_COMMA, + STATE(1637), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81597] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(3013), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81611] = 4, + ACTIONS(2644), 1, + anon_sym_RBRACK, + ACTIONS(3015), 1, + anon_sym_COMMA, + STATE(1646), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81625] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(3018), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81639] = 4, + ACTIONS(925), 1, + anon_sym_RBRACE, + ACTIONS(3020), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81653] = 4, + ACTIONS(2380), 1, + anon_sym_RPAREN, + ACTIONS(2382), 1, + anon_sym_COMMA, + STATE(1659), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81667] = 4, + ACTIONS(3022), 1, + anon_sym_RPAREN, + ACTIONS(3024), 1, + anon_sym_COMMA, + STATE(1661), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81681] = 4, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(2957), 1, + sym__indent, + STATE(591), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81695] = 4, + ACTIONS(2842), 1, + sym__newline, + ACTIONS(2844), 1, + sym__indent, + STATE(544), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81709] = 4, + ACTIONS(2301), 1, + anon_sym_COMMA, + ACTIONS(2303), 1, + anon_sym_RBRACK, + STATE(1664), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81723] = 4, + ACTIONS(881), 1, + anon_sym_COLON, + ACTIONS(3026), 1, + anon_sym_COMMA, + STATE(1605), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81737] = 4, + ACTIONS(1350), 1, + anon_sym_RPAREN, + ACTIONS(3028), 1, + anon_sym_COMMA, + STATE(1676), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81751] = 4, + ACTIONS(2390), 1, + anon_sym_COMMA, + ACTIONS(2392), 1, + anon_sym_RBRACE, + STATE(1550), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81765] = 4, + ACTIONS(2672), 1, + anon_sym_DOT, + ACTIONS(2676), 1, + anon_sym_PIPE, + ACTIONS(3030), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81779] = 4, + ACTIONS(963), 1, + anon_sym_RPAREN, + ACTIONS(3032), 1, + anon_sym_COMMA, + STATE(1601), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81793] = 4, + ACTIONS(795), 1, + anon_sym_RPAREN, + ACTIONS(3034), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81807] = 4, + ACTIONS(3036), 1, + anon_sym_COMMA, + ACTIONS(3038), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81821] = 4, + ACTIONS(793), 1, + anon_sym_RPAREN, + ACTIONS(3040), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81835] = 4, + ACTIONS(3042), 1, + anon_sym_COMMA, + ACTIONS(3044), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81849] = 4, + ACTIONS(3046), 1, + anon_sym_COMMA, + ACTIONS(3048), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81863] = 4, + ACTIONS(3050), 1, + anon_sym_COMMA, + ACTIONS(3052), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81877] = 4, + ACTIONS(2518), 1, + anon_sym_COMMA, + ACTIONS(3054), 1, + anon_sym_RBRACK, + STATE(1646), 1, + aux_sym_type_parameter_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81891] = 4, + ACTIONS(3056), 1, + anon_sym_COMMA, + ACTIONS(3059), 1, + anon_sym_COLON, + STATE(1666), 1, + aux_sym_match_statement_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81905] = 4, + ACTIONS(2335), 1, + anon_sym_COMMA, + ACTIONS(2337), 1, + anon_sym_RBRACE, + STATE(1648), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81919] = 4, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(3061), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81933] = 4, + ACTIONS(2355), 1, + anon_sym_COMMA, + ACTIONS(3063), 1, + anon_sym_RPAREN, + STATE(1658), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81947] = 4, + ACTIONS(3065), 1, + anon_sym_COMMA, + ACTIONS(3068), 1, + anon_sym_COLON, + STATE(1670), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [81961] = 3, + ACTIONS(2492), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2494), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81973] = 3, + ACTIONS(3070), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [81985] = 3, + ACTIONS(2562), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2564), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [81997] = 3, + ACTIONS(2613), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2615), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82009] = 3, + ACTIONS(2743), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82021] = 4, + ACTIONS(1977), 1, + anon_sym_RPAREN, + ACTIONS(3072), 1, + anon_sym_COMMA, + STATE(1676), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82035] = 4, + ACTIONS(963), 1, + anon_sym_RBRACE, + ACTIONS(3075), 1, + anon_sym_COMMA, + STATE(1596), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82049] = 4, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(2453), 1, + anon_sym_COMMA, + STATE(1594), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82063] = 4, + ACTIONS(3077), 1, + anon_sym_COMMA, + ACTIONS(3080), 1, + anon_sym_RBRACE, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82077] = 4, + ACTIONS(3082), 1, + anon_sym_RPAREN, + ACTIONS(3084), 1, + anon_sym_COMMA, + STATE(1622), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82091] = 4, + ACTIONS(2842), 1, + sym__newline, + ACTIONS(2844), 1, + sym__indent, + STATE(530), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82105] = 3, + ACTIONS(2597), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2599), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82117] = 4, + ACTIONS(2429), 1, + anon_sym_COMMA, + ACTIONS(2431), 1, + anon_sym_RBRACE, + STATE(1686), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82131] = 4, + ACTIONS(2964), 1, + anon_sym_RPAREN, + ACTIONS(3086), 1, + anon_sym_COMMA, + STATE(1684), 1, + aux_sym__parameters_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82145] = 4, + ACTIONS(2634), 1, + anon_sym_COLON, + ACTIONS(3089), 1, + anon_sym_RBRACE, + STATE(1833), 1, + sym_format_specifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82159] = 4, + ACTIONS(887), 1, + anon_sym_RBRACE, + ACTIONS(3091), 1, + anon_sym_COMMA, + STATE(1679), 1, + aux_sym_dictionary_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82173] = 4, + ACTIONS(3068), 1, + anon_sym_RPAREN, + ACTIONS(3093), 1, + anon_sym_COMMA, + STATE(1687), 1, + aux_sym_with_clause_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82187] = 4, + ACTIONS(2455), 1, + anon_sym_RPAREN, + ACTIONS(2457), 1, + anon_sym_COMMA, + STATE(1694), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82201] = 4, + ACTIONS(3096), 1, + anon_sym_RPAREN, + ACTIONS(3098), 1, + anon_sym_COMMA, + STATE(1695), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82215] = 4, + ACTIONS(3100), 1, + anon_sym_SEMI, + ACTIONS(3102), 1, + sym__newline, + STATE(1706), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82229] = 4, + ACTIONS(2530), 1, + anon_sym_RBRACK, + ACTIONS(3104), 1, + anon_sym_COMMA, + STATE(1691), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82243] = 4, + ACTIONS(2313), 1, + anon_sym_COMMA, + ACTIONS(2315), 1, + anon_sym_RBRACK, + STATE(1697), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82257] = 4, + ACTIONS(2282), 1, + anon_sym_COMMA, + ACTIONS(2284), 1, + anon_sym_RBRACK, + STATE(1540), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82271] = 4, + ACTIONS(747), 1, + anon_sym_RPAREN, + ACTIONS(3107), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82285] = 4, + ACTIONS(813), 1, + anon_sym_RPAREN, + ACTIONS(3109), 1, + anon_sym_COMMA, + STATE(1613), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82299] = 4, + ACTIONS(3111), 1, + anon_sym_COMMA, + ACTIONS(3113), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82313] = 4, + ACTIONS(3115), 1, + anon_sym_COMMA, + ACTIONS(3117), 1, + anon_sym_RBRACK, + STATE(1625), 1, + aux_sym_subscript_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82327] = 3, + ACTIONS(3121), 1, + aux_sym_format_specifier_token1, + ACTIONS(5), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3119), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [82339] = 4, + ACTIONS(3123), 1, + anon_sym_RPAREN, + ACTIONS(3125), 1, + anon_sym_COMMA, + STATE(1617), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82353] = 4, + ACTIONS(2955), 1, + sym__newline, + ACTIONS(2957), 1, + sym__indent, + STATE(539), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82367] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(3127), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82381] = 4, + ACTIONS(2842), 1, + sym__newline, + ACTIONS(2844), 1, + sym__indent, + STATE(522), 1, + sym__match_block, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82395] = 4, + ACTIONS(2433), 1, + anon_sym_RPAREN, + ACTIONS(2435), 1, + anon_sym_COMMA, + STATE(1620), 1, + aux_sym_argument_list_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82409] = 4, + ACTIONS(1977), 1, + anon_sym_in, + ACTIONS(3129), 1, + anon_sym_COMMA, + STATE(1704), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82423] = 4, + ACTIONS(963), 1, + anon_sym_RBRACK, + ACTIONS(3132), 1, + anon_sym_COMMA, + STATE(1691), 1, + aux_sym__collection_elements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82437] = 4, + ACTIONS(463), 1, + sym__newline, + ACTIONS(3134), 1, + anon_sym_SEMI, + STATE(1545), 1, + aux_sym__simple_statements_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82451] = 4, + ACTIONS(2812), 1, + anon_sym_COMMA, + ACTIONS(3136), 1, + anon_sym_in, + STATE(1565), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82465] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3138), 2, + anon_sym_COMMA, + anon_sym_COLON, + [82474] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3140), 2, + sym__dedent, + anon_sym_case, + [82483] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3138), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82492] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3142), 2, + sym__dedent, + anon_sym_case, + [82501] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3144), 2, + sym__dedent, + anon_sym_case, + [82510] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3146), 2, + sym__dedent, + anon_sym_case, + [82519] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3148), 2, + sym__newline, + anon_sym_SEMI, + [82528] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3150), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82537] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3152), 2, + sym__newline, + anon_sym_SEMI, + [82546] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3154), 2, + sym__dedent, + anon_sym_case, + [82555] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3154), 2, + sym__dedent, + anon_sym_case, + [82564] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3156), 2, + sym__newline, + anon_sym_SEMI, + [82573] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3158), 2, + sym__dedent, + anon_sym_case, + [82582] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82591] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3160), 2, + sym__dedent, + anon_sym_case, + [82600] = 3, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1764), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82611] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82620] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2964), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82629] = 3, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1765), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82640] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3164), 2, + sym__dedent, + anon_sym_case, + [82649] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3068), 2, + anon_sym_COMMA, + anon_sym_COLON, + [82658] = 3, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1740), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82669] = 3, + ACTIONS(3166), 1, + anon_sym_COLON, + ACTIONS(3168), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82680] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2022), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82689] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2137), 2, + sym__newline, + anon_sym_SEMI, + [82698] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3170), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [82707] = 3, + ACTIONS(3172), 1, + anon_sym_COLON, + ACTIONS(3174), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82718] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82727] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82736] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2024), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82745] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3176), 2, + sym__dedent, + anon_sym_case, + [82754] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3142), 2, + sym__dedent, + anon_sym_case, + [82763] = 3, + ACTIONS(3178), 1, + anon_sym_COLON, + ACTIONS(3180), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82774] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1290), 2, + sym__dedent, + anon_sym_case, + [82783] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1977), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82792] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3182), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [82801] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3184), 2, + sym__dedent, + anon_sym_case, + [82810] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2400), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [82819] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3186), 2, + sym__dedent, + anon_sym_case, + [82828] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2540), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82837] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3188), 2, + sym__newline, + anon_sym_SEMI, + [82846] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3190), 2, + sym__dedent, + anon_sym_case, + [82855] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2024), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82864] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2964), 2, + anon_sym_COMMA, + anon_sym_COLON, + [82873] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1288), 2, + sym__dedent, + anon_sym_case, + [82882] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3162), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [82891] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3150), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [82900] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3192), 2, + sym__dedent, + anon_sym_case, + [82909] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [82918] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2530), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82927] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3150), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82936] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 2, + sym__dedent, + anon_sym_case, + [82945] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_COMMA, + anon_sym_COLON, + [82954] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1268), 2, + sym__dedent, + anon_sym_case, + [82963] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2739), 2, + anon_sym_COMMA, + anon_sym_COLON, + [82972] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3162), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [82981] = 3, + ACTIONS(3196), 1, + anon_sym_COLON, + ACTIONS(3198), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [82992] = 3, + ACTIONS(3200), 1, + anon_sym_COLON, + ACTIONS(3202), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83003] = 3, + ACTIONS(3204), 1, + anon_sym_COLON, + ACTIONS(3206), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83014] = 3, + ACTIONS(3208), 1, + anon_sym_COLON, + ACTIONS(3210), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83025] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [83034] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3212), 2, + sym__dedent, + anon_sym_case, + [83043] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3214), 2, + sym__dedent, + anon_sym_case, + [83052] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2258), 2, + sym__newline, + anon_sym_SEMI, + [83061] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3068), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [83070] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3214), 2, + sym__dedent, + anon_sym_case, + [83079] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1095), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [83088] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2299), 2, + sym__newline, + anon_sym_SEMI, + [83097] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3194), 2, + sym__dedent, + anon_sym_case, + [83106] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3216), 2, + sym__newline, + anon_sym_SEMI, + [83115] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1250), 2, + sym__dedent, + anon_sym_case, + [83124] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3218), 2, + sym__newline, + anon_sym_SEMI, + [83133] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(1274), 2, + sym__dedent, + anon_sym_case, + [83142] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(2800), 2, + sym__newline, + anon_sym_SEMI, + [83151] = 3, + ACTIONS(3220), 1, + anon_sym_COLON, + ACTIONS(3222), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83162] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3224), 2, + sym__dedent, + anon_sym_case, + [83171] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3080), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [83180] = 2, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + ACTIONS(3226), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [83189] = 3, + ACTIONS(3228), 1, + anon_sym_COMMA, + STATE(1417), 1, + aux_sym__patterns_repeat1, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83200] = 3, + ACTIONS(2732), 1, + anon_sym_LPAREN, + STATE(1734), 1, + sym_parameters, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83211] = 2, + ACTIONS(3230), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83219] = 2, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83227] = 2, + ACTIONS(3232), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83235] = 2, + ACTIONS(2349), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83243] = 2, + ACTIONS(3234), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83251] = 2, + ACTIONS(3236), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83259] = 2, + ACTIONS(3238), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83267] = 2, + ACTIONS(3240), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83275] = 2, + ACTIONS(3242), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83283] = 2, + ACTIONS(2339), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83291] = 2, + ACTIONS(3244), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83299] = 2, + ACTIONS(3246), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83307] = 2, + ACTIONS(3248), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83315] = 2, + ACTIONS(3250), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83323] = 2, + ACTIONS(2343), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83331] = 2, + ACTIONS(3252), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83339] = 2, + ACTIONS(3254), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83347] = 2, + ACTIONS(3256), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83355] = 2, + ACTIONS(3258), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83363] = 2, + ACTIONS(3260), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83371] = 2, + ACTIONS(3262), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83379] = 2, + ACTIONS(3264), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83387] = 2, + ACTIONS(3266), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83395] = 2, + ACTIONS(3268), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83403] = 2, + ACTIONS(3270), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83411] = 2, + ACTIONS(2378), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83419] = 2, + ACTIONS(3272), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83427] = 2, + ACTIONS(3274), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83435] = 2, + ACTIONS(3276), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83443] = 2, + ACTIONS(3278), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83451] = 2, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83459] = 2, + ACTIONS(3282), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83467] = 2, + ACTIONS(3284), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83475] = 2, + ACTIONS(2814), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83483] = 2, + ACTIONS(3286), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83491] = 2, + ACTIONS(2820), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83499] = 2, + ACTIONS(3288), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83507] = 2, + ACTIONS(3290), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83515] = 2, + ACTIONS(3292), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83523] = 2, + ACTIONS(3294), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83531] = 2, + ACTIONS(3296), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83539] = 2, + ACTIONS(3298), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83547] = 2, + ACTIONS(3300), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83555] = 2, + ACTIONS(3302), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83563] = 2, + ACTIONS(2946), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83571] = 2, + ACTIONS(3304), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83579] = 2, + ACTIONS(3306), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83587] = 2, + ACTIONS(3308), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83595] = 2, + ACTIONS(2451), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83603] = 2, + ACTIONS(3310), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83611] = 2, + ACTIONS(3312), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83619] = 2, + ACTIONS(3314), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83627] = 2, + ACTIONS(3316), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83635] = 2, + ACTIONS(2433), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83643] = 2, + ACTIONS(3318), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83651] = 2, + ACTIONS(3320), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83659] = 2, + ACTIONS(3322), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83667] = 2, + ACTIONS(3324), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83675] = 2, + ACTIONS(3326), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83683] = 2, + ACTIONS(3328), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83691] = 2, + ACTIONS(3330), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83699] = 2, + ACTIONS(3332), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83707] = 2, + ACTIONS(3334), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83715] = 2, + ACTIONS(3336), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83723] = 2, + ACTIONS(3338), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83731] = 2, + ACTIONS(3340), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83739] = 2, + ACTIONS(3342), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83747] = 2, + ACTIONS(3344), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83755] = 2, + ACTIONS(2394), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83763] = 2, + ACTIONS(3346), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83771] = 2, + ACTIONS(3348), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83779] = 2, + ACTIONS(3350), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83787] = 2, + ACTIONS(2878), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83795] = 2, + ACTIONS(3352), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83803] = 2, + ACTIONS(2361), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83811] = 2, + ACTIONS(3354), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83819] = 2, + ACTIONS(3356), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83827] = 2, + ACTIONS(3358), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83835] = 2, + ACTIONS(3360), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83843] = 2, + ACTIONS(2894), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83851] = 2, + ACTIONS(3362), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83859] = 2, + ACTIONS(3364), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83867] = 2, + ACTIONS(2449), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83875] = 2, + ACTIONS(3366), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83883] = 2, + ACTIONS(3368), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83891] = 2, + ACTIONS(3370), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83899] = 2, + ACTIONS(3372), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83907] = 2, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83915] = 2, + ACTIONS(2392), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83923] = 2, + ACTIONS(3376), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83931] = 2, + ACTIONS(3378), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83939] = 2, + ACTIONS(3380), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83947] = 2, + ACTIONS(3382), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83955] = 2, + ACTIONS(3384), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83963] = 2, + ACTIONS(3386), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83971] = 2, + ACTIONS(3388), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83979] = 2, + ACTIONS(2437), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83987] = 2, + ACTIONS(2380), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [83995] = 2, + ACTIONS(3390), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84003] = 2, + ACTIONS(3392), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84011] = 2, + ACTIONS(3394), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84019] = 2, + ACTIONS(3396), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84027] = 2, + ACTIONS(3398), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84035] = 2, + ACTIONS(3400), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84043] = 2, + ACTIONS(3402), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84051] = 2, + ACTIONS(3404), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84059] = 2, + ACTIONS(3406), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84067] = 2, + ACTIONS(3408), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84075] = 2, + ACTIONS(1047), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84083] = 2, + ACTIONS(3410), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84091] = 2, + ACTIONS(3412), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84099] = 2, + ACTIONS(3414), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84107] = 2, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84115] = 2, + ACTIONS(3416), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84123] = 2, + ACTIONS(3418), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84131] = 2, + ACTIONS(3420), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84139] = 2, + ACTIONS(3422), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84147] = 2, + ACTIONS(3424), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84155] = 2, + ACTIONS(3426), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84163] = 2, + ACTIONS(3428), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84171] = 2, + ACTIONS(3430), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84179] = 2, + ACTIONS(3432), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84187] = 2, + ACTIONS(3434), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84195] = 2, + ACTIONS(2413), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84203] = 2, + ACTIONS(2431), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84211] = 2, + ACTIONS(3436), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84219] = 2, + ACTIONS(3438), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84227] = 2, + ACTIONS(1061), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84235] = 2, + ACTIONS(3440), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84243] = 2, + ACTIONS(2455), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84251] = 2, + ACTIONS(3442), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84259] = 2, + ACTIONS(3444), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84267] = 2, + ACTIONS(3446), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84275] = 2, + ACTIONS(3448), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84283] = 2, + ACTIONS(3450), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84291] = 2, + ACTIONS(3452), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84299] = 2, + ACTIONS(3454), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84307] = 2, + ACTIONS(2459), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84315] = 2, + ACTIONS(3456), 1, + anon_sym_COLON_EQ, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84323] = 2, + ACTIONS(3458), 1, + anon_sym_RBRACK, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84331] = 2, + ACTIONS(3460), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84339] = 2, + ACTIONS(3462), 1, + sym_identifier, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84347] = 2, + ACTIONS(3464), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84355] = 2, + ACTIONS(3127), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84363] = 2, + ACTIONS(1067), 1, + anon_sym_def, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84371] = 2, + ACTIONS(3466), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84379] = 2, + ACTIONS(3136), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84387] = 2, + ACTIONS(3468), 1, + anon_sym_for, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84395] = 2, + ACTIONS(3470), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, + [84403] = 2, + ACTIONS(3013), 1, + anon_sym_in, + ACTIONS(3), 2, + sym_comment, + sym_line_continuation, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(99)] = 0, + [SMALL_STATE(100)] = 101, + [SMALL_STATE(101)] = 202, + [SMALL_STATE(102)] = 312, + [SMALL_STATE(103)] = 426, + [SMALL_STATE(104)] = 540, + [SMALL_STATE(105)] = 654, + [SMALL_STATE(106)] = 768, + [SMALL_STATE(107)] = 884, + [SMALL_STATE(108)] = 998, + [SMALL_STATE(109)] = 1112, + [SMALL_STATE(110)] = 1226, + [SMALL_STATE(111)] = 1340, + [SMALL_STATE(112)] = 1454, + [SMALL_STATE(113)] = 1564, + [SMALL_STATE(114)] = 1678, + [SMALL_STATE(115)] = 1792, + [SMALL_STATE(116)] = 1906, + [SMALL_STATE(117)] = 2020, + [SMALL_STATE(118)] = 2134, + [SMALL_STATE(119)] = 2248, + [SMALL_STATE(120)] = 2362, + [SMALL_STATE(121)] = 2476, + [SMALL_STATE(122)] = 2590, + [SMALL_STATE(123)] = 2704, + [SMALL_STATE(124)] = 2818, + [SMALL_STATE(125)] = 2932, + [SMALL_STATE(126)] = 3046, + [SMALL_STATE(127)] = 3162, + [SMALL_STATE(128)] = 3272, + [SMALL_STATE(129)] = 3386, + [SMALL_STATE(130)] = 3500, + [SMALL_STATE(131)] = 3614, + [SMALL_STATE(132)] = 3728, + [SMALL_STATE(133)] = 3842, + [SMALL_STATE(134)] = 3947, + [SMALL_STATE(135)] = 4052, + [SMALL_STATE(136)] = 4157, + [SMALL_STATE(137)] = 4262, + [SMALL_STATE(138)] = 4371, + [SMALL_STATE(139)] = 4480, + [SMALL_STATE(140)] = 4585, + [SMALL_STATE(141)] = 4684, + [SMALL_STATE(142)] = 4789, + [SMALL_STATE(143)] = 4894, + [SMALL_STATE(144)] = 5003, + [SMALL_STATE(145)] = 5108, + [SMALL_STATE(146)] = 5213, + [SMALL_STATE(147)] = 5318, + [SMALL_STATE(148)] = 5427, + [SMALL_STATE(149)] = 5536, + [SMALL_STATE(150)] = 5635, + [SMALL_STATE(151)] = 5744, + [SMALL_STATE(152)] = 5849, + [SMALL_STATE(153)] = 5954, + [SMALL_STATE(154)] = 6059, + [SMALL_STATE(155)] = 6164, + [SMALL_STATE(156)] = 6269, + [SMALL_STATE(157)] = 6374, + [SMALL_STATE(158)] = 6483, + [SMALL_STATE(159)] = 6588, + [SMALL_STATE(160)] = 6693, + [SMALL_STATE(161)] = 6798, + [SMALL_STATE(162)] = 6903, + [SMALL_STATE(163)] = 7008, + [SMALL_STATE(164)] = 7113, + [SMALL_STATE(165)] = 7218, + [SMALL_STATE(166)] = 7323, + [SMALL_STATE(167)] = 7429, + [SMALL_STATE(168)] = 7535, + [SMALL_STATE(169)] = 7641, + [SMALL_STATE(170)] = 7747, + [SMALL_STATE(171)] = 7853, + [SMALL_STATE(172)] = 7959, + [SMALL_STATE(173)] = 8065, + [SMALL_STATE(174)] = 8171, + [SMALL_STATE(175)] = 8277, + [SMALL_STATE(176)] = 8383, + [SMALL_STATE(177)] = 8489, + [SMALL_STATE(178)] = 8595, + [SMALL_STATE(179)] = 8701, + [SMALL_STATE(180)] = 8807, + [SMALL_STATE(181)] = 8913, + [SMALL_STATE(182)] = 9019, + [SMALL_STATE(183)] = 9125, + [SMALL_STATE(184)] = 9231, + [SMALL_STATE(185)] = 9337, + [SMALL_STATE(186)] = 9443, + [SMALL_STATE(187)] = 9549, + [SMALL_STATE(188)] = 9655, + [SMALL_STATE(189)] = 9761, + [SMALL_STATE(190)] = 9867, + [SMALL_STATE(191)] = 9973, + [SMALL_STATE(192)] = 10079, + [SMALL_STATE(193)] = 10185, + [SMALL_STATE(194)] = 10291, + [SMALL_STATE(195)] = 10397, + [SMALL_STATE(196)] = 10503, + [SMALL_STATE(197)] = 10608, + [SMALL_STATE(198)] = 10711, + [SMALL_STATE(199)] = 10814, + [SMALL_STATE(200)] = 10917, + [SMALL_STATE(201)] = 11020, + [SMALL_STATE(202)] = 11123, + [SMALL_STATE(203)] = 11226, + [SMALL_STATE(204)] = 11329, + [SMALL_STATE(205)] = 11432, + [SMALL_STATE(206)] = 11535, + [SMALL_STATE(207)] = 11637, + [SMALL_STATE(208)] = 11739, + [SMALL_STATE(209)] = 11841, + [SMALL_STATE(210)] = 11943, + [SMALL_STATE(211)] = 12041, + [SMALL_STATE(212)] = 12143, + [SMALL_STATE(213)] = 12247, + [SMALL_STATE(214)] = 12349, + [SMALL_STATE(215)] = 12451, + [SMALL_STATE(216)] = 12553, + [SMALL_STATE(217)] = 12651, + [SMALL_STATE(218)] = 12753, + [SMALL_STATE(219)] = 12855, + [SMALL_STATE(220)] = 12957, + [SMALL_STATE(221)] = 13061, + [SMALL_STATE(222)] = 13163, + [SMALL_STATE(223)] = 13265, + [SMALL_STATE(224)] = 13367, + [SMALL_STATE(225)] = 13469, + [SMALL_STATE(226)] = 13573, + [SMALL_STATE(227)] = 13675, + [SMALL_STATE(228)] = 13777, + [SMALL_STATE(229)] = 13879, + [SMALL_STATE(230)] = 13983, + [SMALL_STATE(231)] = 14085, + [SMALL_STATE(232)] = 14187, + [SMALL_STATE(233)] = 14289, + [SMALL_STATE(234)] = 14391, + [SMALL_STATE(235)] = 14493, + [SMALL_STATE(236)] = 14595, + [SMALL_STATE(237)] = 14699, + [SMALL_STATE(238)] = 14801, + [SMALL_STATE(239)] = 14903, + [SMALL_STATE(240)] = 15005, + [SMALL_STATE(241)] = 15107, + [SMALL_STATE(242)] = 15208, + [SMALL_STATE(243)] = 15309, + [SMALL_STATE(244)] = 15410, + [SMALL_STATE(245)] = 15511, + [SMALL_STATE(246)] = 15612, + [SMALL_STATE(247)] = 15713, + [SMALL_STATE(248)] = 15814, + [SMALL_STATE(249)] = 15913, + [SMALL_STATE(250)] = 16012, + [SMALL_STATE(251)] = 16113, + [SMALL_STATE(252)] = 16214, + [SMALL_STATE(253)] = 16315, + [SMALL_STATE(254)] = 16414, + [SMALL_STATE(255)] = 16515, + [SMALL_STATE(256)] = 16616, + [SMALL_STATE(257)] = 16715, + [SMALL_STATE(258)] = 16816, + [SMALL_STATE(259)] = 16917, + [SMALL_STATE(260)] = 17016, + [SMALL_STATE(261)] = 17115, + [SMALL_STATE(262)] = 17216, + [SMALL_STATE(263)] = 17317, + [SMALL_STATE(264)] = 17418, + [SMALL_STATE(265)] = 17519, + [SMALL_STATE(266)] = 17620, + [SMALL_STATE(267)] = 17721, + [SMALL_STATE(268)] = 17820, + [SMALL_STATE(269)] = 17921, + [SMALL_STATE(270)] = 18022, + [SMALL_STATE(271)] = 18123, + [SMALL_STATE(272)] = 18224, + [SMALL_STATE(273)] = 18325, + [SMALL_STATE(274)] = 18426, + [SMALL_STATE(275)] = 18527, + [SMALL_STATE(276)] = 18626, + [SMALL_STATE(277)] = 18725, + [SMALL_STATE(278)] = 18826, + [SMALL_STATE(279)] = 18927, + [SMALL_STATE(280)] = 19026, + [SMALL_STATE(281)] = 19122, + [SMALL_STATE(282)] = 19220, + [SMALL_STATE(283)] = 19318, + [SMALL_STATE(284)] = 19416, + [SMALL_STATE(285)] = 19514, + [SMALL_STATE(286)] = 19610, + [SMALL_STATE(287)] = 19708, + [SMALL_STATE(288)] = 19806, + [SMALL_STATE(289)] = 19904, + [SMALL_STATE(290)] = 20000, + [SMALL_STATE(291)] = 20096, + [SMALL_STATE(292)] = 20192, + [SMALL_STATE(293)] = 20288, + [SMALL_STATE(294)] = 20384, + [SMALL_STATE(295)] = 20480, + [SMALL_STATE(296)] = 20576, + [SMALL_STATE(297)] = 20674, + [SMALL_STATE(298)] = 20770, + [SMALL_STATE(299)] = 20868, + [SMALL_STATE(300)] = 20964, + [SMALL_STATE(301)] = 21060, + [SMALL_STATE(302)] = 21156, + [SMALL_STATE(303)] = 21254, + [SMALL_STATE(304)] = 21350, + [SMALL_STATE(305)] = 21448, + [SMALL_STATE(306)] = 21546, + [SMALL_STATE(307)] = 21642, + [SMALL_STATE(308)] = 21738, + [SMALL_STATE(309)] = 21834, + [SMALL_STATE(310)] = 21932, + [SMALL_STATE(311)] = 22028, + [SMALL_STATE(312)] = 22124, + [SMALL_STATE(313)] = 22220, + [SMALL_STATE(314)] = 22318, + [SMALL_STATE(315)] = 22416, + [SMALL_STATE(316)] = 22514, + [SMALL_STATE(317)] = 22612, + [SMALL_STATE(318)] = 22708, + [SMALL_STATE(319)] = 22784, + [SMALL_STATE(320)] = 22880, + [SMALL_STATE(321)] = 22976, + [SMALL_STATE(322)] = 23050, + [SMALL_STATE(323)] = 23148, + [SMALL_STATE(324)] = 23244, + [SMALL_STATE(325)] = 23318, + [SMALL_STATE(326)] = 23392, + [SMALL_STATE(327)] = 23487, + [SMALL_STATE(328)] = 23582, + [SMALL_STATE(329)] = 23677, + [SMALL_STATE(330)] = 23772, + [SMALL_STATE(331)] = 23867, + [SMALL_STATE(332)] = 23962, + [SMALL_STATE(333)] = 24057, + [SMALL_STATE(334)] = 24152, + [SMALL_STATE(335)] = 24247, + [SMALL_STATE(336)] = 24342, + [SMALL_STATE(337)] = 24437, + [SMALL_STATE(338)] = 24532, + [SMALL_STATE(339)] = 24627, + [SMALL_STATE(340)] = 24722, + [SMALL_STATE(341)] = 24814, + [SMALL_STATE(342)] = 24906, + [SMALL_STATE(343)] = 24998, + [SMALL_STATE(344)] = 25090, + [SMALL_STATE(345)] = 25182, + [SMALL_STATE(346)] = 25274, + [SMALL_STATE(347)] = 25366, + [SMALL_STATE(348)] = 25458, + [SMALL_STATE(349)] = 25530, + [SMALL_STATE(350)] = 25622, + [SMALL_STATE(351)] = 25714, + [SMALL_STATE(352)] = 25806, + [SMALL_STATE(353)] = 25898, + [SMALL_STATE(354)] = 25990, + [SMALL_STATE(355)] = 26082, + [SMALL_STATE(356)] = 26174, + [SMALL_STATE(357)] = 26266, + [SMALL_STATE(358)] = 26358, + [SMALL_STATE(359)] = 26450, + [SMALL_STATE(360)] = 26542, + [SMALL_STATE(361)] = 26634, + [SMALL_STATE(362)] = 26726, + [SMALL_STATE(363)] = 26818, + [SMALL_STATE(364)] = 26910, + [SMALL_STATE(365)] = 27002, + [SMALL_STATE(366)] = 27094, + [SMALL_STATE(367)] = 27186, + [SMALL_STATE(368)] = 27278, + [SMALL_STATE(369)] = 27370, + [SMALL_STATE(370)] = 27462, + [SMALL_STATE(371)] = 27554, + [SMALL_STATE(372)] = 27646, + [SMALL_STATE(373)] = 27738, + [SMALL_STATE(374)] = 27830, + [SMALL_STATE(375)] = 27922, + [SMALL_STATE(376)] = 28014, + [SMALL_STATE(377)] = 28106, + [SMALL_STATE(378)] = 28198, + [SMALL_STATE(379)] = 28290, + [SMALL_STATE(380)] = 28382, + [SMALL_STATE(381)] = 28474, + [SMALL_STATE(382)] = 28566, + [SMALL_STATE(383)] = 28658, + [SMALL_STATE(384)] = 28750, + [SMALL_STATE(385)] = 28842, + [SMALL_STATE(386)] = 28934, + [SMALL_STATE(387)] = 29026, + [SMALL_STATE(388)] = 29118, + [SMALL_STATE(389)] = 29210, + [SMALL_STATE(390)] = 29302, + [SMALL_STATE(391)] = 29394, + [SMALL_STATE(392)] = 29488, + [SMALL_STATE(393)] = 29580, + [SMALL_STATE(394)] = 29672, + [SMALL_STATE(395)] = 29764, + [SMALL_STATE(396)] = 29856, + [SMALL_STATE(397)] = 29948, + [SMALL_STATE(398)] = 30042, + [SMALL_STATE(399)] = 30134, + [SMALL_STATE(400)] = 30226, + [SMALL_STATE(401)] = 30318, + [SMALL_STATE(402)] = 30410, + [SMALL_STATE(403)] = 30502, + [SMALL_STATE(404)] = 30594, + [SMALL_STATE(405)] = 30686, + [SMALL_STATE(406)] = 30778, + [SMALL_STATE(407)] = 30870, + [SMALL_STATE(408)] = 30962, + [SMALL_STATE(409)] = 31054, + [SMALL_STATE(410)] = 31146, + [SMALL_STATE(411)] = 31238, + [SMALL_STATE(412)] = 31330, + [SMALL_STATE(413)] = 31422, + [SMALL_STATE(414)] = 31516, + [SMALL_STATE(415)] = 31608, + [SMALL_STATE(416)] = 31700, + [SMALL_STATE(417)] = 31792, + [SMALL_STATE(418)] = 31884, + [SMALL_STATE(419)] = 31976, + [SMALL_STATE(420)] = 32068, + [SMALL_STATE(421)] = 32160, + [SMALL_STATE(422)] = 32252, + [SMALL_STATE(423)] = 32344, + [SMALL_STATE(424)] = 32436, + [SMALL_STATE(425)] = 32528, + [SMALL_STATE(426)] = 32620, + [SMALL_STATE(427)] = 32712, + [SMALL_STATE(428)] = 32806, + [SMALL_STATE(429)] = 32898, + [SMALL_STATE(430)] = 32990, + [SMALL_STATE(431)] = 33082, + [SMALL_STATE(432)] = 33174, + [SMALL_STATE(433)] = 33266, + [SMALL_STATE(434)] = 33358, + [SMALL_STATE(435)] = 33450, + [SMALL_STATE(436)] = 33542, + [SMALL_STATE(437)] = 33634, + [SMALL_STATE(438)] = 33726, + [SMALL_STATE(439)] = 33818, + [SMALL_STATE(440)] = 33910, + [SMALL_STATE(441)] = 34004, + [SMALL_STATE(442)] = 34069, + [SMALL_STATE(443)] = 34136, + [SMALL_STATE(444)] = 34203, + [SMALL_STATE(445)] = 34268, + [SMALL_STATE(446)] = 34333, + [SMALL_STATE(447)] = 34395, + [SMALL_STATE(448)] = 34461, + [SMALL_STATE(449)] = 34517, + [SMALL_STATE(450)] = 34579, + [SMALL_STATE(451)] = 34645, + [SMALL_STATE(452)] = 34711, + [SMALL_STATE(453)] = 34767, + [SMALL_STATE(454)] = 34833, + [SMALL_STATE(455)] = 34893, + [SMALL_STATE(456)] = 34953, + [SMALL_STATE(457)] = 35009, + [SMALL_STATE(458)] = 35065, + [SMALL_STATE(459)] = 35129, + [SMALL_STATE(460)] = 35189, + [SMALL_STATE(461)] = 35245, + [SMALL_STATE(462)] = 35301, + [SMALL_STATE(463)] = 35367, + [SMALL_STATE(464)] = 35433, + [SMALL_STATE(465)] = 35499, + [SMALL_STATE(466)] = 35555, + [SMALL_STATE(467)] = 35617, + [SMALL_STATE(468)] = 35679, + [SMALL_STATE(469)] = 35741, + [SMALL_STATE(470)] = 35803, + [SMALL_STATE(471)] = 35865, + [SMALL_STATE(472)] = 35931, + [SMALL_STATE(473)] = 35993, + [SMALL_STATE(474)] = 36054, + [SMALL_STATE(475)] = 36115, + [SMALL_STATE(476)] = 36201, + [SMALL_STATE(477)] = 36287, + [SMALL_STATE(478)] = 36340, + [SMALL_STATE(479)] = 36393, + [SMALL_STATE(480)] = 36446, + [SMALL_STATE(481)] = 36499, + [SMALL_STATE(482)] = 36556, + [SMALL_STATE(483)] = 36613, + [SMALL_STATE(484)] = 36666, + [SMALL_STATE(485)] = 36723, + [SMALL_STATE(486)] = 36776, + [SMALL_STATE(487)] = 36833, + [SMALL_STATE(488)] = 36890, + [SMALL_STATE(489)] = 36943, + [SMALL_STATE(490)] = 37000, + [SMALL_STATE(491)] = 37053, + [SMALL_STATE(492)] = 37106, + [SMALL_STATE(493)] = 37159, + [SMALL_STATE(494)] = 37216, + [SMALL_STATE(495)] = 37269, + [SMALL_STATE(496)] = 37326, + [SMALL_STATE(497)] = 37379, + [SMALL_STATE(498)] = 37432, + [SMALL_STATE(499)] = 37485, + [SMALL_STATE(500)] = 37542, + [SMALL_STATE(501)] = 37599, + [SMALL_STATE(502)] = 37652, + [SMALL_STATE(503)] = 37709, + [SMALL_STATE(504)] = 37762, + [SMALL_STATE(505)] = 37819, + [SMALL_STATE(506)] = 37905, + [SMALL_STATE(507)] = 37991, + [SMALL_STATE(508)] = 38042, + [SMALL_STATE(509)] = 38093, + [SMALL_STATE(510)] = 38144, + [SMALL_STATE(511)] = 38227, + [SMALL_STATE(512)] = 38278, + [SMALL_STATE(513)] = 38329, + [SMALL_STATE(514)] = 38380, + [SMALL_STATE(515)] = 38463, + [SMALL_STATE(516)] = 38514, + [SMALL_STATE(517)] = 38565, + [SMALL_STATE(518)] = 38616, + [SMALL_STATE(519)] = 38667, + [SMALL_STATE(520)] = 38750, + [SMALL_STATE(521)] = 38801, + [SMALL_STATE(522)] = 38852, + [SMALL_STATE(523)] = 38903, + [SMALL_STATE(524)] = 38954, + [SMALL_STATE(525)] = 39005, + [SMALL_STATE(526)] = 39056, + [SMALL_STATE(527)] = 39107, + [SMALL_STATE(528)] = 39158, + [SMALL_STATE(529)] = 39209, + [SMALL_STATE(530)] = 39260, + [SMALL_STATE(531)] = 39311, + [SMALL_STATE(532)] = 39362, + [SMALL_STATE(533)] = 39413, + [SMALL_STATE(534)] = 39464, + [SMALL_STATE(535)] = 39515, + [SMALL_STATE(536)] = 39566, + [SMALL_STATE(537)] = 39617, + [SMALL_STATE(538)] = 39700, + [SMALL_STATE(539)] = 39751, + [SMALL_STATE(540)] = 39802, + [SMALL_STATE(541)] = 39853, + [SMALL_STATE(542)] = 39904, + [SMALL_STATE(543)] = 39955, + [SMALL_STATE(544)] = 40006, + [SMALL_STATE(545)] = 40057, + [SMALL_STATE(546)] = 40108, + [SMALL_STATE(547)] = 40159, + [SMALL_STATE(548)] = 40210, + [SMALL_STATE(549)] = 40293, + [SMALL_STATE(550)] = 40344, + [SMALL_STATE(551)] = 40395, + [SMALL_STATE(552)] = 40446, + [SMALL_STATE(553)] = 40497, + [SMALL_STATE(554)] = 40548, + [SMALL_STATE(555)] = 40599, + [SMALL_STATE(556)] = 40682, + [SMALL_STATE(557)] = 40733, + [SMALL_STATE(558)] = 40784, + [SMALL_STATE(559)] = 40835, + [SMALL_STATE(560)] = 40886, + [SMALL_STATE(561)] = 40937, + [SMALL_STATE(562)] = 40988, + [SMALL_STATE(563)] = 41039, + [SMALL_STATE(564)] = 41090, + [SMALL_STATE(565)] = 41141, + [SMALL_STATE(566)] = 41192, + [SMALL_STATE(567)] = 41275, + [SMALL_STATE(568)] = 41326, + [SMALL_STATE(569)] = 41377, + [SMALL_STATE(570)] = 41460, + [SMALL_STATE(571)] = 41511, + [SMALL_STATE(572)] = 41562, + [SMALL_STATE(573)] = 41613, + [SMALL_STATE(574)] = 41664, + [SMALL_STATE(575)] = 41715, + [SMALL_STATE(576)] = 41766, + [SMALL_STATE(577)] = 41849, + [SMALL_STATE(578)] = 41900, + [SMALL_STATE(579)] = 41951, + [SMALL_STATE(580)] = 42002, + [SMALL_STATE(581)] = 42085, + [SMALL_STATE(582)] = 42136, + [SMALL_STATE(583)] = 42219, + [SMALL_STATE(584)] = 42270, + [SMALL_STATE(585)] = 42321, + [SMALL_STATE(586)] = 42404, + [SMALL_STATE(587)] = 42455, + [SMALL_STATE(588)] = 42506, + [SMALL_STATE(589)] = 42557, + [SMALL_STATE(590)] = 42608, + [SMALL_STATE(591)] = 42659, + [SMALL_STATE(592)] = 42710, + [SMALL_STATE(593)] = 42761, + [SMALL_STATE(594)] = 42812, + [SMALL_STATE(595)] = 42863, + [SMALL_STATE(596)] = 42914, + [SMALL_STATE(597)] = 42965, + [SMALL_STATE(598)] = 43048, + [SMALL_STATE(599)] = 43131, + [SMALL_STATE(600)] = 43182, + [SMALL_STATE(601)] = 43233, + [SMALL_STATE(602)] = 43313, + [SMALL_STATE(603)] = 43393, + [SMALL_STATE(604)] = 43473, + [SMALL_STATE(605)] = 43553, + [SMALL_STATE(606)] = 43633, + [SMALL_STATE(607)] = 43713, + [SMALL_STATE(608)] = 43790, + [SMALL_STATE(609)] = 43867, + [SMALL_STATE(610)] = 43940, + [SMALL_STATE(611)] = 44009, + [SMALL_STATE(612)] = 44082, + [SMALL_STATE(613)] = 44155, + [SMALL_STATE(614)] = 44228, + [SMALL_STATE(615)] = 44297, + [SMALL_STATE(616)] = 44366, + [SMALL_STATE(617)] = 44435, + [SMALL_STATE(618)] = 44504, + [SMALL_STATE(619)] = 44573, + [SMALL_STATE(620)] = 44642, + [SMALL_STATE(621)] = 44711, + [SMALL_STATE(622)] = 44780, + [SMALL_STATE(623)] = 44849, + [SMALL_STATE(624)] = 44922, + [SMALL_STATE(625)] = 44991, + [SMALL_STATE(626)] = 45064, + [SMALL_STATE(627)] = 45133, + [SMALL_STATE(628)] = 45202, + [SMALL_STATE(629)] = 45271, + [SMALL_STATE(630)] = 45340, + [SMALL_STATE(631)] = 45413, + [SMALL_STATE(632)] = 45486, + [SMALL_STATE(633)] = 45555, + [SMALL_STATE(634)] = 45624, + [SMALL_STATE(635)] = 45693, + [SMALL_STATE(636)] = 45762, + [SMALL_STATE(637)] = 45831, + [SMALL_STATE(638)] = 45900, + [SMALL_STATE(639)] = 45973, + [SMALL_STATE(640)] = 46042, + [SMALL_STATE(641)] = 46111, + [SMALL_STATE(642)] = 46180, + [SMALL_STATE(643)] = 46249, + [SMALL_STATE(644)] = 46318, + [SMALL_STATE(645)] = 46387, + [SMALL_STATE(646)] = 46456, + [SMALL_STATE(647)] = 46525, + [SMALL_STATE(648)] = 46594, + [SMALL_STATE(649)] = 46663, + [SMALL_STATE(650)] = 46732, + [SMALL_STATE(651)] = 46801, + [SMALL_STATE(652)] = 46874, + [SMALL_STATE(653)] = 46947, + [SMALL_STATE(654)] = 47020, + [SMALL_STATE(655)] = 47089, + [SMALL_STATE(656)] = 47158, + [SMALL_STATE(657)] = 47231, + [SMALL_STATE(658)] = 47304, + [SMALL_STATE(659)] = 47373, + [SMALL_STATE(660)] = 47442, + [SMALL_STATE(661)] = 47515, + [SMALL_STATE(662)] = 47584, + [SMALL_STATE(663)] = 47653, + [SMALL_STATE(664)] = 47722, + [SMALL_STATE(665)] = 47791, + [SMALL_STATE(666)] = 47860, + [SMALL_STATE(667)] = 47929, + [SMALL_STATE(668)] = 47998, + [SMALL_STATE(669)] = 48067, + [SMALL_STATE(670)] = 48136, + [SMALL_STATE(671)] = 48205, + [SMALL_STATE(672)] = 48278, + [SMALL_STATE(673)] = 48347, + [SMALL_STATE(674)] = 48416, + [SMALL_STATE(675)] = 48485, + [SMALL_STATE(676)] = 48554, + [SMALL_STATE(677)] = 48623, + [SMALL_STATE(678)] = 48692, + [SMALL_STATE(679)] = 48765, + [SMALL_STATE(680)] = 48834, + [SMALL_STATE(681)] = 48903, + [SMALL_STATE(682)] = 48972, + [SMALL_STATE(683)] = 49041, + [SMALL_STATE(684)] = 49110, + [SMALL_STATE(685)] = 49179, + [SMALL_STATE(686)] = 49248, + [SMALL_STATE(687)] = 49317, + [SMALL_STATE(688)] = 49386, + [SMALL_STATE(689)] = 49459, + [SMALL_STATE(690)] = 49528, + [SMALL_STATE(691)] = 49597, + [SMALL_STATE(692)] = 49666, + [SMALL_STATE(693)] = 49735, + [SMALL_STATE(694)] = 49804, + [SMALL_STATE(695)] = 49873, + [SMALL_STATE(696)] = 49942, + [SMALL_STATE(697)] = 50011, + [SMALL_STATE(698)] = 50088, + [SMALL_STATE(699)] = 50165, + [SMALL_STATE(700)] = 50210, + [SMALL_STATE(701)] = 50255, + [SMALL_STATE(702)] = 50300, + [SMALL_STATE(703)] = 50345, + [SMALL_STATE(704)] = 50390, + [SMALL_STATE(705)] = 50435, + [SMALL_STATE(706)] = 50480, + [SMALL_STATE(707)] = 50557, + [SMALL_STATE(708)] = 50615, + [SMALL_STATE(709)] = 50679, + [SMALL_STATE(710)] = 50733, + [SMALL_STATE(711)] = 50793, + [SMALL_STATE(712)] = 50855, + [SMALL_STATE(713)] = 50909, + [SMALL_STATE(714)] = 50959, + [SMALL_STATE(715)] = 51033, + [SMALL_STATE(716)] = 51099, + [SMALL_STATE(717)] = 51153, + [SMALL_STATE(718)] = 51221, + [SMALL_STATE(719)] = 51281, + [SMALL_STATE(720)] = 51349, + [SMALL_STATE(721)] = 51403, + [SMALL_STATE(722)] = 51457, + [SMALL_STATE(723)] = 51515, + [SMALL_STATE(724)] = 51581, + [SMALL_STATE(725)] = 51649, + [SMALL_STATE(726)] = 51713, + [SMALL_STATE(727)] = 51775, + [SMALL_STATE(728)] = 51843, + [SMALL_STATE(729)] = 51919, + [SMALL_STATE(730)] = 51965, + [SMALL_STATE(731)] = 52015, + [SMALL_STATE(732)] = 52063, + [SMALL_STATE(733)] = 52109, + [SMALL_STATE(734)] = 52155, + [SMALL_STATE(735)] = 52203, + [SMALL_STATE(736)] = 52251, + [SMALL_STATE(737)] = 52327, + [SMALL_STATE(738)] = 52381, + [SMALL_STATE(739)] = 52427, + [SMALL_STATE(740)] = 52473, + [SMALL_STATE(741)] = 52541, + [SMALL_STATE(742)] = 52587, + [SMALL_STATE(743)] = 52637, + [SMALL_STATE(744)] = 52699, + [SMALL_STATE(745)] = 52763, + [SMALL_STATE(746)] = 52829, + [SMALL_STATE(747)] = 52887, + [SMALL_STATE(748)] = 52937, + [SMALL_STATE(749)] = 52991, + [SMALL_STATE(750)] = 53059, + [SMALL_STATE(751)] = 53119, + [SMALL_STATE(752)] = 53173, + [SMALL_STATE(753)] = 53227, + [SMALL_STATE(754)] = 53277, + [SMALL_STATE(755)] = 53353, + [SMALL_STATE(756)] = 53399, + [SMALL_STATE(757)] = 53445, + [SMALL_STATE(758)] = 53491, + [SMALL_STATE(759)] = 53534, + [SMALL_STATE(760)] = 53577, + [SMALL_STATE(761)] = 53620, + [SMALL_STATE(762)] = 53663, + [SMALL_STATE(763)] = 53706, + [SMALL_STATE(764)] = 53749, + [SMALL_STATE(765)] = 53792, + [SMALL_STATE(766)] = 53835, + [SMALL_STATE(767)] = 53878, + [SMALL_STATE(768)] = 53921, + [SMALL_STATE(769)] = 53964, + [SMALL_STATE(770)] = 54007, + [SMALL_STATE(771)] = 54050, + [SMALL_STATE(772)] = 54117, + [SMALL_STATE(773)] = 54178, + [SMALL_STATE(774)] = 54221, + [SMALL_STATE(775)] = 54264, + [SMALL_STATE(776)] = 54307, + [SMALL_STATE(777)] = 54350, + [SMALL_STATE(778)] = 54393, + [SMALL_STATE(779)] = 54436, + [SMALL_STATE(780)] = 54481, + [SMALL_STATE(781)] = 54526, + [SMALL_STATE(782)] = 54569, + [SMALL_STATE(783)] = 54612, + [SMALL_STATE(784)] = 54655, + [SMALL_STATE(785)] = 54698, + [SMALL_STATE(786)] = 54741, + [SMALL_STATE(787)] = 54784, + [SMALL_STATE(788)] = 54829, + [SMALL_STATE(789)] = 54872, + [SMALL_STATE(790)] = 54915, + [SMALL_STATE(791)] = 54958, + [SMALL_STATE(792)] = 55001, + [SMALL_STATE(793)] = 55044, + [SMALL_STATE(794)] = 55087, + [SMALL_STATE(795)] = 55130, + [SMALL_STATE(796)] = 55173, + [SMALL_STATE(797)] = 55216, + [SMALL_STATE(798)] = 55259, + [SMALL_STATE(799)] = 55302, + [SMALL_STATE(800)] = 55345, + [SMALL_STATE(801)] = 55388, + [SMALL_STATE(802)] = 55451, + [SMALL_STATE(803)] = 55516, + [SMALL_STATE(804)] = 55573, + [SMALL_STATE(805)] = 55626, + [SMALL_STATE(806)] = 55693, + [SMALL_STATE(807)] = 55752, + [SMALL_STATE(808)] = 55805, + [SMALL_STATE(809)] = 55848, + [SMALL_STATE(810)] = 55891, + [SMALL_STATE(811)] = 55934, + [SMALL_STATE(812)] = 55977, + [SMALL_STATE(813)] = 56020, + [SMALL_STATE(814)] = 56063, + [SMALL_STATE(815)] = 56106, + [SMALL_STATE(816)] = 56149, + [SMALL_STATE(817)] = 56192, + [SMALL_STATE(818)] = 56235, + [SMALL_STATE(819)] = 56278, + [SMALL_STATE(820)] = 56327, + [SMALL_STATE(821)] = 56370, + [SMALL_STATE(822)] = 56413, + [SMALL_STATE(823)] = 56456, + [SMALL_STATE(824)] = 56499, + [SMALL_STATE(825)] = 56542, + [SMALL_STATE(826)] = 56585, + [SMALL_STATE(827)] = 56628, + [SMALL_STATE(828)] = 56671, + [SMALL_STATE(829)] = 56714, + [SMALL_STATE(830)] = 56757, + [SMALL_STATE(831)] = 56800, + [SMALL_STATE(832)] = 56845, + [SMALL_STATE(833)] = 56890, + [SMALL_STATE(834)] = 56935, + [SMALL_STATE(835)] = 56978, + [SMALL_STATE(836)] = 57023, + [SMALL_STATE(837)] = 57070, + [SMALL_STATE(838)] = 57117, + [SMALL_STATE(839)] = 57162, + [SMALL_STATE(840)] = 57205, + [SMALL_STATE(841)] = 57248, + [SMALL_STATE(842)] = 57293, + [SMALL_STATE(843)] = 57340, + [SMALL_STATE(844)] = 57385, + [SMALL_STATE(845)] = 57428, + [SMALL_STATE(846)] = 57495, + [SMALL_STATE(847)] = 57538, + [SMALL_STATE(848)] = 57599, + [SMALL_STATE(849)] = 57662, + [SMALL_STATE(850)] = 57705, + [SMALL_STATE(851)] = 57770, + [SMALL_STATE(852)] = 57827, + [SMALL_STATE(853)] = 57874, + [SMALL_STATE(854)] = 57927, + [SMALL_STATE(855)] = 57994, + [SMALL_STATE(856)] = 58053, + [SMALL_STATE(857)] = 58106, + [SMALL_STATE(858)] = 58153, + [SMALL_STATE(859)] = 58198, + [SMALL_STATE(860)] = 58243, + [SMALL_STATE(861)] = 58288, + [SMALL_STATE(862)] = 58333, + [SMALL_STATE(863)] = 58380, + [SMALL_STATE(864)] = 58423, + [SMALL_STATE(865)] = 58466, + [SMALL_STATE(866)] = 58513, + [SMALL_STATE(867)] = 58556, + [SMALL_STATE(868)] = 58599, + [SMALL_STATE(869)] = 58652, + [SMALL_STATE(870)] = 58697, + [SMALL_STATE(871)] = 58742, + [SMALL_STATE(872)] = 58787, + [SMALL_STATE(873)] = 58834, + [SMALL_STATE(874)] = 58881, + [SMALL_STATE(875)] = 58928, + [SMALL_STATE(876)] = 58971, + [SMALL_STATE(877)] = 59014, + [SMALL_STATE(878)] = 59057, + [SMALL_STATE(879)] = 59104, + [SMALL_STATE(880)] = 59147, + [SMALL_STATE(881)] = 59194, + [SMALL_STATE(882)] = 59241, + [SMALL_STATE(883)] = 59284, + [SMALL_STATE(884)] = 59327, + [SMALL_STATE(885)] = 59370, + [SMALL_STATE(886)] = 59413, + [SMALL_STATE(887)] = 59456, + [SMALL_STATE(888)] = 59523, + [SMALL_STATE(889)] = 59566, + [SMALL_STATE(890)] = 59609, + [SMALL_STATE(891)] = 59656, + [SMALL_STATE(892)] = 59703, + [SMALL_STATE(893)] = 59746, + [SMALL_STATE(894)] = 59789, + [SMALL_STATE(895)] = 59832, + [SMALL_STATE(896)] = 59875, + [SMALL_STATE(897)] = 59918, + [SMALL_STATE(898)] = 59979, + [SMALL_STATE(899)] = 60042, + [SMALL_STATE(900)] = 60107, + [SMALL_STATE(901)] = 60164, + [SMALL_STATE(902)] = 60207, + [SMALL_STATE(903)] = 60260, + [SMALL_STATE(904)] = 60313, + [SMALL_STATE(905)] = 60380, + [SMALL_STATE(906)] = 60439, + [SMALL_STATE(907)] = 60492, + [SMALL_STATE(908)] = 60535, + [SMALL_STATE(909)] = 60584, + [SMALL_STATE(910)] = 60627, + [SMALL_STATE(911)] = 60670, + [SMALL_STATE(912)] = 60723, + [SMALL_STATE(913)] = 60768, + [SMALL_STATE(914)] = 60813, + [SMALL_STATE(915)] = 60858, + [SMALL_STATE(916)] = 60901, + [SMALL_STATE(917)] = 60944, + [SMALL_STATE(918)] = 60987, + [SMALL_STATE(919)] = 61030, + [SMALL_STATE(920)] = 61103, + [SMALL_STATE(921)] = 61146, + [SMALL_STATE(922)] = 61188, + [SMALL_STATE(923)] = 61230, + [SMALL_STATE(924)] = 61272, + [SMALL_STATE(925)] = 61314, + [SMALL_STATE(926)] = 61386, + [SMALL_STATE(927)] = 61428, + [SMALL_STATE(928)] = 61470, + [SMALL_STATE(929)] = 61512, + [SMALL_STATE(930)] = 61556, + [SMALL_STATE(931)] = 61600, + [SMALL_STATE(932)] = 61642, + [SMALL_STATE(933)] = 61684, + [SMALL_STATE(934)] = 61728, + [SMALL_STATE(935)] = 61780, + [SMALL_STATE(936)] = 61822, + [SMALL_STATE(937)] = 61864, + [SMALL_STATE(938)] = 61906, + [SMALL_STATE(939)] = 61948, + [SMALL_STATE(940)] = 61990, + [SMALL_STATE(941)] = 62032, + [SMALL_STATE(942)] = 62074, + [SMALL_STATE(943)] = 62116, + [SMALL_STATE(944)] = 62168, + [SMALL_STATE(945)] = 62226, + [SMALL_STATE(946)] = 62292, + [SMALL_STATE(947)] = 62344, + [SMALL_STATE(948)] = 62400, + [SMALL_STATE(949)] = 62464, + [SMALL_STATE(950)] = 62526, + [SMALL_STATE(951)] = 62586, + [SMALL_STATE(952)] = 62628, + [SMALL_STATE(953)] = 62674, + [SMALL_STATE(954)] = 62720, + [SMALL_STATE(955)] = 62762, + [SMALL_STATE(956)] = 62804, + [SMALL_STATE(957)] = 62846, + [SMALL_STATE(958)] = 62888, + [SMALL_STATE(959)] = 62930, + [SMALL_STATE(960)] = 62972, + [SMALL_STATE(961)] = 63038, + [SMALL_STATE(962)] = 63080, + [SMALL_STATE(963)] = 63122, + [SMALL_STATE(964)] = 63164, + [SMALL_STATE(965)] = 63206, + [SMALL_STATE(966)] = 63248, + [SMALL_STATE(967)] = 63290, + [SMALL_STATE(968)] = 63332, + [SMALL_STATE(969)] = 63374, + [SMALL_STATE(970)] = 63416, + [SMALL_STATE(971)] = 63458, + [SMALL_STATE(972)] = 63500, + [SMALL_STATE(973)] = 63542, + [SMALL_STATE(974)] = 63588, + [SMALL_STATE(975)] = 63660, + [SMALL_STATE(976)] = 63706, + [SMALL_STATE(977)] = 63748, + [SMALL_STATE(978)] = 63790, + [SMALL_STATE(979)] = 63832, + [SMALL_STATE(980)] = 63874, + [SMALL_STATE(981)] = 63916, + [SMALL_STATE(982)] = 63958, + [SMALL_STATE(983)] = 64000, + [SMALL_STATE(984)] = 64046, + [SMALL_STATE(985)] = 64088, + [SMALL_STATE(986)] = 64134, + [SMALL_STATE(987)] = 64176, + [SMALL_STATE(988)] = 64218, + [SMALL_STATE(989)] = 64260, + [SMALL_STATE(990)] = 64302, + [SMALL_STATE(991)] = 64344, + [SMALL_STATE(992)] = 64386, + [SMALL_STATE(993)] = 64430, + [SMALL_STATE(994)] = 64476, + [SMALL_STATE(995)] = 64518, + [SMALL_STATE(996)] = 64560, + [SMALL_STATE(997)] = 64606, + [SMALL_STATE(998)] = 64648, + [SMALL_STATE(999)] = 64690, + [SMALL_STATE(1000)] = 64732, + [SMALL_STATE(1001)] = 64774, + [SMALL_STATE(1002)] = 64816, + [SMALL_STATE(1003)] = 64858, + [SMALL_STATE(1004)] = 64900, + [SMALL_STATE(1005)] = 64942, + [SMALL_STATE(1006)] = 64984, + [SMALL_STATE(1007)] = 65030, + [SMALL_STATE(1008)] = 65072, + [SMALL_STATE(1009)] = 65114, + [SMALL_STATE(1010)] = 65160, + [SMALL_STATE(1011)] = 65202, + [SMALL_STATE(1012)] = 65244, + [SMALL_STATE(1013)] = 65286, + [SMALL_STATE(1014)] = 65328, + [SMALL_STATE(1015)] = 65370, + [SMALL_STATE(1016)] = 65412, + [SMALL_STATE(1017)] = 65454, + [SMALL_STATE(1018)] = 65498, + [SMALL_STATE(1019)] = 65540, + [SMALL_STATE(1020)] = 65584, + [SMALL_STATE(1021)] = 65626, + [SMALL_STATE(1022)] = 65670, + [SMALL_STATE(1023)] = 65716, + [SMALL_STATE(1024)] = 65758, + [SMALL_STATE(1025)] = 65800, + [SMALL_STATE(1026)] = 65842, + [SMALL_STATE(1027)] = 65884, + [SMALL_STATE(1028)] = 65930, + [SMALL_STATE(1029)] = 65980, + [SMALL_STATE(1030)] = 66022, + [SMALL_STATE(1031)] = 66064, + [SMALL_STATE(1032)] = 66108, + [SMALL_STATE(1033)] = 66150, + [SMALL_STATE(1034)] = 66192, + [SMALL_STATE(1035)] = 66234, + [SMALL_STATE(1036)] = 66276, + [SMALL_STATE(1037)] = 66318, + [SMALL_STATE(1038)] = 66360, + [SMALL_STATE(1039)] = 66410, + [SMALL_STATE(1040)] = 66452, + [SMALL_STATE(1041)] = 66494, + [SMALL_STATE(1042)] = 66536, + [SMALL_STATE(1043)] = 66578, + [SMALL_STATE(1044)] = 66620, + [SMALL_STATE(1045)] = 66662, + [SMALL_STATE(1046)] = 66704, + [SMALL_STATE(1047)] = 66746, + [SMALL_STATE(1048)] = 66788, + [SMALL_STATE(1049)] = 66830, + [SMALL_STATE(1050)] = 66872, + [SMALL_STATE(1051)] = 66914, + [SMALL_STATE(1052)] = 66956, + [SMALL_STATE(1053)] = 66998, + [SMALL_STATE(1054)] = 67040, + [SMALL_STATE(1055)] = 67082, + [SMALL_STATE(1056)] = 67124, + [SMALL_STATE(1057)] = 67166, + [SMALL_STATE(1058)] = 67207, + [SMALL_STATE(1059)] = 67248, + [SMALL_STATE(1060)] = 67291, + [SMALL_STATE(1061)] = 67332, + [SMALL_STATE(1062)] = 67375, + [SMALL_STATE(1063)] = 67418, + [SMALL_STATE(1064)] = 67461, + [SMALL_STATE(1065)] = 67504, + [SMALL_STATE(1066)] = 67549, + [SMALL_STATE(1067)] = 67590, + [SMALL_STATE(1068)] = 67633, + [SMALL_STATE(1069)] = 67674, + [SMALL_STATE(1070)] = 67717, + [SMALL_STATE(1071)] = 67762, + [SMALL_STATE(1072)] = 67807, + [SMALL_STATE(1073)] = 67848, + [SMALL_STATE(1074)] = 67891, + [SMALL_STATE(1075)] = 67932, + [SMALL_STATE(1076)] = 67973, + [SMALL_STATE(1077)] = 68014, + [SMALL_STATE(1078)] = 68055, + [SMALL_STATE(1079)] = 68096, + [SMALL_STATE(1080)] = 68137, + [SMALL_STATE(1081)] = 68178, + [SMALL_STATE(1082)] = 68219, + [SMALL_STATE(1083)] = 68260, + [SMALL_STATE(1084)] = 68309, + [SMALL_STATE(1085)] = 68350, + [SMALL_STATE(1086)] = 68391, + [SMALL_STATE(1087)] = 68434, + [SMALL_STATE(1088)] = 68475, + [SMALL_STATE(1089)] = 68516, + [SMALL_STATE(1090)] = 68557, + [SMALL_STATE(1091)] = 68598, + [SMALL_STATE(1092)] = 68639, + [SMALL_STATE(1093)] = 68682, + [SMALL_STATE(1094)] = 68723, + [SMALL_STATE(1095)] = 68764, + [SMALL_STATE(1096)] = 68805, + [SMALL_STATE(1097)] = 68848, + [SMALL_STATE(1098)] = 68895, + [SMALL_STATE(1099)] = 68938, + [SMALL_STATE(1100)] = 68979, + [SMALL_STATE(1101)] = 69020, + [SMALL_STATE(1102)] = 69061, + [SMALL_STATE(1103)] = 69102, + [SMALL_STATE(1104)] = 69147, + [SMALL_STATE(1105)] = 69192, + [SMALL_STATE(1106)] = 69233, + [SMALL_STATE(1107)] = 69274, + [SMALL_STATE(1108)] = 69315, + [SMALL_STATE(1109)] = 69356, + [SMALL_STATE(1110)] = 69399, + [SMALL_STATE(1111)] = 69442, + [SMALL_STATE(1112)] = 69483, + [SMALL_STATE(1113)] = 69526, + [SMALL_STATE(1114)] = 69569, + [SMALL_STATE(1115)] = 69610, + [SMALL_STATE(1116)] = 69651, + [SMALL_STATE(1117)] = 69696, + [SMALL_STATE(1118)] = 69737, + [SMALL_STATE(1119)] = 69778, + [SMALL_STATE(1120)] = 69819, + [SMALL_STATE(1121)] = 69860, + [SMALL_STATE(1122)] = 69901, + [SMALL_STATE(1123)] = 69944, + [SMALL_STATE(1124)] = 69987, + [SMALL_STATE(1125)] = 70027, + [SMALL_STATE(1126)] = 70067, + [SMALL_STATE(1127)] = 70109, + [SMALL_STATE(1128)] = 70149, + [SMALL_STATE(1129)] = 70191, + [SMALL_STATE(1130)] = 70233, + [SMALL_STATE(1131)] = 70275, + [SMALL_STATE(1132)] = 70307, + [SMALL_STATE(1133)] = 70339, + [SMALL_STATE(1134)] = 70371, + [SMALL_STATE(1135)] = 70403, + [SMALL_STATE(1136)] = 70441, + [SMALL_STATE(1137)] = 70479, + [SMALL_STATE(1138)] = 70511, + [SMALL_STATE(1139)] = 70543, + [SMALL_STATE(1140)] = 70580, + [SMALL_STATE(1141)] = 70617, + [SMALL_STATE(1142)] = 70654, + [SMALL_STATE(1143)] = 70691, + [SMALL_STATE(1144)] = 70721, + [SMALL_STATE(1145)] = 70757, + [SMALL_STATE(1146)] = 70787, + [SMALL_STATE(1147)] = 70817, + [SMALL_STATE(1148)] = 70847, + [SMALL_STATE(1149)] = 70883, + [SMALL_STATE(1150)] = 70913, + [SMALL_STATE(1151)] = 70943, + [SMALL_STATE(1152)] = 70973, + [SMALL_STATE(1153)] = 71009, + [SMALL_STATE(1154)] = 71043, + [SMALL_STATE(1155)] = 71073, + [SMALL_STATE(1156)] = 71107, + [SMALL_STATE(1157)] = 71143, + [SMALL_STATE(1158)] = 71172, + [SMALL_STATE(1159)] = 71201, + [SMALL_STATE(1160)] = 71230, + [SMALL_STATE(1161)] = 71259, + [SMALL_STATE(1162)] = 71288, + [SMALL_STATE(1163)] = 71317, + [SMALL_STATE(1164)] = 71346, + [SMALL_STATE(1165)] = 71381, + [SMALL_STATE(1166)] = 71410, + [SMALL_STATE(1167)] = 71439, + [SMALL_STATE(1168)] = 71468, + [SMALL_STATE(1169)] = 71493, + [SMALL_STATE(1170)] = 71522, + [SMALL_STATE(1171)] = 71547, + [SMALL_STATE(1172)] = 71582, + [SMALL_STATE(1173)] = 71607, + [SMALL_STATE(1174)] = 71636, + [SMALL_STATE(1175)] = 71665, + [SMALL_STATE(1176)] = 71694, + [SMALL_STATE(1177)] = 71723, + [SMALL_STATE(1178)] = 71748, + [SMALL_STATE(1179)] = 71777, + [SMALL_STATE(1180)] = 71806, + [SMALL_STATE(1181)] = 71835, + [SMALL_STATE(1182)] = 71864, + [SMALL_STATE(1183)] = 71893, + [SMALL_STATE(1184)] = 71922, + [SMALL_STATE(1185)] = 71951, + [SMALL_STATE(1186)] = 71980, + [SMALL_STATE(1187)] = 72009, + [SMALL_STATE(1188)] = 72055, + [SMALL_STATE(1189)] = 72101, + [SMALL_STATE(1190)] = 72125, + [SMALL_STATE(1191)] = 72171, + [SMALL_STATE(1192)] = 72217, + [SMALL_STATE(1193)] = 72241, + [SMALL_STATE(1194)] = 72287, + [SMALL_STATE(1195)] = 72319, + [SMALL_STATE(1196)] = 72365, + [SMALL_STATE(1197)] = 72411, + [SMALL_STATE(1198)] = 72443, + [SMALL_STATE(1199)] = 72467, + [SMALL_STATE(1200)] = 72513, + [SMALL_STATE(1201)] = 72541, + [SMALL_STATE(1202)] = 72587, + [SMALL_STATE(1203)] = 72633, + [SMALL_STATE(1204)] = 72679, + [SMALL_STATE(1205)] = 72725, + [SMALL_STATE(1206)] = 72749, + [SMALL_STATE(1207)] = 72795, + [SMALL_STATE(1208)] = 72825, + [SMALL_STATE(1209)] = 72853, + [SMALL_STATE(1210)] = 72899, + [SMALL_STATE(1211)] = 72945, + [SMALL_STATE(1212)] = 72991, + [SMALL_STATE(1213)] = 73037, + [SMALL_STATE(1214)] = 73083, + [SMALL_STATE(1215)] = 73126, + [SMALL_STATE(1216)] = 73166, + [SMALL_STATE(1217)] = 73206, + [SMALL_STATE(1218)] = 73246, + [SMALL_STATE(1219)] = 73286, + [SMALL_STATE(1220)] = 73312, + [SMALL_STATE(1221)] = 73349, + [SMALL_STATE(1222)] = 73386, + [SMALL_STATE(1223)] = 73427, + [SMALL_STATE(1224)] = 73468, + [SMALL_STATE(1225)] = 73509, + [SMALL_STATE(1226)] = 73550, + [SMALL_STATE(1227)] = 73591, + [SMALL_STATE(1228)] = 73632, + [SMALL_STATE(1229)] = 73673, + [SMALL_STATE(1230)] = 73691, + [SMALL_STATE(1231)] = 73729, + [SMALL_STATE(1232)] = 73767, + [SMALL_STATE(1233)] = 73789, + [SMALL_STATE(1234)] = 73827, + [SMALL_STATE(1235)] = 73845, + [SMALL_STATE(1236)] = 73883, + [SMALL_STATE(1237)] = 73909, + [SMALL_STATE(1238)] = 73947, + [SMALL_STATE(1239)] = 73979, + [SMALL_STATE(1240)] = 74005, + [SMALL_STATE(1241)] = 74023, + [SMALL_STATE(1242)] = 74061, + [SMALL_STATE(1243)] = 74087, + [SMALL_STATE(1244)] = 74107, + [SMALL_STATE(1245)] = 74145, + [SMALL_STATE(1246)] = 74169, + [SMALL_STATE(1247)] = 74198, + [SMALL_STATE(1248)] = 74227, + [SMALL_STATE(1249)] = 74252, + [SMALL_STATE(1250)] = 74271, + [SMALL_STATE(1251)] = 74292, + [SMALL_STATE(1252)] = 74309, + [SMALL_STATE(1253)] = 74338, + [SMALL_STATE(1254)] = 74357, + [SMALL_STATE(1255)] = 74386, + [SMALL_STATE(1256)] = 74415, + [SMALL_STATE(1257)] = 74432, + [SMALL_STATE(1258)] = 74461, + [SMALL_STATE(1259)] = 74486, + [SMALL_STATE(1260)] = 74515, + [SMALL_STATE(1261)] = 74532, + [SMALL_STATE(1262)] = 74557, + [SMALL_STATE(1263)] = 74586, + [SMALL_STATE(1264)] = 74609, + [SMALL_STATE(1265)] = 74638, + [SMALL_STATE(1266)] = 74667, + [SMALL_STATE(1267)] = 74692, + [SMALL_STATE(1268)] = 74709, + [SMALL_STATE(1269)] = 74732, + [SMALL_STATE(1270)] = 74761, + [SMALL_STATE(1271)] = 74782, + [SMALL_STATE(1272)] = 74799, + [SMALL_STATE(1273)] = 74824, + [SMALL_STATE(1274)] = 74853, + [SMALL_STATE(1275)] = 74870, + [SMALL_STATE(1276)] = 74895, + [SMALL_STATE(1277)] = 74924, + [SMALL_STATE(1278)] = 74949, + [SMALL_STATE(1279)] = 74978, + [SMALL_STATE(1280)] = 75007, + [SMALL_STATE(1281)] = 75036, + [SMALL_STATE(1282)] = 75061, + [SMALL_STATE(1283)] = 75083, + [SMALL_STATE(1284)] = 75101, + [SMALL_STATE(1285)] = 75119, + [SMALL_STATE(1286)] = 75143, + [SMALL_STATE(1287)] = 75167, + [SMALL_STATE(1288)] = 75191, + [SMALL_STATE(1289)] = 75209, + [SMALL_STATE(1290)] = 75225, + [SMALL_STATE(1291)] = 75249, + [SMALL_STATE(1292)] = 75269, + [SMALL_STATE(1293)] = 75291, + [SMALL_STATE(1294)] = 75315, + [SMALL_STATE(1295)] = 75333, + [SMALL_STATE(1296)] = 75355, + [SMALL_STATE(1297)] = 75371, + [SMALL_STATE(1298)] = 75395, + [SMALL_STATE(1299)] = 75419, + [SMALL_STATE(1300)] = 75443, + [SMALL_STATE(1301)] = 75461, + [SMALL_STATE(1302)] = 75477, + [SMALL_STATE(1303)] = 75497, + [SMALL_STATE(1304)] = 75521, + [SMALL_STATE(1305)] = 75537, + [SMALL_STATE(1306)] = 75561, + [SMALL_STATE(1307)] = 75583, + [SMALL_STATE(1308)] = 75599, + [SMALL_STATE(1309)] = 75615, + [SMALL_STATE(1310)] = 75639, + [SMALL_STATE(1311)] = 75659, + [SMALL_STATE(1312)] = 75683, + [SMALL_STATE(1313)] = 75710, + [SMALL_STATE(1314)] = 75733, + [SMALL_STATE(1315)] = 75756, + [SMALL_STATE(1316)] = 75783, + [SMALL_STATE(1317)] = 75804, + [SMALL_STATE(1318)] = 75825, + [SMALL_STATE(1319)] = 75854, + [SMALL_STATE(1320)] = 75883, + [SMALL_STATE(1321)] = 75910, + [SMALL_STATE(1322)] = 75931, + [SMALL_STATE(1323)] = 75952, + [SMALL_STATE(1324)] = 75979, + [SMALL_STATE(1325)] = 75998, + [SMALL_STATE(1326)] = 76015, + [SMALL_STATE(1327)] = 76036, + [SMALL_STATE(1328)] = 76063, + [SMALL_STATE(1329)] = 76092, + [SMALL_STATE(1330)] = 76119, + [SMALL_STATE(1331)] = 76140, + [SMALL_STATE(1332)] = 76163, + [SMALL_STATE(1333)] = 76192, + [SMALL_STATE(1334)] = 76219, + [SMALL_STATE(1335)] = 76240, + [SMALL_STATE(1336)] = 76267, + [SMALL_STATE(1337)] = 76296, + [SMALL_STATE(1338)] = 76325, + [SMALL_STATE(1339)] = 76348, + [SMALL_STATE(1340)] = 76377, + [SMALL_STATE(1341)] = 76398, + [SMALL_STATE(1342)] = 76415, + [SMALL_STATE(1343)] = 76444, + [SMALL_STATE(1344)] = 76473, + [SMALL_STATE(1345)] = 76502, + [SMALL_STATE(1346)] = 76519, + [SMALL_STATE(1347)] = 76541, + [SMALL_STATE(1348)] = 76567, + [SMALL_STATE(1349)] = 76593, + [SMALL_STATE(1350)] = 76619, + [SMALL_STATE(1351)] = 76645, + [SMALL_STATE(1352)] = 76667, + [SMALL_STATE(1353)] = 76693, + [SMALL_STATE(1354)] = 76719, + [SMALL_STATE(1355)] = 76745, + [SMALL_STATE(1356)] = 76771, + [SMALL_STATE(1357)] = 76793, + [SMALL_STATE(1358)] = 76819, + [SMALL_STATE(1359)] = 76845, + [SMALL_STATE(1360)] = 76871, + [SMALL_STATE(1361)] = 76897, + [SMALL_STATE(1362)] = 76921, + [SMALL_STATE(1363)] = 76947, + [SMALL_STATE(1364)] = 76973, + [SMALL_STATE(1365)] = 76999, + [SMALL_STATE(1366)] = 77021, + [SMALL_STATE(1367)] = 77041, + [SMALL_STATE(1368)] = 77067, + [SMALL_STATE(1369)] = 77091, + [SMALL_STATE(1370)] = 77111, + [SMALL_STATE(1371)] = 77133, + [SMALL_STATE(1372)] = 77159, + [SMALL_STATE(1373)] = 77185, + [SMALL_STATE(1374)] = 77211, + [SMALL_STATE(1375)] = 77235, + [SMALL_STATE(1376)] = 77257, + [SMALL_STATE(1377)] = 77283, + [SMALL_STATE(1378)] = 77309, + [SMALL_STATE(1379)] = 77335, + [SMALL_STATE(1380)] = 77361, + [SMALL_STATE(1381)] = 77383, + [SMALL_STATE(1382)] = 77409, + [SMALL_STATE(1383)] = 77431, + [SMALL_STATE(1384)] = 77457, + [SMALL_STATE(1385)] = 77483, + [SMALL_STATE(1386)] = 77509, + [SMALL_STATE(1387)] = 77531, + [SMALL_STATE(1388)] = 77557, + [SMALL_STATE(1389)] = 77579, + [SMALL_STATE(1390)] = 77601, + [SMALL_STATE(1391)] = 77618, + [SMALL_STATE(1392)] = 77639, + [SMALL_STATE(1393)] = 77652, + [SMALL_STATE(1394)] = 77675, + [SMALL_STATE(1395)] = 77688, + [SMALL_STATE(1396)] = 77709, + [SMALL_STATE(1397)] = 77726, + [SMALL_STATE(1398)] = 77739, + [SMALL_STATE(1399)] = 77756, + [SMALL_STATE(1400)] = 77773, + [SMALL_STATE(1401)] = 77794, + [SMALL_STATE(1402)] = 77811, + [SMALL_STATE(1403)] = 77832, + [SMALL_STATE(1404)] = 77845, + [SMALL_STATE(1405)] = 77858, + [SMALL_STATE(1406)] = 77879, + [SMALL_STATE(1407)] = 77896, + [SMALL_STATE(1408)] = 77909, + [SMALL_STATE(1409)] = 77926, + [SMALL_STATE(1410)] = 77949, + [SMALL_STATE(1411)] = 77962, + [SMALL_STATE(1412)] = 77975, + [SMALL_STATE(1413)] = 77996, + [SMALL_STATE(1414)] = 78017, + [SMALL_STATE(1415)] = 78030, + [SMALL_STATE(1416)] = 78043, + [SMALL_STATE(1417)] = 78064, + [SMALL_STATE(1418)] = 78081, + [SMALL_STATE(1419)] = 78102, + [SMALL_STATE(1420)] = 78115, + [SMALL_STATE(1421)] = 78136, + [SMALL_STATE(1422)] = 78153, + [SMALL_STATE(1423)] = 78174, + [SMALL_STATE(1424)] = 78195, + [SMALL_STATE(1425)] = 78216, + [SMALL_STATE(1426)] = 78233, + [SMALL_STATE(1427)] = 78254, + [SMALL_STATE(1428)] = 78275, + [SMALL_STATE(1429)] = 78288, + [SMALL_STATE(1430)] = 78309, + [SMALL_STATE(1431)] = 78330, + [SMALL_STATE(1432)] = 78343, + [SMALL_STATE(1433)] = 78366, + [SMALL_STATE(1434)] = 78387, + [SMALL_STATE(1435)] = 78400, + [SMALL_STATE(1436)] = 78417, + [SMALL_STATE(1437)] = 78438, + [SMALL_STATE(1438)] = 78461, + [SMALL_STATE(1439)] = 78482, + [SMALL_STATE(1440)] = 78501, + [SMALL_STATE(1441)] = 78522, + [SMALL_STATE(1442)] = 78535, + [SMALL_STATE(1443)] = 78558, + [SMALL_STATE(1444)] = 78579, + [SMALL_STATE(1445)] = 78596, + [SMALL_STATE(1446)] = 78617, + [SMALL_STATE(1447)] = 78638, + [SMALL_STATE(1448)] = 78659, + [SMALL_STATE(1449)] = 78680, + [SMALL_STATE(1450)] = 78699, + [SMALL_STATE(1451)] = 78712, + [SMALL_STATE(1452)] = 78729, + [SMALL_STATE(1453)] = 78746, + [SMALL_STATE(1454)] = 78763, + [SMALL_STATE(1455)] = 78780, + [SMALL_STATE(1456)] = 78797, + [SMALL_STATE(1457)] = 78814, + [SMALL_STATE(1458)] = 78831, + [SMALL_STATE(1459)] = 78848, + [SMALL_STATE(1460)] = 78865, + [SMALL_STATE(1461)] = 78886, + [SMALL_STATE(1462)] = 78903, + [SMALL_STATE(1463)] = 78922, + [SMALL_STATE(1464)] = 78934, + [SMALL_STATE(1465)] = 78954, + [SMALL_STATE(1466)] = 78974, + [SMALL_STATE(1467)] = 78994, + [SMALL_STATE(1468)] = 79006, + [SMALL_STATE(1469)] = 79024, + [SMALL_STATE(1470)] = 79036, + [SMALL_STATE(1471)] = 79056, + [SMALL_STATE(1472)] = 79068, + [SMALL_STATE(1473)] = 79080, + [SMALL_STATE(1474)] = 79092, + [SMALL_STATE(1475)] = 79104, + [SMALL_STATE(1476)] = 79116, + [SMALL_STATE(1477)] = 79136, + [SMALL_STATE(1478)] = 79156, + [SMALL_STATE(1479)] = 79176, + [SMALL_STATE(1480)] = 79188, + [SMALL_STATE(1481)] = 79208, + [SMALL_STATE(1482)] = 79228, + [SMALL_STATE(1483)] = 79248, + [SMALL_STATE(1484)] = 79268, + [SMALL_STATE(1485)] = 79288, + [SMALL_STATE(1486)] = 79306, + [SMALL_STATE(1487)] = 79326, + [SMALL_STATE(1488)] = 79346, + [SMALL_STATE(1489)] = 79364, + [SMALL_STATE(1490)] = 79376, + [SMALL_STATE(1491)] = 79396, + [SMALL_STATE(1492)] = 79412, + [SMALL_STATE(1493)] = 79424, + [SMALL_STATE(1494)] = 79436, + [SMALL_STATE(1495)] = 79448, + [SMALL_STATE(1496)] = 79468, + [SMALL_STATE(1497)] = 79488, + [SMALL_STATE(1498)] = 79508, + [SMALL_STATE(1499)] = 79520, + [SMALL_STATE(1500)] = 79532, + [SMALL_STATE(1501)] = 79544, + [SMALL_STATE(1502)] = 79556, + [SMALL_STATE(1503)] = 79576, + [SMALL_STATE(1504)] = 79596, + [SMALL_STATE(1505)] = 79616, + [SMALL_STATE(1506)] = 79628, + [SMALL_STATE(1507)] = 79640, + [SMALL_STATE(1508)] = 79652, + [SMALL_STATE(1509)] = 79670, + [SMALL_STATE(1510)] = 79682, + [SMALL_STATE(1511)] = 79702, + [SMALL_STATE(1512)] = 79714, + [SMALL_STATE(1513)] = 79734, + [SMALL_STATE(1514)] = 79751, + [SMALL_STATE(1515)] = 79762, + [SMALL_STATE(1516)] = 79777, + [SMALL_STATE(1517)] = 79794, + [SMALL_STATE(1518)] = 79811, + [SMALL_STATE(1519)] = 79826, + [SMALL_STATE(1520)] = 79841, + [SMALL_STATE(1521)] = 79858, + [SMALL_STATE(1522)] = 79875, + [SMALL_STATE(1523)] = 79890, + [SMALL_STATE(1524)] = 79905, + [SMALL_STATE(1525)] = 79922, + [SMALL_STATE(1526)] = 79937, + [SMALL_STATE(1527)] = 79954, + [SMALL_STATE(1528)] = 79969, + [SMALL_STATE(1529)] = 79986, + [SMALL_STATE(1530)] = 80001, + [SMALL_STATE(1531)] = 80016, + [SMALL_STATE(1532)] = 80033, + [SMALL_STATE(1533)] = 80048, + [SMALL_STATE(1534)] = 80063, + [SMALL_STATE(1535)] = 80080, + [SMALL_STATE(1536)] = 80097, + [SMALL_STATE(1537)] = 80112, + [SMALL_STATE(1538)] = 80129, + [SMALL_STATE(1539)] = 80143, + [SMALL_STATE(1540)] = 80157, + [SMALL_STATE(1541)] = 80171, + [SMALL_STATE(1542)] = 80185, + [SMALL_STATE(1543)] = 80199, + [SMALL_STATE(1544)] = 80213, + [SMALL_STATE(1545)] = 80227, + [SMALL_STATE(1546)] = 80241, + [SMALL_STATE(1547)] = 80255, + [SMALL_STATE(1548)] = 80269, + [SMALL_STATE(1549)] = 80283, + [SMALL_STATE(1550)] = 80297, + [SMALL_STATE(1551)] = 80311, + [SMALL_STATE(1552)] = 80325, + [SMALL_STATE(1553)] = 80339, + [SMALL_STATE(1554)] = 80353, + [SMALL_STATE(1555)] = 80367, + [SMALL_STATE(1556)] = 80381, + [SMALL_STATE(1557)] = 80395, + [SMALL_STATE(1558)] = 80409, + [SMALL_STATE(1559)] = 80423, + [SMALL_STATE(1560)] = 80437, + [SMALL_STATE(1561)] = 80451, + [SMALL_STATE(1562)] = 80465, + [SMALL_STATE(1563)] = 80479, + [SMALL_STATE(1564)] = 80493, + [SMALL_STATE(1565)] = 80507, + [SMALL_STATE(1566)] = 80521, + [SMALL_STATE(1567)] = 80531, + [SMALL_STATE(1568)] = 80545, + [SMALL_STATE(1569)] = 80559, + [SMALL_STATE(1570)] = 80571, + [SMALL_STATE(1571)] = 80581, + [SMALL_STATE(1572)] = 80595, + [SMALL_STATE(1573)] = 80609, + [SMALL_STATE(1574)] = 80623, + [SMALL_STATE(1575)] = 80637, + [SMALL_STATE(1576)] = 80651, + [SMALL_STATE(1577)] = 80665, + [SMALL_STATE(1578)] = 80679, + [SMALL_STATE(1579)] = 80693, + [SMALL_STATE(1580)] = 80707, + [SMALL_STATE(1581)] = 80721, + [SMALL_STATE(1582)] = 80735, + [SMALL_STATE(1583)] = 80747, + [SMALL_STATE(1584)] = 80761, + [SMALL_STATE(1585)] = 80775, + [SMALL_STATE(1586)] = 80789, + [SMALL_STATE(1587)] = 80803, + [SMALL_STATE(1588)] = 80817, + [SMALL_STATE(1589)] = 80831, + [SMALL_STATE(1590)] = 80845, + [SMALL_STATE(1591)] = 80859, + [SMALL_STATE(1592)] = 80873, + [SMALL_STATE(1593)] = 80887, + [SMALL_STATE(1594)] = 80901, + [SMALL_STATE(1595)] = 80915, + [SMALL_STATE(1596)] = 80929, + [SMALL_STATE(1597)] = 80943, + [SMALL_STATE(1598)] = 80957, + [SMALL_STATE(1599)] = 80971, + [SMALL_STATE(1600)] = 80985, + [SMALL_STATE(1601)] = 80999, + [SMALL_STATE(1602)] = 81013, + [SMALL_STATE(1603)] = 81027, + [SMALL_STATE(1604)] = 81041, + [SMALL_STATE(1605)] = 81055, + [SMALL_STATE(1606)] = 81069, + [SMALL_STATE(1607)] = 81083, + [SMALL_STATE(1608)] = 81097, + [SMALL_STATE(1609)] = 81111, + [SMALL_STATE(1610)] = 81125, + [SMALL_STATE(1611)] = 81139, + [SMALL_STATE(1612)] = 81153, + [SMALL_STATE(1613)] = 81167, + [SMALL_STATE(1614)] = 81181, + [SMALL_STATE(1615)] = 81195, + [SMALL_STATE(1616)] = 81209, + [SMALL_STATE(1617)] = 81219, + [SMALL_STATE(1618)] = 81233, + [SMALL_STATE(1619)] = 81247, + [SMALL_STATE(1620)] = 81257, + [SMALL_STATE(1621)] = 81271, + [SMALL_STATE(1622)] = 81285, + [SMALL_STATE(1623)] = 81299, + [SMALL_STATE(1624)] = 81313, + [SMALL_STATE(1625)] = 81325, + [SMALL_STATE(1626)] = 81339, + [SMALL_STATE(1627)] = 81353, + [SMALL_STATE(1628)] = 81367, + [SMALL_STATE(1629)] = 81381, + [SMALL_STATE(1630)] = 81395, + [SMALL_STATE(1631)] = 81407, + [SMALL_STATE(1632)] = 81421, + [SMALL_STATE(1633)] = 81435, + [SMALL_STATE(1634)] = 81449, + [SMALL_STATE(1635)] = 81463, + [SMALL_STATE(1636)] = 81475, + [SMALL_STATE(1637)] = 81489, + [SMALL_STATE(1638)] = 81503, + [SMALL_STATE(1639)] = 81515, + [SMALL_STATE(1640)] = 81529, + [SMALL_STATE(1641)] = 81541, + [SMALL_STATE(1642)] = 81555, + [SMALL_STATE(1643)] = 81569, + [SMALL_STATE(1644)] = 81583, + [SMALL_STATE(1645)] = 81597, + [SMALL_STATE(1646)] = 81611, + [SMALL_STATE(1647)] = 81625, + [SMALL_STATE(1648)] = 81639, + [SMALL_STATE(1649)] = 81653, + [SMALL_STATE(1650)] = 81667, + [SMALL_STATE(1651)] = 81681, + [SMALL_STATE(1652)] = 81695, + [SMALL_STATE(1653)] = 81709, + [SMALL_STATE(1654)] = 81723, + [SMALL_STATE(1655)] = 81737, + [SMALL_STATE(1656)] = 81751, + [SMALL_STATE(1657)] = 81765, + [SMALL_STATE(1658)] = 81779, + [SMALL_STATE(1659)] = 81793, + [SMALL_STATE(1660)] = 81807, + [SMALL_STATE(1661)] = 81821, + [SMALL_STATE(1662)] = 81835, + [SMALL_STATE(1663)] = 81849, + [SMALL_STATE(1664)] = 81863, + [SMALL_STATE(1665)] = 81877, + [SMALL_STATE(1666)] = 81891, + [SMALL_STATE(1667)] = 81905, + [SMALL_STATE(1668)] = 81919, + [SMALL_STATE(1669)] = 81933, + [SMALL_STATE(1670)] = 81947, + [SMALL_STATE(1671)] = 81961, + [SMALL_STATE(1672)] = 81973, + [SMALL_STATE(1673)] = 81985, + [SMALL_STATE(1674)] = 81997, + [SMALL_STATE(1675)] = 82009, + [SMALL_STATE(1676)] = 82021, + [SMALL_STATE(1677)] = 82035, + [SMALL_STATE(1678)] = 82049, + [SMALL_STATE(1679)] = 82063, + [SMALL_STATE(1680)] = 82077, + [SMALL_STATE(1681)] = 82091, + [SMALL_STATE(1682)] = 82105, + [SMALL_STATE(1683)] = 82117, + [SMALL_STATE(1684)] = 82131, + [SMALL_STATE(1685)] = 82145, + [SMALL_STATE(1686)] = 82159, + [SMALL_STATE(1687)] = 82173, + [SMALL_STATE(1688)] = 82187, + [SMALL_STATE(1689)] = 82201, + [SMALL_STATE(1690)] = 82215, + [SMALL_STATE(1691)] = 82229, + [SMALL_STATE(1692)] = 82243, + [SMALL_STATE(1693)] = 82257, + [SMALL_STATE(1694)] = 82271, + [SMALL_STATE(1695)] = 82285, + [SMALL_STATE(1696)] = 82299, + [SMALL_STATE(1697)] = 82313, + [SMALL_STATE(1698)] = 82327, + [SMALL_STATE(1699)] = 82339, + [SMALL_STATE(1700)] = 82353, + [SMALL_STATE(1701)] = 82367, + [SMALL_STATE(1702)] = 82381, + [SMALL_STATE(1703)] = 82395, + [SMALL_STATE(1704)] = 82409, + [SMALL_STATE(1705)] = 82423, + [SMALL_STATE(1706)] = 82437, + [SMALL_STATE(1707)] = 82451, + [SMALL_STATE(1708)] = 82465, + [SMALL_STATE(1709)] = 82474, + [SMALL_STATE(1710)] = 82483, + [SMALL_STATE(1711)] = 82492, + [SMALL_STATE(1712)] = 82501, + [SMALL_STATE(1713)] = 82510, + [SMALL_STATE(1714)] = 82519, + [SMALL_STATE(1715)] = 82528, + [SMALL_STATE(1716)] = 82537, + [SMALL_STATE(1717)] = 82546, + [SMALL_STATE(1718)] = 82555, + [SMALL_STATE(1719)] = 82564, + [SMALL_STATE(1720)] = 82573, + [SMALL_STATE(1721)] = 82582, + [SMALL_STATE(1722)] = 82591, + [SMALL_STATE(1723)] = 82600, + [SMALL_STATE(1724)] = 82611, + [SMALL_STATE(1725)] = 82620, + [SMALL_STATE(1726)] = 82629, + [SMALL_STATE(1727)] = 82640, + [SMALL_STATE(1728)] = 82649, + [SMALL_STATE(1729)] = 82658, + [SMALL_STATE(1730)] = 82669, + [SMALL_STATE(1731)] = 82680, + [SMALL_STATE(1732)] = 82689, + [SMALL_STATE(1733)] = 82698, + [SMALL_STATE(1734)] = 82707, + [SMALL_STATE(1735)] = 82718, + [SMALL_STATE(1736)] = 82727, + [SMALL_STATE(1737)] = 82736, + [SMALL_STATE(1738)] = 82745, + [SMALL_STATE(1739)] = 82754, + [SMALL_STATE(1740)] = 82763, + [SMALL_STATE(1741)] = 82774, + [SMALL_STATE(1742)] = 82783, + [SMALL_STATE(1743)] = 82792, + [SMALL_STATE(1744)] = 82801, + [SMALL_STATE(1745)] = 82810, + [SMALL_STATE(1746)] = 82819, + [SMALL_STATE(1747)] = 82828, + [SMALL_STATE(1748)] = 82837, + [SMALL_STATE(1749)] = 82846, + [SMALL_STATE(1750)] = 82855, + [SMALL_STATE(1751)] = 82864, + [SMALL_STATE(1752)] = 82873, + [SMALL_STATE(1753)] = 82882, + [SMALL_STATE(1754)] = 82891, + [SMALL_STATE(1755)] = 82900, + [SMALL_STATE(1756)] = 82909, + [SMALL_STATE(1757)] = 82918, + [SMALL_STATE(1758)] = 82927, + [SMALL_STATE(1759)] = 82936, + [SMALL_STATE(1760)] = 82945, + [SMALL_STATE(1761)] = 82954, + [SMALL_STATE(1762)] = 82963, + [SMALL_STATE(1763)] = 82972, + [SMALL_STATE(1764)] = 82981, + [SMALL_STATE(1765)] = 82992, + [SMALL_STATE(1766)] = 83003, + [SMALL_STATE(1767)] = 83014, + [SMALL_STATE(1768)] = 83025, + [SMALL_STATE(1769)] = 83034, + [SMALL_STATE(1770)] = 83043, + [SMALL_STATE(1771)] = 83052, + [SMALL_STATE(1772)] = 83061, + [SMALL_STATE(1773)] = 83070, + [SMALL_STATE(1774)] = 83079, + [SMALL_STATE(1775)] = 83088, + [SMALL_STATE(1776)] = 83097, + [SMALL_STATE(1777)] = 83106, + [SMALL_STATE(1778)] = 83115, + [SMALL_STATE(1779)] = 83124, + [SMALL_STATE(1780)] = 83133, + [SMALL_STATE(1781)] = 83142, + [SMALL_STATE(1782)] = 83151, + [SMALL_STATE(1783)] = 83162, + [SMALL_STATE(1784)] = 83171, + [SMALL_STATE(1785)] = 83180, + [SMALL_STATE(1786)] = 83189, + [SMALL_STATE(1787)] = 83200, + [SMALL_STATE(1788)] = 83211, + [SMALL_STATE(1789)] = 83219, + [SMALL_STATE(1790)] = 83227, + [SMALL_STATE(1791)] = 83235, + [SMALL_STATE(1792)] = 83243, + [SMALL_STATE(1793)] = 83251, + [SMALL_STATE(1794)] = 83259, + [SMALL_STATE(1795)] = 83267, + [SMALL_STATE(1796)] = 83275, + [SMALL_STATE(1797)] = 83283, + [SMALL_STATE(1798)] = 83291, + [SMALL_STATE(1799)] = 83299, + [SMALL_STATE(1800)] = 83307, + [SMALL_STATE(1801)] = 83315, + [SMALL_STATE(1802)] = 83323, + [SMALL_STATE(1803)] = 83331, + [SMALL_STATE(1804)] = 83339, + [SMALL_STATE(1805)] = 83347, + [SMALL_STATE(1806)] = 83355, + [SMALL_STATE(1807)] = 83363, + [SMALL_STATE(1808)] = 83371, + [SMALL_STATE(1809)] = 83379, + [SMALL_STATE(1810)] = 83387, + [SMALL_STATE(1811)] = 83395, + [SMALL_STATE(1812)] = 83403, + [SMALL_STATE(1813)] = 83411, + [SMALL_STATE(1814)] = 83419, + [SMALL_STATE(1815)] = 83427, + [SMALL_STATE(1816)] = 83435, + [SMALL_STATE(1817)] = 83443, + [SMALL_STATE(1818)] = 83451, + [SMALL_STATE(1819)] = 83459, + [SMALL_STATE(1820)] = 83467, + [SMALL_STATE(1821)] = 83475, + [SMALL_STATE(1822)] = 83483, + [SMALL_STATE(1823)] = 83491, + [SMALL_STATE(1824)] = 83499, + [SMALL_STATE(1825)] = 83507, + [SMALL_STATE(1826)] = 83515, + [SMALL_STATE(1827)] = 83523, + [SMALL_STATE(1828)] = 83531, + [SMALL_STATE(1829)] = 83539, + [SMALL_STATE(1830)] = 83547, + [SMALL_STATE(1831)] = 83555, + [SMALL_STATE(1832)] = 83563, + [SMALL_STATE(1833)] = 83571, + [SMALL_STATE(1834)] = 83579, + [SMALL_STATE(1835)] = 83587, + [SMALL_STATE(1836)] = 83595, + [SMALL_STATE(1837)] = 83603, + [SMALL_STATE(1838)] = 83611, + [SMALL_STATE(1839)] = 83619, + [SMALL_STATE(1840)] = 83627, + [SMALL_STATE(1841)] = 83635, + [SMALL_STATE(1842)] = 83643, + [SMALL_STATE(1843)] = 83651, + [SMALL_STATE(1844)] = 83659, + [SMALL_STATE(1845)] = 83667, + [SMALL_STATE(1846)] = 83675, + [SMALL_STATE(1847)] = 83683, + [SMALL_STATE(1848)] = 83691, + [SMALL_STATE(1849)] = 83699, + [SMALL_STATE(1850)] = 83707, + [SMALL_STATE(1851)] = 83715, + [SMALL_STATE(1852)] = 83723, + [SMALL_STATE(1853)] = 83731, + [SMALL_STATE(1854)] = 83739, + [SMALL_STATE(1855)] = 83747, + [SMALL_STATE(1856)] = 83755, + [SMALL_STATE(1857)] = 83763, + [SMALL_STATE(1858)] = 83771, + [SMALL_STATE(1859)] = 83779, + [SMALL_STATE(1860)] = 83787, + [SMALL_STATE(1861)] = 83795, + [SMALL_STATE(1862)] = 83803, + [SMALL_STATE(1863)] = 83811, + [SMALL_STATE(1864)] = 83819, + [SMALL_STATE(1865)] = 83827, + [SMALL_STATE(1866)] = 83835, + [SMALL_STATE(1867)] = 83843, + [SMALL_STATE(1868)] = 83851, + [SMALL_STATE(1869)] = 83859, + [SMALL_STATE(1870)] = 83867, + [SMALL_STATE(1871)] = 83875, + [SMALL_STATE(1872)] = 83883, + [SMALL_STATE(1873)] = 83891, + [SMALL_STATE(1874)] = 83899, + [SMALL_STATE(1875)] = 83907, + [SMALL_STATE(1876)] = 83915, + [SMALL_STATE(1877)] = 83923, + [SMALL_STATE(1878)] = 83931, + [SMALL_STATE(1879)] = 83939, + [SMALL_STATE(1880)] = 83947, + [SMALL_STATE(1881)] = 83955, + [SMALL_STATE(1882)] = 83963, + [SMALL_STATE(1883)] = 83971, + [SMALL_STATE(1884)] = 83979, + [SMALL_STATE(1885)] = 83987, + [SMALL_STATE(1886)] = 83995, + [SMALL_STATE(1887)] = 84003, + [SMALL_STATE(1888)] = 84011, + [SMALL_STATE(1889)] = 84019, + [SMALL_STATE(1890)] = 84027, + [SMALL_STATE(1891)] = 84035, + [SMALL_STATE(1892)] = 84043, + [SMALL_STATE(1893)] = 84051, + [SMALL_STATE(1894)] = 84059, + [SMALL_STATE(1895)] = 84067, + [SMALL_STATE(1896)] = 84075, + [SMALL_STATE(1897)] = 84083, + [SMALL_STATE(1898)] = 84091, + [SMALL_STATE(1899)] = 84099, + [SMALL_STATE(1900)] = 84107, + [SMALL_STATE(1901)] = 84115, + [SMALL_STATE(1902)] = 84123, + [SMALL_STATE(1903)] = 84131, + [SMALL_STATE(1904)] = 84139, + [SMALL_STATE(1905)] = 84147, + [SMALL_STATE(1906)] = 84155, + [SMALL_STATE(1907)] = 84163, + [SMALL_STATE(1908)] = 84171, + [SMALL_STATE(1909)] = 84179, + [SMALL_STATE(1910)] = 84187, + [SMALL_STATE(1911)] = 84195, + [SMALL_STATE(1912)] = 84203, + [SMALL_STATE(1913)] = 84211, + [SMALL_STATE(1914)] = 84219, + [SMALL_STATE(1915)] = 84227, + [SMALL_STATE(1916)] = 84235, + [SMALL_STATE(1917)] = 84243, + [SMALL_STATE(1918)] = 84251, + [SMALL_STATE(1919)] = 84259, + [SMALL_STATE(1920)] = 84267, + [SMALL_STATE(1921)] = 84275, + [SMALL_STATE(1922)] = 84283, + [SMALL_STATE(1923)] = 84291, + [SMALL_STATE(1924)] = 84299, + [SMALL_STATE(1925)] = 84307, + [SMALL_STATE(1926)] = 84315, + [SMALL_STATE(1927)] = 84323, + [SMALL_STATE(1928)] = 84331, + [SMALL_STATE(1929)] = 84339, + [SMALL_STATE(1930)] = 84347, + [SMALL_STATE(1931)] = 84355, + [SMALL_STATE(1932)] = 84363, + [SMALL_STATE(1933)] = 84371, + [SMALL_STATE(1934)] = 84379, + [SMALL_STATE(1935)] = 84387, + [SMALL_STATE(1936)] = 84395, + [SMALL_STATE(1937)] = 84403, +}; + +static const TSParseActionEntry ts_parse_actions[] = { + [0] = {.entry = {.count = 0, .reusable = false}}, + [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [89] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(444), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(104), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(611), + [100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(49), + [103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(334), + [106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(358), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(279), + [112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(337), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1714), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1716), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1719), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(383), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(51), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(324), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(597), + [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(341), + [139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(322), + [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1923), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(321), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(441), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(132), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(398), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(400), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(614), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1195), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(794), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(120), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(794), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(445), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1247), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(433), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(50), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(325), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(519), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(419), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(314), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1928), + [208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(223), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(660), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1, .production_id = 1), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(224), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(400), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(614), + [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 71), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 71), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 83), + [849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 83), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 84), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 84), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 96), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 96), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 4), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 11), + [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .dynamic_precedence = -1, .production_id = 12), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [1045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [1079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expression_lhs, 1), + [1088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [1127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 42), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 42), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1, .production_id = 2), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 2), + [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 25), + [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 25), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 43), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 43), + [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 3), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 3), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 3), + [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 3), + [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 54), + [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 54), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), + [1189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_splat_type, 2), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_splat_pattern, 2), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_splat_type, 2), + [1201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 54), + [1203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 54), + [1205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 19), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 19), + [1209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 62), + [1211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 62), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), + [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), SHIFT_REPEAT(386), + [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 60), SHIFT_REPEAT(408), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 43), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 43), + [1250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 25), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 25), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 48), + [1260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 48), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 67), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 67), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 29), + [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 29), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 80), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 80), + [1282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 40), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 40), + [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 90), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 90), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 76), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 3, .production_id = 63), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 3, .production_id = 63), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 92), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 92), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 66), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 66), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 74), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 74), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 70), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 70), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 75), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 75), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 49), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 49), + [1356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 10), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 10), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 68), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 68), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 47), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 47), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 46), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 46), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 77), + [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 77), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 45), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 45), + [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 78), + [1382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 78), + [1384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, .production_id = 111), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 10, .production_id = 111), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 41), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 41), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 79), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 61), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 61), + [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 81), + [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 81), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 2), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 2), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 44), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 44), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 59), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 59), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 82), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 82), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 30), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 30), + [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 50), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 50), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 65), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 65), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 64), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 64), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 85), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 85), + [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 27), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 27), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 104), + [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 104), + [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 69), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 69), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_block, 1), + [1454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_block, 1), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 89), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 89), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 91), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 91), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 93), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 93), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 94), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 94), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 95), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 95), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 101), + [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 101), + [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 102), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 102), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 103), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 103), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 17), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 17), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 7), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 7), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [1728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 20), + [1730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 20), + [1732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 36), + [1734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 36), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 8), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 8), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 31), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 31), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 31), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 31), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 31), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 31), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 23), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 23), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 23), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 23), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 23), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 23), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), + [1942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(641), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), + [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1936), + [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(641), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 9), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 9), + [1957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(632), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1809), + [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(632), + [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(663), + [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1851), + [1972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(663), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), + [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), + [1979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(606), + [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(694), + [1985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1930), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(694), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 3), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(635), + [1996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1894), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(635), + [2002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(680), + [2005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1795), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(680), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(685), + [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1877), + [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(685), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(604), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 4), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 18), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 13), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 33), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), + [2151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(399), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(389), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(378), + [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(178), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1375), + [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1375), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(344), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(370), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), + [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 18), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 4), + [2255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(406), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 6), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .dynamic_precedence = -1, .production_id = 4), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(353), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 34), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [2327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), + [2329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1346), + [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(1346), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 4), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 5), SHIFT(275), + [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 53), + [2402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(428), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1935), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(576), + [2411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_content, 1), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [2463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(343), + [2466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1803), + [2469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(555), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 58), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 58), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 52), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 72), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 96), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 57), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 57), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 39), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 39), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 5), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5, .production_id = 56), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5, .production_id = 56), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 83), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 71), + [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_type, 3), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 14), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 26), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6, .production_id = 73), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6, .production_id = 73), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 14), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 32), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 38), + [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 38), + [2566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type, 3), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 84), + [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 15), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(340), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3, .production_id = 22), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3, .production_id = 22), + [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(323), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(290), + [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4, .production_id = 22), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4, .production_id = 22), + [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [2619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(605), + [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 86), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 13), + [2644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(398), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 33), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(182), + [2706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [2708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1510), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(403), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 6), + [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 5), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 88), SHIFT_REPEAT(404), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 88), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 24), + [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 24), SHIFT_REPEAT(384), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 60), SHIFT_REPEAT(396), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 2, .production_id = 60), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 11), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .dynamic_precedence = -1, .production_id = 12), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(98), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 6), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [2864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(297), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(299), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(374), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(602), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(203), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1220), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 55), SHIFT_REPEAT(282), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 55), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_repeat1, 2), SHIFT_REPEAT(151), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [3056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 28), SHIFT_REPEAT(401), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 28), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(333), + [3068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(601), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [3077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(248), + [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1221), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(331), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(310), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 37), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 1, .production_id = 37), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(603), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 112), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 110), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 113), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 107), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 23), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 114), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 115), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 116), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_block_repeat1, 1, .production_id = 40), + [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [3168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [3172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 97), + [3178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 98), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 87), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 51), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 106), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 109), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 108), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 99), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 100), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 17), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 16), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 105), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 23), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [3290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [3292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [3334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [3444] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_starlark_external_scanner_create(void); +void tree_sitter_starlark_external_scanner_destroy(void *); +bool tree_sitter_starlark_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_starlark_external_scanner_serialize(void *, char *); +void tree_sitter_starlark_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_starlark(void) { + static const TSLanguage language = { + .version = LANGUAGE_VERSION, + .symbol_count = SYMBOL_COUNT, + .alias_count = ALIAS_COUNT, + .token_count = TOKEN_COUNT, + .external_token_count = EXTERNAL_TOKEN_COUNT, + .state_count = STATE_COUNT, + .large_state_count = LARGE_STATE_COUNT, + .production_id_count = PRODUCTION_ID_COUNT, + .field_count = FIELD_COUNT, + .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, + .parse_table = &ts_parse_table[0][0], + .small_parse_table = ts_small_parse_table, + .small_parse_table_map = ts_small_parse_table_map, + .parse_actions = ts_parse_actions, + .symbol_names = ts_symbol_names, + .field_names = ts_field_names, + .field_map_slices = ts_field_map_slices, + .field_map_entries = ts_field_map_entries, + .symbol_metadata = ts_symbol_metadata, + .public_symbol_map = ts_symbol_map, + .alias_map = ts_non_terminal_alias_map, + .alias_sequences = &ts_alias_sequences[0][0], + .lex_modes = ts_lex_modes, + .lex_fn = ts_lex, + .keyword_lex_fn = ts_lex_keywords, + .keyword_capture_token = sym_identifier, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_starlark_external_scanner_create, + tree_sitter_starlark_external_scanner_destroy, + tree_sitter_starlark_external_scanner_scan, + tree_sitter_starlark_external_scanner_serialize, + tree_sitter_starlark_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/starlark/parser.h b/starlark/parser.h new file mode 100644 index 00000000..d2103259 --- /dev/null +++ b/starlark/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSStateId; +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; \ + eof = lexer->eof(lexer); + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value) \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = (state_value), \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/starlark/scanner.c b/starlark/scanner.c new file mode 100644 index 00000000..3906d5f6 --- /dev/null +++ b/starlark/scanner.c @@ -0,0 +1,524 @@ +#include +#include +#include +#include +#include "parser.h" + +#define MAX(a, b) ((a) > (b) ? (a) : (b)) + +#define VEC_RESIZE(vec, _cap) \ + void *tmp = realloc((vec).data, (_cap) * sizeof((vec).data[0])); \ + assert(tmp != NULL); \ + (vec).data = tmp; \ + (vec).cap = (_cap); + +#define VEC_GROW(vec, _cap) \ + if ((vec).cap < (_cap)) { \ + VEC_RESIZE((vec), (_cap)); \ + } + +#define VEC_PUSH(vec, el) \ + if ((vec).cap == (vec).len) { \ + VEC_RESIZE((vec), MAX(16, (vec).len * 2)); \ + } \ + (vec).data[(vec).len++] = (el); + +#define VEC_POP(vec) (vec).len--; + +#define VEC_NEW \ + { .len = 0, .cap = 0, .data = NULL } + +#define VEC_BACK(vec) ((vec).data[(vec).len - 1]) + +#define VEC_FREE(vec) \ + { \ + if ((vec).data != NULL) \ + free((vec).data); \ + } + +#define VEC_CLEAR(vec) (vec).len = 0; + +enum TokenType { + NEWLINE, + INDENT, + DEDENT, + STRING_START, + STRING_CONTENT, + ESCAPE_INTERPOLATION, + STRING_END, + COMMENT, + CLOSE_PAREN, + CLOSE_BRACKET, + CLOSE_BRACE, +}; + +typedef enum { + SingleQuote = 1 << 0, + DoubleQuote = 1 << 1, + BackQuote = 1 << 2, + Raw = 1 << 3, + Format = 1 << 4, + Triple = 1 << 5, + Bytes = 1 << 6, +} Flags; + +typedef struct { + char flags; +} Delimiter; + +static inline Delimiter new_delimiter() { return (Delimiter){0}; } + +static inline bool is_format(Delimiter *delimiter) { + return delimiter->flags & Format; +} + +static inline bool is_raw(Delimiter *delimiter) { + return delimiter->flags & Raw; +} + +static inline bool is_triple(Delimiter *delimiter) { + return delimiter->flags & Triple; +} + +static inline bool is_bytes(Delimiter *delimiter) { + return delimiter->flags & Bytes; +} + +static inline int32_t end_character(Delimiter *delimiter) { + if (delimiter->flags & SingleQuote) { + return '\''; + } + if (delimiter->flags & DoubleQuote) { + return '"'; + } + if (delimiter->flags & BackQuote) { + return '`'; + } + return 0; +} + +static inline void set_format(Delimiter *delimiter) { + delimiter->flags |= Format; +} + +static inline void set_raw(Delimiter *delimiter) { delimiter->flags |= Raw; } + +static inline void set_triple(Delimiter *delimiter) { + delimiter->flags |= Triple; +} + +static inline void set_bytes(Delimiter *delimiter) { + delimiter->flags |= Bytes; +} + +static inline void set_end_character(Delimiter *delimiter, int32_t character) { + switch (character) { + case '\'': + delimiter->flags |= SingleQuote; + break; + case '"': + delimiter->flags |= DoubleQuote; + break; + case '`': + delimiter->flags |= BackQuote; + break; + default: + assert(false); + } +} + +typedef struct { + uint32_t len; + uint32_t cap; + uint16_t *data; +} indent_vec; + +static indent_vec indent_vec_new() { + indent_vec vec = VEC_NEW; + vec.data = calloc(1, sizeof(uint16_t)); + vec.cap = 1; + return vec; +} + +typedef struct { + uint32_t len; + uint32_t cap; + Delimiter *data; +} delimiter_vec; + +static delimiter_vec delimiter_vec_new() { + delimiter_vec vec = VEC_NEW; + vec.data = calloc(1, sizeof(Delimiter)); + vec.cap = 1; + return vec; +} + +typedef struct { + indent_vec indents; + delimiter_vec delimiters; + bool inside_f_string; +} Scanner; + +static inline void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + +static inline void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + +bool tree_sitter_starlark_external_scanner_scan(void *payload, TSLexer *lexer, + const bool *valid_symbols) { + Scanner *scanner = (Scanner *)payload; + + bool error_recovery_mode = + valid_symbols[STRING_CONTENT] && valid_symbols[INDENT]; + bool within_brackets = valid_symbols[CLOSE_BRACE] || + valid_symbols[CLOSE_PAREN] || + valid_symbols[CLOSE_BRACKET]; + + bool advanced_once = false; + if (valid_symbols[ESCAPE_INTERPOLATION] && scanner->delimiters.len > 0 && + (lexer->lookahead == '{' || lexer->lookahead == '}') && + !error_recovery_mode) { + Delimiter delimiter = VEC_BACK(scanner->delimiters); + if (is_format(&delimiter)) { + lexer->mark_end(lexer); + bool is_left_brace = lexer->lookahead == '{'; + advance(lexer); + advanced_once = true; + if ((lexer->lookahead == '{' && is_left_brace) || + (lexer->lookahead == '}' && !is_left_brace)) { + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = ESCAPE_INTERPOLATION; + return true; + } + return false; + } + } + + if (valid_symbols[STRING_CONTENT] && scanner->delimiters.len > 0 && + !error_recovery_mode) { + Delimiter delimiter = VEC_BACK(scanner->delimiters); + int32_t end_char = end_character(&delimiter); + bool has_content = advanced_once; + while (lexer->lookahead) { + if ((advanced_once || lexer->lookahead == '{' || + lexer->lookahead == '}') && + is_format(&delimiter)) { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + if (lexer->lookahead == '\\') { + if (is_raw(&delimiter)) { + // Step over the backslash. + advance(lexer); + // Step over any escaped quotes. + if (lexer->lookahead == end_character(&delimiter) || + lexer->lookahead == '\\') { + advance(lexer); + } + // Step over newlines + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead == '\n') { + advance(lexer); + } + } else if (lexer->lookahead == '\n') { + advance(lexer); + } + continue; + } + if (is_bytes(&delimiter)) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == 'N' || lexer->lookahead == 'u' || + lexer->lookahead == 'U') { + // In bytes string, \N{...}, \uXXXX and \UXXXXXXXX are + // not escape sequences + // https://docs.starlark.org/3/reference/lexical_analysis.html#string-and-bytes-literals + advance(lexer); + } else { + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + } else { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + } else if (lexer->lookahead == end_char) { + if (is_triple(&delimiter)) { + lexer->mark_end(lexer); + advance(lexer); + if (lexer->lookahead == end_char) { + advance(lexer); + if (lexer->lookahead == end_char) { + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + } else { + advance(lexer); + lexer->mark_end(lexer); + VEC_POP(scanner->delimiters); + lexer->result_symbol = STRING_END; + scanner->inside_f_string = false; + } + return true; + } + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + } else { + advance(lexer); + VEC_POP(scanner->delimiters); + lexer->result_symbol = STRING_END; + scanner->inside_f_string = false; + } + lexer->mark_end(lexer); + return true; + + } else if (lexer->lookahead == '\n' && has_content && + !is_triple(&delimiter)) { + return false; + } + advance(lexer); + has_content = true; + } + } + + lexer->mark_end(lexer); + + bool found_end_of_line = false; + uint32_t indent_length = 0; + int32_t first_comment_indent_length = -1; + for (;;) { + if (lexer->lookahead == '\n') { + found_end_of_line = true; + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == ' ') { + indent_length++; + skip(lexer); + } else if (lexer->lookahead == '\r' || lexer->lookahead == '\f') { + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == '\t') { + indent_length += 8; + skip(lexer); + } else if (lexer->lookahead == '#') { + // If we haven't found an EOL yet, + // then this is a comment after an expression: + // foo = bar # comment + // Just return, since we don't want to generate an indent/dedent + // token. + if (!found_end_of_line) { + return false; + } + if (first_comment_indent_length == -1) { + first_comment_indent_length = (int32_t)indent_length; + } + while (lexer->lookahead && lexer->lookahead != '\n') { + skip(lexer); + } + skip(lexer); + indent_length = 0; + } else if (lexer->lookahead == '\\') { + skip(lexer); + if (lexer->lookahead == '\r') { + skip(lexer); + } + if (lexer->lookahead == '\n' || lexer->eof(lexer)) { + skip(lexer); + } else { + return false; + } + } else if (lexer->eof(lexer)) { + indent_length = 0; + found_end_of_line = true; + break; + } else { + break; + } + } + + if (found_end_of_line) { + if (scanner->indents.len > 0) { + uint16_t current_indent_length = VEC_BACK(scanner->indents); + + if (valid_symbols[INDENT] && + indent_length > current_indent_length) { + VEC_PUSH(scanner->indents, indent_length); + lexer->result_symbol = INDENT; + return true; + } + + bool next_tok_is_string_start = lexer->lookahead == '\"' || + lexer->lookahead == '\'' || + lexer->lookahead == '`'; + + if ((valid_symbols[DEDENT] || + (!valid_symbols[NEWLINE] && + !(valid_symbols[STRING_START] && next_tok_is_string_start) && + !within_brackets)) && + indent_length < current_indent_length && + !scanner->inside_f_string && + + // Wait to create a dedent token until we've consumed any + // comments + // whose indentation matches the current block. + first_comment_indent_length < (int32_t)current_indent_length) { + VEC_POP(scanner->indents); + lexer->result_symbol = DEDENT; + return true; + } + } + + if (valid_symbols[NEWLINE] && !error_recovery_mode) { + lexer->result_symbol = NEWLINE; + return true; + } + } + + if (first_comment_indent_length == -1 && valid_symbols[STRING_START]) { + Delimiter delimiter = new_delimiter(); + + bool has_flags = false; + while (lexer->lookahead) { + if (lexer->lookahead == 'f' || lexer->lookahead == 'F') { + set_format(&delimiter); + } else if (lexer->lookahead == 'r' || lexer->lookahead == 'R') { + set_raw(&delimiter); + } else if (lexer->lookahead == 'b' || lexer->lookahead == 'B') { + set_bytes(&delimiter); + } else if (lexer->lookahead != 'u' && lexer->lookahead != 'U') { + break; + } + has_flags = true; + advance(lexer); + } + + if (lexer->lookahead == '`') { + set_end_character(&delimiter, '`'); + advance(lexer); + lexer->mark_end(lexer); + } else if (lexer->lookahead == '\'') { + set_end_character(&delimiter, '\''); + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '\'') { + advance(lexer); + if (lexer->lookahead == '\'') { + advance(lexer); + lexer->mark_end(lexer); + set_triple(&delimiter); + } + } + } else if (lexer->lookahead == '"') { + set_end_character(&delimiter, '"'); + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '"') { + advance(lexer); + if (lexer->lookahead == '"') { + advance(lexer); + lexer->mark_end(lexer); + set_triple(&delimiter); + } + } + } + + if (end_character(&delimiter)) { + VEC_PUSH(scanner->delimiters, delimiter); + lexer->result_symbol = STRING_START; + scanner->inside_f_string = is_format(&delimiter); + return true; + } + if (has_flags) { + return false; + } + } + + return false; +} + +unsigned tree_sitter_starlark_external_scanner_serialize(void *payload, + char *buffer) { + Scanner *scanner = (Scanner *)payload; + + size_t size = 0; + + buffer[size++] = (char)scanner->inside_f_string; + + size_t delimiter_count = scanner->delimiters.len; + if (delimiter_count > UINT8_MAX) { + delimiter_count = UINT8_MAX; + } + buffer[size++] = (char)delimiter_count; + + if (delimiter_count > 0) { + memcpy(&buffer[size], scanner->delimiters.data, delimiter_count); + } + size += delimiter_count; + + int iter = 1; + for (; iter < scanner->indents.len && + size < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; + ++iter) { + buffer[size++] = (char)scanner->indents.data[iter]; + } + + return size; +} + +void tree_sitter_starlark_external_scanner_deserialize(void *payload, + const char *buffer, + unsigned length) { + Scanner *scanner = (Scanner *)payload; + + VEC_CLEAR(scanner->delimiters); + VEC_CLEAR(scanner->indents); + VEC_PUSH(scanner->indents, 0); + + if (length > 0) { + size_t size = 0; + + scanner->inside_f_string = (bool)buffer[size++]; + + size_t delimiter_count = (uint8_t)buffer[size++]; + if (delimiter_count > 0) { + VEC_GROW(scanner->delimiters, delimiter_count); + scanner->delimiters.len = delimiter_count; + memcpy(scanner->delimiters.data, &buffer[size], delimiter_count); + size += delimiter_count; + } + + for (; size < length; size++) { + VEC_PUSH(scanner->indents, (unsigned char)buffer[size]); + } + } +} + +void *tree_sitter_starlark_external_scanner_create() { +#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) + _Static_assert(sizeof(Delimiter) == sizeof(char), ""); +#else + assert(sizeof(Delimiter) == sizeof(char)); +#endif + Scanner *scanner = calloc(1, sizeof(Scanner)); + scanner->indents = indent_vec_new(); + scanner->delimiters = delimiter_vec_new(); + tree_sitter_starlark_external_scanner_deserialize(scanner, NULL, 0); + return scanner; +} + +void tree_sitter_starlark_external_scanner_destroy(void *payload) { + Scanner *scanner = (Scanner *)payload; + VEC_FREE(scanner->indents); + VEC_FREE(scanner->delimiters); + free(scanner); +}