diff --git a/Makefile.cbm b/Makefile.cbm index 6bc1eb12..6798f792 100644 --- a/Makefile.cbm +++ b/Makefile.cbm @@ -516,7 +516,7 @@ frontend: cd graph-ui && npm ci && npm run build embed: frontend - scripts/embed-frontend.sh graph-ui/dist $(BUILD_DIR)/embedded + sh scripts/embed-frontend.sh graph-ui/dist $(BUILD_DIR)/embedded cbm-with-ui: embed $(OBJS_VENDORED_PROD) $(CC) $(CFLAGS_PROD) -o $(BUILD_DIR)/codebase-memory-mcp \ diff --git a/internal/cbm/cbm.h b/internal/cbm/cbm.h index 6805ce26..6b1085e8 100644 --- a/internal/cbm/cbm.h +++ b/internal/cbm/cbm.h @@ -166,6 +166,7 @@ typedef enum { CBM_LANG_SOSL, CBM_LANG_KUSTOMIZE, // kustomization.yaml — Kubernetes overlay tool CBM_LANG_K8S, // Generic Kubernetes manifest (apiVersion: detected) + CBM_LANG_PINE, // Pine Script CBM_LANG_COUNT } CBMLanguage; diff --git a/internal/cbm/grammar_pine.c b/internal/cbm/grammar_pine.c new file mode 100644 index 00000000..ace03f7c --- /dev/null +++ b/internal/cbm/grammar_pine.c @@ -0,0 +1,3 @@ +// Vendored tree-sitter grammar: pine +#include "vendored/grammars/pine/parser.c" +#include "vendored/grammars/pine/scanner.c" diff --git a/internal/cbm/lang_specs.c b/internal/cbm/lang_specs.c index 9cb6caa3..82ce607f 100644 --- a/internal/cbm/lang_specs.c +++ b/internal/cbm/lang_specs.c @@ -161,6 +161,7 @@ extern const TSLanguage *tree_sitter_gomod(void); extern const TSLanguage *tree_sitter_apex(void); extern const TSLanguage *tree_sitter_soql(void); extern const TSLanguage *tree_sitter_sosl(void); +extern const TSLanguage *tree_sitter_pine(void); // -- Empty sentinel -- static const char *empty_types[] = {NULL}; @@ -1478,6 +1479,16 @@ static const char *sosl_module_types[] = {"source_file", NULL}; static const char *make_func_types[] = {"recipe", NULL}; static const char *make_import_types[] = {"include", "include_directive", NULL}; + +// ==================== PINE SCRIPT ==================== +static const char *pine_func_types[] = {"function_declaration_statement", NULL}; +static const char *pine_class_types[] = {"type_definition_statement", NULL}; +static const char *pine_module_types[] = {"source_file", NULL}; +static const char *pine_call_types[] = {"call", NULL}; +static const char *pine_var_types[] = {"variable_definition_statement", "tuple_declaration_statement", NULL}; +static const char *pine_branch_types[] = {"if_statement", "switch_statement", "for_statement", "for_in_statement", "while_statement", NULL}; +static const char *pine_assign_types[] = {"reassignment_statement", NULL}; + // ==================== SPEC TABLE ==================== static const CBMLangSpec lang_specs[CBM_LANG_COUNT] = { @@ -2402,6 +2413,11 @@ static const CBMLangSpec lang_specs[CBM_LANG_COUNT] = { empty_types, empty_types, empty_types, empty_types, empty_types, empty_types, empty_types, NULL, empty_types, NULL, NULL, tree_sitter_yaml}, + // CBM_LANG_PINE + [CBM_LANG_PINE] = {CBM_LANG_PINE, pine_func_types, pine_class_types, empty_types, pine_module_types, + pine_call_types, empty_types, empty_types, pine_branch_types, pine_var_types, + pine_assign_types, empty_types, NULL, empty_types, NULL, NULL, tree_sitter_pine}, + }; _Static_assert(sizeof(lang_specs) / sizeof(lang_specs[0]) == CBM_LANG_COUNT, diff --git a/internal/cbm/vendored/grammars/pine/parser.c b/internal/cbm/vendored/grammars/pine/parser.c new file mode 100644 index 00000000..aea3a983 --- /dev/null +++ b/internal/cbm/vendored/grammars/pine/parser.c @@ -0,0 +1,46174 @@ +#include "tree_sitter/parser.h" + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#ifdef _MSC_VER +#pragma optimize("", off) +#elif defined(__clang__) +#pragma clang optimize off +#elif defined(__GNUC__) +#pragma GCC optimize ("O0") +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1152 +#define LARGE_STATE_COUNT 42 +#define SYMBOL_COUNT 139 +#define ALIAS_COUNT 0 +#define TOKEN_COUNT 70 +#define EXTERNAL_TOKEN_COUNT 3 +#define FIELD_COUNT 50 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 87 + +enum ts_symbol_identifiers { + anon_sym_COMMA = 1, + anon_sym_if = 2, + anon_sym_else = 3, + anon_sym_switch = 4, + anon_sym_for = 5, + anon_sym_EQ = 6, + anon_sym_to = 7, + anon_sym_by = 8, + anon_sym_LBRACK = 9, + anon_sym_RBRACK = 10, + anon_sym_in = 11, + anon_sym_while = 12, + sym_break = 13, + sym_continue = 14, + anon_sym_export = 15, + anon_sym_type = 16, + anon_sym_COLON_EQ = 17, + anon_sym_PLUS_EQ = 18, + anon_sym_DASH_EQ = 19, + anon_sym_STAR_EQ = 20, + anon_sym_SLASH_EQ = 21, + anon_sym_PERCENT_EQ = 22, + anon_sym_varip = 23, + anon_sym_var = 24, + anon_sym_method = 25, + anon_sym_EQ_GT = 26, + anon_sym_LPAREN = 27, + anon_sym_RPAREN = 28, + anon_sym_import = 29, + anon_sym_as = 30, + aux_sym_import_path_token1 = 31, + anon_sym_SLASH = 32, + anon_sym_DOT = 33, + anon_sym_QMARK = 34, + anon_sym_COLON = 35, + anon_sym_and = 36, + anon_sym_or = 37, + anon_sym_PLUS = 38, + anon_sym_DASH = 39, + anon_sym_STAR = 40, + anon_sym_PERCENT = 41, + anon_sym_not = 42, + anon_sym_LT = 43, + anon_sym_LT_EQ = 44, + anon_sym_EQ_EQ = 45, + anon_sym_BANG_EQ = 46, + anon_sym_GT = 47, + anon_sym_GT_EQ = 48, + anon_sym_series = 49, + anon_sym_const = 50, + anon_sym_simple = 51, + sym_identifier = 52, + sym_integer = 53, + sym_float = 54, + sym_color = 55, + sym_true = 56, + sym_false = 57, + anon_sym_SQUOTE = 58, + aux_sym_single_quotted_string_token1 = 59, + anon_sym_DQUOTE = 60, + aux_sym_double_quotted_string_token1 = 61, + sym_escape_sequence = 62, + anon_sym_SLASH_SLASH = 63, + aux_sym_comment_token1 = 64, + sym_annotations = 65, + sym_line_continuation = 66, + sym__indent = 67, + sym__dedent = 68, + sym__newline = 69, + sym_source_file = 70, + sym_statement = 71, + sym_simple_statements = 72, + sym_simple_statement = 73, + sym__simple_stmt = 74, + sym_if_statement = 75, + sym_else_if_clause = 76, + sym_else_clause = 77, + sym_switch_statement = 78, + sym_case_clause = 79, + sym_for_statement = 80, + sym_for_in_statement = 81, + sym_while_statement = 82, + sym_type_definition_statement = 83, + sym_variable_definition = 84, + sym_variable_definition_statement = 85, + sym_tuple_declaration = 86, + sym_tuple_declaration_statement = 87, + sym__lhs = 88, + sym_reassignment = 89, + sym_reassignment_statement = 90, + sym_declaration_mode = 91, + sym_function_declaration_statement = 92, + sym__argument_list_with_type_optional = 93, + sym_import = 94, + sym_import_path = 95, + sym_expression = 96, + sym_primary_expression = 97, + sym_literals = 98, + sym_template_function = 99, + sym_attribute = 100, + sym_keyword_argument = 101, + sym_argument_list = 102, + sym_call = 103, + sym_subscript = 104, + sym_conditional_expression = 105, + sym_tuple = 106, + sym_parenthesized_expression = 107, + sym_logical_operation = 108, + sym_math_operation = 109, + sym_unary_operation = 110, + sym_comparison_operation = 111, + sym_type = 112, + sym_base_type = 113, + sym_array_type = 114, + sym_generic_type = 115, + sym_template_argument_list = 116, + sym_type_qualifier = 117, + sym_string = 118, + sym_single_quotted_string = 119, + sym_double_quotted_string = 120, + sym__suite = 121, + sym_block = 122, + sym_comment = 123, + aux_sym_source_file_repeat1 = 124, + aux_sym_simple_statements_repeat1 = 125, + aux_sym_if_statement_repeat1 = 126, + aux_sym_switch_statement_repeat1 = 127, + aux_sym_switch_statement_repeat2 = 128, + aux_sym_type_definition_statement_repeat1 = 129, + aux_sym_tuple_declaration_repeat1 = 130, + aux_sym__argument_list_with_type_optional_repeat1 = 131, + aux_sym_argument_list_repeat1 = 132, + aux_sym_tuple_repeat1 = 133, + aux_sym_base_type_repeat1 = 134, + aux_sym_template_argument_list_repeat1 = 135, + aux_sym_single_quotted_string_repeat1 = 136, + aux_sym_double_quotted_string_repeat1 = 137, + aux_sym_comment_repeat1 = 138, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [anon_sym_COMMA] = ",", + [anon_sym_if] = "if", + [anon_sym_else] = "else", + [anon_sym_switch] = "switch", + [anon_sym_for] = "for", + [anon_sym_EQ] = "=", + [anon_sym_to] = "to", + [anon_sym_by] = "by", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_in] = "in", + [anon_sym_while] = "while", + [sym_break] = "break", + [sym_continue] = "continue", + [anon_sym_export] = "export", + [anon_sym_type] = "type", + [anon_sym_COLON_EQ] = ":=", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_varip] = "varip", + [anon_sym_var] = "var", + [anon_sym_method] = "method", + [anon_sym_EQ_GT] = "=>", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_import] = "import", + [anon_sym_as] = "as", + [aux_sym_import_path_token1] = "import_path_token1", + [anon_sym_SLASH] = "/", + [anon_sym_DOT] = ".", + [anon_sym_QMARK] = "\?", + [anon_sym_COLON] = ":", + [anon_sym_and] = "and", + [anon_sym_or] = "or", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_STAR] = "*", + [anon_sym_PERCENT] = "%", + [anon_sym_not] = "not", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT] = ">", + [anon_sym_GT_EQ] = ">=", + [anon_sym_series] = "series", + [anon_sym_const] = "const", + [anon_sym_simple] = "simple", + [sym_identifier] = "identifier", + [sym_integer] = "integer", + [sym_float] = "float", + [sym_color] = "color", + [sym_true] = "true", + [sym_false] = "false", + [anon_sym_SQUOTE] = "'", + [aux_sym_single_quotted_string_token1] = "string_content", + [anon_sym_DQUOTE] = "\"", + [aux_sym_double_quotted_string_token1] = "string_content", + [sym_escape_sequence] = "escape_sequence", + [anon_sym_SLASH_SLASH] = "//", + [aux_sym_comment_token1] = "comment_content", + [sym_annotations] = "annotations", + [sym_line_continuation] = "line_continuation", + [sym__indent] = "_indent", + [sym__dedent] = "_dedent", + [sym__newline] = "_newline", + [sym_source_file] = "source_file", + [sym_statement] = "statement", + [sym_simple_statements] = "simple_statements", + [sym_simple_statement] = "simple_statement", + [sym__simple_stmt] = "_simple_stmt", + [sym_if_statement] = "if_statement", + [sym_else_if_clause] = "else_if_clause", + [sym_else_clause] = "else_clause", + [sym_switch_statement] = "switch_statement", + [sym_case_clause] = "case_clause", + [sym_for_statement] = "for_statement", + [sym_for_in_statement] = "for_in_statement", + [sym_while_statement] = "while_statement", + [sym_type_definition_statement] = "type_definition_statement", + [sym_variable_definition] = "variable_definition", + [sym_variable_definition_statement] = "variable_definition_statement", + [sym_tuple_declaration] = "tuple_declaration", + [sym_tuple_declaration_statement] = "tuple_declaration_statement", + [sym__lhs] = "_lhs", + [sym_reassignment] = "reassignment", + [sym_reassignment_statement] = "reassignment_statement", + [sym_declaration_mode] = "declaration_mode", + [sym_function_declaration_statement] = "function_declaration_statement", + [sym__argument_list_with_type_optional] = "_argument_list_with_type_optional", + [sym_import] = "import", + [sym_import_path] = "import_path", + [sym_expression] = "expression", + [sym_primary_expression] = "primary_expression", + [sym_literals] = "literals", + [sym_template_function] = "template_function", + [sym_attribute] = "attribute", + [sym_keyword_argument] = "keyword_argument", + [sym_argument_list] = "argument_list", + [sym_call] = "call", + [sym_subscript] = "subscript", + [sym_conditional_expression] = "conditional_expression", + [sym_tuple] = "tuple", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym_logical_operation] = "logical_operation", + [sym_math_operation] = "math_operation", + [sym_unary_operation] = "unary_operation", + [sym_comparison_operation] = "comparison_operation", + [sym_type] = "type", + [sym_base_type] = "base_type", + [sym_array_type] = "array_type", + [sym_generic_type] = "generic_type", + [sym_template_argument_list] = "template_argument_list", + [sym_type_qualifier] = "type_qualifier", + [sym_string] = "string", + [sym_single_quotted_string] = "single_quotted_string", + [sym_double_quotted_string] = "double_quotted_string", + [sym__suite] = "_suite", + [sym_block] = "block", + [sym_comment] = "comment", + [aux_sym_source_file_repeat1] = "source_file_repeat1", + [aux_sym_simple_statements_repeat1] = "simple_statements_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_switch_statement_repeat1] = "switch_statement_repeat1", + [aux_sym_switch_statement_repeat2] = "switch_statement_repeat2", + [aux_sym_type_definition_statement_repeat1] = "type_definition_statement_repeat1", + [aux_sym_tuple_declaration_repeat1] = "tuple_declaration_repeat1", + [aux_sym__argument_list_with_type_optional_repeat1] = "_argument_list_with_type_optional_repeat1", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_tuple_repeat1] = "tuple_repeat1", + [aux_sym_base_type_repeat1] = "base_type_repeat1", + [aux_sym_template_argument_list_repeat1] = "template_argument_list_repeat1", + [aux_sym_single_quotted_string_repeat1] = "single_quotted_string_repeat1", + [aux_sym_double_quotted_string_repeat1] = "double_quotted_string_repeat1", + [aux_sym_comment_repeat1] = "comment_repeat1", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_if] = anon_sym_if, + [anon_sym_else] = anon_sym_else, + [anon_sym_switch] = anon_sym_switch, + [anon_sym_for] = anon_sym_for, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_to] = anon_sym_to, + [anon_sym_by] = anon_sym_by, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_in] = anon_sym_in, + [anon_sym_while] = anon_sym_while, + [sym_break] = sym_break, + [sym_continue] = sym_continue, + [anon_sym_export] = anon_sym_export, + [anon_sym_type] = anon_sym_type, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [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_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_varip] = anon_sym_varip, + [anon_sym_var] = anon_sym_var, + [anon_sym_method] = anon_sym_method, + [anon_sym_EQ_GT] = anon_sym_EQ_GT, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_import] = anon_sym_import, + [anon_sym_as] = anon_sym_as, + [aux_sym_import_path_token1] = aux_sym_import_path_token1, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_QMARK] = anon_sym_QMARK, + [anon_sym_COLON] = anon_sym_COLON, + [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_STAR] = anon_sym_STAR, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_not] = anon_sym_not, + [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] = anon_sym_GT, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_series] = anon_sym_series, + [anon_sym_const] = anon_sym_const, + [anon_sym_simple] = anon_sym_simple, + [sym_identifier] = sym_identifier, + [sym_integer] = sym_integer, + [sym_float] = sym_float, + [sym_color] = sym_color, + [sym_true] = sym_true, + [sym_false] = sym_false, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, + [aux_sym_single_quotted_string_token1] = aux_sym_single_quotted_string_token1, + [anon_sym_DQUOTE] = anon_sym_DQUOTE, + [aux_sym_double_quotted_string_token1] = aux_sym_single_quotted_string_token1, + [sym_escape_sequence] = sym_escape_sequence, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [aux_sym_comment_token1] = aux_sym_comment_token1, + [sym_annotations] = sym_annotations, + [sym_line_continuation] = sym_line_continuation, + [sym__indent] = sym__indent, + [sym__dedent] = sym__dedent, + [sym__newline] = sym__newline, + [sym_source_file] = sym_source_file, + [sym_statement] = sym_statement, + [sym_simple_statements] = sym_simple_statements, + [sym_simple_statement] = sym_simple_statement, + [sym__simple_stmt] = sym__simple_stmt, + [sym_if_statement] = sym_if_statement, + [sym_else_if_clause] = sym_else_if_clause, + [sym_else_clause] = sym_else_clause, + [sym_switch_statement] = sym_switch_statement, + [sym_case_clause] = sym_case_clause, + [sym_for_statement] = sym_for_statement, + [sym_for_in_statement] = sym_for_in_statement, + [sym_while_statement] = sym_while_statement, + [sym_type_definition_statement] = sym_type_definition_statement, + [sym_variable_definition] = sym_variable_definition, + [sym_variable_definition_statement] = sym_variable_definition_statement, + [sym_tuple_declaration] = sym_tuple_declaration, + [sym_tuple_declaration_statement] = sym_tuple_declaration_statement, + [sym__lhs] = sym__lhs, + [sym_reassignment] = sym_reassignment, + [sym_reassignment_statement] = sym_reassignment_statement, + [sym_declaration_mode] = sym_declaration_mode, + [sym_function_declaration_statement] = sym_function_declaration_statement, + [sym__argument_list_with_type_optional] = sym__argument_list_with_type_optional, + [sym_import] = sym_import, + [sym_import_path] = sym_import_path, + [sym_expression] = sym_expression, + [sym_primary_expression] = sym_primary_expression, + [sym_literals] = sym_literals, + [sym_template_function] = sym_template_function, + [sym_attribute] = sym_attribute, + [sym_keyword_argument] = sym_keyword_argument, + [sym_argument_list] = sym_argument_list, + [sym_call] = sym_call, + [sym_subscript] = sym_subscript, + [sym_conditional_expression] = sym_conditional_expression, + [sym_tuple] = sym_tuple, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym_logical_operation] = sym_logical_operation, + [sym_math_operation] = sym_math_operation, + [sym_unary_operation] = sym_unary_operation, + [sym_comparison_operation] = sym_comparison_operation, + [sym_type] = sym_type, + [sym_base_type] = sym_base_type, + [sym_array_type] = sym_array_type, + [sym_generic_type] = sym_generic_type, + [sym_template_argument_list] = sym_template_argument_list, + [sym_type_qualifier] = sym_type_qualifier, + [sym_string] = sym_string, + [sym_single_quotted_string] = sym_single_quotted_string, + [sym_double_quotted_string] = sym_double_quotted_string, + [sym__suite] = sym__suite, + [sym_block] = sym_block, + [sym_comment] = sym_comment, + [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, + [aux_sym_simple_statements_repeat1] = aux_sym_simple_statements_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_switch_statement_repeat1] = aux_sym_switch_statement_repeat1, + [aux_sym_switch_statement_repeat2] = aux_sym_switch_statement_repeat2, + [aux_sym_type_definition_statement_repeat1] = aux_sym_type_definition_statement_repeat1, + [aux_sym_tuple_declaration_repeat1] = aux_sym_tuple_declaration_repeat1, + [aux_sym__argument_list_with_type_optional_repeat1] = aux_sym__argument_list_with_type_optional_repeat1, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_tuple_repeat1] = aux_sym_tuple_repeat1, + [aux_sym_base_type_repeat1] = aux_sym_base_type_repeat1, + [aux_sym_template_argument_list_repeat1] = aux_sym_template_argument_list_repeat1, + [aux_sym_single_quotted_string_repeat1] = aux_sym_single_quotted_string_repeat1, + [aux_sym_double_quotted_string_repeat1] = aux_sym_double_quotted_string_repeat1, + [aux_sym_comment_repeat1] = aux_sym_comment_repeat1, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_switch] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_to] = { + .visible = true, + .named = false, + }, + [anon_sym_by] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACK] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [sym_break] = { + .visible = true, + .named = true, + }, + [sym_continue] = { + .visible = true, + .named = true, + }, + [anon_sym_export] = { + .visible = true, + .named = false, + }, + [anon_sym_type] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_EQ] = { + .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_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_varip] = { + .visible = true, + .named = false, + }, + [anon_sym_var] = { + .visible = true, + .named = false, + }, + [anon_sym_method] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_RPAREN] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [aux_sym_import_path_token1] = { + .visible = false, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_QMARK] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .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_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_not] = { + .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] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_series] = { + .visible = true, + .named = false, + }, + [anon_sym_const] = { + .visible = true, + .named = false, + }, + [anon_sym_simple] = { + .visible = true, + .named = false, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [sym_integer] = { + .visible = true, + .named = true, + }, + [sym_float] = { + .visible = true, + .named = true, + }, + [sym_color] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_single_quotted_string_token1] = { + .visible = true, + .named = true, + }, + [anon_sym_DQUOTE] = { + .visible = true, + .named = false, + }, + [aux_sym_double_quotted_string_token1] = { + .visible = true, + .named = true, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [aux_sym_comment_token1] = { + .visible = true, + .named = true, + }, + [sym_annotations] = { + .visible = true, + .named = true, + }, + [sym_line_continuation] = { + .visible = true, + .named = true, + }, + [sym__indent] = { + .visible = false, + .named = true, + }, + [sym__dedent] = { + .visible = false, + .named = true, + }, + [sym__newline] = { + .visible = false, + .named = true, + }, + [sym_source_file] = { + .visible = true, + .named = true, + }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_simple_statements] = { + .visible = true, + .named = true, + }, + [sym_simple_statement] = { + .visible = true, + .named = true, + }, + [sym__simple_stmt] = { + .visible = false, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_else_if_clause] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_switch_statement] = { + .visible = true, + .named = true, + }, + [sym_case_clause] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_for_in_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_type_definition_statement] = { + .visible = true, + .named = true, + }, + [sym_variable_definition] = { + .visible = true, + .named = true, + }, + [sym_variable_definition_statement] = { + .visible = true, + .named = true, + }, + [sym_tuple_declaration] = { + .visible = true, + .named = true, + }, + [sym_tuple_declaration_statement] = { + .visible = true, + .named = true, + }, + [sym__lhs] = { + .visible = false, + .named = true, + }, + [sym_reassignment] = { + .visible = true, + .named = true, + }, + [sym_reassignment_statement] = { + .visible = true, + .named = true, + }, + [sym_declaration_mode] = { + .visible = true, + .named = true, + }, + [sym_function_declaration_statement] = { + .visible = true, + .named = true, + }, + [sym__argument_list_with_type_optional] = { + .visible = false, + .named = true, + }, + [sym_import] = { + .visible = true, + .named = true, + }, + [sym_import_path] = { + .visible = true, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_literals] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_template_function] = { + .visible = true, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_keyword_argument] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_call] = { + .visible = true, + .named = true, + }, + [sym_subscript] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_tuple] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym_logical_operation] = { + .visible = true, + .named = true, + }, + [sym_math_operation] = { + .visible = true, + .named = true, + }, + [sym_unary_operation] = { + .visible = true, + .named = true, + }, + [sym_comparison_operation] = { + .visible = true, + .named = true, + }, + [sym_type] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_base_type] = { + .visible = true, + .named = true, + }, + [sym_array_type] = { + .visible = true, + .named = true, + }, + [sym_generic_type] = { + .visible = true, + .named = true, + }, + [sym_template_argument_list] = { + .visible = true, + .named = true, + }, + [sym_type_qualifier] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_single_quotted_string] = { + .visible = true, + .named = true, + }, + [sym_double_quotted_string] = { + .visible = true, + .named = true, + }, + [sym__suite] = { + .visible = false, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [aux_sym_source_file_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_simple_statements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_switch_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_switch_statement_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_type_definition_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_declaration_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__argument_list_with_type_optional_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_tuple_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_base_type_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_template_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_single_quotted_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_double_quotted_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_comment_repeat1] = { + .visible = false, + .named = false, + }, +}; + +enum ts_field_identifiers { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_arm = 5, + field_array_element = 6, + field_array_id = 7, + field_attribute = 8, + field_base_type = 9, + field_body = 10, + field_condition = 11, + field_consequence = 12, + field_counter = 13, + field_declaration_mode = 14, + field_default_arm = 15, + field_default_value = 16, + field_else_branch = 17, + field_export = 18, + field_field_default = 19, + field_field_name = 20, + field_field_type = 21, + field_from_num = 22, + field_function = 23, + field_if_branch = 24, + field_index = 25, + field_initial_structure = 26, + field_initial_value = 27, + field_key = 28, + field_left = 29, + field_method = 30, + field_name = 31, + field_object = 32, + field_offset = 33, + field_operator = 34, + field_path = 35, + field_pattern = 36, + field_qualifier = 37, + field_right = 38, + field_series = 39, + field_step_num = 40, + field_structure = 41, + field_subject = 42, + field_suffix = 43, + field_to_num = 44, + field_type = 45, + field_username = 46, + field_value = 47, + field_variable = 48, + field_variables = 49, + field_version = 50, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_arm] = "arm", + [field_array_element] = "array_element", + [field_array_id] = "array_id", + [field_attribute] = "attribute", + [field_base_type] = "base_type", + [field_body] = "body", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_counter] = "counter", + [field_declaration_mode] = "declaration_mode", + [field_default_arm] = "default_arm", + [field_default_value] = "default_value", + [field_else_branch] = "else_branch", + [field_export] = "export", + [field_field_default] = "field_default", + [field_field_name] = "field_name", + [field_field_type] = "field_type", + [field_from_num] = "from_num", + [field_function] = "function", + [field_if_branch] = "if_branch", + [field_index] = "index", + [field_initial_structure] = "initial_structure", + [field_initial_value] = "initial_value", + [field_key] = "key", + [field_left] = "left", + [field_method] = "method", + [field_name] = "name", + [field_object] = "object", + [field_offset] = "offset", + [field_operator] = "operator", + [field_path] = "path", + [field_pattern] = "pattern", + [field_qualifier] = "qualifier", + [field_right] = "right", + [field_series] = "series", + [field_step_num] = "step_num", + [field_structure] = "structure", + [field_subject] = "subject", + [field_suffix] = "suffix", + [field_to_num] = "to_num", + [field_type] = "type", + [field_username] = "username", + [field_value] = "value", + [field_variable] = "variable", + [field_variables] = "variables", + [field_version] = "version", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [1] = {.index = 0, .length = 1}, + [2] = {.index = 1, .length = 3}, + [3] = {.index = 4, .length = 1}, + [4] = {.index = 5, .length = 2}, + [5] = {.index = 7, .length = 2}, + [6] = {.index = 9, .length = 2}, + [7] = {.index = 11, .length = 2}, + [9] = {.index = 13, .length = 2}, + [10] = {.index = 15, .length = 2}, + [11] = {.index = 17, .length = 1}, + [12] = {.index = 18, .length = 4}, + [13] = {.index = 22, .length = 6}, + [14] = {.index = 28, .length = 2}, + [15] = {.index = 30, .length = 2}, + [16] = {.index = 32, .length = 2}, + [17] = {.index = 34, .length = 3}, + [18] = {.index = 37, .length = 3}, + [19] = {.index = 40, .length = 3}, + [20] = {.index = 43, .length = 2}, + [21] = {.index = 45, .length = 3}, + [22] = {.index = 48, .length = 1}, + [23] = {.index = 49, .length = 3}, + [24] = {.index = 52, .length = 3}, + [25] = {.index = 55, .length = 4}, + [26] = {.index = 59, .length = 2}, + [27] = {.index = 61, .length = 2}, + [28] = {.index = 63, .length = 1}, + [29] = {.index = 64, .length = 7}, + [30] = {.index = 71, .length = 3}, + [31] = {.index = 74, .length = 3}, + [32] = {.index = 77, .length = 2}, + [33] = {.index = 79, .length = 3}, + [34] = {.index = 82, .length = 3}, + [35] = {.index = 85, .length = 3}, + [36] = {.index = 88, .length = 3}, + [37] = {.index = 91, .length = 1}, + [38] = {.index = 92, .length = 4}, + [39] = {.index = 96, .length = 2}, + [40] = {.index = 98, .length = 4}, + [41] = {.index = 102, .length = 3}, + [42] = {.index = 105, .length = 3}, + [43] = {.index = 108, .length = 2}, + [44] = {.index = 110, .length = 2}, + [45] = {.index = 112, .length = 7}, + [46] = {.index = 119, .length = 4}, + [47] = {.index = 123, .length = 6}, + [48] = {.index = 129, .length = 7}, + [49] = {.index = 136, .length = 2}, + [50] = {.index = 138, .length = 5}, + [51] = {.index = 143, .length = 8}, + [52] = {.index = 151, .length = 2}, + [53] = {.index = 153, .length = 2}, + [54] = {.index = 155, .length = 4}, + [55] = {.index = 159, .length = 4}, + [56] = {.index = 163, .length = 4}, + [57] = {.index = 167, .length = 4}, + [58] = {.index = 171, .length = 3}, + [59] = {.index = 174, .length = 4}, + [60] = {.index = 178, .length = 4}, + [61] = {.index = 182, .length = 6}, + [62] = {.index = 188, .length = 3}, + [63] = {.index = 191, .length = 3}, + [64] = {.index = 194, .length = 4}, + [65] = {.index = 198, .length = 7}, + [66] = {.index = 205, .length = 2}, + [67] = {.index = 207, .length = 3}, + [68] = {.index = 210, .length = 2}, + [69] = {.index = 212, .length = 6}, + [70] = {.index = 218, .length = 6}, + [71] = {.index = 224, .length = 3}, + [72] = {.index = 227, .length = 5}, + [73] = {.index = 232, .length = 5}, + [74] = {.index = 237, .length = 2}, + [75] = {.index = 239, .length = 4}, + [76] = {.index = 243, .length = 6}, + [77] = {.index = 249, .length = 3}, + [78] = {.index = 252, .length = 3}, + [79] = {.index = 255, .length = 7}, + [80] = {.index = 262, .length = 3}, + [81] = {.index = 265, .length = 7}, + [82] = {.index = 272, .length = 7}, + [83] = {.index = 279, .length = 4}, + [84] = {.index = 283, .length = 4}, + [85] = {.index = 287, .length = 5}, + [86] = {.index = 292, .length = 8}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_subject, 1}, + [1] = + {field_arm, 1, .inherited = true}, + {field_body, 1, .inherited = true}, + {field_default_arm, 1, .inherited = true}, + [4] = + {field_path, 1}, + [5] = + {field_argument, 1}, + {field_operator, 0}, + [7] = + {field_arguments, 1}, + {field_function, 0}, + [9] = + {field_arguments, 1}, + {field_name, 0}, + [11] = + {field_arguments, 1}, + {field_base_type, 0}, + [13] = + {field_condition, 1}, + {field_consequence, 2}, + [15] = + {field_body, 0}, + {field_body, 1}, + [17] = + {field_arm, 0}, + [18] = + {field_arm, 2, .inherited = true}, + {field_body, 2, .inherited = true}, + {field_default_arm, 2, .inherited = true}, + {field_subject, 1}, + [22] = + {field_arm, 0, .inherited = true}, + {field_arm, 1, .inherited = true}, + {field_body, 0, .inherited = true}, + {field_body, 1, .inherited = true}, + {field_default_arm, 0, .inherited = true}, + {field_default_arm, 1, .inherited = true}, + [28] = + {field_body, 2}, + {field_condition, 1}, + [30] = + {field_initial_structure, 2}, + {field_variable, 0}, + [32] = + {field_initial_value, 2}, + {field_variable, 0}, + [34] = + {field_operator, 1}, + {field_structure, 2}, + {field_variable, 0}, + [37] = + {field_operator, 1}, + {field_value, 2}, + {field_variable, 0}, + [40] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [43] = + {field_attribute, 2}, + {field_object, 0}, + [45] = + {field_base_type, 0}, + {field_suffix, 1}, + {field_suffix, 2}, + [48] = + {field_alternative, 0}, + [49] = + {field_alternative, 3}, + {field_condition, 1}, + {field_consequence, 2}, + [52] = + {field_alternative, 3, .inherited = true}, + {field_condition, 1}, + {field_consequence, 2}, + [55] = + {field_arm, 1, .inherited = true}, + {field_body, 0}, + {field_body, 1}, + {field_body, 2}, + [59] = + {field_arm, 0, .inherited = true}, + {field_arm, 1, .inherited = true}, + [61] = + {field_alias, 3}, + {field_path, 1}, + [63] = + {field_argument, 1}, + [64] = + {field_argument, 1, .inherited = true}, + {field_body, 2}, + {field_body, 3}, + {field_default_value, 1, .inherited = true}, + {field_function, 0}, + {field_qualifier, 1, .inherited = true}, + {field_type, 1, .inherited = true}, + [71] = + {field_declaration_mode, 0}, + {field_initial_structure, 3}, + {field_variable, 1}, + [74] = + {field_declaration_mode, 0}, + {field_initial_value, 3}, + {field_variable, 1}, + [77] = + {field_offset, 2}, + {field_series, 0}, + [79] = + {field_initial_structure, 3}, + {field_type, 0}, + {field_variable, 1}, + [82] = + {field_initial_value, 3}, + {field_type, 0}, + {field_variable, 1}, + [85] = + {field_initial_structure, 3}, + {field_qualifier, 0}, + {field_variable, 1}, + [88] = + {field_initial_value, 3}, + {field_qualifier, 0}, + {field_variable, 1}, + [91] = + {field_consequence, 1}, + [92] = + {field_alternative, 3, .inherited = true}, + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 2}, + [96] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [98] = + {field_body, 0}, + {field_body, 3}, + {field_default_arm, 1}, + {field_default_arm, 2}, + [102] = + {field_body, 1}, + {field_body, 2}, + {field_pattern, 0}, + [105] = + {field_array_element, 1}, + {field_array_id, 3}, + {field_body, 4}, + [108] = + {field_initial_structure, 4}, + {field_variables, 1}, + [110] = + {field_initial_value, 4}, + {field_variables, 1}, + [112] = + {field_argument, 2, .inherited = true}, + {field_body, 3}, + {field_body, 4}, + {field_default_value, 2, .inherited = true}, + {field_function, 1}, + {field_qualifier, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [119] = + {field_field_default, 3, .inherited = true}, + {field_field_name, 3, .inherited = true}, + {field_field_type, 3, .inherited = true}, + {field_name, 1}, + [123] = + {field_field_default, 0, .inherited = true}, + {field_field_default, 1, .inherited = true}, + {field_field_name, 0, .inherited = true}, + {field_field_name, 1, .inherited = true}, + {field_field_type, 0, .inherited = true}, + {field_field_type, 1, .inherited = true}, + [129] = + {field_argument, 2, .inherited = true}, + {field_body, 3}, + {field_body, 4}, + {field_default_value, 2, .inherited = true}, + {field_method, 1}, + {field_qualifier, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [136] = + {field_key, 0}, + {field_value, 2}, + [138] = + {field_argument, 1}, + {field_argument, 2, .inherited = true}, + {field_default_value, 2, .inherited = true}, + {field_qualifier, 2, .inherited = true}, + {field_type, 2, .inherited = true}, + [143] = + {field_argument, 0, .inherited = true}, + {field_argument, 1, .inherited = true}, + {field_default_value, 0, .inherited = true}, + {field_default_value, 1, .inherited = true}, + {field_qualifier, 0, .inherited = true}, + {field_qualifier, 1, .inherited = true}, + {field_type, 0, .inherited = true}, + {field_type, 1, .inherited = true}, + [151] = + {field_argument, 2}, + {field_type, 1}, + [153] = + {field_argument, 2}, + {field_qualifier, 1}, + [155] = + {field_declaration_mode, 0}, + {field_initial_structure, 4}, + {field_type, 1}, + {field_variable, 2}, + [159] = + {field_declaration_mode, 0}, + {field_initial_value, 4}, + {field_type, 1}, + {field_variable, 2}, + [163] = + {field_declaration_mode, 0}, + {field_initial_structure, 4}, + {field_qualifier, 1}, + {field_variable, 2}, + [167] = + {field_declaration_mode, 0}, + {field_initial_value, 4}, + {field_qualifier, 1}, + {field_variable, 2}, + [171] = + {field_condition, 0}, + {field_else_branch, 4}, + {field_if_branch, 2}, + [174] = + {field_initial_structure, 4}, + {field_qualifier, 0}, + {field_type, 1}, + {field_variable, 2}, + [178] = + {field_initial_value, 4}, + {field_qualifier, 0}, + {field_type, 1}, + {field_variable, 2}, + [182] = + {field_arm, 1, .inherited = true}, + {field_body, 0}, + {field_body, 1}, + {field_body, 4}, + {field_default_arm, 2}, + {field_default_arm, 3}, + [188] = + {field_initial_structure, 5}, + {field_variables, 1}, + {field_variables, 2}, + [191] = + {field_initial_value, 5}, + {field_variables, 1}, + {field_variables, 2}, + [194] = + {field_field_default, 4, .inherited = true}, + {field_field_name, 4, .inherited = true}, + {field_field_type, 4, .inherited = true}, + {field_name, 2}, + [198] = + {field_argument, 3, .inherited = true}, + {field_body, 4}, + {field_body, 5}, + {field_default_value, 3, .inherited = true}, + {field_method, 2}, + {field_qualifier, 3, .inherited = true}, + {field_type, 3, .inherited = true}, + [205] = + {field_field_name, 1}, + {field_field_type, 0}, + [207] = + {field_export, 2}, + {field_username, 0}, + {field_version, 4}, + [210] = + {field_argument, 1}, + {field_default_value, 3}, + [212] = + {field_argument, 2}, + {field_argument, 3, .inherited = true}, + {field_default_value, 3, .inherited = true}, + {field_qualifier, 3, .inherited = true}, + {field_type, 1}, + {field_type, 3, .inherited = true}, + [218] = + {field_argument, 2}, + {field_argument, 3, .inherited = true}, + {field_default_value, 3, .inherited = true}, + {field_qualifier, 1}, + {field_qualifier, 3, .inherited = true}, + {field_type, 3, .inherited = true}, + [224] = + {field_argument, 3}, + {field_qualifier, 1}, + {field_type, 2}, + [227] = + {field_declaration_mode, 0}, + {field_initial_structure, 5}, + {field_qualifier, 1}, + {field_type, 2}, + {field_variable, 3}, + [232] = + {field_declaration_mode, 0}, + {field_initial_value, 5}, + {field_qualifier, 1}, + {field_type, 2}, + {field_variable, 3}, + [237] = + {field_condition, 2}, + {field_consequence, 3}, + [239] = + {field_body, 6}, + {field_counter, 1}, + {field_from_num, 3}, + {field_to_num, 5}, + [243] = + {field_argument, 1}, + {field_argument, 4, .inherited = true}, + {field_default_value, 3}, + {field_default_value, 4, .inherited = true}, + {field_qualifier, 4, .inherited = true}, + {field_type, 4, .inherited = true}, + [249] = + {field_argument, 2}, + {field_default_value, 4}, + {field_type, 1}, + [252] = + {field_argument, 2}, + {field_default_value, 4}, + {field_qualifier, 1}, + [255] = + {field_argument, 3}, + {field_argument, 4, .inherited = true}, + {field_default_value, 4, .inherited = true}, + {field_qualifier, 1}, + {field_qualifier, 4, .inherited = true}, + {field_type, 2}, + {field_type, 4, .inherited = true}, + [262] = + {field_field_default, 3}, + {field_field_name, 1}, + {field_field_type, 0}, + [265] = + {field_argument, 2}, + {field_argument, 5, .inherited = true}, + {field_default_value, 4}, + {field_default_value, 5, .inherited = true}, + {field_qualifier, 5, .inherited = true}, + {field_type, 1}, + {field_type, 5, .inherited = true}, + [272] = + {field_argument, 2}, + {field_argument, 5, .inherited = true}, + {field_default_value, 4}, + {field_default_value, 5, .inherited = true}, + {field_qualifier, 1}, + {field_qualifier, 5, .inherited = true}, + {field_type, 5, .inherited = true}, + [279] = + {field_argument, 3}, + {field_default_value, 5}, + {field_qualifier, 1}, + {field_type, 2}, + [283] = + {field_array_element, 4}, + {field_array_id, 7}, + {field_body, 8}, + {field_index, 2}, + [287] = + {field_body, 8}, + {field_counter, 1}, + {field_from_num, 3}, + {field_step_num, 7}, + {field_to_num, 5}, + [292] = + {field_argument, 3}, + {field_argument, 6, .inherited = true}, + {field_default_value, 5}, + {field_default_value, 6, .inherited = true}, + {field_qualifier, 1}, + {field_qualifier, 6, .inherited = true}, + {field_type, 2}, + {field_type, 6, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [8] = { + [0] = sym_block, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 2, + [4] = 4, + [5] = 5, + [6] = 2, + [7] = 5, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 8, + [12] = 5, + [13] = 5, + [14] = 10, + [15] = 9, + [16] = 8, + [17] = 2, + [18] = 18, + [19] = 2, + [20] = 2, + [21] = 4, + [22] = 8, + [23] = 18, + [24] = 9, + [25] = 25, + [26] = 4, + [27] = 18, + [28] = 10, + [29] = 9, + [30] = 2, + [31] = 10, + [32] = 32, + [33] = 32, + [34] = 32, + [35] = 35, + [36] = 32, + [37] = 32, + [38] = 32, + [39] = 39, + [40] = 39, + [41] = 32, + [42] = 42, + [43] = 43, + [44] = 43, + [45] = 43, + [46] = 46, + [47] = 46, + [48] = 48, + [49] = 48, + [50] = 50, + [51] = 50, + [52] = 52, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 54, + [57] = 57, + [58] = 58, + [59] = 58, + [60] = 52, + [61] = 61, + [62] = 62, + [63] = 63, + [64] = 64, + [65] = 61, + [66] = 64, + [67] = 57, + [68] = 53, + [69] = 55, + [70] = 62, + [71] = 63, + [72] = 72, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 74, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 76, + [84] = 84, + [85] = 85, + [86] = 72, + [87] = 78, + [88] = 79, + [89] = 89, + [90] = 73, + [91] = 91, + [92] = 80, + [93] = 93, + [94] = 94, + [95] = 93, + [96] = 94, + [97] = 91, + [98] = 84, + [99] = 85, + [100] = 89, + [101] = 75, + [102] = 81, + [103] = 82, + [104] = 104, + [105] = 105, + [106] = 106, + [107] = 107, + [108] = 105, + [109] = 109, + [110] = 110, + [111] = 109, + [112] = 110, + [113] = 110, + [114] = 114, + [115] = 109, + [116] = 116, + [117] = 114, + [118] = 105, + [119] = 105, + [120] = 116, + [121] = 107, + [122] = 122, + [123] = 123, + [124] = 122, + [125] = 114, + [126] = 116, + [127] = 116, + [128] = 107, + [129] = 107, + [130] = 106, + [131] = 106, + [132] = 109, + [133] = 123, + [134] = 106, + [135] = 123, + [136] = 123, + [137] = 122, + [138] = 114, + [139] = 122, + [140] = 110, + [141] = 46, + [142] = 142, + [143] = 143, + [144] = 143, + [145] = 145, + [146] = 142, + [147] = 142, + [148] = 143, + [149] = 149, + [150] = 149, + [151] = 46, + [152] = 152, + [153] = 152, + [154] = 154, + [155] = 155, + [156] = 155, + [157] = 154, + [158] = 155, + [159] = 155, + [160] = 155, + [161] = 155, + [162] = 155, + [163] = 163, + [164] = 164, + [165] = 165, + [166] = 165, + [167] = 164, + [168] = 163, + [169] = 48, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 174, + [175] = 175, + [176] = 176, + [177] = 177, + [178] = 178, + [179] = 179, + [180] = 174, + [181] = 181, + [182] = 182, + [183] = 183, + [184] = 184, + [185] = 184, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 174, + [191] = 183, + [192] = 179, + [193] = 177, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 197, + [198] = 174, + [199] = 199, + [200] = 195, + [201] = 201, + [202] = 202, + [203] = 178, + [204] = 204, + [205] = 196, + [206] = 206, + [207] = 207, + [208] = 208, + [209] = 209, + [210] = 204, + [211] = 211, + [212] = 175, + [213] = 199, + [214] = 174, + [215] = 215, + [216] = 216, + [217] = 194, + [218] = 211, + [219] = 176, + [220] = 220, + [221] = 184, + [222] = 181, + [223] = 182, + [224] = 186, + [225] = 207, + [226] = 189, + [227] = 178, + [228] = 204, + [229] = 195, + [230] = 208, + [231] = 208, + [232] = 171, + [233] = 201, + [234] = 208, + [235] = 209, + [236] = 173, + [237] = 171, + [238] = 238, + [239] = 206, + [240] = 207, + [241] = 176, + [242] = 181, + [243] = 211, + [244] = 182, + [245] = 189, + [246] = 186, + [247] = 199, + [248] = 182, + [249] = 249, + [250] = 215, + [251] = 175, + [252] = 174, + [253] = 253, + [254] = 254, + [255] = 186, + [256] = 249, + [257] = 184, + [258] = 189, + [259] = 211, + [260] = 216, + [261] = 261, + [262] = 173, + [263] = 194, + [264] = 176, + [265] = 174, + [266] = 215, + [267] = 207, + [268] = 175, + [269] = 181, + [270] = 189, + [271] = 182, + [272] = 173, + [273] = 178, + [274] = 274, + [275] = 173, + [276] = 206, + [277] = 171, + [278] = 211, + [279] = 186, + [280] = 173, + [281] = 186, + [282] = 189, + [283] = 204, + [284] = 182, + [285] = 171, + [286] = 206, + [287] = 181, + [288] = 176, + [289] = 202, + [290] = 207, + [291] = 211, + [292] = 206, + [293] = 293, + [294] = 199, + [295] = 215, + [296] = 296, + [297] = 216, + [298] = 207, + [299] = 181, + [300] = 206, + [301] = 187, + [302] = 176, + [303] = 195, + [304] = 171, + [305] = 176, + [306] = 181, + [307] = 307, + [308] = 182, + [309] = 186, + [310] = 310, + [311] = 311, + [312] = 189, + [313] = 313, + [314] = 314, + [315] = 206, + [316] = 316, + [317] = 317, + [318] = 207, + [319] = 172, + [320] = 320, + [321] = 50, + [322] = 322, + [323] = 317, + [324] = 316, + [325] = 313, + [326] = 311, + [327] = 327, + [328] = 310, + [329] = 173, + [330] = 188, + [331] = 314, + [332] = 307, + [333] = 216, + [334] = 194, + [335] = 335, + [336] = 336, + [337] = 211, + [338] = 261, + [339] = 171, + [340] = 340, + [341] = 254, + [342] = 253, + [343] = 172, + [344] = 344, + [345] = 344, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 349, + [350] = 350, + [351] = 346, + [352] = 352, + [353] = 348, + [354] = 354, + [355] = 355, + [356] = 61, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 362, + [363] = 58, + [364] = 364, + [365] = 365, + [366] = 366, + [367] = 347, + [368] = 368, + [369] = 369, + [370] = 172, + [371] = 366, + [372] = 52, + [373] = 357, + [374] = 352, + [375] = 375, + [376] = 350, + [377] = 349, + [378] = 354, + [379] = 355, + [380] = 202, + [381] = 63, + [382] = 382, + [383] = 383, + [384] = 384, + [385] = 53, + [386] = 386, + [387] = 358, + [388] = 384, + [389] = 383, + [390] = 390, + [391] = 359, + [392] = 360, + [393] = 62, + [394] = 361, + [395] = 362, + [396] = 396, + [397] = 55, + [398] = 398, + [399] = 364, + [400] = 365, + [401] = 401, + [402] = 64, + [403] = 368, + [404] = 369, + [405] = 54, + [406] = 382, + [407] = 386, + [408] = 188, + [409] = 409, + [410] = 202, + [411] = 187, + [412] = 401, + [413] = 57, + [414] = 390, + [415] = 415, + [416] = 416, + [417] = 396, + [418] = 418, + [419] = 398, + [420] = 409, + [421] = 421, + [422] = 415, + [423] = 375, + [424] = 416, + [425] = 187, + [426] = 188, + [427] = 427, + [428] = 427, + [429] = 418, + [430] = 85, + [431] = 94, + [432] = 73, + [433] = 89, + [434] = 81, + [435] = 421, + [436] = 91, + [437] = 93, + [438] = 80, + [439] = 82, + [440] = 79, + [441] = 74, + [442] = 75, + [443] = 76, + [444] = 72, + [445] = 84, + [446] = 78, + [447] = 447, + [448] = 447, + [449] = 48, + [450] = 54, + [451] = 50, + [452] = 452, + [453] = 54, + [454] = 54, + [455] = 63, + [456] = 55, + [457] = 53, + [458] = 48, + [459] = 61, + [460] = 64, + [461] = 58, + [462] = 62, + [463] = 52, + [464] = 464, + [465] = 465, + [466] = 466, + [467] = 467, + [468] = 48, + [469] = 50, + [470] = 467, + [471] = 466, + [472] = 466, + [473] = 466, + [474] = 48, + [475] = 78, + [476] = 50, + [477] = 85, + [478] = 50, + [479] = 72, + [480] = 94, + [481] = 54, + [482] = 74, + [483] = 89, + [484] = 91, + [485] = 81, + [486] = 93, + [487] = 82, + [488] = 80, + [489] = 79, + [490] = 84, + [491] = 73, + [492] = 75, + [493] = 76, + [494] = 62, + [495] = 61, + [496] = 53, + [497] = 63, + [498] = 152, + [499] = 149, + [500] = 52, + [501] = 501, + [502] = 58, + [503] = 54, + [504] = 64, + [505] = 55, + [506] = 54, + [507] = 507, + [508] = 61, + [509] = 53, + [510] = 58, + [511] = 58, + [512] = 55, + [513] = 507, + [514] = 62, + [515] = 154, + [516] = 52, + [517] = 52, + [518] = 507, + [519] = 507, + [520] = 63, + [521] = 53, + [522] = 64, + [523] = 61, + [524] = 55, + [525] = 63, + [526] = 58, + [527] = 64, + [528] = 62, + [529] = 529, + [530] = 530, + [531] = 76, + [532] = 532, + [533] = 84, + [534] = 75, + [535] = 535, + [536] = 78, + [537] = 537, + [538] = 79, + [539] = 164, + [540] = 165, + [541] = 530, + [542] = 80, + [543] = 543, + [544] = 544, + [545] = 91, + [546] = 89, + [547] = 547, + [548] = 537, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 537, + [553] = 543, + [554] = 530, + [555] = 74, + [556] = 544, + [557] = 57, + [558] = 530, + [559] = 547, + [560] = 529, + [561] = 547, + [562] = 163, + [563] = 85, + [564] = 564, + [565] = 549, + [566] = 550, + [567] = 551, + [568] = 81, + [569] = 537, + [570] = 543, + [571] = 544, + [572] = 82, + [573] = 72, + [574] = 94, + [575] = 93, + [576] = 543, + [577] = 544, + [578] = 550, + [579] = 549, + [580] = 529, + [581] = 547, + [582] = 535, + [583] = 583, + [584] = 58, + [585] = 73, + [586] = 535, + [587] = 535, + [588] = 549, + [589] = 550, + [590] = 543, + [591] = 529, + [592] = 551, + [593] = 593, + [594] = 551, + [595] = 529, + [596] = 596, + [597] = 543, + [598] = 529, + [599] = 543, + [600] = 529, + [601] = 601, + [602] = 316, + [603] = 307, + [604] = 73, + [605] = 317, + [606] = 75, + [607] = 607, + [608] = 93, + [609] = 609, + [610] = 76, + [611] = 74, + [612] = 94, + [613] = 613, + [614] = 89, + [615] = 91, + [616] = 80, + [617] = 79, + [618] = 618, + [619] = 84, + [620] = 261, + [621] = 72, + [622] = 78, + [623] = 623, + [624] = 78, + [625] = 81, + [626] = 82, + [627] = 84, + [628] = 85, + [629] = 629, + [630] = 79, + [631] = 631, + [632] = 76, + [633] = 75, + [634] = 80, + [635] = 635, + [636] = 91, + [637] = 89, + [638] = 202, + [639] = 85, + [640] = 172, + [641] = 641, + [642] = 73, + [643] = 643, + [644] = 196, + [645] = 645, + [646] = 74, + [647] = 81, + [648] = 72, + [649] = 183, + [650] = 650, + [651] = 651, + [652] = 652, + [653] = 201, + [654] = 654, + [655] = 82, + [656] = 94, + [657] = 188, + [658] = 658, + [659] = 187, + [660] = 93, + [661] = 661, + [662] = 384, + [663] = 350, + [664] = 348, + [665] = 661, + [666] = 346, + [667] = 667, + [668] = 344, + [669] = 352, + [670] = 357, + [671] = 366, + [672] = 347, + [673] = 354, + [674] = 355, + [675] = 358, + [676] = 359, + [677] = 360, + [678] = 361, + [679] = 362, + [680] = 364, + [681] = 365, + [682] = 682, + [683] = 368, + [684] = 369, + [685] = 172, + [686] = 382, + [687] = 386, + [688] = 390, + [689] = 396, + [690] = 398, + [691] = 691, + [692] = 427, + [693] = 693, + [694] = 188, + [695] = 187, + [696] = 375, + [697] = 418, + [698] = 416, + [699] = 415, + [700] = 661, + [701] = 202, + [702] = 409, + [703] = 691, + [704] = 349, + [705] = 609, + [706] = 682, + [707] = 682, + [708] = 618, + [709] = 643, + [710] = 601, + [711] = 691, + [712] = 652, + [713] = 651, + [714] = 650, + [715] = 691, + [716] = 623, + [717] = 654, + [718] = 682, + [719] = 658, + [720] = 661, + [721] = 661, + [722] = 691, + [723] = 682, + [724] = 724, + [725] = 725, + [726] = 401, + [727] = 661, + [728] = 667, + [729] = 682, + [730] = 691, + [731] = 661, + [732] = 667, + [733] = 667, + [734] = 691, + [735] = 682, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 740, + [741] = 741, + [742] = 742, + [743] = 738, + [744] = 742, + [745] = 738, + [746] = 738, + [747] = 747, + [748] = 748, + [749] = 747, + [750] = 750, + [751] = 750, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, + [756] = 756, + [757] = 756, + [758] = 755, + [759] = 756, + [760] = 760, + [761] = 761, + [762] = 755, + [763] = 763, + [764] = 764, + [765] = 765, + [766] = 765, + [767] = 767, + [768] = 48, + [769] = 767, + [770] = 763, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 764, + [775] = 773, + [776] = 763, + [777] = 764, + [778] = 48, + [779] = 779, + [780] = 771, + [781] = 781, + [782] = 767, + [783] = 772, + [784] = 772, + [785] = 785, + [786] = 786, + [787] = 772, + [788] = 763, + [789] = 765, + [790] = 773, + [791] = 781, + [792] = 785, + [793] = 773, + [794] = 786, + [795] = 764, + [796] = 796, + [797] = 797, + [798] = 797, + [799] = 799, + [800] = 152, + [801] = 797, + [802] = 802, + [803] = 802, + [804] = 797, + [805] = 805, + [806] = 802, + [807] = 149, + [808] = 799, + [809] = 802, + [810] = 810, + [811] = 810, + [812] = 812, + [813] = 812, + [814] = 814, + [815] = 815, + [816] = 816, + [817] = 817, + [818] = 812, + [819] = 819, + [820] = 819, + [821] = 821, + [822] = 822, + [823] = 823, + [824] = 812, + [825] = 819, + [826] = 819, + [827] = 823, + [828] = 828, + [829] = 822, + [830] = 821, + [831] = 154, + [832] = 823, + [833] = 822, + [834] = 821, + [835] = 822, + [836] = 821, + [837] = 812, + [838] = 838, + [839] = 821, + [840] = 812, + [841] = 841, + [842] = 821, + [843] = 843, + [844] = 844, + [845] = 822, + [846] = 50, + [847] = 847, + [848] = 823, + [849] = 812, + [850] = 823, + [851] = 822, + [852] = 822, + [853] = 821, + [854] = 823, + [855] = 823, + [856] = 856, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 847, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 857, + [867] = 867, + [868] = 868, + [869] = 869, + [870] = 857, + [871] = 871, + [872] = 872, + [873] = 858, + [874] = 862, + [875] = 875, + [876] = 859, + [877] = 857, + [878] = 869, + [879] = 879, + [880] = 844, + [881] = 881, + [882] = 882, + [883] = 857, + [884] = 859, + [885] = 885, + [886] = 857, + [887] = 859, + [888] = 857, + [889] = 889, + [890] = 862, + [891] = 862, + [892] = 892, + [893] = 858, + [894] = 859, + [895] = 858, + [896] = 896, + [897] = 897, + [898] = 875, + [899] = 858, + [900] = 869, + [901] = 901, + [902] = 902, + [903] = 859, + [904] = 858, + [905] = 859, + [906] = 906, + [907] = 869, + [908] = 908, + [909] = 858, + [910] = 910, + [911] = 911, + [912] = 912, + [913] = 913, + [914] = 202, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 913, + [923] = 913, + [924] = 924, + [925] = 187, + [926] = 924, + [927] = 927, + [928] = 916, + [929] = 929, + [930] = 188, + [931] = 924, + [932] = 913, + [933] = 933, + [934] = 934, + [935] = 935, + [936] = 307, + [937] = 921, + [938] = 918, + [939] = 885, + [940] = 927, + [941] = 172, + [942] = 927, + [943] = 917, + [944] = 918, + [945] = 921, + [946] = 916, + [947] = 947, + [948] = 921, + [949] = 918, + [950] = 924, + [951] = 924, + [952] = 889, + [953] = 917, + [954] = 924, + [955] = 933, + [956] = 927, + [957] = 957, + [958] = 958, + [959] = 959, + [960] = 924, + [961] = 183, + [962] = 962, + [963] = 933, + [964] = 964, + [965] = 965, + [966] = 957, + [967] = 917, + [968] = 968, + [969] = 969, + [970] = 970, + [971] = 971, + [972] = 972, + [973] = 973, + [974] = 974, + [975] = 975, + [976] = 973, + [977] = 977, + [978] = 978, + [979] = 979, + [980] = 980, + [981] = 981, + [982] = 982, + [983] = 971, + [984] = 978, + [985] = 970, + [986] = 974, + [987] = 987, + [988] = 988, + [989] = 973, + [990] = 990, + [991] = 973, + [992] = 987, + [993] = 993, + [994] = 994, + [995] = 995, + [996] = 971, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 977, + [1001] = 973, + [1002] = 973, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, + [1006] = 979, + [1007] = 1007, + [1008] = 980, + [1009] = 1009, + [1010] = 1010, + [1011] = 981, + [1012] = 969, + [1013] = 1013, + [1014] = 1014, + [1015] = 1015, + [1016] = 978, + [1017] = 1017, + [1018] = 1018, + [1019] = 970, + [1020] = 1009, + [1021] = 974, + [1022] = 1018, + [1023] = 987, + [1024] = 988, + [1025] = 981, + [1026] = 973, + [1027] = 982, + [1028] = 997, + [1029] = 990, + [1030] = 999, + [1031] = 1031, + [1032] = 980, + [1033] = 1033, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, + [1037] = 1037, + [1038] = 988, + [1039] = 1039, + [1040] = 1040, + [1041] = 973, + [1042] = 1042, + [1043] = 1014, + [1044] = 1033, + [1045] = 1007, + [1046] = 1046, + [1047] = 977, + [1048] = 935, + [1049] = 1049, + [1050] = 1003, + [1051] = 1014, + [1052] = 1004, + [1053] = 968, + [1054] = 1054, + [1055] = 1018, + [1056] = 979, + [1057] = 980, + [1058] = 981, + [1059] = 1059, + [1060] = 998, + [1061] = 982, + [1062] = 990, + [1063] = 971, + [1064] = 1064, + [1065] = 978, + [1066] = 1066, + [1067] = 972, + [1068] = 970, + [1069] = 1069, + [1070] = 974, + [1071] = 1007, + [1072] = 987, + [1073] = 1073, + [1074] = 1074, + [1075] = 979, + [1076] = 988, + [1077] = 1014, + [1078] = 973, + [1079] = 1079, + [1080] = 990, + [1081] = 1018, + [1082] = 1010, + [1083] = 1034, + [1084] = 1054, + [1085] = 982, + [1086] = 1035, + [1087] = 969, + [1088] = 1010, + [1089] = 1004, + [1090] = 1090, + [1091] = 1003, + [1092] = 1007, + [1093] = 1093, + [1094] = 1049, + [1095] = 1095, + [1096] = 1096, + [1097] = 1097, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 1037, + [1102] = 1015, + [1103] = 1103, + [1104] = 977, + [1105] = 1074, + [1106] = 1069, + [1107] = 1013, + [1108] = 1059, + [1109] = 1103, + [1110] = 1110, + [1111] = 1111, + [1112] = 1110, + [1113] = 1113, + [1114] = 1114, + [1115] = 1103, + [1116] = 1116, + [1117] = 1074, + [1118] = 1069, + [1119] = 1013, + [1120] = 1120, + [1121] = 1110, + [1122] = 1122, + [1123] = 1123, + [1124] = 1103, + [1125] = 1125, + [1126] = 1074, + [1127] = 1127, + [1128] = 1110, + [1129] = 1129, + [1130] = 1122, + [1131] = 1079, + [1132] = 1066, + [1133] = 1133, + [1134] = 1093, + [1135] = 1135, + [1136] = 1122, + [1137] = 1079, + [1138] = 1138, + [1139] = 1093, + [1140] = 1140, + [1141] = 919, + [1142] = 1093, + [1143] = 1017, + [1144] = 1017, + [1145] = 1017, + [1146] = 995, + [1147] = 995, + [1148] = 995, + [1149] = 1010, + [1150] = 1150, + [1151] = 1151, +}; + +static TSCharacterRange sym_identifier_character_set_1[] = { + {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xba, 0xba}, {0xc0, 0xd6}, {0xd8, 0xf6}, + {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x370, 0x374}, {0x376, 0x377}, {0x37b, 0x37d}, + {0x37f, 0x37f}, {0x386, 0x386}, {0x388, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, {0x48a, 0x52f}, + {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x620, 0x64a}, {0x66e, 0x66f}, {0x671, 0x6d3}, + {0x6d5, 0x6d5}, {0x6e5, 0x6e6}, {0x6ee, 0x6ef}, {0x6fa, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x710}, {0x712, 0x72f}, {0x74d, 0x7a5}, + {0x7b1, 0x7b1}, {0x7ca, 0x7ea}, {0x7f4, 0x7f5}, {0x7fa, 0x7fa}, {0x800, 0x815}, {0x81a, 0x81a}, {0x824, 0x824}, {0x828, 0x828}, + {0x840, 0x858}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x8a0, 0x8c9}, {0x904, 0x939}, {0x93d, 0x93d}, {0x950, 0x950}, + {0x958, 0x961}, {0x971, 0x980}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, + {0x9bd, 0x9bd}, {0x9ce, 0x9ce}, {0x9dc, 0x9dd}, {0x9df, 0x9e1}, {0x9f0, 0x9f1}, {0x9fc, 0x9fc}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, + {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa72, 0xa74}, + {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabd, 0xabd}, {0xad0, 0xad0}, + {0xae0, 0xae1}, {0xaf9, 0xaf9}, {0xb05, 0xb0c}, {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, + {0xb3d, 0xb3d}, {0xb5c, 0xb5d}, {0xb5f, 0xb61}, {0xb71, 0xb71}, {0xb83, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, {0xb92, 0xb95}, + {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbd0, 0xbd0}, {0xc05, 0xc0c}, + {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3d, 0xc3d}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc61}, {0xc80, 0xc80}, + {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbd, 0xcbd}, {0xcdd, 0xcde}, {0xce0, 0xce1}, + {0xcf1, 0xcf2}, {0xd04, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd3a}, {0xd3d, 0xd3d}, {0xd4e, 0xd4e}, {0xd54, 0xd56}, {0xd5f, 0xd61}, + {0xd7a, 0xd7f}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xe01, 0xe30}, {0xe32, 0xe32}, + {0xe40, 0xe46}, {0xe81, 0xe82}, {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xeb0}, {0xeb2, 0xeb2}, + {0xebd, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf40, 0xf47}, {0xf49, 0xf6c}, {0xf88, 0xf8c}, + {0x1000, 0x102a}, {0x103f, 0x103f}, {0x1050, 0x1055}, {0x105a, 0x105d}, {0x1061, 0x1061}, {0x1065, 0x1066}, {0x106e, 0x1070}, {0x1075, 0x1081}, + {0x108e, 0x108e}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, + {0x1258, 0x1258}, {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, + {0x12c2, 0x12c5}, {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, {0x13f8, 0x13fd}, + {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1711}, {0x171f, 0x1731}, {0x1740, 0x1751}, + {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1780, 0x17b3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dc}, {0x1820, 0x1878}, {0x1880, 0x18a8}, {0x18aa, 0x18aa}, + {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1950, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x1a00, 0x1a16}, {0x1a20, 0x1a54}, + {0x1aa7, 0x1aa7}, {0x1b05, 0x1b33}, {0x1b45, 0x1b4c}, {0x1b83, 0x1ba0}, {0x1bae, 0x1baf}, {0x1bba, 0x1be5}, {0x1c00, 0x1c23}, {0x1c4d, 0x1c4f}, + {0x1c5a, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1ce9, 0x1cec}, {0x1cee, 0x1cf3}, {0x1cf5, 0x1cf6}, {0x1cfa, 0x1cfa}, + {0x1d00, 0x1dbf}, {0x1e00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, + {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x2071, 0x2071}, {0x207f, 0x207f}, {0x2090, 0x209c}, {0x2102, 0x2102}, + {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, + {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cee}, {0x2cf2, 0x2cf3}, {0x2d00, 0x2d25}, + {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, {0x2d80, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, + {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x3005, 0x3007}, {0x3021, 0x3029}, {0x3031, 0x3035}, + {0x3038, 0x303c}, {0x3041, 0x3096}, {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, + {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa61f}, {0xa62a, 0xa62b}, {0xa640, 0xa66e}, + {0xa67f, 0xa69d}, {0xa6a0, 0xa6ef}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, + {0xa7f2, 0xa801}, {0xa803, 0xa805}, {0xa807, 0xa80a}, {0xa80c, 0xa822}, {0xa840, 0xa873}, {0xa882, 0xa8b3}, {0xa8f2, 0xa8f7}, {0xa8fb, 0xa8fb}, + {0xa8fd, 0xa8fe}, {0xa90a, 0xa925}, {0xa930, 0xa946}, {0xa960, 0xa97c}, {0xa984, 0xa9b2}, {0xa9cf, 0xa9cf}, {0xa9e0, 0xa9e4}, {0xa9e6, 0xa9ef}, + {0xa9fa, 0xa9fe}, {0xaa00, 0xaa28}, {0xaa40, 0xaa42}, {0xaa44, 0xaa4b}, {0xaa60, 0xaa76}, {0xaa7a, 0xaa7a}, {0xaa7e, 0xaaaf}, {0xaab1, 0xaab1}, + {0xaab5, 0xaab6}, {0xaab9, 0xaabd}, {0xaac0, 0xaac0}, {0xaac2, 0xaac2}, {0xaadb, 0xaadd}, {0xaae0, 0xaaea}, {0xaaf2, 0xaaf4}, {0xab01, 0xab06}, + {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, {0xab5c, 0xab69}, {0xab70, 0xabe2}, {0xac00, 0xd7a3}, + {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb1d}, {0xfb1f, 0xfb28}, + {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, + {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff21, 0xff3a}, {0xff41, 0xff5a}, {0xff66, 0xff9d}, {0xffa0, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, + {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, + {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x10375}, {0x10380, 0x1039d}, + {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, + {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, + {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, + {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, + {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a00}, {0x10a10, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, + {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae4}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, + {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, + {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, + {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, + {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, + {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, + {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, + {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, + {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, + {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, + {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, + {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, + {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, + {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, + {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, + {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, + {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, + {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, + {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, + {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, + {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, + {0x1e2c0, 0x1e2eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, + {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, + {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, + {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, + {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, + {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, +}; + +static TSCharacterRange sym_identifier_character_set_2[] = { + {'0', '9'}, {'A', 'Z'}, {'_', '_'}, {'a', 'z'}, {0xaa, 0xaa}, {0xb5, 0xb5}, {0xb7, 0xb7}, {0xba, 0xba}, + {0xc0, 0xd6}, {0xd8, 0xf6}, {0xf8, 0x2c1}, {0x2c6, 0x2d1}, {0x2e0, 0x2e4}, {0x2ec, 0x2ec}, {0x2ee, 0x2ee}, {0x300, 0x374}, + {0x376, 0x377}, {0x37b, 0x37d}, {0x37f, 0x37f}, {0x386, 0x38a}, {0x38c, 0x38c}, {0x38e, 0x3a1}, {0x3a3, 0x3f5}, {0x3f7, 0x481}, + {0x483, 0x487}, {0x48a, 0x52f}, {0x531, 0x556}, {0x559, 0x559}, {0x560, 0x588}, {0x591, 0x5bd}, {0x5bf, 0x5bf}, {0x5c1, 0x5c2}, + {0x5c4, 0x5c5}, {0x5c7, 0x5c7}, {0x5d0, 0x5ea}, {0x5ef, 0x5f2}, {0x610, 0x61a}, {0x620, 0x669}, {0x66e, 0x6d3}, {0x6d5, 0x6dc}, + {0x6df, 0x6e8}, {0x6ea, 0x6fc}, {0x6ff, 0x6ff}, {0x710, 0x74a}, {0x74d, 0x7b1}, {0x7c0, 0x7f5}, {0x7fa, 0x7fa}, {0x7fd, 0x7fd}, + {0x800, 0x82d}, {0x840, 0x85b}, {0x860, 0x86a}, {0x870, 0x887}, {0x889, 0x88e}, {0x898, 0x8e1}, {0x8e3, 0x963}, {0x966, 0x96f}, + {0x971, 0x983}, {0x985, 0x98c}, {0x98f, 0x990}, {0x993, 0x9a8}, {0x9aa, 0x9b0}, {0x9b2, 0x9b2}, {0x9b6, 0x9b9}, {0x9bc, 0x9c4}, + {0x9c7, 0x9c8}, {0x9cb, 0x9ce}, {0x9d7, 0x9d7}, {0x9dc, 0x9dd}, {0x9df, 0x9e3}, {0x9e6, 0x9f1}, {0x9fc, 0x9fc}, {0x9fe, 0x9fe}, + {0xa01, 0xa03}, {0xa05, 0xa0a}, {0xa0f, 0xa10}, {0xa13, 0xa28}, {0xa2a, 0xa30}, {0xa32, 0xa33}, {0xa35, 0xa36}, {0xa38, 0xa39}, + {0xa3c, 0xa3c}, {0xa3e, 0xa42}, {0xa47, 0xa48}, {0xa4b, 0xa4d}, {0xa51, 0xa51}, {0xa59, 0xa5c}, {0xa5e, 0xa5e}, {0xa66, 0xa75}, + {0xa81, 0xa83}, {0xa85, 0xa8d}, {0xa8f, 0xa91}, {0xa93, 0xaa8}, {0xaaa, 0xab0}, {0xab2, 0xab3}, {0xab5, 0xab9}, {0xabc, 0xac5}, + {0xac7, 0xac9}, {0xacb, 0xacd}, {0xad0, 0xad0}, {0xae0, 0xae3}, {0xae6, 0xaef}, {0xaf9, 0xaff}, {0xb01, 0xb03}, {0xb05, 0xb0c}, + {0xb0f, 0xb10}, {0xb13, 0xb28}, {0xb2a, 0xb30}, {0xb32, 0xb33}, {0xb35, 0xb39}, {0xb3c, 0xb44}, {0xb47, 0xb48}, {0xb4b, 0xb4d}, + {0xb55, 0xb57}, {0xb5c, 0xb5d}, {0xb5f, 0xb63}, {0xb66, 0xb6f}, {0xb71, 0xb71}, {0xb82, 0xb83}, {0xb85, 0xb8a}, {0xb8e, 0xb90}, + {0xb92, 0xb95}, {0xb99, 0xb9a}, {0xb9c, 0xb9c}, {0xb9e, 0xb9f}, {0xba3, 0xba4}, {0xba8, 0xbaa}, {0xbae, 0xbb9}, {0xbbe, 0xbc2}, + {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, + {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, + {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, + {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd00, 0xd0c}, + {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, + {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, + {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xecd}, + {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, + {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, + {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, + {0x125a, 0x125d}, {0x1260, 0x1288}, {0x128a, 0x128d}, {0x1290, 0x12b0}, {0x12b2, 0x12b5}, {0x12b8, 0x12be}, {0x12c0, 0x12c0}, {0x12c2, 0x12c5}, + {0x12c8, 0x12d6}, {0x12d8, 0x1310}, {0x1312, 0x1315}, {0x1318, 0x135a}, {0x135d, 0x135f}, {0x1369, 0x1371}, {0x1380, 0x138f}, {0x13a0, 0x13f5}, + {0x13f8, 0x13fd}, {0x1401, 0x166c}, {0x166f, 0x167f}, {0x1681, 0x169a}, {0x16a0, 0x16ea}, {0x16ee, 0x16f8}, {0x1700, 0x1715}, {0x171f, 0x1734}, + {0x1740, 0x1753}, {0x1760, 0x176c}, {0x176e, 0x1770}, {0x1772, 0x1773}, {0x1780, 0x17d3}, {0x17d7, 0x17d7}, {0x17dc, 0x17dd}, {0x17e0, 0x17e9}, + {0x180b, 0x180d}, {0x180f, 0x1819}, {0x1820, 0x1878}, {0x1880, 0x18aa}, {0x18b0, 0x18f5}, {0x1900, 0x191e}, {0x1920, 0x192b}, {0x1930, 0x193b}, + {0x1946, 0x196d}, {0x1970, 0x1974}, {0x1980, 0x19ab}, {0x19b0, 0x19c9}, {0x19d0, 0x19da}, {0x1a00, 0x1a1b}, {0x1a20, 0x1a5e}, {0x1a60, 0x1a7c}, + {0x1a7f, 0x1a89}, {0x1a90, 0x1a99}, {0x1aa7, 0x1aa7}, {0x1ab0, 0x1abd}, {0x1abf, 0x1ace}, {0x1b00, 0x1b4c}, {0x1b50, 0x1b59}, {0x1b6b, 0x1b73}, + {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, + {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, + {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, + {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, + {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, + {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, + {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, + {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, + {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, + {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, + {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, + {0xa9cf, 0xa9d9}, {0xa9e0, 0xa9fe}, {0xaa00, 0xaa36}, {0xaa40, 0xaa4d}, {0xaa50, 0xaa59}, {0xaa60, 0xaa76}, {0xaa7a, 0xaac2}, {0xaadb, 0xaadd}, + {0xaae0, 0xaaef}, {0xaaf2, 0xaaf6}, {0xab01, 0xab06}, {0xab09, 0xab0e}, {0xab11, 0xab16}, {0xab20, 0xab26}, {0xab28, 0xab2e}, {0xab30, 0xab5a}, + {0xab5c, 0xab69}, {0xab70, 0xabea}, {0xabec, 0xabed}, {0xabf0, 0xabf9}, {0xac00, 0xd7a3}, {0xd7b0, 0xd7c6}, {0xd7cb, 0xd7fb}, {0xf900, 0xfa6d}, + {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, + {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, + {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, + {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, + {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, + {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, + {0x104b0, 0x104d3}, {0x104d8, 0x104fb}, {0x10500, 0x10527}, {0x10530, 0x10563}, {0x10570, 0x1057a}, {0x1057c, 0x1058a}, {0x1058c, 0x10592}, {0x10594, 0x10595}, + {0x10597, 0x105a1}, {0x105a3, 0x105b1}, {0x105b3, 0x105b9}, {0x105bb, 0x105bc}, {0x10600, 0x10736}, {0x10740, 0x10755}, {0x10760, 0x10767}, {0x10780, 0x10785}, + {0x10787, 0x107b0}, {0x107b2, 0x107ba}, {0x10800, 0x10805}, {0x10808, 0x10808}, {0x1080a, 0x10835}, {0x10837, 0x10838}, {0x1083c, 0x1083c}, {0x1083f, 0x10855}, + {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, + {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, + {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, + {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, + {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, + {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, + {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x1123e}, {0x11280, 0x11286}, + {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, + {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, + {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, + {0x11480, 0x114c5}, {0x114c7, 0x114c7}, {0x114d0, 0x114d9}, {0x11580, 0x115b5}, {0x115b8, 0x115c0}, {0x115d8, 0x115dd}, {0x11600, 0x11640}, {0x11644, 0x11644}, + {0x11650, 0x11659}, {0x11680, 0x116b8}, {0x116c0, 0x116c9}, {0x11700, 0x1171a}, {0x1171d, 0x1172b}, {0x11730, 0x11739}, {0x11740, 0x11746}, {0x11800, 0x1183a}, + {0x118a0, 0x118e9}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x11935}, {0x11937, 0x11938}, {0x1193b, 0x11943}, + {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, + {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, + {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, + {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11fb0, 0x11fb0}, + {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, + {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, + {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, + {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, + {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, + {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, + {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, + {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, + {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, + {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, + {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, + {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, + {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, + {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, + {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, + {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, + {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, +}; + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(189); + if (lookahead == '\r') SKIP(0); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(256); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '*') ADVANCE(254); + if (lookahead == '+') ADVANCE(250); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(252); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(239); + if (lookahead == ':') ADVANCE(244); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(201); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '@') ADVANCE(56); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == ']') ADVANCE(205); + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'b') ADVANCE(131); + if (lookahead == 'c') ADVANCE(112); + if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'f') ADVANCE(39); + if (lookahead == 'i') ADVANCE(76); + if (lookahead == 'm') ADVANCE(67); + if (lookahead == 'n') ADVANCE(115); + if (lookahead == 'o') ADVANCE(128); + if (lookahead == 's') ADVANCE(69); + if (lookahead == 't') ADVANCE(114); + if (lookahead == 'v') ADVANCE(44); + if (lookahead == 'w') ADVANCE(81); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(0); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + END_STATE(); + case 1: + if (lookahead == '\n') ADVANCE(445); + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(20); + if (lookahead == '\r') ADVANCE(364); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '/') ADVANCE(365); + if (lookahead == '\\') ADVANCE(4); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(364); + if (lookahead != 0) ADVANCE(366); + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(21); + if (lookahead == '\r') ADVANCE(378); + if (lookahead == '/') ADVANCE(379); + if (lookahead == '@') ADVANCE(394); + if (lookahead == '\\') ADVANCE(376); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(378); + if (lookahead != 0) ADVANCE(443); + END_STATE(); + case 4: + if (lookahead == '\r') ADVANCE(371); + if (lookahead == 'U') ADVANCE(185); + if (lookahead == 'u') ADVANCE(178); + if (lookahead == 'x') ADVANCE(174); + if ((!eof && lookahead == 00) || + lookahead == '\n') ADVANCE(371); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(373); + if (lookahead != 0) ADVANCE(371); + END_STATE(); + case 5: + if (lookahead == '\r') ADVANCE(1); + if ((!eof && lookahead == 00) || + lookahead == '\n') ADVANCE(445); + END_STATE(); + case 6: + if (lookahead == '\r') SKIP(6); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '=') ADVANCE(36); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'b') ADVANCE(330); + if (lookahead == 'c') ADVANCE(313); + if (lookahead == 'f') ADVANCE(274); + if (lookahead == 'i') ADVANCE(308); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 's') ADVANCE(291); + if (lookahead == 't') ADVANCE(326); + if (lookahead == 'v') ADVANCE(276); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(6); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 7: + if (lookahead == '\r') SKIP(7); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'c') ADVANCE(317); + if (lookahead == 'f') ADVANCE(274); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 's') ADVANCE(291); + if (lookahead == 't') ADVANCE(326); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(7); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 8: + if (lookahead == '\r') SKIP(8); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'f') ADVANCE(273); + if (lookahead == 'i') ADVANCE(293); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 's') ADVANCE(347); + if (lookahead == 't') ADVANCE(326); + if (lookahead == 'w') ADVANCE(295); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(8); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 9: + if (lookahead == '\r') SKIP(9); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '=') ADVANCE(36); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'f') ADVANCE(274); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 't') ADVANCE(326); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(9); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 10: + if (lookahead == '\r') SKIP(10); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'f') ADVANCE(274); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 't') ADVANCE(326); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(10); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 11: + if (lookahead == '\r') SKIP(11); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '%') ADVANCE(256); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '*') ADVANCE(254); + if (lookahead == '+') ADVANCE(250); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(252); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(239); + if (lookahead == ':') ADVANCE(32); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'o') ADVANCE(329); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(11); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 12: + if (lookahead == '\r') SKIP(12); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '%') ADVANCE(256); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '*') ADVANCE(254); + if (lookahead == '+') ADVANCE(250); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(252); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(239); + if (lookahead == ':') ADVANCE(32); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'a') ADVANCE(105); + if (lookahead == 'e') ADVANCE(93); + if (lookahead == 'i') ADVANCE(77); + if (lookahead == 'o') ADVANCE(128); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(12); + END_STATE(); + case 13: + if (lookahead == '\r') SKIP(13); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(249); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(238); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(34); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == ']') ADVANCE(205); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'b') ADVANCE(165); + if (lookahead == 'o') ADVANCE(128); + if (lookahead == 't') ADVANCE(113); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(13); + END_STATE(); + case 14: + if (lookahead == '\r') SKIP(14); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(249); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'o') ADVANCE(329); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(14); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 15: + if (lookahead == '\r') SKIP(15); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(249); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(200); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'o') ADVANCE(128); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(15); + END_STATE(); + case 16: + if (lookahead == '\r') SKIP(16); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '=') ADVANCE(36); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'e') ADVANCE(306); + if (lookahead == 'f') ADVANCE(274); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 't') ADVANCE(326); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 17: + if (lookahead == '\r') SKIP(17); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'f') ADVANCE(315); + if (lookahead == 'i') ADVANCE(293); + if (lookahead == 's') ADVANCE(347); + if (lookahead == 'w') ADVANCE(295); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(17); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 18: + if (lookahead == '\r') SKIP(18); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'c') ADVANCE(317); + if (lookahead == 's') ADVANCE(291); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(18); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 19: + if (lookahead == '\r') SKIP(19); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '.') ADVANCE(240); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '<') ADVANCE(259); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(19); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 20: + if (lookahead == '\r') SKIP(20); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(4); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(20); + END_STATE(); + case 21: + if (lookahead == '\r') SKIP(21); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '@') ADVANCE(56); + if (lookahead == '\\') ADVANCE(5); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(21); + END_STATE(); + case 22: + if (lookahead == '\r') ADVANCE(368); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '/') ADVANCE(369); + if (lookahead == '\\') ADVANCE(4); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(368); + if (lookahead != 0) ADVANCE(370); + END_STATE(); + case 23: + if (lookahead == '\r') SKIP(23); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'm') ADVANCE(280); + if (lookahead == 't') ADVANCE(349); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(23); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 24: + if (lookahead == '\r') SKIP(24); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '\\') ADVANCE(235); + if (lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(236); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(24); + if (lookahead != 0) ADVANCE(237); + END_STATE(); + case 25: + if (lookahead == '.') ADVANCE(355); + if (lookahead == '_') ADVANCE(26); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); + END_STATE(); + case 26: + if (lookahead == '.') ADVANCE(355); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(25); + END_STATE(); + case 27: + if (lookahead == '/') ADVANCE(374); + END_STATE(); + case 28: + if (lookahead == '/') ADVANCE(374); + if (lookahead == '=') ADVANCE(221); + END_STATE(); + case 29: + if (lookahead == '=') ADVANCE(263); + END_STATE(); + case 30: + if (lookahead == '=') ADVANCE(222); + END_STATE(); + case 31: + if (lookahead == '=') ADVANCE(220); + END_STATE(); + case 32: + if (lookahead == '=') ADVANCE(217); + END_STATE(); + case 33: + if (lookahead == '=') ADVANCE(262); + END_STATE(); + case 34: + if (lookahead == '=') ADVANCE(262); + if (lookahead == '>') ADVANCE(229); + END_STATE(); + case 35: + if (lookahead == '=') ADVANCE(444); + END_STATE(); + case 36: + if (lookahead == '>') ADVANCE(229); + END_STATE(); + case 37: + if (lookahead == '_') ADVANCE(103); + END_STATE(); + case 38: + if (lookahead == '_') ADVANCE(48); + END_STATE(); + case 39: + if (lookahead == 'a') ADVANCE(100); + if (lookahead == 'o') ADVANCE(129); + END_STATE(); + case 40: + if (lookahead == 'a') ADVANCE(92); + END_STATE(); + case 41: + if (lookahead == 'a') ADVANCE(49); + END_STATE(); + case 42: + if (lookahead == 'a') ADVANCE(101); + END_STATE(); + case 43: + if (lookahead == 'a') ADVANCE(79); + END_STATE(); + case 44: + if (lookahead == 'a') ADVANCE(130); + END_STATE(); + case 45: + if (lookahead == 'a') ADVANCE(132); + END_STATE(); + case 46: + if (lookahead == 'a') ADVANCE(160); + END_STATE(); + case 47: + if (lookahead == 'a') ADVANCE(136); + if (lookahead == 'e') ADVANCE(133); + END_STATE(); + case 48: + if (lookahead == 'a') ADVANCE(99); + END_STATE(); + case 49: + if (lookahead == 'b') ADVANCE(96); + END_STATE(); + case 50: + if (lookahead == 'c') ADVANCE(80); + END_STATE(); + case 51: + if (lookahead == 'c') ADVANCE(161); + END_STATE(); + case 52: + if (lookahead == 'c') ADVANCE(137); + END_STATE(); + case 53: + if (lookahead == 'd') ADVANCE(245); + END_STATE(); + case 54: + if (lookahead == 'd') ADVANCE(444); + END_STATE(); + case 55: + if (lookahead == 'd') ADVANCE(227); + END_STATE(); + case 56: + if (lookahead == 'd') ADVANCE(68); + if (lookahead == 'f') ADVANCE(85); + if (lookahead == 'p') ADVANCE(45); + if (lookahead == 'r') ADVANCE(72); + if (lookahead == 's') ADVANCE(159); + if (lookahead == 't') ADVANCE(167); + if (lookahead == 'v') ADVANCE(47); + END_STATE(); + case 57: + if (lookahead == 'e') ADVANCE(193); + END_STATE(); + case 58: + if (lookahead == 'e') ADVANCE(359); + END_STATE(); + case 59: + if (lookahead == 'e') ADVANCE(215); + END_STATE(); + case 60: + if (lookahead == 'e') ADVANCE(444); + END_STATE(); + case 61: + if (lookahead == 'e') ADVANCE(361); + END_STATE(); + case 62: + if (lookahead == 'e') ADVANCE(207); + END_STATE(); + case 63: + if (lookahead == 'e') ADVANCE(271); + END_STATE(); + case 64: + if (lookahead == 'e') ADVANCE(78); + END_STATE(); + case 65: + if (lookahead == 'e') ADVANCE(211); + END_STATE(); + case 66: + if (lookahead == 'e') ADVANCE(40); + END_STATE(); + case 67: + if (lookahead == 'e') ADVANCE(155); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(142); + END_STATE(); + case 69: + if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'i') ADVANCE(102); + if (lookahead == 'w') ADVANCE(87); + END_STATE(); + case 70: + if (lookahead == 'e') ADVANCE(95); + END_STATE(); + case 71: + if (lookahead == 'e') ADVANCE(46); + END_STATE(); + case 72: + if (lookahead == 'e') ADVANCE(156); + END_STATE(); + case 73: + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 74: + if (lookahead == 'e') ADVANCE(149); + END_STATE(); + case 75: + if (lookahead == 'e') ADVANCE(141); + END_STATE(); + case 76: + if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'm') ADVANCE(127); + if (lookahead == 'n') ADVANCE(206); + END_STATE(); + case 77: + if (lookahead == 'f') ADVANCE(191); + if (lookahead == 'n') ADVANCE(206); + END_STATE(); + case 78: + if (lookahead == 'g') ADVANCE(166); + END_STATE(); + case 79: + if (lookahead == 'g') ADVANCE(60); + END_STATE(); + case 80: + if (lookahead == 'h') ADVANCE(195); + END_STATE(); + case 81: + if (lookahead == 'h') ADVANCE(83); + END_STATE(); + case 82: + if (lookahead == 'h') ADVANCE(116); + END_STATE(); + case 83: + if (lookahead == 'i') ADVANCE(97); + END_STATE(); + case 84: + if (lookahead == 'i') ADVANCE(111); + END_STATE(); + case 85: + if (lookahead == 'i') ADVANCE(70); + if (lookahead == 'u') ADVANCE(109); + END_STATE(); + case 86: + if (lookahead == 'i') ADVANCE(41); + END_STATE(); + case 87: + if (lookahead == 'i') ADVANCE(158); + END_STATE(); + case 88: + if (lookahead == 'i') ADVANCE(124); + END_STATE(); + case 89: + if (lookahead == 'i') ADVANCE(117); + END_STATE(); + case 90: + if (lookahead == 'i') ADVANCE(73); + END_STATE(); + case 91: + if (lookahead == 'i') ADVANCE(118); + END_STATE(); + case 92: + if (lookahead == 'k') ADVANCE(209); + END_STATE(); + case 93: + if (lookahead == 'l') ADVANCE(145); + END_STATE(); + case 94: + if (lookahead == 'l') ADVANCE(145); + if (lookahead == 'x') ADVANCE(122); + END_STATE(); + case 95: + if (lookahead == 'l') ADVANCE(54); + END_STATE(); + case 96: + if (lookahead == 'l') ADVANCE(60); + END_STATE(); + case 97: + if (lookahead == 'l') ADVANCE(62); + END_STATE(); + case 98: + if (lookahead == 'l') ADVANCE(63); + END_STATE(); + case 99: + if (lookahead == 'l') ADVANCE(75); + END_STATE(); + case 100: + if (lookahead == 'l') ADVANCE(150); + END_STATE(); + case 101: + if (lookahead == 'm') ADVANCE(444); + END_STATE(); + case 102: + if (lookahead == 'm') ADVANCE(126); + END_STATE(); + case 103: + if (lookahead == 'm') ADVANCE(74); + END_STATE(); + case 104: + if (lookahead == 'n') ADVANCE(53); + END_STATE(); + case 105: + if (lookahead == 'n') ADVANCE(53); + if (lookahead == 's') ADVANCE(234); + END_STATE(); + case 106: + if (lookahead == 'n') ADVANCE(146); + END_STATE(); + case 107: + if (lookahead == 'n') ADVANCE(444); + END_STATE(); + case 108: + if (lookahead == 'n') ADVANCE(35); + END_STATE(); + case 109: + if (lookahead == 'n') ADVANCE(51); + END_STATE(); + case 110: + if (lookahead == 'n') ADVANCE(143); + END_STATE(); + case 111: + if (lookahead == 'n') ADVANCE(164); + END_STATE(); + case 112: + if (lookahead == 'o') ADVANCE(106); + END_STATE(); + case 113: + if (lookahead == 'o') ADVANCE(202); + END_STATE(); + case 114: + if (lookahead == 'o') ADVANCE(202); + if (lookahead == 'r') ADVANCE(162); + if (lookahead == 'y') ADVANCE(123); + END_STATE(); + case 115: + if (lookahead == 'o') ADVANCE(151); + END_STATE(); + case 116: + if (lookahead == 'o') ADVANCE(55); + END_STATE(); + case 117: + if (lookahead == 'o') ADVANCE(108); + END_STATE(); + case 118: + if (lookahead == 'o') ADVANCE(107); + END_STATE(); + case 119: + if (lookahead == 'o') ADVANCE(139); + END_STATE(); + case 120: + if (lookahead == 'o') ADVANCE(140); + END_STATE(); + case 121: + if (lookahead == 'p') ADVANCE(223); + END_STATE(); + case 122: + if (lookahead == 'p') ADVANCE(119); + END_STATE(); + case 123: + if (lookahead == 'p') ADVANCE(59); + END_STATE(); + case 124: + if (lookahead == 'p') ADVANCE(161); + END_STATE(); + case 125: + if (lookahead == 'p') ADVANCE(60); + END_STATE(); + case 126: + if (lookahead == 'p') ADVANCE(98); + END_STATE(); + case 127: + if (lookahead == 'p') ADVANCE(120); + END_STATE(); + case 128: + if (lookahead == 'r') ADVANCE(247); + END_STATE(); + case 129: + if (lookahead == 'r') ADVANCE(197); + END_STATE(); + case 130: + if (lookahead == 'r') ADVANCE(225); + END_STATE(); + case 131: + if (lookahead == 'r') ADVANCE(66); + if (lookahead == 'y') ADVANCE(203); + END_STATE(); + case 132: + if (lookahead == 'r') ADVANCE(42); + END_STATE(); + case 133: + if (lookahead == 'r') ADVANCE(147); + END_STATE(); + case 134: + if (lookahead == 'r') ADVANCE(90); + END_STATE(); + case 135: + if (lookahead == 'r') ADVANCE(110); + END_STATE(); + case 136: + if (lookahead == 'r') ADVANCE(86); + END_STATE(); + case 137: + if (lookahead == 'r') ADVANCE(88); + END_STATE(); + case 138: + if (lookahead == 'r') ADVANCE(71); + END_STATE(); + case 139: + if (lookahead == 'r') ADVANCE(153); + END_STATE(); + case 140: + if (lookahead == 'r') ADVANCE(154); + END_STATE(); + case 141: + if (lookahead == 'r') ADVANCE(157); + END_STATE(); + case 142: + if (lookahead == 's') ADVANCE(52); + END_STATE(); + case 143: + if (lookahead == 's') ADVANCE(444); + END_STATE(); + case 144: + if (lookahead == 's') ADVANCE(267); + END_STATE(); + case 145: + if (lookahead == 's') ADVANCE(57); + END_STATE(); + case 146: + if (lookahead == 's') ADVANCE(152); + if (lookahead == 't') ADVANCE(84); + END_STATE(); + case 147: + if (lookahead == 's') ADVANCE(89); + END_STATE(); + case 148: + if (lookahead == 's') ADVANCE(43); + END_STATE(); + case 149: + if (lookahead == 's') ADVANCE(148); + END_STATE(); + case 150: + if (lookahead == 's') ADVANCE(61); + END_STATE(); + case 151: + if (lookahead == 't') ADVANCE(257); + END_STATE(); + case 152: + if (lookahead == 't') ADVANCE(269); + END_STATE(); + case 153: + if (lookahead == 't') ADVANCE(213); + END_STATE(); + case 154: + if (lookahead == 't') ADVANCE(232); + END_STATE(); + case 155: + if (lookahead == 't') ADVANCE(82); + END_STATE(); + case 156: + if (lookahead == 't') ADVANCE(163); + END_STATE(); + case 157: + if (lookahead == 't') ADVANCE(37); + END_STATE(); + case 158: + if (lookahead == 't') ADVANCE(50); + END_STATE(); + case 159: + if (lookahead == 't') ADVANCE(138); + END_STATE(); + case 160: + if (lookahead == 't') ADVANCE(64); + END_STATE(); + case 161: + if (lookahead == 't') ADVANCE(91); + END_STATE(); + case 162: + if (lookahead == 'u') ADVANCE(58); + END_STATE(); + case 163: + if (lookahead == 'u') ADVANCE(135); + END_STATE(); + case 164: + if (lookahead == 'u') ADVANCE(65); + END_STATE(); + case 165: + if (lookahead == 'y') ADVANCE(203); + END_STATE(); + case 166: + if (lookahead == 'y') ADVANCE(38); + END_STATE(); + case 167: + if (lookahead == 'y') ADVANCE(125); + END_STATE(); + case 168: + if (lookahead == '+' || + lookahead == '-') ADVANCE(170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(354); + END_STATE(); + case 169: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + END_STATE(); + case 170: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(354); + END_STATE(); + case 171: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(371); + END_STATE(); + case 172: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(358); + END_STATE(); + case 173: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(357); + END_STATE(); + case 174: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(171); + END_STATE(); + case 175: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(172); + END_STATE(); + case 176: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(174); + END_STATE(); + case 177: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(175); + END_STATE(); + case 178: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(176); + END_STATE(); + case 179: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(177); + END_STATE(); + case 180: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(178); + END_STATE(); + case 181: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(179); + END_STATE(); + case 182: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(181); + END_STATE(); + case 183: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(180); + END_STATE(); + case 184: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(183); + END_STATE(); + case 185: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(184); + END_STATE(); + case 186: + if (eof) ADVANCE(189); + if (lookahead == '\r') SKIP(186); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(30); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == ')') ADVANCE(231); + if (lookahead == '*') ADVANCE(31); + if (lookahead == '+') ADVANCE(250); + if (lookahead == ',') ADVANCE(190); + if (lookahead == '-') ADVANCE(252); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(28); + if (lookahead == ':') ADVANCE(32); + if (lookahead == '<') ADVANCE(259); + if (lookahead == '=') ADVANCE(199); + if (lookahead == '>') ADVANCE(264); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == ']') ADVANCE(205); + if (lookahead == 'b') ADVANCE(330); + if (lookahead == 'c') ADVANCE(313); + if (lookahead == 'e') ADVANCE(348); + if (lookahead == 'f') ADVANCE(273); + if (lookahead == 'i') ADVANCE(292); + if (lookahead == 'm') ADVANCE(280); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 's') ADVANCE(290); + if (lookahead == 't') ADVANCE(325); + if (lookahead == 'v') ADVANCE(276); + if (lookahead == 'w') ADVANCE(295); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 187: + if (eof) ADVANCE(189); + if (lookahead == '\r') SKIP(187); + if (lookahead == '!') ADVANCE(29); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '%') ADVANCE(255); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '*') ADVANCE(253); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(241); + if (lookahead == '/') ADVANCE(238); + if (lookahead == '<') ADVANCE(260); + if (lookahead == '=') ADVANCE(33); + if (lookahead == '>') ADVANCE(265); + if (lookahead == '?') ADVANCE(242); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'b') ADVANCE(330); + if (lookahead == 'c') ADVANCE(313); + if (lookahead == 'e') ADVANCE(348); + if (lookahead == 'f') ADVANCE(273); + if (lookahead == 'i') ADVANCE(292); + if (lookahead == 'm') ADVANCE(280); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 'o') ADVANCE(329); + if (lookahead == 's') ADVANCE(290); + if (lookahead == 't') ADVANCE(325); + if (lookahead == 'v') ADVANCE(276); + if (lookahead == 'w') ADVANCE(295); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(187); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 188: + if (eof) ADVANCE(189); + if (lookahead == '\r') SKIP(188); + if (lookahead == '"') ADVANCE(367); + if (lookahead == '#') ADVANCE(182); + if (lookahead == '\'') ADVANCE(363); + if (lookahead == '(') ADVANCE(230); + if (lookahead == '+') ADVANCE(249); + if (lookahead == '-') ADVANCE(251); + if (lookahead == '.') ADVANCE(169); + if (lookahead == '/') ADVANCE(27); + if (lookahead == '[') ADVANCE(204); + if (lookahead == '\\') ADVANCE(5); + if (lookahead == 'b') ADVANCE(330); + if (lookahead == 'c') ADVANCE(313); + if (lookahead == 'e') ADVANCE(305); + if (lookahead == 'f') ADVANCE(273); + if (lookahead == 'i') ADVANCE(292); + if (lookahead == 'm') ADVANCE(280); + if (lookahead == 'n') ADVANCE(316); + if (lookahead == 's') ADVANCE(290); + if (lookahead == 't') ADVANCE(325); + if (lookahead == 'v') ADVANCE(276); + if (lookahead == 'w') ADVANCE(295); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) SKIP(188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(350); + END_STATE(); + case 189: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 190: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 191: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 192: + ACCEPT_TOKEN(anon_sym_if); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 193: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 194: + ACCEPT_TOKEN(anon_sym_else); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 195: + ACCEPT_TOKEN(anon_sym_switch); + END_STATE(); + case 196: + ACCEPT_TOKEN(anon_sym_switch); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 197: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 198: + ACCEPT_TOKEN(anon_sym_for); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 199: + ACCEPT_TOKEN(anon_sym_EQ); + END_STATE(); + case 200: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(262); + END_STATE(); + case 201: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(262); + if (lookahead == '>') ADVANCE(229); + END_STATE(); + case 202: + ACCEPT_TOKEN(anon_sym_to); + END_STATE(); + case 203: + ACCEPT_TOKEN(anon_sym_by); + END_STATE(); + case 204: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 205: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 206: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 207: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 208: + ACCEPT_TOKEN(anon_sym_while); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 209: + ACCEPT_TOKEN(sym_break); + END_STATE(); + case 210: + ACCEPT_TOKEN(sym_break); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 211: + ACCEPT_TOKEN(sym_continue); + END_STATE(); + case 212: + ACCEPT_TOKEN(sym_continue); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 213: + ACCEPT_TOKEN(anon_sym_export); + END_STATE(); + case 214: + ACCEPT_TOKEN(anon_sym_export); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 215: + ACCEPT_TOKEN(anon_sym_type); + END_STATE(); + case 216: + ACCEPT_TOKEN(anon_sym_type); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 217: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 219: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 220: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 221: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 222: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 223: + ACCEPT_TOKEN(anon_sym_varip); + END_STATE(); + case 224: + ACCEPT_TOKEN(anon_sym_varip); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 225: + ACCEPT_TOKEN(anon_sym_var); + if (lookahead == 'i') ADVANCE(121); + END_STATE(); + case 226: + ACCEPT_TOKEN(anon_sym_var); + if (lookahead == 'i') ADVANCE(320); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 227: + ACCEPT_TOKEN(anon_sym_method); + END_STATE(); + case 228: + ACCEPT_TOKEN(anon_sym_method); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 229: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 230: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 231: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 232: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_import); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_as); + END_STATE(); + case 235: + ACCEPT_TOKEN(aux_sym_import_path_token1); + if ((!eof && lookahead == 00)) ADVANCE(237); + if (lookahead == '\n') ADVANCE(445); + if (lookahead == '\r') ADVANCE(1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '/') ADVANCE(237); + END_STATE(); + case 236: + ACCEPT_TOKEN(aux_sym_import_path_token1); + if (lookahead == '\\') ADVANCE(235); + if (lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(236); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '/') ADVANCE(237); + END_STATE(); + case 237: + ACCEPT_TOKEN(aux_sym_import_path_token1); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != ' ' && + lookahead != '/') ADVANCE(237); + END_STATE(); + case 238: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(374); + END_STATE(); + case 239: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(374); + if (lookahead == '=') ADVANCE(221); + END_STATE(); + case 240: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 241: + ACCEPT_TOKEN(anon_sym_DOT); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + END_STATE(); + case 242: + ACCEPT_TOKEN(anon_sym_QMARK); + END_STATE(); + case 243: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 244: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(217); + END_STATE(); + case 245: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 246: + ACCEPT_TOKEN(anon_sym_and); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 247: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 248: + ACCEPT_TOKEN(anon_sym_or); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 249: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 250: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(218); + END_STATE(); + case 251: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 252: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(219); + END_STATE(); + case 253: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 254: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '=') ADVANCE(220); + END_STATE(); + case 255: + ACCEPT_TOKEN(anon_sym_PERCENT); + END_STATE(); + case 256: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(222); + END_STATE(); + case 257: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 258: + ACCEPT_TOKEN(anon_sym_not); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 259: + ACCEPT_TOKEN(anon_sym_LT); + END_STATE(); + case 260: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(261); + END_STATE(); + case 261: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 262: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 263: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 264: + ACCEPT_TOKEN(anon_sym_GT); + END_STATE(); + case 265: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(266); + END_STATE(); + case 266: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 267: + ACCEPT_TOKEN(anon_sym_series); + END_STATE(); + case 268: + ACCEPT_TOKEN(anon_sym_series); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 269: + ACCEPT_TOKEN(anon_sym_const); + END_STATE(); + case 270: + ACCEPT_TOKEN(anon_sym_const); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 271: + ACCEPT_TOKEN(anon_sym_simple); + END_STATE(); + case 272: + ACCEPT_TOKEN(anon_sym_simple); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 273: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(302); + if (lookahead == 'o') ADVANCE(327); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 274: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(302); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 275: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(301); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 276: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'a') ADVANCE(328); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 277: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(294); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 278: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(228); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 279: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'd') ADVANCE(246); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 280: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(344); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 281: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(360); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 282: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(216); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 283: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(362); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 284: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(208); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 285: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(272); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 286: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(212); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 287: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(194); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 288: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(275); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 289: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(334); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 290: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'i') ADVANCE(307); + if (lookahead == 'w') ADVANCE(299); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 291: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'i') ADVANCE(307); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 292: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(192); + if (lookahead == 'm') ADVANCE(324); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 293: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'f') ADVANCE(192); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 294: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(196); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 295: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(298); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 296: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'h') ADVANCE(314); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 297: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(312); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 298: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(303); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 299: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(340); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 300: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'i') ADVANCE(289); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 301: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'k') ADVANCE(210); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 302: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(337); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 303: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(284); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 304: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(285); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 305: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(338); + if (lookahead == 'x') ADVANCE(321); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 306: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'l') ADVANCE(338); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 307: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(323); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 308: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'm') ADVANCE(324); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 309: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(335); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 310: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(279); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 311: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(336); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 312: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'n') ADVANCE(346); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 313: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(309); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 314: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(278); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 315: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(327); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 316: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(339); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 317: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(311); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 318: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(332); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 319: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'o') ADVANCE(333); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 320: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(224); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 321: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(318); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 322: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(282); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 323: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(304); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 324: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(319); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 325: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(345); + if (lookahead == 'y') ADVANCE(322); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 326: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(345); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 327: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(198); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 328: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(226); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 329: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(248); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 330: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(288); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 331: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(300); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 332: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(342); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 333: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'r') ADVANCE(343); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 334: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(268); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 335: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(341); + if (lookahead == 't') ADVANCE(297); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 336: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(341); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 337: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(283); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 338: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 's') ADVANCE(287); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 339: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(258); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 340: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(277); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 341: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(270); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 342: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(214); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 343: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(233); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 344: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(296); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 345: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(281); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 346: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'u') ADVANCE(286); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 347: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'w') ADVANCE(299); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 348: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') ADVANCE(321); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 349: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'y') ADVANCE(322); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 350: + ACCEPT_TOKEN(sym_identifier); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 351: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(355); + if (lookahead == '_') ADVANCE(26); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(168); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(351); + END_STATE(); + case 352: + ACCEPT_TOKEN(sym_float); + END_STATE(); + case 353: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(355); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(168); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + END_STATE(); + case 354: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(356); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(354); + END_STATE(); + case 355: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(168); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(353); + END_STATE(); + case 356: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(352); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(354); + END_STATE(); + case 357: + ACCEPT_TOKEN(sym_color); + END_STATE(); + case 358: + ACCEPT_TOKEN(sym_color); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(173); + END_STATE(); + case 359: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 360: + ACCEPT_TOKEN(sym_true); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 361: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 362: + ACCEPT_TOKEN(sym_false); + if (set_contains(sym_identifier_character_set_2, 763, lookahead)) ADVANCE(350); + END_STATE(); + case 363: + ACCEPT_TOKEN(anon_sym_SQUOTE); + END_STATE(); + case 364: + ACCEPT_TOKEN(aux_sym_single_quotted_string_token1); + ADVANCE_MAP( + '\r', 364, + '/', 365, + '\t', 364, + 0x0b, 364, + '\f', 364, + ' ', 364, + 0x200b, 364, + 0x2060, 364, + 0xfeff, 364, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '\'' && + lookahead != '\\') ADVANCE(366); + END_STATE(); + case 365: + ACCEPT_TOKEN(aux_sym_single_quotted_string_token1); + if (lookahead == '/') ADVANCE(366); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(366); + END_STATE(); + case 366: + ACCEPT_TOKEN(aux_sym_single_quotted_string_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '\'' && + lookahead != '\\') ADVANCE(366); + END_STATE(); + case 367: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 368: + ACCEPT_TOKEN(aux_sym_double_quotted_string_token1); + if (lookahead == '\r') ADVANCE(368); + if (lookahead == '/') ADVANCE(369); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ' || + lookahead == 0x200b || + lookahead == 0x2060 || + lookahead == 0xfeff) ADVANCE(368); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(370); + END_STATE(); + case 369: + ACCEPT_TOKEN(aux_sym_double_quotted_string_token1); + if (lookahead == '/') ADVANCE(370); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(370); + END_STATE(); + case 370: + ACCEPT_TOKEN(aux_sym_double_quotted_string_token1); + if (lookahead != 0 && + lookahead != '"' && + lookahead != '\\') ADVANCE(370); + END_STATE(); + case 371: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 372: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(371); + END_STATE(); + case 373: + ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(372); + END_STATE(); + case 374: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + END_STATE(); + case 375: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 376: + ACCEPT_TOKEN(aux_sym_comment_token1); + if ((!eof && lookahead == 00)) ADVANCE(443); + if (lookahead == '\n') ADVANCE(445); + if (lookahead == '\r') ADVANCE(377); + if (lookahead != 0) ADVANCE(443); + END_STATE(); + case 377: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '\n') ADVANCE(445); + if (lookahead != 0) ADVANCE(443); + END_STATE(); + case 378: + ACCEPT_TOKEN(aux_sym_comment_token1); + ADVANCE_MAP( + '\r', 378, + '/', 379, + '@', 394, + '\\', 376, + '\t', 378, + 0x0b, 378, + '\f', 378, + ' ', 378, + 0x200b, 378, + 0x2060, 378, + 0xfeff, 378, + ); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(443); + END_STATE(); + case 379: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '/') ADVANCE(375); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 380: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '=') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 381: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '_') ADVANCE(414); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 382: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == '_') ADVANCE(389); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 383: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(424); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 384: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(413); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 385: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(390); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 386: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(404); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 387: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(423); + if (lookahead == 'e') ADVANCE(425); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 388: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(438); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 389: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'a') ADVANCE(412); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 390: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'b') ADVANCE(411); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 391: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'c') ADVANCE(439); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 392: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'c') ADVANCE(427); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 393: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'd') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 394: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'd') ADVANCE(396); + if (lookahead == 'f') ADVANCE(407); + if (lookahead == 'p') ADVANCE(383); + if (lookahead == 'r') ADVANCE(399); + if (lookahead == 's') ADVANCE(436); + if (lookahead == 't') ADVANCE(441); + if (lookahead == 'v') ADVANCE(387); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 395: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 396: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(431); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 397: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(410); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 398: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(403); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 399: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(435); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 400: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(388); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 401: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(433); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 402: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'e') ADVANCE(429); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 403: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'g') ADVANCE(442); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 404: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'g') ADVANCE(395); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 405: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'i') ADVANCE(419); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 406: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'i') ADVANCE(421); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 407: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'i') ADVANCE(397); + if (lookahead == 'u') ADVANCE(417); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 408: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'i') ADVANCE(385); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 409: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'i') ADVANCE(420); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 410: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'l') ADVANCE(393); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 411: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'l') ADVANCE(395); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 412: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'l') ADVANCE(402); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 413: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'm') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 414: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'm') ADVANCE(401); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 415: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'n') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 416: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'n') ADVANCE(380); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 417: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'n') ADVANCE(391); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 418: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'n') ADVANCE(430); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 419: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'o') ADVANCE(416); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 420: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'o') ADVANCE(415); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 421: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'p') ADVANCE(439); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 422: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'p') ADVANCE(395); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 423: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(408); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 424: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(384); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 425: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(432); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 426: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(418); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 427: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(406); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 428: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(400); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 429: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'r') ADVANCE(437); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 430: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 's') ADVANCE(444); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 431: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 's') ADVANCE(392); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 432: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 's') ADVANCE(405); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 433: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 's') ADVANCE(434); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 434: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 's') ADVANCE(386); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 435: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 't') ADVANCE(440); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 436: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 't') ADVANCE(428); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 437: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 't') ADVANCE(381); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 438: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 't') ADVANCE(398); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 439: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 't') ADVANCE(409); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 440: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'u') ADVANCE(426); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 441: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'y') ADVANCE(422); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 442: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead == 'y') ADVANCE(382); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 443: + ACCEPT_TOKEN(aux_sym_comment_token1); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(443); + END_STATE(); + case 444: + ACCEPT_TOKEN(sym_annotations); + END_STATE(); + case 445: + ACCEPT_TOKEN(sym_line_continuation); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 186}, + [2] = {.lex_state = 186, .external_lex_state = 2}, + [3] = {.lex_state = 186, .external_lex_state = 2}, + [4] = {.lex_state = 186, .external_lex_state = 3}, + [5] = {.lex_state = 186, .external_lex_state = 3}, + [6] = {.lex_state = 186, .external_lex_state = 2}, + [7] = {.lex_state = 186, .external_lex_state = 3}, + [8] = {.lex_state = 186, .external_lex_state = 3}, + [9] = {.lex_state = 186, .external_lex_state = 3}, + [10] = {.lex_state = 186, .external_lex_state = 3}, + [11] = {.lex_state = 186, .external_lex_state = 3}, + [12] = {.lex_state = 186, .external_lex_state = 3}, + [13] = {.lex_state = 186, .external_lex_state = 3}, + [14] = {.lex_state = 186, .external_lex_state = 3}, + [15] = {.lex_state = 186, .external_lex_state = 3}, + [16] = {.lex_state = 186, .external_lex_state = 3}, + [17] = {.lex_state = 186, .external_lex_state = 2}, + [18] = {.lex_state = 186, .external_lex_state = 3}, + [19] = {.lex_state = 186, .external_lex_state = 2}, + [20] = {.lex_state = 186, .external_lex_state = 2}, + [21] = {.lex_state = 186, .external_lex_state = 3}, + [22] = {.lex_state = 186, .external_lex_state = 3}, + [23] = {.lex_state = 186, .external_lex_state = 3}, + [24] = {.lex_state = 186, .external_lex_state = 3}, + [25] = {.lex_state = 186, .external_lex_state = 3}, + [26] = {.lex_state = 186, .external_lex_state = 3}, + [27] = {.lex_state = 186, .external_lex_state = 3}, + [28] = {.lex_state = 186, .external_lex_state = 3}, + [29] = {.lex_state = 186, .external_lex_state = 3}, + [30] = {.lex_state = 186, .external_lex_state = 2}, + [31] = {.lex_state = 186, .external_lex_state = 3}, + [32] = {.lex_state = 186, .external_lex_state = 2}, + [33] = {.lex_state = 186, .external_lex_state = 2}, + [34] = {.lex_state = 186, .external_lex_state = 2}, + [35] = {.lex_state = 186}, + [36] = {.lex_state = 186, .external_lex_state = 2}, + [37] = {.lex_state = 186, .external_lex_state = 2}, + [38] = {.lex_state = 186, .external_lex_state = 2}, + [39] = {.lex_state = 186, .external_lex_state = 2}, + [40] = {.lex_state = 186}, + [41] = {.lex_state = 186, .external_lex_state = 2}, + [42] = {.lex_state = 6, .external_lex_state = 4}, + [43] = {.lex_state = 6, .external_lex_state = 4}, + [44] = {.lex_state = 6, .external_lex_state = 4}, + [45] = {.lex_state = 6, .external_lex_state = 4}, + [46] = {.lex_state = 186, .external_lex_state = 5}, + [47] = {.lex_state = 186, .external_lex_state = 6}, + [48] = {.lex_state = 187, .external_lex_state = 5}, + [49] = {.lex_state = 187, .external_lex_state = 6}, + [50] = {.lex_state = 187, .external_lex_state = 5}, + [51] = {.lex_state = 187, .external_lex_state = 6}, + [52] = {.lex_state = 187, .external_lex_state = 5}, + [53] = {.lex_state = 187, .external_lex_state = 6}, + [54] = {.lex_state = 187, .external_lex_state = 6}, + [55] = {.lex_state = 187, .external_lex_state = 5}, + [56] = {.lex_state = 187, .external_lex_state = 5}, + [57] = {.lex_state = 187, .external_lex_state = 6}, + [58] = {.lex_state = 187, .external_lex_state = 6}, + [59] = {.lex_state = 187, .external_lex_state = 5}, + [60] = {.lex_state = 187, .external_lex_state = 6}, + [61] = {.lex_state = 187, .external_lex_state = 6}, + [62] = {.lex_state = 187, .external_lex_state = 5}, + [63] = {.lex_state = 187, .external_lex_state = 5}, + [64] = {.lex_state = 187, .external_lex_state = 5}, + [65] = {.lex_state = 187, .external_lex_state = 5}, + [66] = {.lex_state = 187, .external_lex_state = 6}, + [67] = {.lex_state = 187, .external_lex_state = 5}, + [68] = {.lex_state = 187, .external_lex_state = 5}, + [69] = {.lex_state = 187, .external_lex_state = 6}, + [70] = {.lex_state = 187, .external_lex_state = 6}, + [71] = {.lex_state = 187, .external_lex_state = 6}, + [72] = {.lex_state = 187, .external_lex_state = 6}, + [73] = {.lex_state = 187, .external_lex_state = 5}, + [74] = {.lex_state = 187, .external_lex_state = 5}, + [75] = {.lex_state = 187, .external_lex_state = 6}, + [76] = {.lex_state = 187, .external_lex_state = 5}, + [77] = {.lex_state = 187, .external_lex_state = 6}, + [78] = {.lex_state = 187, .external_lex_state = 5}, + [79] = {.lex_state = 187, .external_lex_state = 5}, + [80] = {.lex_state = 187, .external_lex_state = 5}, + [81] = {.lex_state = 187, .external_lex_state = 5}, + [82] = {.lex_state = 187, .external_lex_state = 5}, + [83] = {.lex_state = 187, .external_lex_state = 6}, + [84] = {.lex_state = 187, .external_lex_state = 6}, + [85] = {.lex_state = 187, .external_lex_state = 5}, + [86] = {.lex_state = 187, .external_lex_state = 5}, + [87] = {.lex_state = 187, .external_lex_state = 6}, + [88] = {.lex_state = 187, .external_lex_state = 6}, + [89] = {.lex_state = 187, .external_lex_state = 5}, + [90] = {.lex_state = 187, .external_lex_state = 6}, + [91] = {.lex_state = 187, .external_lex_state = 5}, + [92] = {.lex_state = 187, .external_lex_state = 6}, + [93] = {.lex_state = 187, .external_lex_state = 5}, + [94] = {.lex_state = 187, .external_lex_state = 5}, + [95] = {.lex_state = 187, .external_lex_state = 6}, + [96] = {.lex_state = 187, .external_lex_state = 6}, + [97] = {.lex_state = 187, .external_lex_state = 6}, + [98] = {.lex_state = 187, .external_lex_state = 5}, + [99] = {.lex_state = 187, .external_lex_state = 6}, + [100] = {.lex_state = 187, .external_lex_state = 6}, + [101] = {.lex_state = 187, .external_lex_state = 5}, + [102] = {.lex_state = 187, .external_lex_state = 6}, + [103] = {.lex_state = 187, .external_lex_state = 6}, + [104] = {.lex_state = 7}, + [105] = {.lex_state = 8}, + [106] = {.lex_state = 8}, + [107] = {.lex_state = 8}, + [108] = {.lex_state = 8}, + [109] = {.lex_state = 8}, + [110] = {.lex_state = 8}, + [111] = {.lex_state = 8}, + [112] = {.lex_state = 8}, + [113] = {.lex_state = 8}, + [114] = {.lex_state = 8}, + [115] = {.lex_state = 8}, + [116] = {.lex_state = 8}, + [117] = {.lex_state = 8}, + [118] = {.lex_state = 8}, + [119] = {.lex_state = 8}, + [120] = {.lex_state = 8}, + [121] = {.lex_state = 8}, + [122] = {.lex_state = 8}, + [123] = {.lex_state = 8}, + [124] = {.lex_state = 8}, + [125] = {.lex_state = 8}, + [126] = {.lex_state = 8}, + [127] = {.lex_state = 8}, + [128] = {.lex_state = 8}, + [129] = {.lex_state = 8}, + [130] = {.lex_state = 8}, + [131] = {.lex_state = 8}, + [132] = {.lex_state = 8}, + [133] = {.lex_state = 8}, + [134] = {.lex_state = 8}, + [135] = {.lex_state = 8}, + [136] = {.lex_state = 8}, + [137] = {.lex_state = 8}, + [138] = {.lex_state = 8}, + [139] = {.lex_state = 8}, + [140] = {.lex_state = 8}, + [141] = {.lex_state = 9, .external_lex_state = 5}, + [142] = {.lex_state = 9, .external_lex_state = 2}, + [143] = {.lex_state = 9, .external_lex_state = 2}, + [144] = {.lex_state = 9, .external_lex_state = 2}, + [145] = {.lex_state = 9, .external_lex_state = 2}, + [146] = {.lex_state = 9, .external_lex_state = 2}, + [147] = {.lex_state = 9, .external_lex_state = 2}, + [148] = {.lex_state = 9, .external_lex_state = 2}, + [149] = {.lex_state = 188}, + [150] = {.lex_state = 188, .external_lex_state = 2}, + [151] = {.lex_state = 9, .external_lex_state = 5}, + [152] = {.lex_state = 188}, + [153] = {.lex_state = 188, .external_lex_state = 2}, + [154] = {.lex_state = 188}, + [155] = {.lex_state = 9}, + [156] = {.lex_state = 9}, + [157] = {.lex_state = 188, .external_lex_state = 2}, + [158] = {.lex_state = 9}, + [159] = {.lex_state = 9}, + [160] = {.lex_state = 9}, + [161] = {.lex_state = 9}, + [162] = {.lex_state = 9}, + [163] = {.lex_state = 186, .external_lex_state = 5}, + [164] = {.lex_state = 186, .external_lex_state = 5}, + [165] = {.lex_state = 186, .external_lex_state = 5}, + [166] = {.lex_state = 186, .external_lex_state = 6}, + [167] = {.lex_state = 186, .external_lex_state = 6}, + [168] = {.lex_state = 186, .external_lex_state = 6}, + [169] = {.lex_state = 10, .external_lex_state = 5}, + [170] = {.lex_state = 9}, + [171] = {.lex_state = 9}, + [172] = {.lex_state = 188}, + [173] = {.lex_state = 9}, + [174] = {.lex_state = 9}, + [175] = {.lex_state = 11, .external_lex_state = 4}, + [176] = {.lex_state = 9}, + [177] = {.lex_state = 9}, + [178] = {.lex_state = 9}, + [179] = {.lex_state = 9}, + [180] = {.lex_state = 9}, + [181] = {.lex_state = 9}, + [182] = {.lex_state = 9}, + [183] = {.lex_state = 188, .external_lex_state = 2}, + [184] = {.lex_state = 9}, + [185] = {.lex_state = 9}, + [186] = {.lex_state = 9}, + [187] = {.lex_state = 188}, + [188] = {.lex_state = 188}, + [189] = {.lex_state = 9}, + [190] = {.lex_state = 9}, + [191] = {.lex_state = 188}, + [192] = {.lex_state = 9}, + [193] = {.lex_state = 9}, + [194] = {.lex_state = 9}, + [195] = {.lex_state = 9}, + [196] = {.lex_state = 186, .external_lex_state = 6}, + [197] = {.lex_state = 9}, + [198] = {.lex_state = 9}, + [199] = {.lex_state = 9}, + [200] = {.lex_state = 9}, + [201] = {.lex_state = 186, .external_lex_state = 6}, + [202] = {.lex_state = 188}, + [203] = {.lex_state = 9}, + [204] = {.lex_state = 9}, + [205] = {.lex_state = 186, .external_lex_state = 5}, + [206] = {.lex_state = 9}, + [207] = {.lex_state = 9}, + [208] = {.lex_state = 9}, + [209] = {.lex_state = 9}, + [210] = {.lex_state = 9}, + [211] = {.lex_state = 9}, + [212] = {.lex_state = 11, .external_lex_state = 4}, + [213] = {.lex_state = 9}, + [214] = {.lex_state = 9}, + [215] = {.lex_state = 9}, + [216] = {.lex_state = 9}, + [217] = {.lex_state = 9}, + [218] = {.lex_state = 9}, + [219] = {.lex_state = 9}, + [220] = {.lex_state = 9}, + [221] = {.lex_state = 9}, + [222] = {.lex_state = 9}, + [223] = {.lex_state = 9}, + [224] = {.lex_state = 9}, + [225] = {.lex_state = 9}, + [226] = {.lex_state = 9}, + [227] = {.lex_state = 9}, + [228] = {.lex_state = 9}, + [229] = {.lex_state = 9}, + [230] = {.lex_state = 9}, + [231] = {.lex_state = 9}, + [232] = {.lex_state = 9}, + [233] = {.lex_state = 186, .external_lex_state = 5}, + [234] = {.lex_state = 9}, + [235] = {.lex_state = 9}, + [236] = {.lex_state = 9}, + [237] = {.lex_state = 9}, + [238] = {.lex_state = 9}, + [239] = {.lex_state = 9}, + [240] = {.lex_state = 9}, + [241] = {.lex_state = 9}, + [242] = {.lex_state = 9}, + [243] = {.lex_state = 9}, + [244] = {.lex_state = 9}, + [245] = {.lex_state = 9}, + [246] = {.lex_state = 9}, + [247] = {.lex_state = 9}, + [248] = {.lex_state = 9}, + [249] = {.lex_state = 9}, + [250] = {.lex_state = 9}, + [251] = {.lex_state = 11, .external_lex_state = 4}, + [252] = {.lex_state = 9}, + [253] = {.lex_state = 9}, + [254] = {.lex_state = 9}, + [255] = {.lex_state = 9}, + [256] = {.lex_state = 9}, + [257] = {.lex_state = 9}, + [258] = {.lex_state = 9}, + [259] = {.lex_state = 9}, + [260] = {.lex_state = 9}, + [261] = {.lex_state = 186, .external_lex_state = 6}, + [262] = {.lex_state = 9}, + [263] = {.lex_state = 9}, + [264] = {.lex_state = 9}, + [265] = {.lex_state = 9}, + [266] = {.lex_state = 9}, + [267] = {.lex_state = 9}, + [268] = {.lex_state = 11, .external_lex_state = 4}, + [269] = {.lex_state = 9}, + [270] = {.lex_state = 9}, + [271] = {.lex_state = 9}, + [272] = {.lex_state = 9}, + [273] = {.lex_state = 9}, + [274] = {.lex_state = 9}, + [275] = {.lex_state = 9}, + [276] = {.lex_state = 9}, + [277] = {.lex_state = 9}, + [278] = {.lex_state = 9}, + [279] = {.lex_state = 9}, + [280] = {.lex_state = 9}, + [281] = {.lex_state = 9}, + [282] = {.lex_state = 9}, + [283] = {.lex_state = 9}, + [284] = {.lex_state = 9}, + [285] = {.lex_state = 9}, + [286] = {.lex_state = 9}, + [287] = {.lex_state = 9}, + [288] = {.lex_state = 9}, + [289] = {.lex_state = 188, .external_lex_state = 2}, + [290] = {.lex_state = 9}, + [291] = {.lex_state = 9}, + [292] = {.lex_state = 9}, + [293] = {.lex_state = 9}, + [294] = {.lex_state = 9}, + [295] = {.lex_state = 9}, + [296] = {.lex_state = 9}, + [297] = {.lex_state = 9}, + [298] = {.lex_state = 9}, + [299] = {.lex_state = 9}, + [300] = {.lex_state = 9}, + [301] = {.lex_state = 188, .external_lex_state = 2}, + [302] = {.lex_state = 9}, + [303] = {.lex_state = 9}, + [304] = {.lex_state = 9}, + [305] = {.lex_state = 9}, + [306] = {.lex_state = 9}, + [307] = {.lex_state = 188, .external_lex_state = 2}, + [308] = {.lex_state = 9}, + [309] = {.lex_state = 9}, + [310] = {.lex_state = 9}, + [311] = {.lex_state = 9}, + [312] = {.lex_state = 9}, + [313] = {.lex_state = 9}, + [314] = {.lex_state = 9}, + [315] = {.lex_state = 9}, + [316] = {.lex_state = 186, .external_lex_state = 6}, + [317] = {.lex_state = 186, .external_lex_state = 6}, + [318] = {.lex_state = 9}, + [319] = {.lex_state = 188, .external_lex_state = 2}, + [320] = {.lex_state = 9}, + [321] = {.lex_state = 10, .external_lex_state = 5}, + [322] = {.lex_state = 9}, + [323] = {.lex_state = 186, .external_lex_state = 5}, + [324] = {.lex_state = 186, .external_lex_state = 5}, + [325] = {.lex_state = 9}, + [326] = {.lex_state = 9}, + [327] = {.lex_state = 9}, + [328] = {.lex_state = 9}, + [329] = {.lex_state = 9}, + [330] = {.lex_state = 188, .external_lex_state = 2}, + [331] = {.lex_state = 9}, + [332] = {.lex_state = 188}, + [333] = {.lex_state = 9}, + [334] = {.lex_state = 9}, + [335] = {.lex_state = 9}, + [336] = {.lex_state = 9}, + [337] = {.lex_state = 9}, + [338] = {.lex_state = 186, .external_lex_state = 5}, + [339] = {.lex_state = 9}, + [340] = {.lex_state = 9}, + [341] = {.lex_state = 9}, + [342] = {.lex_state = 9}, + [343] = {.lex_state = 186, .external_lex_state = 2}, + [344] = {.lex_state = 186}, + [345] = {.lex_state = 186, .external_lex_state = 2}, + [346] = {.lex_state = 186}, + [347] = {.lex_state = 186, .external_lex_state = 2}, + [348] = {.lex_state = 186, .external_lex_state = 2}, + [349] = {.lex_state = 186, .external_lex_state = 2}, + [350] = {.lex_state = 186, .external_lex_state = 2}, + [351] = {.lex_state = 186, .external_lex_state = 2}, + [352] = {.lex_state = 186, .external_lex_state = 2}, + [353] = {.lex_state = 186}, + [354] = {.lex_state = 186, .external_lex_state = 2}, + [355] = {.lex_state = 186, .external_lex_state = 2}, + [356] = {.lex_state = 10, .external_lex_state = 5}, + [357] = {.lex_state = 186, .external_lex_state = 2}, + [358] = {.lex_state = 186, .external_lex_state = 2}, + [359] = {.lex_state = 186, .external_lex_state = 2}, + [360] = {.lex_state = 186, .external_lex_state = 2}, + [361] = {.lex_state = 186, .external_lex_state = 2}, + [362] = {.lex_state = 186, .external_lex_state = 2}, + [363] = {.lex_state = 10, .external_lex_state = 5}, + [364] = {.lex_state = 186, .external_lex_state = 2}, + [365] = {.lex_state = 186, .external_lex_state = 2}, + [366] = {.lex_state = 186, .external_lex_state = 2}, + [367] = {.lex_state = 186}, + [368] = {.lex_state = 186, .external_lex_state = 2}, + [369] = {.lex_state = 186, .external_lex_state = 2}, + [370] = {.lex_state = 186}, + [371] = {.lex_state = 186}, + [372] = {.lex_state = 10, .external_lex_state = 5}, + [373] = {.lex_state = 186}, + [374] = {.lex_state = 186}, + [375] = {.lex_state = 186}, + [376] = {.lex_state = 186}, + [377] = {.lex_state = 186}, + [378] = {.lex_state = 186}, + [379] = {.lex_state = 186}, + [380] = {.lex_state = 186, .external_lex_state = 2}, + [381] = {.lex_state = 10, .external_lex_state = 5}, + [382] = {.lex_state = 186, .external_lex_state = 2}, + [383] = {.lex_state = 186, .external_lex_state = 2}, + [384] = {.lex_state = 186, .external_lex_state = 2}, + [385] = {.lex_state = 10, .external_lex_state = 5}, + [386] = {.lex_state = 186, .external_lex_state = 2}, + [387] = {.lex_state = 186}, + [388] = {.lex_state = 186}, + [389] = {.lex_state = 186}, + [390] = {.lex_state = 186, .external_lex_state = 2}, + [391] = {.lex_state = 186}, + [392] = {.lex_state = 186}, + [393] = {.lex_state = 10, .external_lex_state = 5}, + [394] = {.lex_state = 186}, + [395] = {.lex_state = 186}, + [396] = {.lex_state = 186, .external_lex_state = 2}, + [397] = {.lex_state = 10, .external_lex_state = 5}, + [398] = {.lex_state = 186, .external_lex_state = 2}, + [399] = {.lex_state = 186}, + [400] = {.lex_state = 186}, + [401] = {.lex_state = 186, .external_lex_state = 2}, + [402] = {.lex_state = 10, .external_lex_state = 5}, + [403] = {.lex_state = 186}, + [404] = {.lex_state = 186}, + [405] = {.lex_state = 10, .external_lex_state = 5}, + [406] = {.lex_state = 186}, + [407] = {.lex_state = 186}, + [408] = {.lex_state = 186, .external_lex_state = 2}, + [409] = {.lex_state = 186, .external_lex_state = 2}, + [410] = {.lex_state = 186}, + [411] = {.lex_state = 186, .external_lex_state = 2}, + [412] = {.lex_state = 186}, + [413] = {.lex_state = 10, .external_lex_state = 5}, + [414] = {.lex_state = 186}, + [415] = {.lex_state = 186, .external_lex_state = 2}, + [416] = {.lex_state = 186, .external_lex_state = 2}, + [417] = {.lex_state = 186}, + [418] = {.lex_state = 186, .external_lex_state = 2}, + [419] = {.lex_state = 186}, + [420] = {.lex_state = 186}, + [421] = {.lex_state = 11, .external_lex_state = 4}, + [422] = {.lex_state = 186}, + [423] = {.lex_state = 186, .external_lex_state = 2}, + [424] = {.lex_state = 186}, + [425] = {.lex_state = 186}, + [426] = {.lex_state = 186}, + [427] = {.lex_state = 186}, + [428] = {.lex_state = 186, .external_lex_state = 2}, + [429] = {.lex_state = 186}, + [430] = {.lex_state = 10, .external_lex_state = 5}, + [431] = {.lex_state = 10, .external_lex_state = 5}, + [432] = {.lex_state = 10, .external_lex_state = 5}, + [433] = {.lex_state = 10, .external_lex_state = 5}, + [434] = {.lex_state = 10, .external_lex_state = 5}, + [435] = {.lex_state = 11}, + [436] = {.lex_state = 10, .external_lex_state = 5}, + [437] = {.lex_state = 10, .external_lex_state = 5}, + [438] = {.lex_state = 10, .external_lex_state = 5}, + [439] = {.lex_state = 10, .external_lex_state = 5}, + [440] = {.lex_state = 10, .external_lex_state = 5}, + [441] = {.lex_state = 10, .external_lex_state = 5}, + [442] = {.lex_state = 10, .external_lex_state = 5}, + [443] = {.lex_state = 10, .external_lex_state = 5}, + [444] = {.lex_state = 10, .external_lex_state = 5}, + [445] = {.lex_state = 10, .external_lex_state = 5}, + [446] = {.lex_state = 10, .external_lex_state = 5}, + [447] = {.lex_state = 12, .external_lex_state = 4}, + [448] = {.lex_state = 12}, + [449] = {.lex_state = 13}, + [450] = {.lex_state = 12, .external_lex_state = 4}, + [451] = {.lex_state = 13}, + [452] = {.lex_state = 14}, + [453] = {.lex_state = 12}, + [454] = {.lex_state = 13}, + [455] = {.lex_state = 13}, + [456] = {.lex_state = 13}, + [457] = {.lex_state = 13}, + [458] = {.lex_state = 13, .external_lex_state = 3}, + [459] = {.lex_state = 13}, + [460] = {.lex_state = 13}, + [461] = {.lex_state = 13}, + [462] = {.lex_state = 13}, + [463] = {.lex_state = 13}, + [464] = {.lex_state = 6, .external_lex_state = 4}, + [465] = {.lex_state = 15}, + [466] = {.lex_state = 13}, + [467] = {.lex_state = 13}, + [468] = {.lex_state = 13, .external_lex_state = 5}, + [469] = {.lex_state = 13, .external_lex_state = 3}, + [470] = {.lex_state = 13}, + [471] = {.lex_state = 13}, + [472] = {.lex_state = 13}, + [473] = {.lex_state = 13}, + [474] = {.lex_state = 13, .external_lex_state = 4}, + [475] = {.lex_state = 13}, + [476] = {.lex_state = 13, .external_lex_state = 5}, + [477] = {.lex_state = 13}, + [478] = {.lex_state = 13, .external_lex_state = 4}, + [479] = {.lex_state = 13}, + [480] = {.lex_state = 13}, + [481] = {.lex_state = 13, .external_lex_state = 3}, + [482] = {.lex_state = 13}, + [483] = {.lex_state = 13}, + [484] = {.lex_state = 13}, + [485] = {.lex_state = 13}, + [486] = {.lex_state = 13}, + [487] = {.lex_state = 13}, + [488] = {.lex_state = 13}, + [489] = {.lex_state = 13}, + [490] = {.lex_state = 13}, + [491] = {.lex_state = 13}, + [492] = {.lex_state = 13}, + [493] = {.lex_state = 13}, + [494] = {.lex_state = 13, .external_lex_state = 3}, + [495] = {.lex_state = 13, .external_lex_state = 3}, + [496] = {.lex_state = 13, .external_lex_state = 3}, + [497] = {.lex_state = 13, .external_lex_state = 3}, + [498] = {.lex_state = 16, .external_lex_state = 2}, + [499] = {.lex_state = 16, .external_lex_state = 2}, + [500] = {.lex_state = 13, .external_lex_state = 3}, + [501] = {.lex_state = 13, .external_lex_state = 4}, + [502] = {.lex_state = 13, .external_lex_state = 3}, + [503] = {.lex_state = 13, .external_lex_state = 4}, + [504] = {.lex_state = 13, .external_lex_state = 3}, + [505] = {.lex_state = 13, .external_lex_state = 3}, + [506] = {.lex_state = 13, .external_lex_state = 5}, + [507] = {.lex_state = 13, .external_lex_state = 3}, + [508] = {.lex_state = 13, .external_lex_state = 5}, + [509] = {.lex_state = 13, .external_lex_state = 4}, + [510] = {.lex_state = 13, .external_lex_state = 5}, + [511] = {.lex_state = 13, .external_lex_state = 4}, + [512] = {.lex_state = 13, .external_lex_state = 5}, + [513] = {.lex_state = 13, .external_lex_state = 3}, + [514] = {.lex_state = 13, .external_lex_state = 5}, + [515] = {.lex_state = 16, .external_lex_state = 2}, + [516] = {.lex_state = 13, .external_lex_state = 5}, + [517] = {.lex_state = 13, .external_lex_state = 4}, + [518] = {.lex_state = 13, .external_lex_state = 3}, + [519] = {.lex_state = 13, .external_lex_state = 3}, + [520] = {.lex_state = 13, .external_lex_state = 5}, + [521] = {.lex_state = 13, .external_lex_state = 5}, + [522] = {.lex_state = 13, .external_lex_state = 4}, + [523] = {.lex_state = 13, .external_lex_state = 4}, + [524] = {.lex_state = 13, .external_lex_state = 4}, + [525] = {.lex_state = 13, .external_lex_state = 4}, + [526] = {.lex_state = 13, .external_lex_state = 4}, + [527] = {.lex_state = 13, .external_lex_state = 5}, + [528] = {.lex_state = 13, .external_lex_state = 4}, + [529] = {.lex_state = 13}, + [530] = {.lex_state = 17}, + [531] = {.lex_state = 13, .external_lex_state = 3}, + [532] = {.lex_state = 13}, + [533] = {.lex_state = 13, .external_lex_state = 3}, + [534] = {.lex_state = 13, .external_lex_state = 3}, + [535] = {.lex_state = 17}, + [536] = {.lex_state = 13, .external_lex_state = 3}, + [537] = {.lex_state = 13, .external_lex_state = 3}, + [538] = {.lex_state = 13, .external_lex_state = 3}, + [539] = {.lex_state = 9, .external_lex_state = 5}, + [540] = {.lex_state = 9, .external_lex_state = 5}, + [541] = {.lex_state = 17}, + [542] = {.lex_state = 13, .external_lex_state = 3}, + [543] = {.lex_state = 13}, + [544] = {.lex_state = 13, .external_lex_state = 3}, + [545] = {.lex_state = 13, .external_lex_state = 3}, + [546] = {.lex_state = 13, .external_lex_state = 3}, + [547] = {.lex_state = 13, .external_lex_state = 3}, + [548] = {.lex_state = 13, .external_lex_state = 3}, + [549] = {.lex_state = 13, .external_lex_state = 3}, + [550] = {.lex_state = 13, .external_lex_state = 3}, + [551] = {.lex_state = 13, .external_lex_state = 3}, + [552] = {.lex_state = 13, .external_lex_state = 3}, + [553] = {.lex_state = 13}, + [554] = {.lex_state = 17}, + [555] = {.lex_state = 13, .external_lex_state = 3}, + [556] = {.lex_state = 13, .external_lex_state = 3}, + [557] = {.lex_state = 13, .external_lex_state = 5}, + [558] = {.lex_state = 17}, + [559] = {.lex_state = 13, .external_lex_state = 3}, + [560] = {.lex_state = 13}, + [561] = {.lex_state = 13, .external_lex_state = 3}, + [562] = {.lex_state = 9, .external_lex_state = 5}, + [563] = {.lex_state = 13, .external_lex_state = 3}, + [564] = {.lex_state = 13}, + [565] = {.lex_state = 13, .external_lex_state = 3}, + [566] = {.lex_state = 13, .external_lex_state = 3}, + [567] = {.lex_state = 13, .external_lex_state = 3}, + [568] = {.lex_state = 13, .external_lex_state = 3}, + [569] = {.lex_state = 13, .external_lex_state = 3}, + [570] = {.lex_state = 13}, + [571] = {.lex_state = 13, .external_lex_state = 3}, + [572] = {.lex_state = 13, .external_lex_state = 3}, + [573] = {.lex_state = 13, .external_lex_state = 3}, + [574] = {.lex_state = 13, .external_lex_state = 3}, + [575] = {.lex_state = 13, .external_lex_state = 3}, + [576] = {.lex_state = 13}, + [577] = {.lex_state = 13, .external_lex_state = 3}, + [578] = {.lex_state = 13, .external_lex_state = 3}, + [579] = {.lex_state = 13, .external_lex_state = 3}, + [580] = {.lex_state = 13}, + [581] = {.lex_state = 13, .external_lex_state = 3}, + [582] = {.lex_state = 17}, + [583] = {.lex_state = 13}, + [584] = {.lex_state = 13}, + [585] = {.lex_state = 13, .external_lex_state = 3}, + [586] = {.lex_state = 17}, + [587] = {.lex_state = 17}, + [588] = {.lex_state = 13, .external_lex_state = 3}, + [589] = {.lex_state = 13, .external_lex_state = 3}, + [590] = {.lex_state = 13}, + [591] = {.lex_state = 13}, + [592] = {.lex_state = 13, .external_lex_state = 3}, + [593] = {.lex_state = 13}, + [594] = {.lex_state = 13, .external_lex_state = 3}, + [595] = {.lex_state = 13}, + [596] = {.lex_state = 13}, + [597] = {.lex_state = 13}, + [598] = {.lex_state = 13}, + [599] = {.lex_state = 13}, + [600] = {.lex_state = 13}, + [601] = {.lex_state = 13, .external_lex_state = 4}, + [602] = {.lex_state = 9, .external_lex_state = 5}, + [603] = {.lex_state = 16, .external_lex_state = 2}, + [604] = {.lex_state = 13, .external_lex_state = 5}, + [605] = {.lex_state = 9, .external_lex_state = 5}, + [606] = {.lex_state = 13, .external_lex_state = 4}, + [607] = {.lex_state = 13}, + [608] = {.lex_state = 13, .external_lex_state = 5}, + [609] = {.lex_state = 13, .external_lex_state = 4}, + [610] = {.lex_state = 13, .external_lex_state = 4}, + [611] = {.lex_state = 13, .external_lex_state = 5}, + [612] = {.lex_state = 13, .external_lex_state = 5}, + [613] = {.lex_state = 13}, + [614] = {.lex_state = 13, .external_lex_state = 5}, + [615] = {.lex_state = 13, .external_lex_state = 5}, + [616] = {.lex_state = 13, .external_lex_state = 5}, + [617] = {.lex_state = 13, .external_lex_state = 5}, + [618] = {.lex_state = 13, .external_lex_state = 4}, + [619] = {.lex_state = 13, .external_lex_state = 4}, + [620] = {.lex_state = 9, .external_lex_state = 5}, + [621] = {.lex_state = 13, .external_lex_state = 5}, + [622] = {.lex_state = 13, .external_lex_state = 5}, + [623] = {.lex_state = 13, .external_lex_state = 4}, + [624] = {.lex_state = 13, .external_lex_state = 4}, + [625] = {.lex_state = 13, .external_lex_state = 4}, + [626] = {.lex_state = 13, .external_lex_state = 4}, + [627] = {.lex_state = 13, .external_lex_state = 5}, + [628] = {.lex_state = 13, .external_lex_state = 4}, + [629] = {.lex_state = 13}, + [630] = {.lex_state = 13, .external_lex_state = 4}, + [631] = {.lex_state = 13}, + [632] = {.lex_state = 13, .external_lex_state = 5}, + [633] = {.lex_state = 13, .external_lex_state = 5}, + [634] = {.lex_state = 13, .external_lex_state = 4}, + [635] = {.lex_state = 13}, + [636] = {.lex_state = 13, .external_lex_state = 4}, + [637] = {.lex_state = 13, .external_lex_state = 4}, + [638] = {.lex_state = 16, .external_lex_state = 2}, + [639] = {.lex_state = 13, .external_lex_state = 5}, + [640] = {.lex_state = 16, .external_lex_state = 2}, + [641] = {.lex_state = 13}, + [642] = {.lex_state = 13, .external_lex_state = 4}, + [643] = {.lex_state = 13, .external_lex_state = 4}, + [644] = {.lex_state = 9, .external_lex_state = 5}, + [645] = {.lex_state = 13}, + [646] = {.lex_state = 13, .external_lex_state = 4}, + [647] = {.lex_state = 13, .external_lex_state = 5}, + [648] = {.lex_state = 13, .external_lex_state = 4}, + [649] = {.lex_state = 16, .external_lex_state = 2}, + [650] = {.lex_state = 13, .external_lex_state = 4}, + [651] = {.lex_state = 13, .external_lex_state = 4}, + [652] = {.lex_state = 13, .external_lex_state = 4}, + [653] = {.lex_state = 9, .external_lex_state = 5}, + [654] = {.lex_state = 13, .external_lex_state = 4}, + [655] = {.lex_state = 13, .external_lex_state = 5}, + [656] = {.lex_state = 13, .external_lex_state = 4}, + [657] = {.lex_state = 16, .external_lex_state = 2}, + [658] = {.lex_state = 13, .external_lex_state = 4}, + [659] = {.lex_state = 16, .external_lex_state = 2}, + [660] = {.lex_state = 13, .external_lex_state = 4}, + [661] = {.lex_state = 13}, + [662] = {.lex_state = 9, .external_lex_state = 2}, + [663] = {.lex_state = 9, .external_lex_state = 2}, + [664] = {.lex_state = 9, .external_lex_state = 2}, + [665] = {.lex_state = 13}, + [666] = {.lex_state = 9, .external_lex_state = 2}, + [667] = {.lex_state = 13}, + [668] = {.lex_state = 9, .external_lex_state = 2}, + [669] = {.lex_state = 9, .external_lex_state = 2}, + [670] = {.lex_state = 9, .external_lex_state = 2}, + [671] = {.lex_state = 9, .external_lex_state = 2}, + [672] = {.lex_state = 9, .external_lex_state = 2}, + [673] = {.lex_state = 9, .external_lex_state = 2}, + [674] = {.lex_state = 9, .external_lex_state = 2}, + [675] = {.lex_state = 9, .external_lex_state = 2}, + [676] = {.lex_state = 9, .external_lex_state = 2}, + [677] = {.lex_state = 9, .external_lex_state = 2}, + [678] = {.lex_state = 9, .external_lex_state = 2}, + [679] = {.lex_state = 9, .external_lex_state = 2}, + [680] = {.lex_state = 9, .external_lex_state = 2}, + [681] = {.lex_state = 9, .external_lex_state = 2}, + [682] = {.lex_state = 13}, + [683] = {.lex_state = 9, .external_lex_state = 2}, + [684] = {.lex_state = 9, .external_lex_state = 2}, + [685] = {.lex_state = 9, .external_lex_state = 2}, + [686] = {.lex_state = 9, .external_lex_state = 2}, + [687] = {.lex_state = 9, .external_lex_state = 2}, + [688] = {.lex_state = 9, .external_lex_state = 2}, + [689] = {.lex_state = 9, .external_lex_state = 2}, + [690] = {.lex_state = 9, .external_lex_state = 2}, + [691] = {.lex_state = 13}, + [692] = {.lex_state = 9, .external_lex_state = 2}, + [693] = {.lex_state = 9, .external_lex_state = 2}, + [694] = {.lex_state = 9, .external_lex_state = 2}, + [695] = {.lex_state = 9, .external_lex_state = 2}, + [696] = {.lex_state = 9, .external_lex_state = 2}, + [697] = {.lex_state = 9, .external_lex_state = 2}, + [698] = {.lex_state = 9, .external_lex_state = 2}, + [699] = {.lex_state = 9, .external_lex_state = 2}, + [700] = {.lex_state = 13}, + [701] = {.lex_state = 9, .external_lex_state = 2}, + [702] = {.lex_state = 9, .external_lex_state = 2}, + [703] = {.lex_state = 13}, + [704] = {.lex_state = 9, .external_lex_state = 2}, + [705] = {.lex_state = 13}, + [706] = {.lex_state = 13}, + [707] = {.lex_state = 13}, + [708] = {.lex_state = 13}, + [709] = {.lex_state = 13}, + [710] = {.lex_state = 13}, + [711] = {.lex_state = 13}, + [712] = {.lex_state = 13}, + [713] = {.lex_state = 13}, + [714] = {.lex_state = 13}, + [715] = {.lex_state = 13}, + [716] = {.lex_state = 13}, + [717] = {.lex_state = 13}, + [718] = {.lex_state = 13}, + [719] = {.lex_state = 13}, + [720] = {.lex_state = 13}, + [721] = {.lex_state = 13}, + [722] = {.lex_state = 13}, + [723] = {.lex_state = 13}, + [724] = {.lex_state = 13}, + [725] = {.lex_state = 9, .external_lex_state = 2}, + [726] = {.lex_state = 9, .external_lex_state = 2}, + [727] = {.lex_state = 13}, + [728] = {.lex_state = 13}, + [729] = {.lex_state = 13}, + [730] = {.lex_state = 13}, + [731] = {.lex_state = 13}, + [732] = {.lex_state = 13}, + [733] = {.lex_state = 13}, + [734] = {.lex_state = 13}, + [735] = {.lex_state = 13}, + [736] = {.lex_state = 13, .external_lex_state = 4}, + [737] = {.lex_state = 18}, + [738] = {.lex_state = 18}, + [739] = {.lex_state = 18}, + [740] = {.lex_state = 19}, + [741] = {.lex_state = 19}, + [742] = {.lex_state = 18}, + [743] = {.lex_state = 18}, + [744] = {.lex_state = 18}, + [745] = {.lex_state = 18}, + [746] = {.lex_state = 18}, + [747] = {.lex_state = 19}, + [748] = {.lex_state = 19}, + [749] = {.lex_state = 19}, + [750] = {.lex_state = 19}, + [751] = {.lex_state = 19}, + [752] = {.lex_state = 19}, + [753] = {.lex_state = 19, .external_lex_state = 2}, + [754] = {.lex_state = 19}, + [755] = {.lex_state = 19, .external_lex_state = 2}, + [756] = {.lex_state = 19, .external_lex_state = 2}, + [757] = {.lex_state = 19, .external_lex_state = 2}, + [758] = {.lex_state = 19, .external_lex_state = 2}, + [759] = {.lex_state = 19, .external_lex_state = 2}, + [760] = {.lex_state = 19}, + [761] = {.lex_state = 19}, + [762] = {.lex_state = 19, .external_lex_state = 2}, + [763] = {.lex_state = 19}, + [764] = {.lex_state = 19}, + [765] = {.lex_state = 19}, + [766] = {.lex_state = 19}, + [767] = {.lex_state = 19}, + [768] = {.lex_state = 186}, + [769] = {.lex_state = 19}, + [770] = {.lex_state = 19}, + [771] = {.lex_state = 186}, + [772] = {.lex_state = 19}, + [773] = {.lex_state = 186}, + [774] = {.lex_state = 19}, + [775] = {.lex_state = 186}, + [776] = {.lex_state = 19}, + [777] = {.lex_state = 19}, + [778] = {.lex_state = 186}, + [779] = {.lex_state = 19}, + [780] = {.lex_state = 186}, + [781] = {.lex_state = 19}, + [782] = {.lex_state = 19}, + [783] = {.lex_state = 19}, + [784] = {.lex_state = 19}, + [785] = {.lex_state = 19}, + [786] = {.lex_state = 19}, + [787] = {.lex_state = 19}, + [788] = {.lex_state = 19}, + [789] = {.lex_state = 19}, + [790] = {.lex_state = 186}, + [791] = {.lex_state = 19}, + [792] = {.lex_state = 19}, + [793] = {.lex_state = 186}, + [794] = {.lex_state = 19}, + [795] = {.lex_state = 19}, + [796] = {.lex_state = 19}, + [797] = {.lex_state = 19}, + [798] = {.lex_state = 19}, + [799] = {.lex_state = 19}, + [800] = {.lex_state = 12, .external_lex_state = 2}, + [801] = {.lex_state = 19}, + [802] = {.lex_state = 19}, + [803] = {.lex_state = 19}, + [804] = {.lex_state = 19}, + [805] = {.lex_state = 19}, + [806] = {.lex_state = 19}, + [807] = {.lex_state = 12, .external_lex_state = 2}, + [808] = {.lex_state = 19}, + [809] = {.lex_state = 19}, + [810] = {.lex_state = 19}, + [811] = {.lex_state = 19}, + [812] = {.lex_state = 2}, + [813] = {.lex_state = 2}, + [814] = {.lex_state = 3, .external_lex_state = 4}, + [815] = {.lex_state = 18}, + [816] = {.lex_state = 22}, + [817] = {.lex_state = 2}, + [818] = {.lex_state = 2}, + [819] = {.lex_state = 12, .external_lex_state = 3}, + [820] = {.lex_state = 12, .external_lex_state = 3}, + [821] = {.lex_state = 22}, + [822] = {.lex_state = 2}, + [823] = {.lex_state = 22}, + [824] = {.lex_state = 2}, + [825] = {.lex_state = 12, .external_lex_state = 3}, + [826] = {.lex_state = 12, .external_lex_state = 3}, + [827] = {.lex_state = 22}, + [828] = {.lex_state = 3, .external_lex_state = 4}, + [829] = {.lex_state = 2}, + [830] = {.lex_state = 22}, + [831] = {.lex_state = 12, .external_lex_state = 2}, + [832] = {.lex_state = 22}, + [833] = {.lex_state = 2}, + [834] = {.lex_state = 22}, + [835] = {.lex_state = 2}, + [836] = {.lex_state = 22}, + [837] = {.lex_state = 2}, + [838] = {.lex_state = 186}, + [839] = {.lex_state = 22}, + [840] = {.lex_state = 2}, + [841] = {.lex_state = 3, .external_lex_state = 4}, + [842] = {.lex_state = 22}, + [843] = {.lex_state = 19}, + [844] = {.lex_state = 186, .external_lex_state = 4}, + [845] = {.lex_state = 2}, + [846] = {.lex_state = 186}, + [847] = {.lex_state = 186, .external_lex_state = 4}, + [848] = {.lex_state = 22}, + [849] = {.lex_state = 2}, + [850] = {.lex_state = 22}, + [851] = {.lex_state = 2}, + [852] = {.lex_state = 2}, + [853] = {.lex_state = 22}, + [854] = {.lex_state = 22}, + [855] = {.lex_state = 22}, + [856] = {.lex_state = 186}, + [857] = {.lex_state = 186}, + [858] = {.lex_state = 186}, + [859] = {.lex_state = 186}, + [860] = {.lex_state = 186}, + [861] = {.lex_state = 186}, + [862] = {.lex_state = 23}, + [863] = {.lex_state = 186}, + [864] = {.lex_state = 186}, + [865] = {.lex_state = 186}, + [866] = {.lex_state = 186}, + [867] = {.lex_state = 186}, + [868] = {.lex_state = 22}, + [869] = {.lex_state = 186}, + [870] = {.lex_state = 186}, + [871] = {.lex_state = 186}, + [872] = {.lex_state = 2}, + [873] = {.lex_state = 186}, + [874] = {.lex_state = 23}, + [875] = {.lex_state = 186}, + [876] = {.lex_state = 186}, + [877] = {.lex_state = 186}, + [878] = {.lex_state = 186}, + [879] = {.lex_state = 186}, + [880] = {.lex_state = 186}, + [881] = {.lex_state = 186}, + [882] = {.lex_state = 186}, + [883] = {.lex_state = 186}, + [884] = {.lex_state = 186}, + [885] = {.lex_state = 12, .external_lex_state = 4}, + [886] = {.lex_state = 186}, + [887] = {.lex_state = 186}, + [888] = {.lex_state = 186}, + [889] = {.lex_state = 12, .external_lex_state = 4}, + [890] = {.lex_state = 23}, + [891] = {.lex_state = 23}, + [892] = {.lex_state = 186}, + [893] = {.lex_state = 186}, + [894] = {.lex_state = 186}, + [895] = {.lex_state = 186}, + [896] = {.lex_state = 186}, + [897] = {.lex_state = 186}, + [898] = {.lex_state = 186}, + [899] = {.lex_state = 186}, + [900] = {.lex_state = 186}, + [901] = {.lex_state = 186}, + [902] = {.lex_state = 3, .external_lex_state = 4}, + [903] = {.lex_state = 186}, + [904] = {.lex_state = 186}, + [905] = {.lex_state = 186}, + [906] = {.lex_state = 186}, + [907] = {.lex_state = 186}, + [908] = {.lex_state = 186}, + [909] = {.lex_state = 186}, + [910] = {.lex_state = 186}, + [911] = {.lex_state = 186}, + [912] = {.lex_state = 19}, + [913] = {.lex_state = 19}, + [914] = {.lex_state = 12, .external_lex_state = 2}, + [915] = {.lex_state = 186}, + [916] = {.lex_state = 186, .external_lex_state = 4}, + [917] = {.lex_state = 12}, + [918] = {.lex_state = 186}, + [919] = {.lex_state = 186, .external_lex_state = 4}, + [920] = {.lex_state = 19, .external_lex_state = 2}, + [921] = {.lex_state = 186}, + [922] = {.lex_state = 19}, + [923] = {.lex_state = 19}, + [924] = {.lex_state = 186}, + [925] = {.lex_state = 12, .external_lex_state = 2}, + [926] = {.lex_state = 186}, + [927] = {.lex_state = 186}, + [928] = {.lex_state = 186, .external_lex_state = 4}, + [929] = {.lex_state = 19, .external_lex_state = 2}, + [930] = {.lex_state = 12, .external_lex_state = 2}, + [931] = {.lex_state = 186}, + [932] = {.lex_state = 19}, + [933] = {.lex_state = 186, .external_lex_state = 4}, + [934] = {.lex_state = 19}, + [935] = {.lex_state = 186, .external_lex_state = 4}, + [936] = {.lex_state = 12, .external_lex_state = 2}, + [937] = {.lex_state = 186}, + [938] = {.lex_state = 186}, + [939] = {.lex_state = 12}, + [940] = {.lex_state = 186}, + [941] = {.lex_state = 12, .external_lex_state = 2}, + [942] = {.lex_state = 186}, + [943] = {.lex_state = 12}, + [944] = {.lex_state = 186}, + [945] = {.lex_state = 186}, + [946] = {.lex_state = 186, .external_lex_state = 4}, + [947] = {.lex_state = 19}, + [948] = {.lex_state = 186}, + [949] = {.lex_state = 186}, + [950] = {.lex_state = 186}, + [951] = {.lex_state = 186}, + [952] = {.lex_state = 12}, + [953] = {.lex_state = 12}, + [954] = {.lex_state = 186}, + [955] = {.lex_state = 186, .external_lex_state = 4}, + [956] = {.lex_state = 186}, + [957] = {.lex_state = 24}, + [958] = {.lex_state = 186}, + [959] = {.lex_state = 186, .external_lex_state = 4}, + [960] = {.lex_state = 186}, + [961] = {.lex_state = 12, .external_lex_state = 2}, + [962] = {.lex_state = 186}, + [963] = {.lex_state = 186, .external_lex_state = 4}, + [964] = {.lex_state = 186}, + [965] = {.lex_state = 19}, + [966] = {.lex_state = 24}, + [967] = {.lex_state = 12}, + [968] = {.lex_state = 186}, + [969] = {.lex_state = 186, .external_lex_state = 2}, + [970] = {.lex_state = 6}, + [971] = {.lex_state = 186}, + [972] = {.lex_state = 19}, + [973] = {.lex_state = 19}, + [974] = {.lex_state = 6}, + [975] = {.lex_state = 19}, + [976] = {.lex_state = 19}, + [977] = {.lex_state = 12}, + [978] = {.lex_state = 186}, + [979] = {.lex_state = 186}, + [980] = {.lex_state = 6}, + [981] = {.lex_state = 186}, + [982] = {.lex_state = 19}, + [983] = {.lex_state = 186}, + [984] = {.lex_state = 186}, + [985] = {.lex_state = 6}, + [986] = {.lex_state = 6}, + [987] = {.lex_state = 186}, + [988] = {.lex_state = 186}, + [989] = {.lex_state = 19}, + [990] = {.lex_state = 6}, + [991] = {.lex_state = 19}, + [992] = {.lex_state = 186}, + [993] = {.lex_state = 19}, + [994] = {.lex_state = 19}, + [995] = {.lex_state = 186}, + [996] = {.lex_state = 186}, + [997] = {.lex_state = 19}, + [998] = {.lex_state = 186}, + [999] = {.lex_state = 19}, + [1000] = {.lex_state = 12}, + [1001] = {.lex_state = 19}, + [1002] = {.lex_state = 19}, + [1003] = {.lex_state = 186, .external_lex_state = 2}, + [1004] = {.lex_state = 186, .external_lex_state = 2}, + [1005] = {.lex_state = 186}, + [1006] = {.lex_state = 186}, + [1007] = {.lex_state = 19}, + [1008] = {.lex_state = 6}, + [1009] = {.lex_state = 19}, + [1010] = {.lex_state = 19}, + [1011] = {.lex_state = 186}, + [1012] = {.lex_state = 186, .external_lex_state = 2}, + [1013] = {.lex_state = 186, .external_lex_state = 6}, + [1014] = {.lex_state = 19}, + [1015] = {.lex_state = 186}, + [1016] = {.lex_state = 186}, + [1017] = {.lex_state = 19}, + [1018] = {.lex_state = 19}, + [1019] = {.lex_state = 6}, + [1020] = {.lex_state = 19}, + [1021] = {.lex_state = 6}, + [1022] = {.lex_state = 19}, + [1023] = {.lex_state = 186}, + [1024] = {.lex_state = 186}, + [1025] = {.lex_state = 186}, + [1026] = {.lex_state = 19}, + [1027] = {.lex_state = 19}, + [1028] = {.lex_state = 19}, + [1029] = {.lex_state = 6}, + [1030] = {.lex_state = 19}, + [1031] = {.lex_state = 19}, + [1032] = {.lex_state = 6}, + [1033] = {.lex_state = 6}, + [1034] = {.lex_state = 186}, + [1035] = {.lex_state = 19}, + [1036] = {.lex_state = 186}, + [1037] = {.lex_state = 186}, + [1038] = {.lex_state = 186}, + [1039] = {.lex_state = 186}, + [1040] = {.lex_state = 6}, + [1041] = {.lex_state = 19}, + [1042] = {.lex_state = 19}, + [1043] = {.lex_state = 19}, + [1044] = {.lex_state = 6}, + [1045] = {.lex_state = 19}, + [1046] = {.lex_state = 6}, + [1047] = {.lex_state = 12}, + [1048] = {.lex_state = 186}, + [1049] = {.lex_state = 24}, + [1050] = {.lex_state = 186, .external_lex_state = 2}, + [1051] = {.lex_state = 19}, + [1052] = {.lex_state = 186, .external_lex_state = 2}, + [1053] = {.lex_state = 186}, + [1054] = {.lex_state = 186}, + [1055] = {.lex_state = 19}, + [1056] = {.lex_state = 186}, + [1057] = {.lex_state = 6}, + [1058] = {.lex_state = 186}, + [1059] = {.lex_state = 24}, + [1060] = {.lex_state = 186}, + [1061] = {.lex_state = 19}, + [1062] = {.lex_state = 6}, + [1063] = {.lex_state = 186}, + [1064] = {.lex_state = 19}, + [1065] = {.lex_state = 186}, + [1066] = {.lex_state = 6}, + [1067] = {.lex_state = 19}, + [1068] = {.lex_state = 6}, + [1069] = {.lex_state = 186, .external_lex_state = 6}, + [1070] = {.lex_state = 6}, + [1071] = {.lex_state = 19}, + [1072] = {.lex_state = 186}, + [1073] = {.lex_state = 19}, + [1074] = {.lex_state = 19}, + [1075] = {.lex_state = 186}, + [1076] = {.lex_state = 186}, + [1077] = {.lex_state = 19}, + [1078] = {.lex_state = 19}, + [1079] = {.lex_state = 19}, + [1080] = {.lex_state = 6}, + [1081] = {.lex_state = 19}, + [1082] = {.lex_state = 19}, + [1083] = {.lex_state = 186}, + [1084] = {.lex_state = 186}, + [1085] = {.lex_state = 19}, + [1086] = {.lex_state = 19}, + [1087] = {.lex_state = 186, .external_lex_state = 2}, + [1088] = {.lex_state = 19}, + [1089] = {.lex_state = 186, .external_lex_state = 2}, + [1090] = {.lex_state = 19}, + [1091] = {.lex_state = 186, .external_lex_state = 2}, + [1092] = {.lex_state = 19}, + [1093] = {.lex_state = 186}, + [1094] = {.lex_state = 24}, + [1095] = {.lex_state = 19}, + [1096] = {.lex_state = 6}, + [1097] = {.lex_state = 186}, + [1098] = {.lex_state = 6}, + [1099] = {.lex_state = 6}, + [1100] = {.lex_state = 19}, + [1101] = {.lex_state = 186}, + [1102] = {.lex_state = 186}, + [1103] = {.lex_state = 19}, + [1104] = {.lex_state = 12}, + [1105] = {.lex_state = 19}, + [1106] = {.lex_state = 186, .external_lex_state = 6}, + [1107] = {.lex_state = 186, .external_lex_state = 6}, + [1108] = {.lex_state = 24}, + [1109] = {.lex_state = 19}, + [1110] = {.lex_state = 12}, + [1111] = {.lex_state = 19}, + [1112] = {.lex_state = 12}, + [1113] = {.lex_state = 6}, + [1114] = {.lex_state = 6}, + [1115] = {.lex_state = 19}, + [1116] = {.lex_state = 6}, + [1117] = {.lex_state = 19}, + [1118] = {.lex_state = 186, .external_lex_state = 6}, + [1119] = {.lex_state = 186, .external_lex_state = 6}, + [1120] = {.lex_state = 6}, + [1121] = {.lex_state = 12}, + [1122] = {.lex_state = 19}, + [1123] = {.lex_state = 6}, + [1124] = {.lex_state = 19}, + [1125] = {.lex_state = 6}, + [1126] = {.lex_state = 19}, + [1127] = {.lex_state = 6}, + [1128] = {.lex_state = 12}, + [1129] = {.lex_state = 6}, + [1130] = {.lex_state = 19}, + [1131] = {.lex_state = 19}, + [1132] = {.lex_state = 6}, + [1133] = {.lex_state = 6}, + [1134] = {.lex_state = 186}, + [1135] = {.lex_state = 6}, + [1136] = {.lex_state = 19}, + [1137] = {.lex_state = 19}, + [1138] = {.lex_state = 6}, + [1139] = {.lex_state = 186}, + [1140] = {.lex_state = 6}, + [1141] = {.lex_state = 186}, + [1142] = {.lex_state = 186}, + [1143] = {.lex_state = 19}, + [1144] = {.lex_state = 19}, + [1145] = {.lex_state = 19}, + [1146] = {.lex_state = 186}, + [1147] = {.lex_state = 186}, + [1148] = {.lex_state = 186}, + [1149] = {.lex_state = 19}, + [1150] = {(TSStateId)(-1)}, + [1151] = {(TSStateId)(-1)}, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [sym_comment] = STATE(0), + [ts_builtin_sym_end] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_switch] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_to] = ACTIONS(1), + [anon_sym_by] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [sym_break] = ACTIONS(1), + [sym_continue] = ACTIONS(1), + [anon_sym_export] = ACTIONS(1), + [anon_sym_type] = ACTIONS(1), + [anon_sym_COLON_EQ] = 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_PERCENT_EQ] = ACTIONS(1), + [anon_sym_varip] = ACTIONS(1), + [anon_sym_var] = ACTIONS(1), + [anon_sym_method] = ACTIONS(1), + [anon_sym_EQ_GT] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_QMARK] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_not] = 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] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_series] = ACTIONS(1), + [anon_sym_const] = ACTIONS(1), + [anon_sym_simple] = ACTIONS(1), + [sym_integer] = ACTIONS(1), + [sym_float] = ACTIONS(1), + [sym_color] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), + [anon_sym_DQUOTE] = ACTIONS(1), + [sym_escape_sequence] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_annotations] = ACTIONS(1), + [sym_line_continuation] = ACTIONS(5), + [sym__indent] = ACTIONS(1), + [sym__dedent] = ACTIONS(1), + [sym__newline] = ACTIONS(1), + }, + [1] = { + [sym_source_file] = STATE(1097), + [sym_statement] = STATE(389), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(1), + [aux_sym_source_file_repeat1] = STATE(35), + [aux_sym_simple_statements_repeat1] = STATE(43), + [ts_builtin_sym_end] = ACTIONS(7), + [anon_sym_if] = ACTIONS(9), + [anon_sym_switch] = ACTIONS(11), + [anon_sym_for] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_while] = ACTIONS(17), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + }, + [2] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(408), + [sym_comment] = STATE(2), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(69), + }, + [3] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(657), + [sym_comment] = STATE(3), + [aux_sym_source_file_repeat1] = STATE(36), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(71), + }, + [4] = { + [sym_statement] = STATE(969), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(969), + [sym_comment] = STATE(4), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [5] = { + [sym_statement] = STATE(398), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(396), + [sym_comment] = STATE(5), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [6] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(330), + [sym_comment] = STATE(6), + [aux_sym_source_file_repeat1] = STATE(41), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(93), + }, + [7] = { + [sym_statement] = STATE(398), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(396), + [sym_comment] = STATE(7), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(95), + [sym__newline] = ACTIONS(97), + }, + [8] = { + [sym_statement] = STATE(374), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(344), + [sym_comment] = STATE(8), + [aux_sym_simple_statements_repeat1] = STATE(43), + [anon_sym_if] = ACTIONS(9), + [anon_sym_switch] = ACTIONS(11), + [anon_sym_for] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_while] = ACTIONS(17), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(99), + [sym__newline] = ACTIONS(101), + }, + [9] = { + [sym_statement] = STATE(359), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(358), + [sym_comment] = STATE(9), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [10] = { + [sym_statement] = STATE(362), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(361), + [sym_comment] = STATE(10), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [11] = { + [sym_statement] = STATE(352), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(345), + [sym_comment] = STATE(11), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [12] = { + [sym_statement] = STATE(690), + [sym_simple_statements] = STATE(662), + [sym_simple_statement] = STATE(662), + [sym__simple_stmt] = STATE(933), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_for_in_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_type_definition_statement] = STATE(662), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(662), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(662), + [sym__lhs] = STATE(793), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(662), + [sym_declaration_mode] = STATE(743), + [sym_function_declaration_statement] = STATE(662), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1071), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(809), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(689), + [sym_comment] = STATE(12), + [aux_sym_simple_statements_repeat1] = STATE(45), + [anon_sym_if] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_while] = ACTIONS(111), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(115), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(119), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [13] = { + [sym_statement] = STATE(419), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(417), + [sym_comment] = STATE(13), + [aux_sym_simple_statements_repeat1] = STATE(43), + [anon_sym_if] = ACTIONS(9), + [anon_sym_switch] = ACTIONS(11), + [anon_sym_for] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_while] = ACTIONS(17), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(99), + [sym__newline] = ACTIONS(101), + }, + [14] = { + [sym_statement] = STATE(362), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(361), + [sym_comment] = STATE(14), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(95), + [sym__newline] = ACTIONS(97), + }, + [15] = { + [sym_statement] = STATE(359), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(358), + [sym_comment] = STATE(15), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(95), + [sym__newline] = ACTIONS(97), + }, + [16] = { + [sym_statement] = STATE(669), + [sym_simple_statements] = STATE(662), + [sym_simple_statement] = STATE(662), + [sym__simple_stmt] = STATE(933), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_for_in_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_type_definition_statement] = STATE(662), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(662), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(662), + [sym__lhs] = STATE(793), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(662), + [sym_declaration_mode] = STATE(743), + [sym_function_declaration_statement] = STATE(662), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1071), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(809), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(668), + [sym_comment] = STATE(16), + [aux_sym_simple_statements_repeat1] = STATE(45), + [anon_sym_if] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_while] = ACTIONS(111), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(115), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(119), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [17] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(426), + [sym_comment] = STATE(17), + [aux_sym_source_file_repeat1] = STATE(37), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(121), + }, + [18] = { + [sym_statement] = STATE(1004), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(1003), + [sym_comment] = STATE(18), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [19] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(188), + [sym_comment] = STATE(19), + [aux_sym_source_file_repeat1] = STATE(38), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(123), + }, + [20] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(694), + [sym_comment] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(125), + }, + [21] = { + [sym_statement] = STATE(1087), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(1087), + [sym_comment] = STATE(21), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [22] = { + [sym_statement] = STATE(352), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(345), + [sym_comment] = STATE(22), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(95), + [sym__newline] = ACTIONS(97), + }, + [23] = { + [sym_statement] = STATE(1089), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(1091), + [sym_comment] = STATE(23), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [24] = { + [sym_statement] = STATE(391), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(387), + [sym_comment] = STATE(24), + [aux_sym_simple_statements_repeat1] = STATE(43), + [anon_sym_if] = ACTIONS(9), + [anon_sym_switch] = ACTIONS(11), + [anon_sym_for] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_while] = ACTIONS(17), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(99), + [sym__newline] = ACTIONS(101), + }, + [25] = { + [sym_statement] = STATE(693), + [sym_simple_statements] = STATE(662), + [sym_simple_statement] = STATE(662), + [sym__simple_stmt] = STATE(933), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_for_in_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_type_definition_statement] = STATE(662), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(662), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(662), + [sym__lhs] = STATE(793), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(662), + [sym_declaration_mode] = STATE(743), + [sym_function_declaration_statement] = STATE(662), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1071), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(809), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(693), + [sym_comment] = STATE(25), + [aux_sym_simple_statements_repeat1] = STATE(45), + [anon_sym_if] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_while] = ACTIONS(111), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(115), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(119), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [26] = { + [sym_statement] = STATE(1012), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(1012), + [sym_comment] = STATE(26), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [27] = { + [sym_statement] = STATE(1052), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(773), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(738), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1045), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(803), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(1050), + [sym_comment] = STATE(27), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(73), + [anon_sym_switch] = ACTIONS(75), + [anon_sym_for] = ACTIONS(77), + [anon_sym_LBRACK] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(83), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(85), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(87), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [28] = { + [sym_statement] = STATE(395), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(394), + [sym_comment] = STATE(28), + [aux_sym_simple_statements_repeat1] = STATE(43), + [anon_sym_if] = ACTIONS(9), + [anon_sym_switch] = ACTIONS(11), + [anon_sym_for] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_while] = ACTIONS(17), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(99), + [sym__newline] = ACTIONS(101), + }, + [29] = { + [sym_statement] = STATE(676), + [sym_simple_statements] = STATE(662), + [sym_simple_statement] = STATE(662), + [sym__simple_stmt] = STATE(933), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_for_in_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_type_definition_statement] = STATE(662), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(662), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(662), + [sym__lhs] = STATE(793), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(662), + [sym_declaration_mode] = STATE(743), + [sym_function_declaration_statement] = STATE(662), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1071), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(809), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(675), + [sym_comment] = STATE(29), + [aux_sym_simple_statements_repeat1] = STATE(45), + [anon_sym_if] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_while] = ACTIONS(111), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(115), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(119), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [30] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_block] = STATE(930), + [sym_comment] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(127), + }, + [31] = { + [sym_statement] = STATE(679), + [sym_simple_statements] = STATE(662), + [sym_simple_statement] = STATE(662), + [sym__simple_stmt] = STATE(933), + [sym_if_statement] = STATE(662), + [sym_switch_statement] = STATE(662), + [sym_for_statement] = STATE(662), + [sym_for_in_statement] = STATE(662), + [sym_while_statement] = STATE(662), + [sym_type_definition_statement] = STATE(662), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(662), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(662), + [sym__lhs] = STATE(793), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(662), + [sym_declaration_mode] = STATE(743), + [sym_function_declaration_statement] = STATE(662), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1071), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(809), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym__suite] = STATE(678), + [sym_comment] = STATE(31), + [aux_sym_simple_statements_repeat1] = STATE(45), + [anon_sym_if] = ACTIONS(103), + [anon_sym_switch] = ACTIONS(105), + [anon_sym_for] = ACTIONS(107), + [anon_sym_LBRACK] = ACTIONS(109), + [anon_sym_while] = ACTIONS(111), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(113), + [anon_sym_type] = ACTIONS(115), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(119), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__indent] = ACTIONS(89), + [sym__newline] = ACTIONS(91), + }, + [32] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(129), + }, + [33] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(33), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(131), + }, + [34] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(133), + }, + [35] = { + [sym_statement] = STATE(389), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(35), + [aux_sym_source_file_repeat1] = STATE(40), + [aux_sym_simple_statements_repeat1] = STATE(43), + [ts_builtin_sym_end] = ACTIONS(135), + [anon_sym_if] = ACTIONS(9), + [anon_sym_switch] = ACTIONS(11), + [anon_sym_for] = ACTIONS(13), + [anon_sym_LBRACK] = ACTIONS(15), + [anon_sym_while] = ACTIONS(17), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(21), + [anon_sym_type] = ACTIONS(23), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(27), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(39), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + }, + [36] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(36), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(137), + }, + [37] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(37), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(139), + }, + [38] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(38), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(141), + }, + [39] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(39), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(143), + [anon_sym_switch] = ACTIONS(146), + [anon_sym_for] = ACTIONS(149), + [anon_sym_LBRACK] = ACTIONS(152), + [anon_sym_while] = ACTIONS(155), + [sym_break] = ACTIONS(158), + [sym_continue] = ACTIONS(158), + [anon_sym_export] = ACTIONS(161), + [anon_sym_type] = ACTIONS(164), + [anon_sym_varip] = ACTIONS(167), + [anon_sym_var] = ACTIONS(167), + [anon_sym_method] = ACTIONS(170), + [anon_sym_LPAREN] = ACTIONS(173), + [anon_sym_import] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_not] = ACTIONS(182), + [anon_sym_series] = ACTIONS(185), + [anon_sym_const] = ACTIONS(185), + [anon_sym_simple] = ACTIONS(185), + [sym_identifier] = ACTIONS(188), + [sym_integer] = ACTIONS(191), + [sym_float] = ACTIONS(194), + [sym_color] = ACTIONS(194), + [sym_true] = ACTIONS(191), + [sym_false] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(200), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(203), + }, + [40] = { + [sym_statement] = STATE(389), + [sym_simple_statements] = STATE(388), + [sym_simple_statement] = STATE(388), + [sym__simple_stmt] = STATE(963), + [sym_if_statement] = STATE(388), + [sym_switch_statement] = STATE(388), + [sym_for_statement] = STATE(388), + [sym_for_in_statement] = STATE(388), + [sym_while_statement] = STATE(388), + [sym_type_definition_statement] = STATE(388), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(388), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(388), + [sym__lhs] = STATE(775), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(388), + [sym_declaration_mode] = STATE(746), + [sym_function_declaration_statement] = STATE(388), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1092), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(802), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(40), + [aux_sym_source_file_repeat1] = STATE(40), + [aux_sym_simple_statements_repeat1] = STATE(43), + [ts_builtin_sym_end] = ACTIONS(203), + [anon_sym_if] = ACTIONS(205), + [anon_sym_switch] = ACTIONS(208), + [anon_sym_for] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(214), + [anon_sym_while] = ACTIONS(217), + [sym_break] = ACTIONS(158), + [sym_continue] = ACTIONS(158), + [anon_sym_export] = ACTIONS(220), + [anon_sym_type] = ACTIONS(223), + [anon_sym_varip] = ACTIONS(167), + [anon_sym_var] = ACTIONS(167), + [anon_sym_method] = ACTIONS(226), + [anon_sym_LPAREN] = ACTIONS(173), + [anon_sym_import] = ACTIONS(176), + [anon_sym_PLUS] = ACTIONS(179), + [anon_sym_DASH] = ACTIONS(179), + [anon_sym_not] = ACTIONS(182), + [anon_sym_series] = ACTIONS(185), + [anon_sym_const] = ACTIONS(185), + [anon_sym_simple] = ACTIONS(185), + [sym_identifier] = ACTIONS(229), + [sym_integer] = ACTIONS(191), + [sym_float] = ACTIONS(194), + [sym_color] = ACTIONS(194), + [sym_true] = ACTIONS(191), + [sym_false] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_DQUOTE] = ACTIONS(200), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + }, + [41] = { + [sym_statement] = STATE(383), + [sym_simple_statements] = STATE(384), + [sym_simple_statement] = STATE(384), + [sym__simple_stmt] = STATE(955), + [sym_if_statement] = STATE(384), + [sym_switch_statement] = STATE(384), + [sym_for_statement] = STATE(384), + [sym_for_in_statement] = STATE(384), + [sym_while_statement] = STATE(384), + [sym_type_definition_statement] = STATE(384), + [sym_variable_definition] = STATE(919), + [sym_variable_definition_statement] = STATE(384), + [sym_tuple_declaration] = STATE(919), + [sym_tuple_declaration_statement] = STATE(384), + [sym__lhs] = STATE(790), + [sym_reassignment] = STATE(919), + [sym_reassignment_statement] = STATE(384), + [sym_declaration_mode] = STATE(745), + [sym_function_declaration_statement] = STATE(384), + [sym_import] = STATE(919), + [sym_expression] = STATE(658), + [sym_primary_expression] = STATE(526), + [sym_literals] = STATE(656), + [sym_template_function] = STATE(960), + [sym_attribute] = STATE(447), + [sym_call] = STATE(523), + [sym_subscript] = STATE(523), + [sym_conditional_expression] = STATE(656), + [sym_tuple] = STATE(660), + [sym_parenthesized_expression] = STATE(523), + [sym_logical_operation] = STATE(656), + [sym_math_operation] = STATE(656), + [sym_unary_operation] = STATE(656), + [sym_comparison_operation] = STATE(656), + [sym_type] = STATE(1007), + [sym_base_type] = STATE(843), + [sym_array_type] = STATE(1090), + [sym_generic_type] = STATE(1090), + [sym_type_qualifier] = STATE(806), + [sym_string] = STATE(660), + [sym_single_quotted_string] = STATE(648), + [sym_double_quotted_string] = STATE(648), + [sym_comment] = STATE(41), + [aux_sym_source_file_repeat1] = STATE(39), + [aux_sym_simple_statements_repeat1] = STATE(44), + [anon_sym_if] = ACTIONS(51), + [anon_sym_switch] = ACTIONS(53), + [anon_sym_for] = ACTIONS(55), + [anon_sym_LBRACK] = ACTIONS(57), + [anon_sym_while] = ACTIONS(59), + [sym_break] = ACTIONS(19), + [sym_continue] = ACTIONS(19), + [anon_sym_export] = ACTIONS(61), + [anon_sym_type] = ACTIONS(63), + [anon_sym_varip] = ACTIONS(25), + [anon_sym_var] = ACTIONS(25), + [anon_sym_method] = ACTIONS(65), + [anon_sym_LPAREN] = ACTIONS(29), + [anon_sym_import] = ACTIONS(31), + [anon_sym_PLUS] = ACTIONS(33), + [anon_sym_DASH] = ACTIONS(33), + [anon_sym_not] = ACTIONS(35), + [anon_sym_series] = ACTIONS(37), + [anon_sym_const] = ACTIONS(37), + [anon_sym_simple] = ACTIONS(37), + [sym_identifier] = ACTIONS(67), + [sym_integer] = ACTIONS(41), + [sym_float] = ACTIONS(43), + [sym_color] = ACTIONS(43), + [sym_true] = ACTIONS(41), + [sym_false] = ACTIONS(41), + [anon_sym_SQUOTE] = ACTIONS(45), + [anon_sym_DQUOTE] = ACTIONS(47), + [anon_sym_SLASH_SLASH] = ACTIONS(3), + [sym_line_continuation] = ACTIONS(49), + [sym__dedent] = ACTIONS(232), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 33, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(234), 1, + anon_sym_LBRACK, + ACTIONS(243), 1, + anon_sym_LPAREN, + ACTIONS(246), 1, + anon_sym_import, + ACTIONS(252), 1, + anon_sym_not, + ACTIONS(258), 1, + sym_identifier, + ACTIONS(267), 1, + anon_sym_SQUOTE, + ACTIONS(270), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym__newline, + STATE(448), 1, + sym_attribute, + STATE(584), 1, + sym_primary_expression, + STATE(719), 1, + sym_expression, + STATE(742), 1, + sym_declaration_mode, + STATE(771), 1, + sym__lhs, + STATE(799), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(926), 1, + sym_template_function, + STATE(1005), 1, + sym__simple_stmt, + STATE(1020), 1, + sym_type, + ACTIONS(237), 2, + sym_break, + sym_continue, + ACTIONS(240), 2, + anon_sym_varip, + anon_sym_var, + ACTIONS(249), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(264), 2, + sym_float, + sym_color, + STATE(42), 2, + sym_comment, + aux_sym_simple_statements_repeat1, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(255), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + ACTIONS(261), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(1141), 4, + sym_variable_definition, + sym_tuple_declaration, + sym_reassignment, + sym_import, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [122] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_import, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(275), 1, + anon_sym_LBRACK, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(279), 1, + sym__newline, + STATE(42), 1, + aux_sym_simple_statements_repeat1, + STATE(43), 1, + sym_comment, + STATE(447), 1, + sym_attribute, + STATE(526), 1, + sym_primary_expression, + STATE(658), 1, + sym_expression, + STATE(744), 1, + sym_declaration_mode, + STATE(780), 1, + sym__lhs, + STATE(808), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(916), 1, + sym__simple_stmt, + STATE(960), 1, + sym_template_function, + STATE(1009), 1, + sym_type, + ACTIONS(19), 2, + sym_break, + sym_continue, + ACTIONS(25), 2, + anon_sym_varip, + anon_sym_var, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(919), 4, + sym_variable_definition, + sym_tuple_declaration, + sym_reassignment, + sym_import, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [246] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_import, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(275), 1, + anon_sym_LBRACK, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(281), 1, + sym__newline, + STATE(42), 1, + aux_sym_simple_statements_repeat1, + STATE(44), 1, + sym_comment, + STATE(447), 1, + sym_attribute, + STATE(526), 1, + sym_primary_expression, + STATE(658), 1, + sym_expression, + STATE(744), 1, + sym_declaration_mode, + STATE(780), 1, + sym__lhs, + STATE(808), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(946), 1, + sym__simple_stmt, + STATE(960), 1, + sym_template_function, + STATE(1009), 1, + sym_type, + ACTIONS(19), 2, + sym_break, + sym_continue, + ACTIONS(25), 2, + anon_sym_varip, + anon_sym_var, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(919), 4, + sym_variable_definition, + sym_tuple_declaration, + sym_reassignment, + sym_import, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [370] = 34, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(31), 1, + anon_sym_import, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(275), 1, + anon_sym_LBRACK, + ACTIONS(277), 1, + sym_identifier, + ACTIONS(283), 1, + sym__newline, + STATE(42), 1, + aux_sym_simple_statements_repeat1, + STATE(45), 1, + sym_comment, + STATE(447), 1, + sym_attribute, + STATE(526), 1, + sym_primary_expression, + STATE(658), 1, + sym_expression, + STATE(744), 1, + sym_declaration_mode, + STATE(780), 1, + sym__lhs, + STATE(808), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(928), 1, + sym__simple_stmt, + STATE(960), 1, + sym_template_function, + STATE(1009), 1, + sym_type, + ACTIONS(19), 2, + sym_break, + sym_continue, + ACTIONS(25), 2, + anon_sym_varip, + anon_sym_var, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(919), 4, + sym_variable_definition, + sym_tuple_declaration, + sym_reassignment, + sym_import, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [494] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(287), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_LPAREN, + ACTIONS(296), 1, + anon_sym_not, + ACTIONS(299), 1, + sym_identifier, + ACTIONS(308), 1, + anon_sym_SQUOTE, + ACTIONS(311), 1, + anon_sym_DQUOTE, + ACTIONS(314), 1, + sym__indent, + ACTIONS(316), 1, + sym__dedent, + STATE(46), 1, + sym_comment, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(67), 1, + sym_expression, + STATE(163), 1, + aux_sym_switch_statement_repeat2, + STATE(950), 1, + sym_template_function, + ACTIONS(293), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(305), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(302), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + ACTIONS(285), 15, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [594] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(316), 1, + ts_builtin_sym_end, + ACTIONS(318), 1, + anon_sym_LBRACK, + ACTIONS(321), 1, + anon_sym_LPAREN, + ACTIONS(327), 1, + anon_sym_not, + ACTIONS(330), 1, + sym_identifier, + ACTIONS(339), 1, + anon_sym_SQUOTE, + ACTIONS(342), 1, + anon_sym_DQUOTE, + ACTIONS(345), 1, + sym__indent, + STATE(47), 1, + sym_comment, + STATE(49), 1, + sym_attribute, + STATE(57), 1, + sym_expression, + STATE(58), 1, + sym_primary_expression, + STATE(168), 1, + aux_sym_switch_statement_repeat2, + STATE(931), 1, + sym_template_function, + ACTIONS(324), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(336), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(333), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + ACTIONS(285), 15, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [694] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(351), 1, + anon_sym_LPAREN, + ACTIONS(353), 1, + anon_sym_LT, + STATE(48), 1, + sym_comment, + STATE(52), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(349), 16, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(347), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [761] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(356), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_comment, + STATE(60), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(349), 16, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(347), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [828] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(351), 1, + anon_sym_LPAREN, + STATE(50), 1, + sym_comment, + STATE(52), 1, + sym_argument_list, + ACTIONS(349), 16, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(347), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [890] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(356), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym_comment, + STATE(60), 1, + sym_argument_list, + ACTIONS(349), 16, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(347), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [952] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(52), 1, + sym_comment, + ACTIONS(360), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(358), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1009] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(53), 1, + sym_comment, + ACTIONS(362), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(364), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1066] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(54), 1, + sym_comment, + ACTIONS(366), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(368), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1123] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(55), 1, + sym_comment, + ACTIONS(372), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(370), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1180] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(56), 1, + sym_comment, + ACTIONS(366), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(368), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1237] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(345), 1, + sym__indent, + ACTIONS(378), 1, + anon_sym_SLASH, + ACTIONS(380), 1, + anon_sym_QMARK, + ACTIONS(382), 1, + anon_sym_and, + ACTIONS(384), 1, + anon_sym_or, + STATE(57), 1, + sym_comment, + STATE(167), 1, + aux_sym_switch_statement_repeat2, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(392), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(374), 7, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(376), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1314] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(398), 1, + anon_sym_LBRACK, + ACTIONS(400), 1, + anon_sym_DOT, + STATE(58), 1, + sym_comment, + ACTIONS(394), 16, + sym__indent, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(396), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1375] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(402), 1, + anon_sym_LBRACK, + ACTIONS(404), 1, + anon_sym_DOT, + STATE(59), 1, + sym_comment, + ACTIONS(394), 16, + sym__indent, + sym__dedent, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(396), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1436] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(60), 1, + sym_comment, + ACTIONS(360), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(358), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1493] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(61), 1, + sym_comment, + ACTIONS(349), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(347), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1550] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(62), 1, + sym_comment, + ACTIONS(408), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(406), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1607] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(63), 1, + sym_comment, + ACTIONS(412), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(410), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1664] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(64), 1, + sym_comment, + ACTIONS(416), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(414), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1721] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(65), 1, + sym_comment, + ACTIONS(349), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(347), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1778] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(66), 1, + sym_comment, + ACTIONS(416), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(414), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1835] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(314), 1, + sym__indent, + ACTIONS(418), 1, + anon_sym_SLASH, + ACTIONS(420), 1, + anon_sym_QMARK, + ACTIONS(422), 1, + anon_sym_and, + ACTIONS(424), 1, + anon_sym_or, + STATE(67), 1, + sym_comment, + STATE(164), 1, + aux_sym_switch_statement_repeat2, + ACTIONS(426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(428), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(432), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(374), 7, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(376), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1912] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(68), 1, + sym_comment, + ACTIONS(362), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(364), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [1969] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(69), 1, + sym_comment, + ACTIONS(372), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(370), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2026] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(70), 1, + sym_comment, + ACTIONS(408), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(406), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2083] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(71), 1, + sym_comment, + ACTIONS(412), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(410), 26, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2140] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(72), 1, + sym_comment, + ACTIONS(434), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(436), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2196] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(418), 1, + anon_sym_SLASH, + ACTIONS(420), 1, + anon_sym_QMARK, + ACTIONS(422), 1, + anon_sym_and, + ACTIONS(424), 1, + anon_sym_or, + STATE(73), 1, + sym_comment, + ACTIONS(426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(428), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(432), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(440), 8, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(438), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2268] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(74), 1, + sym_comment, + ACTIONS(444), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(442), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2324] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(75), 1, + sym_comment, + ACTIONS(446), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(448), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2380] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(76), 1, + sym_comment, + ACTIONS(452), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(450), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2436] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(77), 1, + sym_comment, + ACTIONS(444), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(442), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2492] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(78), 1, + sym_comment, + ACTIONS(456), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(454), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2548] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(418), 1, + anon_sym_SLASH, + STATE(79), 1, + sym_comment, + ACTIONS(426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(428), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(432), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 9, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(458), 22, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2614] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(418), 1, + anon_sym_SLASH, + ACTIONS(422), 1, + anon_sym_and, + STATE(80), 1, + sym_comment, + ACTIONS(426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(428), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(430), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(432), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 9, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(458), 21, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_or, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2682] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(81), 1, + sym_comment, + ACTIONS(464), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(462), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2738] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(82), 1, + sym_comment, + ACTIONS(468), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(466), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2794] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(83), 1, + sym_comment, + ACTIONS(452), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(450), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2850] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(84), 1, + sym_comment, + ACTIONS(470), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(472), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2906] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(85), 1, + sym_comment, + ACTIONS(476), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(474), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [2962] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(86), 1, + sym_comment, + ACTIONS(434), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(436), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3018] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(87), 1, + sym_comment, + ACTIONS(456), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(454), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3074] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(378), 1, + anon_sym_SLASH, + STATE(88), 1, + sym_comment, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(392), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 9, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(458), 22, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3140] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(418), 1, + anon_sym_SLASH, + STATE(89), 1, + sym_comment, + ACTIONS(426), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(428), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(480), 13, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(478), 24, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3202] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(378), 1, + anon_sym_SLASH, + ACTIONS(380), 1, + anon_sym_QMARK, + ACTIONS(382), 1, + anon_sym_and, + ACTIONS(384), 1, + anon_sym_or, + STATE(90), 1, + sym_comment, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(392), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(440), 8, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(438), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3274] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(418), 1, + anon_sym_SLASH, + STATE(91), 1, + sym_comment, + ACTIONS(428), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(454), 24, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3334] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(378), 1, + anon_sym_SLASH, + ACTIONS(382), 1, + anon_sym_and, + STATE(92), 1, + sym_comment, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(390), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(392), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 9, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(458), 21, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_or, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3402] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(93), 1, + sym_comment, + ACTIONS(484), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(482), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3458] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(94), 1, + sym_comment, + ACTIONS(394), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(396), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3514] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(95), 1, + sym_comment, + ACTIONS(484), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(482), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3570] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(96), 1, + sym_comment, + ACTIONS(394), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(396), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3626] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(378), 1, + anon_sym_SLASH, + STATE(97), 1, + sym_comment, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 15, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(454), 24, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3686] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(98), 1, + sym_comment, + ACTIONS(470), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(472), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3742] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(99), 1, + sym_comment, + ACTIONS(476), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(474), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3798] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(378), 1, + anon_sym_SLASH, + STATE(100), 1, + sym_comment, + ACTIONS(386), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(388), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(480), 13, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(478), 24, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3860] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(101), 1, + sym_comment, + ACTIONS(446), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(448), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3916] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(102), 1, + sym_comment, + ACTIONS(464), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(462), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [3972] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(103), 1, + sym_comment, + ACTIONS(468), 17, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(466), 25, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [4028] = 27, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(490), 1, + anon_sym_RPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(496), 1, + sym_identifier, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + STATE(104), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(591), 1, + sym_expression, + STATE(796), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(903), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + STATE(975), 1, + sym_type, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4126] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(105), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(651), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(687), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4219] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(106), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(609), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(346), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4312] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(107), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(654), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(416), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4405] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(108), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(651), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(386), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4498] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(109), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(652), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(382), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4591] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(110), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(650), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(390), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4684] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(111), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(652), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(406), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4777] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(112), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(650), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(414), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4870] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(113), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(650), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(688), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [4963] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(114), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(618), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(347), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5056] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(115), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(652), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(686), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5149] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(116), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(623), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(697), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5242] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(117), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(618), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(672), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5335] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(118), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(651), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(386), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5428] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(119), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(651), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(407), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5521] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(120), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(623), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(418), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5614] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(121), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(654), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(698), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5707] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(122), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(643), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(378), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5800] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(123), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(601), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(379), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5893] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(124), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(643), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(354), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [5986] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(125), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(618), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(367), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6079] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(126), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(623), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(429), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6172] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(127), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(623), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(418), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6265] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(128), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(654), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(424), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6358] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(129), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(654), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(416), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6451] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(130), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(609), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(666), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6544] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(131), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(609), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(351), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6637] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(132), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(652), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(382), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6730] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(133), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(601), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(355), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6823] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(134), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(609), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(351), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [6916] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(135), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(601), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(355), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7009] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(136), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(601), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(674), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7102] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(137), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(643), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(673), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7195] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(138), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(618), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(347), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7288] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(139), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(643), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(354), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7381] = 25, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(140), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(650), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(390), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7474] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(510), 1, + anon_sym_LBRACK, + ACTIONS(513), 1, + anon_sym_LPAREN, + ACTIONS(519), 1, + anon_sym_not, + ACTIONS(522), 1, + sym_identifier, + ACTIONS(531), 1, + anon_sym_SQUOTE, + ACTIONS(534), 1, + anon_sym_DQUOTE, + ACTIONS(537), 1, + sym__indent, + STATE(141), 1, + sym_comment, + STATE(169), 1, + sym_attribute, + STATE(363), 1, + sym_primary_expression, + STATE(413), 1, + sym_expression, + STATE(562), 1, + aux_sym_switch_statement_repeat2, + STATE(924), 1, + sym_template_function, + ACTIONS(316), 2, + sym__dedent, + anon_sym_EQ_GT, + ACTIONS(516), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(528), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(525), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7558] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(539), 1, + anon_sym_EQ_GT, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(543), 1, + sym__dedent, + STATE(142), 1, + sym_comment, + STATE(145), 1, + aux_sym_switch_statement_repeat1, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7644] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(545), 1, + anon_sym_EQ_GT, + ACTIONS(547), 1, + sym__dedent, + STATE(142), 1, + aux_sym_switch_statement_repeat1, + STATE(143), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7730] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(549), 1, + anon_sym_EQ_GT, + ACTIONS(551), 1, + sym__dedent, + STATE(144), 1, + sym_comment, + STATE(146), 1, + aux_sym_switch_statement_repeat1, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7816] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(553), 1, + anon_sym_LBRACK, + ACTIONS(558), 1, + anon_sym_LPAREN, + ACTIONS(564), 1, + anon_sym_not, + ACTIONS(567), 1, + sym_identifier, + ACTIONS(576), 1, + anon_sym_SQUOTE, + ACTIONS(579), 1, + anon_sym_DQUOTE, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(556), 2, + sym__dedent, + anon_sym_EQ_GT, + ACTIONS(561), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(573), 2, + sym_float, + sym_color, + STATE(145), 2, + sym_comment, + aux_sym_switch_statement_repeat1, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(570), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7898] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(582), 1, + anon_sym_EQ_GT, + ACTIONS(584), 1, + sym__dedent, + STATE(145), 1, + aux_sym_switch_statement_repeat1, + STATE(146), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [7984] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(586), 1, + anon_sym_EQ_GT, + ACTIONS(588), 1, + sym__dedent, + STATE(145), 1, + aux_sym_switch_statement_repeat1, + STATE(147), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8070] = 24, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + ACTIONS(590), 1, + anon_sym_EQ_GT, + ACTIONS(592), 1, + sym__dedent, + STATE(147), 1, + aux_sym_switch_statement_repeat1, + STATE(148), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(724), 1, + sym_expression, + STATE(725), 1, + sym_case_clause, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8156] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(598), 1, + anon_sym_else, + STATE(149), 1, + sym_comment, + STATE(154), 1, + aux_sym_if_statement_repeat1, + STATE(191), 1, + sym_else_if_clause, + STATE(403), 1, + sym_else_clause, + ACTIONS(594), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(596), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [8211] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(600), 1, + anon_sym_else, + STATE(150), 1, + sym_comment, + STATE(157), 1, + aux_sym_if_statement_repeat1, + STATE(183), 1, + sym_else_if_clause, + STATE(368), 1, + sym_else_clause, + ACTIONS(594), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(596), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [8266] = 23, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(314), 1, + sym__indent, + ACTIONS(316), 1, + sym__dedent, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(151), 1, + sym_comment, + STATE(163), 1, + aux_sym_switch_statement_repeat2, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(557), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8349] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(598), 1, + anon_sym_else, + STATE(149), 1, + aux_sym_if_statement_repeat1, + STATE(152), 1, + sym_comment, + STATE(191), 1, + sym_else_if_clause, + STATE(427), 1, + sym_else_clause, + ACTIONS(620), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(622), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [8404] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(600), 1, + anon_sym_else, + STATE(150), 1, + aux_sym_if_statement_repeat1, + STATE(153), 1, + sym_comment, + STATE(183), 1, + sym_else_if_clause, + STATE(428), 1, + sym_else_clause, + ACTIONS(620), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(622), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [8459] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(628), 1, + anon_sym_else, + STATE(191), 1, + sym_else_if_clause, + STATE(154), 2, + sym_comment, + aux_sym_if_statement_repeat1, + ACTIONS(624), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(626), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [8509] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(631), 1, + anon_sym_RPAREN, + ACTIONS(633), 1, + sym_identifier, + STATE(155), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(598), 1, + sym_expression, + STATE(887), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8589] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(635), 1, + anon_sym_RPAREN, + STATE(156), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(600), 1, + sym_expression, + STATE(894), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8669] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(637), 1, + anon_sym_else, + STATE(183), 1, + sym_else_if_clause, + STATE(157), 2, + sym_comment, + aux_sym_if_statement_repeat1, + ACTIONS(624), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(626), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [8719] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(640), 1, + anon_sym_RPAREN, + STATE(158), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(595), 1, + sym_expression, + STATE(905), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8799] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(642), 1, + anon_sym_RPAREN, + STATE(159), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(529), 1, + sym_expression, + STATE(884), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8879] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(644), 1, + anon_sym_RPAREN, + STATE(160), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(560), 1, + sym_expression, + STATE(876), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [8959] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(646), 1, + anon_sym_RPAREN, + STATE(161), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(580), 1, + sym_expression, + STATE(859), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9039] = 22, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + ACTIONS(648), 1, + anon_sym_RPAREN, + STATE(162), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(591), 1, + sym_expression, + STATE(903), 1, + sym_keyword_argument, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9119] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(314), 1, + sym__indent, + STATE(163), 1, + sym_comment, + STATE(165), 1, + aux_sym_switch_statement_repeat2, + ACTIONS(652), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(650), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9168] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(314), 1, + sym__indent, + STATE(164), 1, + sym_comment, + STATE(165), 1, + aux_sym_switch_statement_repeat2, + ACTIONS(656), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(654), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9217] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(662), 1, + sym__indent, + STATE(165), 2, + sym_comment, + aux_sym_switch_statement_repeat2, + ACTIONS(660), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(658), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9264] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(665), 1, + sym__indent, + STATE(166), 2, + sym_comment, + aux_sym_switch_statement_repeat2, + ACTIONS(660), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(658), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9311] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(345), 1, + sym__indent, + STATE(166), 1, + aux_sym_switch_statement_repeat2, + STATE(167), 1, + sym_comment, + ACTIONS(656), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(654), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9360] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(345), 1, + sym__indent, + STATE(166), 1, + aux_sym_switch_statement_repeat2, + STATE(168), 1, + sym_comment, + ACTIONS(652), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(650), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9409] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(668), 1, + anon_sym_LPAREN, + STATE(169), 1, + sym_comment, + STATE(372), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 10, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(349), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [9462] = 21, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + sym_identifier, + STATE(170), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(607), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + STATE(962), 1, + sym_keyword_argument, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9539] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(171), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(727), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9613] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(172), 1, + sym_comment, + ACTIONS(670), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(672), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [9657] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(90), 1, + sym_expression, + STATE(173), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9731] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(174), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(639), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9805] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(692), 1, + anon_sym_EQ, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + STATE(175), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(990), 1, + sym__argument_list_with_type_optional, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 7, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(347), 8, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + [9869] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(89), 1, + sym_expression, + STATE(176), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [9943] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(177), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(654), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10017] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(178), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(548), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10091] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(179), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(623), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10165] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(180), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(477), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10239] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(91), 1, + sym_expression, + STATE(181), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10313] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(80), 1, + sym_expression, + STATE(182), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10387] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(183), 1, + sym_comment, + ACTIONS(747), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(745), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [10431] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(184), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(567), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10505] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(185), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(551), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10579] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(79), 1, + sym_expression, + STATE(186), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10653] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(187), 1, + sym_comment, + ACTIONS(749), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(751), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [10697] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(188), 1, + sym_comment, + ACTIONS(753), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(755), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [10741] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(78), 1, + sym_expression, + STATE(189), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10815] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(85), 1, + sym_expression, + STATE(190), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [10889] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(191), 1, + sym_comment, + ACTIONS(747), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(745), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [10933] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(192), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(716), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11007] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(193), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(717), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11081] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(194), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(589), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11155] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(195), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(733), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11229] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(196), 1, + sym_comment, + ACTIONS(757), 10, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(759), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [11273] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(197), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(645), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11347] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(198), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(430), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11421] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(199), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(559), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11495] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(200), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(732), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11569] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(201), 1, + sym_comment, + ACTIONS(779), 10, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(781), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [11613] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(202), 1, + sym_comment, + ACTIONS(783), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(785), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [11657] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(203), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(537), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11731] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(204), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(544), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11805] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(205), 1, + sym_comment, + ACTIONS(757), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(759), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [11849] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(206), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(553), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11923] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(207), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(734), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [11997] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(787), 1, + sym_identifier, + STATE(208), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(576), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12071] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(789), 1, + sym_identifier, + STATE(209), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(576), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12145] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(210), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(577), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12219] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(211), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(735), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12293] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(791), 1, + anon_sym_EQ, + STATE(212), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(1029), 1, + sym__argument_list_with_type_optional, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 7, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(347), 8, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + [12357] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(213), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(547), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12431] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(99), 1, + sym_expression, + STATE(214), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12505] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(215), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(519), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12579] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(216), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(549), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12653] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(217), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(550), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12727] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(218), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(718), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12801] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(219), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(637), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12875] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(220), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(532), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [12949] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(221), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(594), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13023] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(222), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(636), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13097] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(223), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(634), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13171] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(224), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(630), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13245] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(225), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(715), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13319] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(226), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(624), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13393] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(227), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(552), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13467] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(228), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(556), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13541] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(229), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(667), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13615] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(793), 1, + sym_identifier, + STATE(230), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(576), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13689] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(795), 1, + sym_identifier, + STATE(231), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(576), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13763] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(232), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(661), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13837] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(233), 1, + sym_comment, + ACTIONS(779), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(781), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [13881] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(797), 1, + sym_identifier, + STATE(234), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(576), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [13955] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(799), 1, + sym_identifier, + STATE(235), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(570), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14029] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(236), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(642), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14103] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(237), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(731), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14177] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(238), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(641), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14251] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(239), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(570), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14325] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(240), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(730), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14399] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(241), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(546), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14473] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(242), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(545), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14547] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(243), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(729), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14621] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(244), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(542), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14695] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(245), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(475), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14769] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(246), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(489), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14843] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(247), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(561), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14917] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(248), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(488), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [14991] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(249), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(650), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15065] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(250), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(507), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15139] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(801), 1, + anon_sym_EQ, + STATE(251), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(1080), 1, + sym__argument_list_with_type_optional, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 7, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(347), 8, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + [15203] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(252), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(563), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15277] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(253), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(651), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15351] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(254), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(652), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15425] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(255), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(538), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15499] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(256), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(714), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15573] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(257), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(592), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15647] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(258), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(536), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15721] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(259), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(723), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15795] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(260), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(565), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15869] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(261), 1, + sym_comment, + ACTIONS(803), 10, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(805), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [15913] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(709), 1, + anon_sym_LBRACK, + ACTIONS(711), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_not, + ACTIONS(717), 1, + sym_identifier, + ACTIONS(723), 1, + anon_sym_SQUOTE, + ACTIONS(725), 1, + anon_sym_DQUOTE, + STATE(48), 1, + sym_attribute, + STATE(59), 1, + sym_primary_expression, + STATE(73), 1, + sym_expression, + STATE(262), 1, + sym_comment, + STATE(950), 1, + sym_template_function, + ACTIONS(713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(721), 2, + sym_float, + sym_color, + STATE(86), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(93), 2, + sym_tuple, + sym_string, + ACTIONS(719), 3, + sym_integer, + sym_true, + sym_false, + STATE(65), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(94), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [15987] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(263), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(566), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16061] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(100), 1, + sym_expression, + STATE(264), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16135] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(265), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(628), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16209] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(266), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(513), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16283] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(267), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(722), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16357] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(699), 1, + anon_sym_LPAREN, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(807), 1, + anon_sym_EQ, + STATE(268), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(1062), 1, + sym__argument_list_with_type_optional, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 7, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(347), 8, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + [16421] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(97), 1, + sym_expression, + STATE(269), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16495] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(270), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(622), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16569] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(92), 1, + sym_expression, + STATE(271), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16643] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(272), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(432), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16717] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(273), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(569), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16791] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(274), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(593), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16865] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(275), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(491), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [16939] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(276), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(599), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17013] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(277), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(720), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17087] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(278), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(706), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17161] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(88), 1, + sym_expression, + STATE(279), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17235] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(280), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(585), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17309] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(281), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(617), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17383] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(674), 1, + anon_sym_LBRACK, + ACTIONS(676), 1, + anon_sym_LPAREN, + ACTIONS(680), 1, + anon_sym_not, + ACTIONS(682), 1, + sym_identifier, + ACTIONS(688), 1, + anon_sym_SQUOTE, + ACTIONS(690), 1, + anon_sym_DQUOTE, + STATE(49), 1, + sym_attribute, + STATE(58), 1, + sym_primary_expression, + STATE(87), 1, + sym_expression, + STATE(282), 1, + sym_comment, + STATE(931), 1, + sym_template_function, + ACTIONS(678), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(686), 2, + sym_float, + sym_color, + STATE(72), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(95), 2, + sym_tuple, + sym_string, + ACTIONS(684), 3, + sym_integer, + sym_true, + sym_false, + STATE(61), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(96), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17457] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(283), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(571), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17531] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(284), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(616), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17605] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(285), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(721), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17679] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(286), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(576), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17753] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(287), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(484), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17827] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(288), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(483), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [17901] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(289), 1, + sym_comment, + ACTIONS(783), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(785), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [17945] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(290), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(711), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18019] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(291), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(707), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18093] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(292), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(543), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18167] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(293), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(596), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18241] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(294), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(581), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18315] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(295), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(518), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18389] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(296), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(564), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18463] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(297), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(588), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18537] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(298), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(703), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18611] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(299), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(615), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18685] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(300), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(597), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18759] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(301), 1, + sym_comment, + ACTIONS(749), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(751), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [18803] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(302), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(614), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18877] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(303), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(728), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [18951] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(304), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(700), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19025] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(305), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(433), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19099] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(306), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(436), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19173] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(307), 1, + sym_comment, + ACTIONS(811), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(809), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [19217] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(308), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(438), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19291] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(309), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(440), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19365] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(310), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(601), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19439] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(311), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(643), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19513] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(761), 1, + anon_sym_LBRACK, + ACTIONS(763), 1, + anon_sym_LPAREN, + ACTIONS(767), 1, + anon_sym_not, + ACTIONS(769), 1, + sym_identifier, + ACTIONS(775), 1, + anon_sym_SQUOTE, + ACTIONS(777), 1, + anon_sym_DQUOTE, + STATE(169), 1, + sym_attribute, + STATE(312), 1, + sym_comment, + STATE(363), 1, + sym_primary_expression, + STATE(446), 1, + sym_expression, + STATE(924), 1, + sym_template_function, + ACTIONS(765), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(773), 2, + sym_float, + sym_color, + STATE(437), 2, + sym_tuple, + sym_string, + STATE(444), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(771), 3, + sym_integer, + sym_true, + sym_false, + STATE(356), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(431), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19587] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(313), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(618), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19661] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(314), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(705), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19735] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(315), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(590), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19809] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(316), 1, + sym_comment, + ACTIONS(813), 10, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(815), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [19853] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(317), 1, + sym_comment, + ACTIONS(813), 10, + sym__indent, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(815), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [19897] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(318), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(691), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [19971] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(319), 1, + sym_comment, + ACTIONS(670), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(672), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [20015] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(320), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(736), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20089] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(668), 1, + anon_sym_LPAREN, + STATE(321), 1, + sym_comment, + STATE(372), 1, + sym_argument_list, + ACTIONS(347), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(349), 17, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [20137] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(322), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(613), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20211] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(323), 1, + sym_comment, + ACTIONS(813), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(815), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [20255] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(324), 1, + sym_comment, + ACTIONS(813), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(815), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [20299] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(325), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(708), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20373] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(326), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(709), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20447] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(327), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(583), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20521] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(328), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(710), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20595] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(602), 1, + anon_sym_LBRACK, + ACTIONS(604), 1, + anon_sym_LPAREN, + ACTIONS(608), 1, + anon_sym_not, + ACTIONS(610), 1, + sym_identifier, + ACTIONS(616), 1, + anon_sym_SQUOTE, + ACTIONS(618), 1, + anon_sym_DQUOTE, + STATE(329), 1, + sym_comment, + STATE(468), 1, + sym_attribute, + STATE(510), 1, + sym_primary_expression, + STATE(604), 1, + sym_expression, + STATE(951), 1, + sym_template_function, + ACTIONS(606), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(614), 2, + sym_float, + sym_color, + STATE(608), 2, + sym_tuple, + sym_string, + STATE(621), 2, + sym_single_quotted_string, + sym_double_quotted_string, + ACTIONS(612), 3, + sym_integer, + sym_true, + sym_false, + STATE(508), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(612), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20669] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(330), 1, + sym_comment, + ACTIONS(753), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(755), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [20713] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(29), 1, + anon_sym_LPAREN, + ACTIONS(35), 1, + anon_sym_not, + ACTIONS(45), 1, + anon_sym_SQUOTE, + ACTIONS(47), 1, + anon_sym_DQUOTE, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LBRACK, + ACTIONS(508), 1, + sym_identifier, + STATE(331), 1, + sym_comment, + STATE(474), 1, + sym_attribute, + STATE(511), 1, + sym_primary_expression, + STATE(609), 1, + sym_expression, + STATE(960), 1, + sym_template_function, + ACTIONS(33), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(43), 2, + sym_float, + sym_color, + STATE(648), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(660), 2, + sym_tuple, + sym_string, + ACTIONS(41), 3, + sym_integer, + sym_true, + sym_false, + STATE(523), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(656), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20787] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(332), 1, + sym_comment, + ACTIONS(811), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(809), 21, + anon_sym_if, + anon_sym_else, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [20831] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(333), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(579), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20905] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(727), 1, + anon_sym_LBRACK, + ACTIONS(729), 1, + anon_sym_LPAREN, + ACTIONS(733), 1, + anon_sym_not, + ACTIONS(735), 1, + sym_identifier, + ACTIONS(741), 1, + anon_sym_SQUOTE, + ACTIONS(743), 1, + anon_sym_DQUOTE, + STATE(334), 1, + sym_comment, + STATE(458), 1, + sym_attribute, + STATE(502), 1, + sym_primary_expression, + STATE(578), 1, + sym_expression, + STATE(954), 1, + sym_template_function, + ACTIONS(731), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(739), 2, + sym_float, + sym_color, + STATE(573), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(575), 2, + sym_tuple, + sym_string, + ACTIONS(737), 3, + sym_integer, + sym_true, + sym_false, + STATE(495), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(574), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [20979] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(335), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(629), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21053] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(336), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(631), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21127] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(337), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(682), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21201] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(338), 1, + sym_comment, + ACTIONS(803), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(805), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21245] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(339), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(665), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21319] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(340), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(635), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21393] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(341), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(712), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21467] = 20, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(486), 1, + anon_sym_LBRACK, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(494), 1, + anon_sym_not, + ACTIONS(502), 1, + anon_sym_SQUOTE, + ACTIONS(504), 1, + anon_sym_DQUOTE, + ACTIONS(541), 1, + sym_identifier, + STATE(342), 1, + sym_comment, + STATE(449), 1, + sym_attribute, + STATE(461), 1, + sym_primary_expression, + STATE(713), 1, + sym_expression, + STATE(926), 1, + sym_template_function, + ACTIONS(492), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(500), 2, + sym_float, + sym_color, + STATE(479), 2, + sym_single_quotted_string, + sym_double_quotted_string, + STATE(486), 2, + sym_tuple, + sym_string, + ACTIONS(498), 3, + sym_integer, + sym_true, + sym_false, + STATE(459), 3, + sym_call, + sym_subscript, + sym_parenthesized_expression, + STATE(480), 6, + sym_literals, + sym_conditional_expression, + sym_logical_operation, + sym_math_operation, + sym_unary_operation, + sym_comparison_operation, + [21541] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(343), 1, + sym_comment, + ACTIONS(670), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(672), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21584] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(344), 1, + sym_comment, + ACTIONS(817), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(819), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21627] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(345), 1, + sym_comment, + ACTIONS(817), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(819), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21670] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(346), 1, + sym_comment, + ACTIONS(821), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(823), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21713] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(347), 1, + sym_comment, + ACTIONS(827), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(825), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21756] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(348), 1, + sym_comment, + ACTIONS(831), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(829), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21799] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(349), 1, + sym_comment, + ACTIONS(835), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(833), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21842] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(350), 1, + sym_comment, + ACTIONS(839), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(837), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21885] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(351), 1, + sym_comment, + ACTIONS(821), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(823), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21928] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(352), 1, + sym_comment, + ACTIONS(817), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(819), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [21971] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(353), 1, + sym_comment, + ACTIONS(831), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(829), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22014] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(354), 1, + sym_comment, + ACTIONS(843), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(841), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22057] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(355), 1, + sym_comment, + ACTIONS(847), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(845), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22100] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(356), 1, + sym_comment, + ACTIONS(347), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(349), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [22143] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(357), 1, + sym_comment, + ACTIONS(851), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(849), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22186] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(358), 1, + sym_comment, + ACTIONS(855), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(853), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22229] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(359), 1, + sym_comment, + ACTIONS(855), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(853), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22272] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(360), 1, + sym_comment, + ACTIONS(859), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(857), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22315] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(361), 1, + sym_comment, + ACTIONS(863), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(861), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22358] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(362), 1, + sym_comment, + ACTIONS(863), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(861), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22401] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(865), 1, + anon_sym_LBRACK, + ACTIONS(867), 1, + anon_sym_DOT, + STATE(363), 1, + sym_comment, + ACTIONS(396), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(394), 17, + sym__indent, + sym__dedent, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [22448] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(364), 1, + sym_comment, + ACTIONS(871), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(869), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22491] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(365), 1, + sym_comment, + ACTIONS(875), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(873), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22534] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(366), 1, + sym_comment, + ACTIONS(879), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(877), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22577] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(367), 1, + sym_comment, + ACTIONS(827), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(825), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22620] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(368), 1, + sym_comment, + ACTIONS(883), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(881), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22663] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(369), 1, + sym_comment, + ACTIONS(887), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(885), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22706] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(370), 1, + sym_comment, + ACTIONS(670), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(672), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22749] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(371), 1, + sym_comment, + ACTIONS(879), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(877), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22792] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(372), 1, + sym_comment, + ACTIONS(358), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(360), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [22835] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(373), 1, + sym_comment, + ACTIONS(851), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(849), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22878] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(374), 1, + sym_comment, + ACTIONS(817), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(819), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22921] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(375), 1, + sym_comment, + ACTIONS(889), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(891), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [22964] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(376), 1, + sym_comment, + ACTIONS(839), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(837), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23007] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(377), 1, + sym_comment, + ACTIONS(835), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(833), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23050] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(378), 1, + sym_comment, + ACTIONS(843), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(841), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23093] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(379), 1, + sym_comment, + ACTIONS(847), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(845), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23136] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(380), 1, + sym_comment, + ACTIONS(783), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(785), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23179] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(381), 1, + sym_comment, + ACTIONS(410), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(412), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [23222] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(382), 1, + sym_comment, + ACTIONS(895), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(893), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23265] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(383), 1, + sym_comment, + ACTIONS(899), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(897), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23308] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(384), 1, + sym_comment, + ACTIONS(903), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(901), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23351] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(385), 1, + sym_comment, + ACTIONS(364), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(362), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [23394] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(386), 1, + sym_comment, + ACTIONS(907), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(905), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23437] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(387), 1, + sym_comment, + ACTIONS(855), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(853), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23480] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(388), 1, + sym_comment, + ACTIONS(903), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(901), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23523] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(389), 1, + sym_comment, + ACTIONS(899), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(897), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23566] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(390), 1, + sym_comment, + ACTIONS(911), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(909), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23609] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(391), 1, + sym_comment, + ACTIONS(855), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(853), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23652] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(392), 1, + sym_comment, + ACTIONS(859), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(857), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23695] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(393), 1, + sym_comment, + ACTIONS(406), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(408), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [23738] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(394), 1, + sym_comment, + ACTIONS(863), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(861), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23781] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(395), 1, + sym_comment, + ACTIONS(863), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(861), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23824] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(396), 1, + sym_comment, + ACTIONS(915), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(913), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23867] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(397), 1, + sym_comment, + ACTIONS(370), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(372), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [23910] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(398), 1, + sym_comment, + ACTIONS(915), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(913), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23953] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(399), 1, + sym_comment, + ACTIONS(871), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(869), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [23996] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(400), 1, + sym_comment, + ACTIONS(875), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(873), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24039] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(401), 1, + sym_comment, + ACTIONS(919), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(917), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24082] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(402), 1, + sym_comment, + ACTIONS(414), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(416), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [24125] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(403), 1, + sym_comment, + ACTIONS(883), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(881), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24168] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(404), 1, + sym_comment, + ACTIONS(887), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(885), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24211] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(405), 1, + sym_comment, + ACTIONS(368), 11, + anon_sym_SLASH, + anon_sym_DOT, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(366), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [24254] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(406), 1, + sym_comment, + ACTIONS(895), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(893), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24297] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(407), 1, + sym_comment, + ACTIONS(907), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(905), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24340] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(408), 1, + sym_comment, + ACTIONS(753), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(755), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24383] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(409), 1, + sym_comment, + ACTIONS(923), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(921), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24426] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(410), 1, + sym_comment, + ACTIONS(783), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(785), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24469] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(411), 1, + sym_comment, + ACTIONS(749), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(751), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24512] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(412), 1, + sym_comment, + ACTIONS(919), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(917), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24555] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(537), 1, + sym__indent, + ACTIONS(925), 1, + anon_sym_SLASH, + ACTIONS(927), 1, + anon_sym_QMARK, + ACTIONS(929), 1, + anon_sym_and, + ACTIONS(931), 1, + anon_sym_or, + STATE(413), 1, + sym_comment, + STATE(539), 1, + aux_sym_switch_statement_repeat2, + ACTIONS(933), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(935), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(937), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(939), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(376), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(374), 8, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [24618] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(414), 1, + sym_comment, + ACTIONS(911), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(909), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24661] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(415), 1, + sym_comment, + ACTIONS(943), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(941), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24704] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(416), 1, + sym_comment, + ACTIONS(947), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(945), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24747] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(417), 1, + sym_comment, + ACTIONS(915), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(913), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24790] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(418), 1, + sym_comment, + ACTIONS(951), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(949), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24833] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(419), 1, + sym_comment, + ACTIONS(915), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(913), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24876] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(420), 1, + sym_comment, + ACTIONS(923), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(921), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [24919] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(953), 1, + anon_sym_EQ, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(421), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 7, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(347), 8, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + [24980] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(422), 1, + sym_comment, + ACTIONS(943), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(941), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25023] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(423), 1, + sym_comment, + ACTIONS(889), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(891), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25066] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(424), 1, + sym_comment, + ACTIONS(947), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(945), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25109] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(425), 1, + sym_comment, + ACTIONS(749), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(751), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25152] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(426), 1, + sym_comment, + ACTIONS(753), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(755), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25195] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(427), 1, + sym_comment, + ACTIONS(957), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(959), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25238] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(428), 1, + sym_comment, + ACTIONS(957), 9, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(959), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25281] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(429), 1, + sym_comment, + ACTIONS(951), 9, + ts_builtin_sym_end, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(949), 20, + anon_sym_if, + anon_sym_switch, + anon_sym_for, + anon_sym_while, + sym_break, + sym_continue, + anon_sym_export, + anon_sym_type, + anon_sym_varip, + anon_sym_var, + anon_sym_method, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [25324] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(430), 1, + sym_comment, + ACTIONS(474), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(476), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25366] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(431), 1, + sym_comment, + ACTIONS(396), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(394), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25408] = 13, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(925), 1, + anon_sym_SLASH, + ACTIONS(927), 1, + anon_sym_QMARK, + ACTIONS(929), 1, + anon_sym_and, + ACTIONS(931), 1, + anon_sym_or, + STATE(432), 1, + sym_comment, + ACTIONS(933), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(935), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(937), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(939), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(438), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(440), 9, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25466] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(925), 1, + anon_sym_SLASH, + STATE(433), 1, + sym_comment, + ACTIONS(933), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(935), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(478), 9, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(480), 14, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25514] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(434), 1, + sym_comment, + ACTIONS(462), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(464), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25556] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(961), 1, + anon_sym_EQ, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(435), 1, + sym_comment, + STATE(463), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + ACTIONS(349), 6, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(347), 8, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + [25616] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(925), 1, + anon_sym_SLASH, + STATE(436), 1, + sym_comment, + ACTIONS(935), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(454), 9, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(456), 16, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25662] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(437), 1, + sym_comment, + ACTIONS(482), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(484), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25704] = 11, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(925), 1, + anon_sym_SLASH, + ACTIONS(929), 1, + anon_sym_and, + STATE(438), 1, + sym_comment, + ACTIONS(933), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(935), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(937), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(939), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(458), 6, + anon_sym_or, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(460), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25758] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(439), 1, + sym_comment, + ACTIONS(466), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(468), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25800] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(925), 1, + anon_sym_SLASH, + STATE(440), 1, + sym_comment, + ACTIONS(933), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(935), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(937), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(939), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(458), 7, + anon_sym_and, + anon_sym_or, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(460), 10, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25852] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(441), 1, + sym_comment, + ACTIONS(442), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(444), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25894] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(442), 1, + sym_comment, + ACTIONS(448), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(446), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25936] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(443), 1, + sym_comment, + ACTIONS(450), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(452), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [25978] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(444), 1, + sym_comment, + ACTIONS(436), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(434), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [26020] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(445), 1, + sym_comment, + ACTIONS(472), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(470), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [26062] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(446), 1, + sym_comment, + ACTIONS(454), 10, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_not, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(456), 18, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [26104] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(447), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 6, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 11, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26155] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(448), 1, + sym_comment, + STATE(463), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 6, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_GT, + ACTIONS(697), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + ACTIONS(349), 10, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26205] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(449), 1, + sym_comment, + STATE(463), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 2, + anon_sym_SLASH, + anon_sym_GT, + ACTIONS(349), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26252] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(450), 1, + sym_comment, + ACTIONS(368), 7, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(366), 18, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26291] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(451), 1, + sym_comment, + STATE(463), 1, + sym_argument_list, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26333] = 16, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(694), 1, + anon_sym_LBRACK, + ACTIONS(701), 1, + anon_sym_DOT, + ACTIONS(704), 1, + anon_sym_LT, + ACTIONS(707), 1, + sym_identifier, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(965), 1, + anon_sym_COMMA, + ACTIONS(968), 1, + anon_sym_EQ, + ACTIONS(970), 1, + anon_sym_RPAREN, + STATE(452), 1, + sym_comment, + STATE(463), 1, + sym_argument_list, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(867), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(347), 4, + anon_sym_SLASH, + anon_sym_and, + anon_sym_or, + anon_sym_GT, + ACTIONS(349), 9, + anon_sym_QMARK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26393] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(453), 1, + sym_comment, + ACTIONS(368), 7, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(366), 17, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26431] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(454), 1, + sym_comment, + ACTIONS(368), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(366), 20, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26468] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(455), 1, + sym_comment, + ACTIONS(410), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(412), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26504] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(456), 1, + sym_comment, + ACTIONS(370), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(372), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26540] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(457), 1, + sym_comment, + ACTIONS(364), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(362), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26576] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(973), 1, + anon_sym_LPAREN, + STATE(458), 1, + sym_comment, + STATE(500), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 2, + anon_sym_SLASH, + anon_sym_GT, + ACTIONS(349), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26620] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(459), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26656] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(460), 1, + sym_comment, + ACTIONS(414), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(416), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26692] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(975), 1, + anon_sym_LBRACK, + ACTIONS(977), 1, + anon_sym_DOT, + STATE(461), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26732] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(462), 1, + sym_comment, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(408), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26768] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(463), 1, + sym_comment, + ACTIONS(358), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(360), 19, + anon_sym_COMMA, + anon_sym_to, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26804] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(464), 1, + sym_comment, + ACTIONS(273), 9, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + ACTIONS(979), 13, + sym_break, + sym_continue, + anon_sym_varip, + anon_sym_var, + anon_sym_import, + anon_sym_not, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + sym_integer, + sym_true, + sym_false, + [26840] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(981), 1, + anon_sym_EQ, + STATE(463), 1, + sym_argument_list, + STATE(465), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 15, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26881] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + ACTIONS(986), 1, + anon_sym_RBRACK, + STATE(463), 1, + sym_argument_list, + STATE(466), 1, + sym_comment, + STATE(907), 1, + aux_sym_tuple_declaration_repeat1, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26926] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + ACTIONS(989), 1, + anon_sym_RBRACK, + STATE(463), 1, + sym_argument_list, + STATE(467), 1, + sym_comment, + STATE(898), 1, + aux_sym_tuple_declaration_repeat1, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [26971] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(992), 1, + anon_sym_LPAREN, + STATE(468), 1, + sym_comment, + STATE(516), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 2, + anon_sym_SLASH, + anon_sym_GT, + ACTIONS(349), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27014] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(973), 1, + anon_sym_LPAREN, + STATE(469), 1, + sym_comment, + STATE(500), 1, + sym_argument_list, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27053] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + ACTIONS(994), 1, + anon_sym_RBRACK, + STATE(463), 1, + sym_argument_list, + STATE(470), 1, + sym_comment, + STATE(875), 1, + aux_sym_tuple_declaration_repeat1, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27098] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + ACTIONS(997), 1, + anon_sym_RBRACK, + STATE(463), 1, + sym_argument_list, + STATE(471), 1, + sym_comment, + STATE(869), 1, + aux_sym_tuple_declaration_repeat1, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27143] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + ACTIONS(1000), 1, + anon_sym_RBRACK, + STATE(463), 1, + sym_argument_list, + STATE(472), 1, + sym_comment, + STATE(900), 1, + aux_sym_tuple_declaration_repeat1, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27188] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(983), 1, + anon_sym_COMMA, + ACTIONS(1003), 1, + anon_sym_RBRACK, + STATE(463), 1, + sym_argument_list, + STATE(473), 1, + sym_comment, + STATE(878), 1, + aux_sym_tuple_declaration_repeat1, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27233] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(353), 1, + anon_sym_LT, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(474), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(347), 2, + anon_sym_SLASH, + anon_sym_GT, + ACTIONS(349), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27276] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(475), 1, + sym_comment, + ACTIONS(454), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(456), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27310] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(992), 1, + anon_sym_LPAREN, + STATE(476), 1, + sym_comment, + STATE(516), 1, + sym_argument_list, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27348] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(477), 1, + sym_comment, + ACTIONS(474), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(476), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27382] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(478), 1, + sym_comment, + STATE(517), 1, + sym_argument_list, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27420] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(479), 1, + sym_comment, + ACTIONS(436), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(434), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27454] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(480), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27488] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(481), 1, + sym_comment, + ACTIONS(368), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(366), 17, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27522] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(482), 1, + sym_comment, + ACTIONS(442), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(444), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27556] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + STATE(483), 1, + sym_comment, + ACTIONS(478), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(480), 13, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27596] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + STATE(484), 1, + sym_comment, + ACTIONS(454), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 15, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27634] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(485), 1, + sym_comment, + ACTIONS(462), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(464), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27668] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(486), 1, + sym_comment, + ACTIONS(482), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(484), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27702] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(487), 1, + sym_comment, + ACTIONS(466), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27736] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + STATE(488), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 8, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_or, + [27780] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + STATE(489), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 9, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + [27822] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(490), 1, + sym_comment, + ACTIONS(472), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27856] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(491), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(440), 6, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_COLON, + [27904] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(492), 1, + sym_comment, + ACTIONS(448), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(446), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27938] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(493), 1, + sym_comment, + ACTIONS(450), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(452), 17, + anon_sym_COMMA, + anon_sym_to, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_RPAREN, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [27972] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(494), 1, + sym_comment, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(408), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28005] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(495), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28038] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(496), 1, + sym_comment, + ACTIONS(364), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(362), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28071] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(497), 1, + sym_comment, + ACTIONS(410), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(412), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28104] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1022), 1, + anon_sym_else, + STATE(498), 1, + sym_comment, + STATE(499), 1, + aux_sym_if_statement_repeat1, + STATE(649), 1, + sym_else_if_clause, + STATE(692), 1, + sym_else_clause, + ACTIONS(622), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(620), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [28145] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1022), 1, + anon_sym_else, + STATE(499), 1, + sym_comment, + STATE(515), 1, + aux_sym_if_statement_repeat1, + STATE(649), 1, + sym_else_if_clause, + STATE(683), 1, + sym_else_clause, + ACTIONS(596), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(594), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [28186] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(500), 1, + sym_comment, + ACTIONS(358), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(360), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28219] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1024), 1, + anon_sym_EQ_GT, + STATE(501), 1, + sym_comment, + ACTIONS(364), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(362), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28254] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1026), 1, + anon_sym_LBRACK, + ACTIONS(1028), 1, + anon_sym_DOT, + STATE(502), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28291] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(503), 1, + sym_comment, + ACTIONS(368), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(366), 16, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28324] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(504), 1, + sym_comment, + ACTIONS(414), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(416), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28357] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(505), 1, + sym_comment, + ACTIONS(370), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(372), 16, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28390] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(506), 1, + sym_comment, + ACTIONS(368), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(366), 16, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28423] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1030), 1, + anon_sym_by, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(348), 1, + sym__suite, + STATE(507), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28475] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(508), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28507] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(509), 1, + sym_comment, + ACTIONS(364), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(362), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28539] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1048), 1, + anon_sym_LBRACK, + ACTIONS(1050), 1, + anon_sym_DOT, + STATE(510), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28575] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1054), 1, + anon_sym_DOT, + STATE(511), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28611] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(512), 1, + sym_comment, + ACTIONS(370), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(372), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28643] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(99), 1, + sym__indent, + ACTIONS(101), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1056), 1, + anon_sym_by, + STATE(353), 1, + sym__suite, + STATE(513), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28695] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(514), 1, + sym_comment, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(408), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28727] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1058), 1, + anon_sym_else, + STATE(649), 1, + sym_else_if_clause, + STATE(515), 2, + sym_comment, + aux_sym_if_statement_repeat1, + ACTIONS(626), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(624), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [28763] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(516), 1, + sym_comment, + ACTIONS(358), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(360), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28795] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(517), 1, + sym_comment, + ACTIONS(358), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(360), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28827] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1061), 1, + anon_sym_by, + STATE(518), 1, + sym_comment, + STATE(664), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28879] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(95), 1, + sym__indent, + ACTIONS(97), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1063), 1, + anon_sym_by, + STATE(348), 1, + sym__suite, + STATE(519), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28931] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(520), 1, + sym_comment, + ACTIONS(410), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(412), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28963] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(521), 1, + sym_comment, + ACTIONS(364), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(362), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [28995] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(522), 1, + sym_comment, + ACTIONS(414), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(416), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29027] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(523), 1, + sym_comment, + ACTIONS(347), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(349), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29059] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(524), 1, + sym_comment, + ACTIONS(370), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(372), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29091] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(525), 1, + sym_comment, + ACTIONS(410), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(412), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29123] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1052), 1, + anon_sym_LBRACK, + ACTIONS(1065), 1, + anon_sym_DOT, + STATE(526), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29159] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(527), 1, + sym_comment, + ACTIONS(414), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(416), 15, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29191] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(528), 1, + sym_comment, + ACTIONS(406), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(408), 15, + sym__newline, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29223] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1069), 1, + anon_sym_RPAREN, + STATE(529), 1, + sym_comment, + STATE(870), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29272] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(530), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(847), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(364), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [29323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(531), 1, + sym_comment, + ACTIONS(450), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(452), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29354] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1073), 1, + anon_sym_COMMA, + ACTIONS(1076), 1, + anon_sym_RPAREN, + STATE(532), 1, + sym_comment, + STATE(896), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29403] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(533), 1, + sym_comment, + ACTIONS(472), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29434] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(534), 1, + sym_comment, + ACTIONS(448), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(446), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29465] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(535), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(844), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(371), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [29516] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(536), 1, + sym_comment, + ACTIONS(454), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(456), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29547] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1079), 1, + sym__indent, + ACTIONS(1081), 1, + sym__newline, + STATE(153), 1, + sym__suite, + STATE(537), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29596] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + STATE(538), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 6, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + [29635] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(537), 1, + sym__indent, + STATE(539), 1, + sym_comment, + STATE(540), 1, + aux_sym_switch_statement_repeat2, + ACTIONS(654), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(656), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [29670] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1083), 1, + sym__indent, + STATE(540), 2, + sym_comment, + aux_sym_switch_statement_repeat2, + ACTIONS(658), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(660), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [29703] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(541), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(847), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(680), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [29754] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1036), 1, + anon_sym_and, + STATE(542), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 5, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_or, + [29795] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1088), 1, + anon_sym_RBRACK, + STATE(543), 1, + sym_comment, + STATE(895), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29844] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(95), 1, + sym__indent, + ACTIONS(97), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(415), 1, + sym__suite, + STATE(544), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29893] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + STATE(545), 1, + sym_comment, + ACTIONS(454), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 12, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29928] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + STATE(546), 1, + sym_comment, + ACTIONS(478), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(480), 10, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [29965] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(95), 1, + sym__indent, + ACTIONS(97), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(365), 1, + sym__suite, + STATE(547), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30014] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1090), 1, + sym__indent, + ACTIONS(1092), 1, + sym__newline, + STATE(152), 1, + sym__suite, + STATE(548), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30063] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(95), 1, + sym__indent, + ACTIONS(97), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(350), 1, + sym__suite, + STATE(549), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30112] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(95), 1, + sym__indent, + ACTIONS(97), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(349), 1, + sym__suite, + STATE(550), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30161] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1094), 1, + sym__indent, + ACTIONS(1096), 1, + sym__newline, + STATE(551), 1, + sym_comment, + STATE(936), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30210] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1094), 1, + sym__indent, + ACTIONS(1096), 1, + sym__newline, + STATE(552), 1, + sym_comment, + STATE(800), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30259] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1098), 1, + anon_sym_RBRACK, + STATE(553), 1, + sym_comment, + STATE(873), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30308] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(554), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(847), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(364), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [30359] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(555), 1, + sym_comment, + ACTIONS(442), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(444), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30390] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(415), 1, + sym__suite, + STATE(556), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30439] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(314), 1, + sym__indent, + ACTIONS(374), 1, + sym__dedent, + ACTIONS(1100), 1, + anon_sym_SLASH, + ACTIONS(1102), 1, + anon_sym_QMARK, + ACTIONS(1104), 1, + anon_sym_and, + ACTIONS(1106), 1, + anon_sym_or, + STATE(164), 1, + aux_sym_switch_statement_repeat2, + STATE(557), 1, + sym_comment, + ACTIONS(1108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1112), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1114), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30488] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(9), 1, + anon_sym_if, + ACTIONS(11), 1, + anon_sym_switch, + ACTIONS(13), 1, + anon_sym_for, + ACTIONS(17), 1, + anon_sym_while, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(558), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(847), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(399), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [30539] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(99), 1, + sym__indent, + ACTIONS(101), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(400), 1, + sym__suite, + STATE(559), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30588] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1116), 1, + anon_sym_RPAREN, + STATE(560), 1, + sym_comment, + STATE(886), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30637] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(365), 1, + sym__suite, + STATE(561), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30686] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(537), 1, + sym__indent, + STATE(540), 1, + aux_sym_switch_statement_repeat2, + STATE(562), 1, + sym_comment, + ACTIONS(650), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(652), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [30721] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(563), 1, + sym_comment, + ACTIONS(474), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(476), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30752] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1120), 1, + anon_sym_RPAREN, + STATE(564), 1, + sym_comment, + STATE(881), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30801] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(350), 1, + sym__suite, + STATE(565), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30850] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(349), 1, + sym__suite, + STATE(566), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30899] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1122), 1, + sym__indent, + ACTIONS(1124), 1, + sym__newline, + STATE(567), 1, + sym_comment, + STATE(603), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30948] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(568), 1, + sym_comment, + ACTIONS(462), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(464), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [30979] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1122), 1, + sym__indent, + ACTIONS(1124), 1, + sym__newline, + STATE(498), 1, + sym__suite, + STATE(569), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31028] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1126), 1, + anon_sym_RBRACK, + STATE(570), 1, + sym_comment, + STATE(909), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31077] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(571), 1, + sym_comment, + STATE(699), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31126] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(572), 1, + sym_comment, + ACTIONS(466), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31157] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(573), 1, + sym_comment, + ACTIONS(436), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(434), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31188] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(574), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31219] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(575), 1, + sym_comment, + ACTIONS(482), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(484), 14, + sym__indent, + sym__newline, + anon_sym_by, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31250] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1128), 1, + anon_sym_RBRACK, + STATE(576), 1, + sym_comment, + STATE(858), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31299] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(99), 1, + sym__indent, + ACTIONS(101), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(422), 1, + sym__suite, + STATE(577), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31348] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(99), 1, + sym__indent, + ACTIONS(101), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(377), 1, + sym__suite, + STATE(578), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31397] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(99), 1, + sym__indent, + ACTIONS(101), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(376), 1, + sym__suite, + STATE(579), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31446] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1130), 1, + anon_sym_RPAREN, + STATE(580), 1, + sym_comment, + STATE(883), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31495] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(581), 1, + sym_comment, + STATE(681), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31544] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(51), 1, + anon_sym_if, + ACTIONS(53), 1, + anon_sym_switch, + ACTIONS(55), 1, + anon_sym_for, + ACTIONS(59), 1, + anon_sym_while, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(582), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(844), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(366), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [31595] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1132), 1, + anon_sym_RPAREN, + STATE(583), 1, + sym_comment, + STATE(892), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31644] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(975), 1, + anon_sym_LBRACK, + ACTIONS(1134), 1, + anon_sym_DOT, + STATE(584), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 12, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31679] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(585), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(440), 3, + sym__indent, + sym__newline, + anon_sym_by, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31724] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(73), 1, + anon_sym_if, + ACTIONS(75), 1, + anon_sym_switch, + ACTIONS(77), 1, + anon_sym_for, + ACTIONS(81), 1, + anon_sym_while, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(586), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(844), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(366), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [31775] = 15, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(103), 1, + anon_sym_if, + ACTIONS(105), 1, + anon_sym_switch, + ACTIONS(107), 1, + anon_sym_for, + ACTIONS(111), 1, + anon_sym_while, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1071), 1, + sym_identifier, + STATE(587), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(844), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + STATE(671), 5, + sym_if_statement, + sym_switch_statement, + sym_for_statement, + sym_for_in_statement, + sym_while_statement, + [31826] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(588), 1, + sym_comment, + STATE(663), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31875] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + STATE(589), 1, + sym_comment, + STATE(704), 1, + sym__suite, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31924] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1136), 1, + anon_sym_RBRACK, + STATE(590), 1, + sym_comment, + STATE(904), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [31973] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1138), 1, + anon_sym_RPAREN, + STATE(591), 1, + sym_comment, + STATE(877), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32022] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1090), 1, + sym__indent, + ACTIONS(1092), 1, + sym__newline, + STATE(332), 1, + sym__suite, + STATE(592), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32071] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1140), 1, + anon_sym_RPAREN, + STATE(593), 1, + sym_comment, + STATE(896), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32120] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1032), 1, + anon_sym_SLASH, + ACTIONS(1034), 1, + anon_sym_QMARK, + ACTIONS(1036), 1, + anon_sym_and, + ACTIONS(1038), 1, + anon_sym_or, + ACTIONS(1079), 1, + sym__indent, + ACTIONS(1081), 1, + sym__newline, + STATE(307), 1, + sym__suite, + STATE(594), 1, + sym_comment, + ACTIONS(1040), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1042), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1044), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1046), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32169] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1142), 1, + anon_sym_RPAREN, + STATE(595), 1, + sym_comment, + STATE(857), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32218] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1144), 1, + anon_sym_RPAREN, + STATE(596), 1, + sym_comment, + STATE(879), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32267] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1146), 1, + anon_sym_RBRACK, + STATE(597), 1, + sym_comment, + STATE(893), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32316] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1148), 1, + anon_sym_RPAREN, + STATE(598), 1, + sym_comment, + STATE(866), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32365] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1150), 1, + anon_sym_RBRACK, + STATE(599), 1, + sym_comment, + STATE(899), 1, + aux_sym_tuple_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32414] = 14, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1152), 1, + anon_sym_RPAREN, + STATE(600), 1, + sym_comment, + STATE(888), 1, + aux_sym_argument_list_repeat1, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32463] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(601), 1, + sym_comment, + ACTIONS(1154), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32507] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(602), 1, + sym_comment, + ACTIONS(815), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(813), 11, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [32537] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(603), 1, + sym_comment, + ACTIONS(809), 6, + anon_sym_else, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(811), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [32567] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1100), 1, + anon_sym_SLASH, + ACTIONS(1102), 1, + anon_sym_QMARK, + ACTIONS(1104), 1, + anon_sym_and, + ACTIONS(1106), 1, + anon_sym_or, + STATE(604), 1, + sym_comment, + ACTIONS(440), 2, + sym__indent, + sym__dedent, + ACTIONS(1108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1112), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1114), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32611] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(605), 1, + sym_comment, + ACTIONS(815), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(813), 11, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [32641] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(606), 1, + sym_comment, + ACTIONS(448), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(446), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32671] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(607), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1172), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32715] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(608), 1, + sym_comment, + ACTIONS(482), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(484), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32745] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(609), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1174), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32789] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(610), 1, + sym_comment, + ACTIONS(450), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(452), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32819] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(611), 1, + sym_comment, + ACTIONS(442), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(444), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32849] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(612), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32879] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(613), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1176), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32923] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1100), 1, + anon_sym_SLASH, + STATE(614), 1, + sym_comment, + ACTIONS(478), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(480), 9, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32959] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1100), 1, + anon_sym_SLASH, + STATE(615), 1, + sym_comment, + ACTIONS(454), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 11, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [32993] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1100), 1, + anon_sym_SLASH, + ACTIONS(1104), 1, + anon_sym_and, + STATE(616), 1, + sym_comment, + ACTIONS(1108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1112), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(460), 4, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(1114), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33033] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1100), 1, + anon_sym_SLASH, + STATE(617), 1, + sym_comment, + ACTIONS(1108), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1110), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1112), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1114), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 5, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + [33071] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(618), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1178), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33115] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(619), 1, + sym_comment, + ACTIONS(472), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33145] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(620), 1, + sym_comment, + ACTIONS(805), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(803), 11, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [33175] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(621), 1, + sym_comment, + ACTIONS(436), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(434), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33205] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(622), 1, + sym_comment, + ACTIONS(454), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(456), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33235] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(623), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1180), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(624), 1, + sym_comment, + ACTIONS(454), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(456), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33309] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(625), 1, + sym_comment, + ACTIONS(462), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(464), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33339] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(626), 1, + sym_comment, + ACTIONS(466), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33369] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(627), 1, + sym_comment, + ACTIONS(472), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(470), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33399] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(628), 1, + sym_comment, + ACTIONS(474), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(476), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33429] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(629), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1182), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33473] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + STATE(630), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + ACTIONS(460), 5, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + [33511] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(631), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1184), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33555] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(632), 1, + sym_comment, + ACTIONS(450), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(452), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33585] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(633), 1, + sym_comment, + ACTIONS(448), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(446), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33615] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1160), 1, + anon_sym_and, + STATE(634), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(460), 4, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_or, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33655] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(635), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1186), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33699] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + STATE(636), 1, + sym_comment, + ACTIONS(454), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(456), 11, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33733] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + STATE(637), 1, + sym_comment, + ACTIONS(478), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(480), 9, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33769] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(638), 1, + sym_comment, + ACTIONS(785), 6, + anon_sym_else, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(783), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [33799] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(639), 1, + sym_comment, + ACTIONS(474), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(476), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33829] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(640), 1, + sym_comment, + ACTIONS(672), 6, + anon_sym_else, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(670), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [33859] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(641), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1188), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33903] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(642), 1, + sym_comment, + ACTIONS(440), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33947] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(643), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1190), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [33991] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(644), 1, + sym_comment, + ACTIONS(759), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(757), 11, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34021] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + STATE(645), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1192), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34065] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(646), 1, + sym_comment, + ACTIONS(442), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(444), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34095] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(647), 1, + sym_comment, + ACTIONS(462), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(464), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34125] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(648), 1, + sym_comment, + ACTIONS(436), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(434), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34155] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(649), 1, + sym_comment, + ACTIONS(745), 6, + anon_sym_else, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(747), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34185] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(650), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1194), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34229] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(651), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1196), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34273] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(652), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1198), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34317] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(653), 1, + sym_comment, + ACTIONS(781), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(779), 11, + sym__indent, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34347] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(654), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1200), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34391] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(655), 1, + sym_comment, + ACTIONS(466), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(468), 13, + sym__indent, + sym__dedent, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34421] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(656), 1, + sym_comment, + ACTIONS(396), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(394), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34451] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(657), 1, + sym_comment, + ACTIONS(755), 6, + anon_sym_else, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(753), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34481] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + STATE(658), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1202), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34525] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(659), 1, + sym_comment, + ACTIONS(751), 6, + anon_sym_else, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(749), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34555] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(660), 1, + sym_comment, + ACTIONS(482), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(484), 13, + sym__newline, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34585] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1204), 1, + anon_sym_RPAREN, + STATE(661), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34628] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(662), 1, + sym_comment, + ACTIONS(901), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(903), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34657] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(663), 1, + sym_comment, + ACTIONS(837), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(839), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34686] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(664), 1, + sym_comment, + ACTIONS(829), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(831), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34715] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1206), 1, + anon_sym_RPAREN, + STATE(665), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34758] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(666), 1, + sym_comment, + ACTIONS(823), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(821), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34787] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1208), 1, + anon_sym_to, + STATE(667), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [34830] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(668), 1, + sym_comment, + ACTIONS(819), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(817), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34859] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(669), 1, + sym_comment, + ACTIONS(819), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(817), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34888] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(670), 1, + sym_comment, + ACTIONS(849), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(851), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34917] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(671), 1, + sym_comment, + ACTIONS(877), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(879), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34946] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(672), 1, + sym_comment, + ACTIONS(825), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(827), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [34975] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(673), 1, + sym_comment, + ACTIONS(841), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(843), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35004] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(674), 1, + sym_comment, + ACTIONS(845), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(847), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35033] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(675), 1, + sym_comment, + ACTIONS(853), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(855), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35062] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(676), 1, + sym_comment, + ACTIONS(853), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(855), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35091] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(677), 1, + sym_comment, + ACTIONS(857), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(859), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35120] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(678), 1, + sym_comment, + ACTIONS(861), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(863), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35149] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(679), 1, + sym_comment, + ACTIONS(861), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(863), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35178] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(680), 1, + sym_comment, + ACTIONS(869), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(871), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35207] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(681), 1, + sym_comment, + ACTIONS(873), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(875), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35236] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1210), 1, + anon_sym_RBRACK, + STATE(682), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [35279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(683), 1, + sym_comment, + ACTIONS(881), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(883), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35308] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(684), 1, + sym_comment, + ACTIONS(885), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(887), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35337] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(685), 1, + sym_comment, + ACTIONS(672), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(670), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35366] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(686), 1, + sym_comment, + ACTIONS(893), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(895), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35395] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(687), 1, + sym_comment, + ACTIONS(905), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(907), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35424] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(688), 1, + sym_comment, + ACTIONS(909), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(911), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35453] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(689), 1, + sym_comment, + ACTIONS(913), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(915), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35482] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(690), 1, + sym_comment, + ACTIONS(913), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(915), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35511] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1212), 1, + anon_sym_COLON, + STATE(691), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [35554] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(692), 1, + sym_comment, + ACTIONS(959), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(957), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35583] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(693), 1, + sym_comment, + ACTIONS(1216), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(1214), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35612] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(694), 1, + sym_comment, + ACTIONS(755), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(753), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35641] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(695), 1, + sym_comment, + ACTIONS(751), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(749), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35670] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(696), 1, + sym_comment, + ACTIONS(891), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(889), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35699] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(697), 1, + sym_comment, + ACTIONS(949), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(951), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35728] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(698), 1, + sym_comment, + ACTIONS(945), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(947), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35757] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(699), 1, + sym_comment, + ACTIONS(941), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(943), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35786] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1218), 1, + anon_sym_RPAREN, + STATE(700), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [35829] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(701), 1, + sym_comment, + ACTIONS(785), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(783), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35858] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(702), 1, + sym_comment, + ACTIONS(921), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(923), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35887] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1220), 1, + anon_sym_COLON, + STATE(703), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [35930] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(704), 1, + sym_comment, + ACTIONS(833), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(835), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [35959] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1174), 1, + anon_sym_COMMA, + STATE(705), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36002] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1222), 1, + anon_sym_RBRACK, + STATE(706), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36045] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1224), 1, + anon_sym_RBRACK, + STATE(707), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36088] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1178), 1, + anon_sym_COMMA, + STATE(708), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36131] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1190), 1, + anon_sym_COMMA, + STATE(709), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36174] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1154), 1, + anon_sym_COMMA, + STATE(710), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36217] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1226), 1, + anon_sym_COLON, + STATE(711), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36260] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1198), 1, + anon_sym_COMMA, + STATE(712), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36303] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1196), 1, + anon_sym_COMMA, + STATE(713), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36346] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1194), 1, + anon_sym_COMMA, + STATE(714), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36389] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1228), 1, + anon_sym_COLON, + STATE(715), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36432] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1180), 1, + anon_sym_COMMA, + STATE(716), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36475] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1200), 1, + anon_sym_COMMA, + STATE(717), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36518] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1230), 1, + anon_sym_RBRACK, + STATE(718), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36561] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1202), 1, + anon_sym_COMMA, + STATE(719), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36604] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1232), 1, + anon_sym_RPAREN, + STATE(720), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36647] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1234), 1, + anon_sym_RPAREN, + STATE(721), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36690] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1236), 1, + anon_sym_COLON, + STATE(722), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36733] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1238), 1, + anon_sym_RBRACK, + STATE(723), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36776] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1240), 1, + anon_sym_EQ_GT, + STATE(724), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36819] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(725), 1, + sym_comment, + ACTIONS(1244), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(1242), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [36848] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(726), 1, + sym_comment, + ACTIONS(917), 5, + anon_sym_not, + sym_identifier, + sym_integer, + sym_true, + sym_false, + ACTIONS(919), 10, + sym__dedent, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + sym_float, + sym_color, + anon_sym_SQUOTE, + anon_sym_DQUOTE, + [36877] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1246), 1, + anon_sym_RPAREN, + STATE(727), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36920] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1248), 1, + anon_sym_to, + STATE(728), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [36963] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1250), 1, + anon_sym_RBRACK, + STATE(729), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37006] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1252), 1, + anon_sym_COLON, + STATE(730), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37049] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1254), 1, + anon_sym_RPAREN, + STATE(731), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37092] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1256), 1, + anon_sym_to, + STATE(732), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37135] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1258), 1, + anon_sym_to, + STATE(733), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37178] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1260), 1, + anon_sym_COLON, + STATE(734), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37221] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1006), 1, + anon_sym_SLASH, + ACTIONS(1012), 1, + anon_sym_and, + ACTIONS(1018), 1, + anon_sym_QMARK, + ACTIONS(1020), 1, + anon_sym_or, + ACTIONS(1262), 1, + anon_sym_RBRACK, + STATE(735), 1, + sym_comment, + ACTIONS(1008), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1010), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1014), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1016), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37264] = 12, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1156), 1, + anon_sym_SLASH, + ACTIONS(1158), 1, + anon_sym_QMARK, + ACTIONS(1160), 1, + anon_sym_and, + ACTIONS(1162), 1, + anon_sym_or, + ACTIONS(1264), 1, + sym__newline, + STATE(736), 1, + sym_comment, + ACTIONS(1164), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1166), 2, + anon_sym_STAR, + anon_sym_PERCENT, + ACTIONS(1168), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1170), 4, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + [37307] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1266), 1, + anon_sym_RPAREN, + ACTIONS(1268), 1, + sym_identifier, + STATE(737), 1, + sym_comment, + STATE(796), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(975), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37341] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1270), 1, + sym_identifier, + STATE(738), 1, + sym_comment, + STATE(801), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(1051), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37372] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1272), 1, + sym_identifier, + STATE(739), 1, + sym_comment, + STATE(805), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(1095), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37403] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1274), 1, + anon_sym_EQ, + ACTIONS(1278), 1, + anon_sym_RPAREN, + ACTIONS(1280), 1, + anon_sym_DOT, + STATE(740), 1, + sym_comment, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(867), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [37436] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1282), 1, + anon_sym_EQ, + ACTIONS(1284), 1, + anon_sym_RPAREN, + STATE(741), 1, + sym_comment, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(911), 1, + aux_sym__argument_list_with_type_optional_repeat1, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [37469] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1286), 1, + sym_identifier, + STATE(742), 1, + sym_comment, + STATE(810), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(1028), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37500] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1288), 1, + sym_identifier, + STATE(743), 1, + sym_comment, + STATE(798), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(1077), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37531] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1290), 1, + sym_identifier, + STATE(744), 1, + sym_comment, + STATE(811), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(997), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37562] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1292), 1, + sym_identifier, + STATE(745), 1, + sym_comment, + STATE(797), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(1014), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37593] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1294), 1, + sym_identifier, + STATE(746), 1, + sym_comment, + STATE(804), 1, + sym_type_qualifier, + STATE(843), 1, + sym_base_type, + STATE(1043), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + ACTIONS(37), 3, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + [37624] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1296), 1, + sym_identifier, + STATE(747), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(844), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + [37656] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1300), 1, + anon_sym_EQ, + STATE(748), 1, + sym_comment, + STATE(760), 1, + aux_sym_base_type_repeat1, + ACTIONS(1298), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [37684] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1302), 1, + sym_identifier, + STATE(749), 1, + sym_comment, + STATE(778), 1, + sym_attribute, + STATE(880), 1, + sym_call, + STATE(926), 1, + sym_template_function, + STATE(958), 1, + sym_primary_expression, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + [37716] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1302), 1, + sym_identifier, + STATE(750), 1, + sym_comment, + STATE(778), 1, + sym_attribute, + STATE(860), 1, + sym_call, + STATE(926), 1, + sym_template_function, + STATE(958), 1, + sym_primary_expression, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + [37748] = 10, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LPAREN, + ACTIONS(1296), 1, + sym_identifier, + STATE(751), 1, + sym_comment, + STATE(768), 1, + sym_attribute, + STATE(847), 1, + sym_call, + STATE(958), 1, + sym_primary_expression, + STATE(960), 1, + sym_template_function, + STATE(459), 2, + sym_subscript, + sym_parenthesized_expression, + [37780] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1306), 1, + anon_sym_EQ, + STATE(752), 1, + sym_comment, + STATE(760), 1, + aux_sym_base_type_repeat1, + ACTIONS(1304), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [37808] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1308), 1, + sym_identifier, + ACTIONS(1311), 1, + sym__dedent, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(753), 2, + sym_comment, + aux_sym_type_definition_statement_repeat1, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [37835] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + STATE(754), 1, + sym_comment, + STATE(760), 1, + aux_sym_base_type_repeat1, + ACTIONS(1276), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [37858] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1315), 1, + sym__dedent, + STATE(753), 1, + aux_sym_type_definition_statement_repeat1, + STATE(755), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [37887] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1317), 1, + sym__dedent, + STATE(753), 1, + aux_sym_type_definition_statement_repeat1, + STATE(756), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [37916] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1319), 1, + sym__dedent, + STATE(753), 1, + aux_sym_type_definition_statement_repeat1, + STATE(757), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [37945] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1321), 1, + sym__dedent, + STATE(753), 1, + aux_sym_type_definition_statement_repeat1, + STATE(758), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [37974] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1323), 1, + sym__dedent, + STATE(753), 1, + aux_sym_type_definition_statement_repeat1, + STATE(759), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38003] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + STATE(760), 1, + sym_comment, + STATE(761), 1, + aux_sym_base_type_repeat1, + ACTIONS(1325), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [38026] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1329), 1, + anon_sym_DOT, + STATE(761), 2, + sym_comment, + aux_sym_base_type_repeat1, + ACTIONS(1327), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [38047] = 9, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + ACTIONS(1332), 1, + sym__dedent, + STATE(753), 1, + aux_sym_type_definition_statement_repeat1, + STATE(762), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38076] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1334), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(763), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38100] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1336), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(764), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38124] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(759), 1, + aux_sym_type_definition_statement_repeat1, + STATE(765), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38150] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(757), 1, + aux_sym_type_definition_statement_repeat1, + STATE(766), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38176] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(762), 1, + aux_sym_type_definition_statement_repeat1, + STATE(767), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38202] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(955), 1, + anon_sym_LPAREN, + ACTIONS(1338), 1, + anon_sym_LT, + STATE(517), 1, + sym_argument_list, + STATE(768), 1, + sym_comment, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + [38228] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(758), 1, + aux_sym_type_definition_statement_repeat1, + STATE(769), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38254] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1340), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(770), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38278] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(771), 1, + sym_comment, + ACTIONS(1342), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38296] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1344), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(772), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38320] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(773), 1, + sym_comment, + ACTIONS(1346), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38338] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1348), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(774), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38362] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(775), 1, + sym_comment, + ACTIONS(1350), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38380] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1352), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(776), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38404] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1354), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(777), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38428] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + ACTIONS(1338), 1, + anon_sym_LT, + STATE(463), 1, + sym_argument_list, + STATE(778), 1, + sym_comment, + STATE(1039), 1, + sym_template_argument_list, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + [38454] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(779), 1, + sym_comment, + ACTIONS(1327), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_LT, + anon_sym_GT, + sym_identifier, + [38472] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(780), 1, + sym_comment, + ACTIONS(1356), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38490] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1358), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(781), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38514] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(755), 1, + aux_sym_type_definition_statement_repeat1, + STATE(782), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38540] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1360), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(783), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38564] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1362), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(784), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38588] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1364), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(785), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38612] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1366), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(786), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38636] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1368), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(787), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38660] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1370), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(788), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38684] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(756), 1, + aux_sym_type_definition_statement_repeat1, + STATE(789), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1042), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38710] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(790), 1, + sym_comment, + ACTIONS(1372), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38728] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1374), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(791), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38752] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1376), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(792), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38776] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(793), 1, + sym_comment, + ACTIONS(1378), 6, + anon_sym_COLON_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + [38794] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1380), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(794), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38818] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1280), 1, + anon_sym_DOT, + ACTIONS(1382), 1, + anon_sym_EQ, + STATE(760), 1, + aux_sym_base_type_repeat1, + STATE(795), 1, + sym_comment, + ACTIONS(1276), 3, + anon_sym_LBRACK, + anon_sym_LT, + sym_identifier, + [38842] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1384), 1, + sym_identifier, + STATE(796), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1073), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38865] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1386), 1, + sym_identifier, + STATE(797), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1027), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38888] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1388), 1, + sym_identifier, + STATE(798), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1085), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38911] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1390), 1, + sym_identifier, + STATE(799), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1030), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38934] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(620), 1, + sym__dedent, + ACTIONS(1392), 1, + anon_sym_else, + STATE(428), 1, + sym_else_clause, + STATE(800), 1, + sym_comment, + STATE(807), 1, + aux_sym_if_statement_repeat1, + STATE(961), 1, + sym_else_if_clause, + [38959] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1394), 1, + sym_identifier, + STATE(801), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1061), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [38982] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1396), 1, + sym_identifier, + STATE(802), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1022), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39005] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1398), 1, + sym_identifier, + STATE(803), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1055), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39028] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1400), 1, + sym_identifier, + STATE(804), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(982), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39051] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1402), 1, + sym_identifier, + STATE(805), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1111), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39074] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1404), 1, + sym_identifier, + STATE(806), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1018), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39097] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(594), 1, + sym__dedent, + ACTIONS(1392), 1, + anon_sym_else, + STATE(368), 1, + sym_else_clause, + STATE(807), 1, + sym_comment, + STATE(831), 1, + aux_sym_if_statement_repeat1, + STATE(961), 1, + sym_else_if_clause, + [39122] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1406), 1, + sym_identifier, + STATE(808), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(999), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39145] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1408), 1, + sym_identifier, + STATE(809), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1081), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39168] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1410), 1, + sym_identifier, + STATE(810), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1035), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39191] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1412), 1, + sym_identifier, + STATE(811), 1, + sym_comment, + STATE(843), 1, + sym_base_type, + STATE(1086), 1, + sym_type, + STATE(1090), 2, + sym_array_type, + sym_generic_type, + [39214] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1414), 1, + anon_sym_SQUOTE, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + STATE(812), 1, + sym_comment, + STATE(822), 1, + aux_sym_single_quotted_string_repeat1, + [39236] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1422), 1, + anon_sym_SQUOTE, + STATE(813), 1, + sym_comment, + STATE(845), 1, + aux_sym_single_quotted_string_repeat1, + [39258] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1427), 1, + sym__newline, + ACTIONS(1424), 2, + aux_sym_comment_token1, + sym_annotations, + STATE(814), 2, + sym_comment, + aux_sym_comment_repeat1, + [39276] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(815), 1, + sym_comment, + ACTIONS(1429), 4, + anon_sym_series, + anon_sym_const, + anon_sym_simple, + sym_identifier, + [39292] = 6, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1431), 1, + anon_sym_DQUOTE, + ACTIONS(1433), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1436), 1, + sym_escape_sequence, + STATE(816), 2, + sym_comment, + aux_sym_double_quotted_string_repeat1, + [39312] = 6, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1439), 1, + anon_sym_SQUOTE, + ACTIONS(1441), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1444), 1, + sym_escape_sequence, + STATE(817), 2, + sym_comment, + aux_sym_single_quotted_string_repeat1, + [39332] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1447), 1, + anon_sym_SQUOTE, + STATE(818), 1, + sym_comment, + STATE(829), 1, + aux_sym_single_quotted_string_repeat1, + [39354] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(99), 1, + sym__indent, + ACTIONS(101), 1, + sym__newline, + ACTIONS(1449), 1, + anon_sym_if, + STATE(404), 1, + sym__suite, + STATE(819), 1, + sym_comment, + [39376] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1451), 1, + anon_sym_if, + STATE(369), 1, + sym__suite, + STATE(820), 1, + sym_comment, + [39398] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1453), 1, + anon_sym_DQUOTE, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(821), 1, + sym_comment, + [39420] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1459), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(822), 1, + sym_comment, + [39442] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1461), 1, + anon_sym_DQUOTE, + STATE(823), 1, + sym_comment, + STATE(830), 1, + aux_sym_double_quotted_string_repeat1, + [39464] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1463), 1, + anon_sym_SQUOTE, + STATE(824), 1, + sym_comment, + STATE(851), 1, + aux_sym_single_quotted_string_repeat1, + [39486] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(89), 1, + sym__indent, + ACTIONS(91), 1, + sym__newline, + ACTIONS(1465), 1, + anon_sym_if, + STATE(684), 1, + sym__suite, + STATE(825), 1, + sym_comment, + [39508] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(95), 1, + sym__indent, + ACTIONS(97), 1, + sym__newline, + ACTIONS(1467), 1, + anon_sym_if, + STATE(369), 1, + sym__suite, + STATE(826), 1, + sym_comment, + [39530] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1469), 1, + anon_sym_DQUOTE, + STATE(827), 1, + sym_comment, + STATE(853), 1, + aux_sym_double_quotted_string_repeat1, + [39552] = 6, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1473), 1, + sym__newline, + STATE(828), 1, + sym_comment, + STATE(841), 1, + aux_sym_comment_repeat1, + ACTIONS(1471), 2, + aux_sym_comment_token1, + sym_annotations, + [39572] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1475), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(829), 1, + sym_comment, + [39594] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1477), 1, + anon_sym_DQUOTE, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(830), 1, + sym_comment, + [39616] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(624), 1, + sym__dedent, + ACTIONS(1479), 1, + anon_sym_else, + STATE(961), 1, + sym_else_if_clause, + STATE(831), 2, + sym_comment, + aux_sym_if_statement_repeat1, + [39636] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1482), 1, + anon_sym_DQUOTE, + STATE(821), 1, + aux_sym_double_quotted_string_repeat1, + STATE(832), 1, + sym_comment, + [39658] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1484), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(833), 1, + sym_comment, + [39680] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1486), 1, + anon_sym_DQUOTE, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(834), 1, + sym_comment, + [39702] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1488), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(835), 1, + sym_comment, + [39724] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1490), 1, + anon_sym_DQUOTE, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(836), 1, + sym_comment, + [39746] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1492), 1, + anon_sym_SQUOTE, + STATE(833), 1, + aux_sym_single_quotted_string_repeat1, + STATE(837), 1, + sym_comment, + [39768] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1494), 1, + anon_sym_EQ, + ACTIONS(1496), 1, + anon_sym_RPAREN, + STATE(838), 1, + sym_comment, + STATE(910), 1, + aux_sym__argument_list_with_type_optional_repeat1, + [39790] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1498), 1, + anon_sym_DQUOTE, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(839), 1, + sym_comment, + [39812] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1500), 1, + anon_sym_SQUOTE, + STATE(840), 1, + sym_comment, + STATE(852), 1, + aux_sym_single_quotted_string_repeat1, + [39834] = 6, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1502), 1, + sym__newline, + STATE(814), 1, + aux_sym_comment_repeat1, + STATE(841), 1, + sym_comment, + ACTIONS(1471), 2, + aux_sym_comment_token1, + sym_annotations, + [39854] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1504), 1, + anon_sym_DQUOTE, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(842), 1, + sym_comment, + [39876] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1338), 1, + anon_sym_LT, + ACTIONS(1506), 1, + anon_sym_LBRACK, + ACTIONS(1508), 1, + sym_identifier, + STATE(843), 1, + sym_comment, + STATE(1031), 1, + sym_template_argument_list, + [39898] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(844), 1, + sym_comment, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(1510), 2, + sym__newline, + anon_sym_COMMA, + [39916] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1512), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(845), 1, + sym_comment, + [39938] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(517), 1, + sym_argument_list, + STATE(846), 1, + sym_comment, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + [39958] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(847), 1, + sym_comment, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + ACTIONS(1514), 2, + sym__newline, + anon_sym_COMMA, + [39976] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1516), 1, + anon_sym_DQUOTE, + STATE(836), 1, + aux_sym_double_quotted_string_repeat1, + STATE(848), 1, + sym_comment, + [39998] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1518), 1, + anon_sym_SQUOTE, + STATE(835), 1, + aux_sym_single_quotted_string_repeat1, + STATE(849), 1, + sym_comment, + [40020] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1520), 1, + anon_sym_DQUOTE, + STATE(834), 1, + aux_sym_double_quotted_string_repeat1, + STATE(850), 1, + sym_comment, + [40042] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1522), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(851), 1, + sym_comment, + [40064] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1416), 1, + aux_sym_single_quotted_string_token1, + ACTIONS(1418), 1, + sym_escape_sequence, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1524), 1, + anon_sym_SQUOTE, + STATE(817), 1, + aux_sym_single_quotted_string_repeat1, + STATE(852), 1, + sym_comment, + [40086] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1526), 1, + anon_sym_DQUOTE, + STATE(816), 1, + aux_sym_double_quotted_string_repeat1, + STATE(853), 1, + sym_comment, + [40108] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1528), 1, + anon_sym_DQUOTE, + STATE(839), 1, + aux_sym_double_quotted_string_repeat1, + STATE(854), 1, + sym_comment, + [40130] = 7, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1455), 1, + aux_sym_double_quotted_string_token1, + ACTIONS(1457), 1, + sym_escape_sequence, + ACTIONS(1530), 1, + anon_sym_DQUOTE, + STATE(842), 1, + aux_sym_double_quotted_string_repeat1, + STATE(855), 1, + sym_comment, + [40152] = 7, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1532), 1, + anon_sym_EQ, + ACTIONS(1534), 1, + anon_sym_RPAREN, + STATE(856), 1, + sym_comment, + STATE(882), 1, + aux_sym__argument_list_with_type_optional_repeat1, + [40174] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1536), 1, + anon_sym_RPAREN, + STATE(857), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40193] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1538), 1, + anon_sym_RBRACK, + STATE(858), 1, + sym_comment, + STATE(863), 1, + aux_sym_tuple_repeat1, + [40212] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1130), 1, + anon_sym_RPAREN, + STATE(859), 1, + sym_comment, + STATE(883), 1, + aux_sym_argument_list_repeat1, + [40231] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1514), 1, + anon_sym_COMMA, + STATE(860), 1, + sym_comment, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + [40248] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1540), 1, + anon_sym_COMMA, + ACTIONS(1543), 1, + anon_sym_RPAREN, + STATE(861), 2, + sym_comment, + aux_sym__argument_list_with_type_optional_repeat1, + [40265] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1545), 1, + anon_sym_type, + ACTIONS(1547), 1, + anon_sym_method, + ACTIONS(1549), 1, + sym_identifier, + STATE(862), 1, + sym_comment, + [40284] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1192), 1, + anon_sym_RBRACK, + ACTIONS(1551), 1, + anon_sym_COMMA, + STATE(863), 2, + sym_comment, + aux_sym_tuple_repeat1, + [40301] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1554), 1, + anon_sym_COMMA, + ACTIONS(1557), 1, + anon_sym_RBRACK, + STATE(864), 2, + sym_comment, + aux_sym_tuple_declaration_repeat1, + [40318] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1561), 1, + anon_sym_EQ, + STATE(865), 1, + sym_comment, + ACTIONS(1559), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [40335] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1563), 1, + anon_sym_RPAREN, + STATE(866), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40354] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1565), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(867), 1, + sym_comment, + [40373] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1569), 1, + aux_sym_double_quotted_string_token1, + STATE(868), 1, + sym_comment, + ACTIONS(1567), 2, + anon_sym_DQUOTE, + sym_escape_sequence, + [40390] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1571), 1, + anon_sym_COMMA, + ACTIONS(1573), 1, + anon_sym_RBRACK, + STATE(864), 1, + aux_sym_tuple_declaration_repeat1, + STATE(869), 1, + sym_comment, + [40409] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1575), 1, + anon_sym_RPAREN, + STATE(870), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40428] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1577), 1, + anon_sym_COMMA, + ACTIONS(1580), 1, + anon_sym_GT, + STATE(871), 2, + sym_comment, + aux_sym_template_argument_list_repeat1, + [40445] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 1, + aux_sym_single_quotted_string_token1, + STATE(872), 1, + sym_comment, + ACTIONS(1582), 2, + anon_sym_SQUOTE, + sym_escape_sequence, + [40462] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1586), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_tuple_repeat1, + STATE(873), 1, + sym_comment, + [40481] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1588), 1, + anon_sym_type, + ACTIONS(1590), 1, + anon_sym_method, + ACTIONS(1592), 1, + sym_identifier, + STATE(874), 1, + sym_comment, + [40500] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1571), 1, + anon_sym_COMMA, + ACTIONS(1594), 1, + anon_sym_RBRACK, + STATE(864), 1, + aux_sym_tuple_declaration_repeat1, + STATE(875), 1, + sym_comment, + [40519] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1116), 1, + anon_sym_RPAREN, + STATE(876), 1, + sym_comment, + STATE(886), 1, + aux_sym_argument_list_repeat1, + [40538] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1596), 1, + anon_sym_RPAREN, + STATE(877), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40557] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1571), 1, + anon_sym_COMMA, + ACTIONS(1598), 1, + anon_sym_RBRACK, + STATE(864), 1, + aux_sym_tuple_declaration_repeat1, + STATE(878), 1, + sym_comment, + [40576] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1600), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(879), 1, + sym_comment, + [40595] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1510), 1, + anon_sym_COMMA, + STATE(880), 1, + sym_comment, + ACTIONS(349), 2, + anon_sym_LBRACK, + anon_sym_DOT, + [40612] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1602), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(881), 1, + sym_comment, + [40631] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1604), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(882), 1, + sym_comment, + [40650] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1606), 1, + anon_sym_RPAREN, + STATE(883), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40669] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1069), 1, + anon_sym_RPAREN, + STATE(870), 1, + aux_sym_argument_list_repeat1, + STATE(884), 1, + sym_comment, + [40688] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(885), 1, + sym_comment, + ACTIONS(1608), 3, + sym__newline, + anon_sym_COMMA, + anon_sym_as, + [40703] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1610), 1, + anon_sym_RPAREN, + STATE(886), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40722] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1148), 1, + anon_sym_RPAREN, + STATE(866), 1, + aux_sym_argument_list_repeat1, + STATE(887), 1, + sym_comment, + [40741] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1612), 1, + anon_sym_RPAREN, + STATE(888), 1, + sym_comment, + STATE(908), 1, + aux_sym_argument_list_repeat1, + [40760] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1616), 1, + anon_sym_as, + STATE(889), 1, + sym_comment, + ACTIONS(1614), 2, + sym__newline, + anon_sym_COMMA, + [40777] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1618), 1, + anon_sym_type, + ACTIONS(1620), 1, + anon_sym_method, + ACTIONS(1622), 1, + sym_identifier, + STATE(890), 1, + sym_comment, + [40796] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1545), 1, + anon_sym_type, + ACTIONS(1624), 1, + anon_sym_method, + ACTIONS(1626), 1, + sym_identifier, + STATE(891), 1, + sym_comment, + [40815] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1628), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(892), 1, + sym_comment, + [40834] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1630), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_tuple_repeat1, + STATE(893), 1, + sym_comment, + [40853] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1152), 1, + anon_sym_RPAREN, + STATE(888), 1, + aux_sym_argument_list_repeat1, + STATE(894), 1, + sym_comment, + [40872] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1632), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_tuple_repeat1, + STATE(895), 1, + sym_comment, + [40891] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1634), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(896), 1, + sym_comment, + [40910] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1636), 1, + anon_sym_COMMA, + ACTIONS(1638), 1, + anon_sym_GT, + STATE(871), 1, + aux_sym_template_argument_list_repeat1, + STATE(897), 1, + sym_comment, + [40929] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1571), 1, + anon_sym_COMMA, + ACTIONS(1640), 1, + anon_sym_RBRACK, + STATE(864), 1, + aux_sym_tuple_declaration_repeat1, + STATE(898), 1, + sym_comment, + [40948] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1642), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_tuple_repeat1, + STATE(899), 1, + sym_comment, + [40967] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1571), 1, + anon_sym_COMMA, + ACTIONS(1644), 1, + anon_sym_RBRACK, + STATE(864), 1, + aux_sym_tuple_declaration_repeat1, + STATE(900), 1, + sym_comment, + [40986] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1636), 1, + anon_sym_COMMA, + ACTIONS(1646), 1, + anon_sym_GT, + STATE(897), 1, + aux_sym_template_argument_list_repeat1, + STATE(901), 1, + sym_comment, + [41005] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1650), 1, + sym__newline, + STATE(902), 1, + sym_comment, + ACTIONS(1648), 2, + aux_sym_comment_token1, + sym_annotations, + [41022] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1138), 1, + anon_sym_RPAREN, + STATE(877), 1, + aux_sym_argument_list_repeat1, + STATE(903), 1, + sym_comment, + [41041] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1652), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_tuple_repeat1, + STATE(904), 1, + sym_comment, + [41060] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1067), 1, + anon_sym_COMMA, + ACTIONS(1142), 1, + anon_sym_RPAREN, + STATE(857), 1, + aux_sym_argument_list_repeat1, + STATE(905), 1, + sym_comment, + [41079] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1656), 1, + anon_sym_EQ, + STATE(906), 1, + sym_comment, + ACTIONS(1654), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41096] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1571), 1, + anon_sym_COMMA, + ACTIONS(1658), 1, + anon_sym_RBRACK, + STATE(864), 1, + aux_sym_tuple_declaration_repeat1, + STATE(907), 1, + sym_comment, + [41115] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1172), 1, + anon_sym_RPAREN, + ACTIONS(1660), 1, + anon_sym_COMMA, + STATE(908), 2, + sym_comment, + aux_sym_argument_list_repeat1, + [41132] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1086), 1, + anon_sym_COMMA, + ACTIONS(1663), 1, + anon_sym_RBRACK, + STATE(863), 1, + aux_sym_tuple_repeat1, + STATE(909), 1, + sym_comment, + [41151] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1665), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(910), 1, + sym_comment, + [41170] = 6, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1118), 1, + anon_sym_COMMA, + ACTIONS(1667), 1, + anon_sym_RPAREN, + STATE(861), 1, + aux_sym__argument_list_with_type_optional_repeat1, + STATE(911), 1, + sym_comment, + [41189] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(912), 1, + sym_comment, + ACTIONS(1669), 2, + anon_sym_LPAREN, + sym_identifier, + [41203] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1671), 1, + anon_sym_LBRACK, + ACTIONS(1673), 1, + sym_identifier, + STATE(913), 1, + sym_comment, + [41219] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(914), 1, + sym_comment, + ACTIONS(783), 2, + sym__dedent, + anon_sym_else, + [41233] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(915), 1, + sym_comment, + ACTIONS(1557), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [41247] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + ACTIONS(1677), 1, + sym__newline, + STATE(916), 1, + sym_comment, + [41263] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1679), 1, + anon_sym_EQ, + ACTIONS(1681), 1, + anon_sym_in, + STATE(917), 1, + sym_comment, + [41279] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(918), 1, + sym_comment, + STATE(1068), 1, + sym__argument_list_with_type_optional, + [41295] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(919), 1, + sym_comment, + ACTIONS(1202), 2, + sym__newline, + anon_sym_COMMA, + [41309] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(920), 1, + sym_comment, + ACTIONS(1685), 2, + sym__dedent, + sym_identifier, + [41323] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(921), 1, + sym_comment, + STATE(1070), 1, + sym__argument_list_with_type_optional, + [41339] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1687), 1, + anon_sym_LBRACK, + ACTIONS(1689), 1, + sym_identifier, + STATE(922), 1, + sym_comment, + [41355] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1691), 1, + anon_sym_LBRACK, + ACTIONS(1693), 1, + sym_identifier, + STATE(923), 1, + sym_comment, + [41371] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(668), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym_argument_list, + STATE(924), 1, + sym_comment, + [41387] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(925), 1, + sym_comment, + ACTIONS(749), 2, + sym__dedent, + anon_sym_else, + [41401] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(963), 1, + anon_sym_LPAREN, + STATE(463), 1, + sym_argument_list, + STATE(926), 1, + sym_comment, + [41417] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(927), 1, + sym_comment, + STATE(1057), 1, + sym__argument_list_with_type_optional, + [41433] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + ACTIONS(1695), 1, + sym__newline, + STATE(928), 1, + sym_comment, + [41449] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(929), 1, + sym_comment, + ACTIONS(1697), 2, + sym__dedent, + sym_identifier, + [41463] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(930), 1, + sym_comment, + ACTIONS(753), 2, + sym__dedent, + anon_sym_else, + [41477] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(356), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym_argument_list, + STATE(931), 1, + sym_comment, + [41493] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1699), 1, + anon_sym_LBRACK, + ACTIONS(1701), 1, + sym_identifier, + STATE(932), 1, + sym_comment, + [41509] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + ACTIONS(1703), 1, + sym__newline, + STATE(933), 1, + sym_comment, + [41525] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(901), 1, + sym_base_type, + STATE(934), 1, + sym_comment, + [41541] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(935), 1, + sym_comment, + ACTIONS(1705), 2, + sym__newline, + anon_sym_COMMA, + [41555] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(936), 1, + sym_comment, + ACTIONS(811), 2, + sym__dedent, + anon_sym_else, + [41569] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(937), 1, + sym_comment, + STATE(1021), 1, + sym__argument_list_with_type_optional, + [41585] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(938), 1, + sym_comment, + STATE(1019), 1, + sym__argument_list_with_type_optional, + [41601] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(939), 1, + sym_comment, + ACTIONS(1608), 2, + anon_sym_COMMA, + anon_sym_as, + [41615] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_comment, + STATE(1008), 1, + sym__argument_list_with_type_optional, + [41631] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(941), 1, + sym_comment, + ACTIONS(670), 2, + sym__dedent, + anon_sym_else, + [41645] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(942), 1, + sym_comment, + STATE(1032), 1, + sym__argument_list_with_type_optional, + [41661] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1707), 1, + anon_sym_EQ, + ACTIONS(1709), 1, + anon_sym_in, + STATE(943), 1, + sym_comment, + [41677] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(944), 1, + sym_comment, + STATE(970), 1, + sym__argument_list_with_type_optional, + [41693] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(945), 1, + sym_comment, + STATE(974), 1, + sym__argument_list_with_type_optional, + [41709] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + ACTIONS(1711), 1, + sym__newline, + STATE(946), 1, + sym_comment, + [41725] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1313), 1, + sym_identifier, + STATE(947), 1, + sym_comment, + STATE(964), 1, + sym_base_type, + [41741] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(948), 1, + sym_comment, + STATE(986), 1, + sym__argument_list_with_type_optional, + [41757] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(949), 1, + sym_comment, + STATE(985), 1, + sym__argument_list_with_type_optional, + [41773] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(351), 1, + anon_sym_LPAREN, + STATE(52), 1, + sym_argument_list, + STATE(950), 1, + sym_comment, + [41789] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(992), 1, + anon_sym_LPAREN, + STATE(516), 1, + sym_argument_list, + STATE(951), 1, + sym_comment, + [41805] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1614), 1, + anon_sym_COMMA, + ACTIONS(1713), 1, + anon_sym_as, + STATE(952), 1, + sym_comment, + [41821] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1715), 1, + anon_sym_EQ, + ACTIONS(1717), 1, + anon_sym_in, + STATE(953), 1, + sym_comment, + [41837] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(973), 1, + anon_sym_LPAREN, + STATE(500), 1, + sym_argument_list, + STATE(954), 1, + sym_comment, + [41853] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + ACTIONS(1719), 1, + sym__newline, + STATE(955), 1, + sym_comment, + [41869] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1683), 1, + anon_sym_LPAREN, + STATE(956), 1, + sym_comment, + STATE(980), 1, + sym__argument_list_with_type_optional, + [41885] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1721), 1, + aux_sym_import_path_token1, + STATE(952), 1, + sym_import_path, + STATE(957), 1, + sym_comment, + [41901] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(975), 1, + anon_sym_LBRACK, + ACTIONS(977), 1, + anon_sym_DOT, + STATE(958), 1, + sym_comment, + [41917] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1723), 1, + anon_sym_EQ, + ACTIONS(1725), 1, + sym__newline, + STATE(959), 1, + sym_comment, + [41933] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(955), 1, + anon_sym_LPAREN, + STATE(517), 1, + sym_argument_list, + STATE(960), 1, + sym_comment, + [41949] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(961), 1, + sym_comment, + ACTIONS(747), 2, + sym__dedent, + anon_sym_else, + [41963] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(962), 1, + sym_comment, + ACTIONS(1172), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [41977] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + ACTIONS(1727), 1, + sym__newline, + STATE(963), 1, + sym_comment, + [41993] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(964), 1, + sym_comment, + ACTIONS(1580), 2, + anon_sym_COMMA, + anon_sym_GT, + [42007] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + STATE(965), 1, + sym_comment, + ACTIONS(1729), 2, + anon_sym_LPAREN, + sym_identifier, + [42021] = 5, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1731), 1, + aux_sym_import_path_token1, + STATE(889), 1, + sym_import_path, + STATE(966), 1, + sym_comment, + [42037] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1733), 1, + anon_sym_EQ, + ACTIONS(1735), 1, + anon_sym_in, + STATE(967), 1, + sym_comment, + [42053] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1737), 1, + anon_sym_EQ, + STATE(968), 1, + sym_comment, + [42066] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1739), 1, + sym__dedent, + STATE(969), 1, + sym_comment, + [42079] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1741), 1, + anon_sym_EQ_GT, + STATE(970), 1, + sym_comment, + [42092] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1743), 1, + anon_sym_EQ, + STATE(971), 1, + sym_comment, + [42105] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1745), 1, + sym_identifier, + STATE(972), 1, + sym_comment, + [42118] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1747), 1, + sym_identifier, + STATE(973), 1, + sym_comment, + [42131] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1749), 1, + anon_sym_EQ_GT, + STATE(974), 1, + sym_comment, + [42144] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1751), 1, + sym_identifier, + STATE(975), 1, + sym_comment, + [42157] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1753), 1, + sym_identifier, + STATE(976), 1, + sym_comment, + [42170] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1465), 1, + anon_sym_if, + STATE(977), 1, + sym_comment, + [42183] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1755), 1, + anon_sym_EQ, + STATE(978), 1, + sym_comment, + [42196] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1757), 1, + anon_sym_EQ, + STATE(979), 1, + sym_comment, + [42209] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1759), 1, + anon_sym_EQ_GT, + STATE(980), 1, + sym_comment, + [42222] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1761), 1, + anon_sym_EQ, + STATE(981), 1, + sym_comment, + [42235] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1763), 1, + sym_identifier, + STATE(982), 1, + sym_comment, + [42248] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1765), 1, + anon_sym_EQ, + STATE(983), 1, + sym_comment, + [42261] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1767), 1, + anon_sym_EQ, + STATE(984), 1, + sym_comment, + [42274] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1769), 1, + anon_sym_EQ_GT, + STATE(985), 1, + sym_comment, + [42287] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1771), 1, + anon_sym_EQ_GT, + STATE(986), 1, + sym_comment, + [42300] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1773), 1, + anon_sym_EQ, + STATE(987), 1, + sym_comment, + [42313] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1775), 1, + anon_sym_EQ, + STATE(988), 1, + sym_comment, + [42326] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1777), 1, + sym_identifier, + STATE(989), 1, + sym_comment, + [42339] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1779), 1, + anon_sym_EQ_GT, + STATE(990), 1, + sym_comment, + [42352] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1781), 1, + sym_identifier, + STATE(991), 1, + sym_comment, + [42365] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1783), 1, + anon_sym_EQ, + STATE(992), 1, + sym_comment, + [42378] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1785), 1, + sym_identifier, + STATE(993), 1, + sym_comment, + [42391] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1787), 1, + sym_identifier, + STATE(994), 1, + sym_comment, + [42404] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1789), 1, + anon_sym_COMMA, + STATE(995), 1, + sym_comment, + [42417] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1791), 1, + anon_sym_EQ, + STATE(996), 1, + sym_comment, + [42430] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1793), 1, + sym_identifier, + STATE(997), 1, + sym_comment, + [42443] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1795), 1, + anon_sym_EQ, + STATE(998), 1, + sym_comment, + [42456] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1797), 1, + sym_identifier, + STATE(999), 1, + sym_comment, + [42469] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1451), 1, + anon_sym_if, + STATE(1000), 1, + sym_comment, + [42482] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1799), 1, + sym_identifier, + STATE(1001), 1, + sym_comment, + [42495] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1801), 1, + sym_identifier, + STATE(1002), 1, + sym_comment, + [42508] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1803), 1, + sym__dedent, + STATE(1003), 1, + sym_comment, + [42521] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1805), 1, + sym__dedent, + STATE(1004), 1, + sym_comment, + [42534] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1675), 1, + anon_sym_COMMA, + STATE(1005), 1, + sym_comment, + [42547] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1807), 1, + anon_sym_EQ, + STATE(1006), 1, + sym_comment, + [42560] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1809), 1, + sym_identifier, + STATE(1007), 1, + sym_comment, + [42573] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1811), 1, + anon_sym_EQ_GT, + STATE(1008), 1, + sym_comment, + [42586] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1813), 1, + sym_identifier, + STATE(1009), 1, + sym_comment, + [42599] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1815), 1, + sym_identifier, + STATE(1010), 1, + sym_comment, + [42612] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1817), 1, + anon_sym_EQ, + STATE(1011), 1, + sym_comment, + [42625] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1819), 1, + sym__dedent, + STATE(1012), 1, + sym_comment, + [42638] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1821), 1, + sym__indent, + STATE(1013), 1, + sym_comment, + [42651] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1823), 1, + sym_identifier, + STATE(1014), 1, + sym_comment, + [42664] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1825), 1, + anon_sym_EQ, + STATE(1015), 1, + sym_comment, + [42677] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1827), 1, + anon_sym_EQ, + STATE(1016), 1, + sym_comment, + [42690] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1829), 1, + sym_identifier, + STATE(1017), 1, + sym_comment, + [42703] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1831), 1, + sym_identifier, + STATE(1018), 1, + sym_comment, + [42716] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1833), 1, + anon_sym_EQ_GT, + STATE(1019), 1, + sym_comment, + [42729] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1835), 1, + sym_identifier, + STATE(1020), 1, + sym_comment, + [42742] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1837), 1, + anon_sym_EQ_GT, + STATE(1021), 1, + sym_comment, + [42755] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1839), 1, + sym_identifier, + STATE(1022), 1, + sym_comment, + [42768] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1841), 1, + anon_sym_EQ, + STATE(1023), 1, + sym_comment, + [42781] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1843), 1, + anon_sym_EQ, + STATE(1024), 1, + sym_comment, + [42794] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1845), 1, + anon_sym_EQ, + STATE(1025), 1, + sym_comment, + [42807] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1847), 1, + sym_identifier, + STATE(1026), 1, + sym_comment, + [42820] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1849), 1, + sym_identifier, + STATE(1027), 1, + sym_comment, + [42833] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1851), 1, + sym_identifier, + STATE(1028), 1, + sym_comment, + [42846] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1853), 1, + anon_sym_EQ_GT, + STATE(1029), 1, + sym_comment, + [42859] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1855), 1, + sym_identifier, + STATE(1030), 1, + sym_comment, + [42872] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1857), 1, + sym_identifier, + STATE(1031), 1, + sym_comment, + [42885] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1859), 1, + anon_sym_EQ_GT, + STATE(1032), 1, + sym_comment, + [42898] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1861), 1, + anon_sym_SLASH, + STATE(1033), 1, + sym_comment, + [42911] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1863), 1, + anon_sym_EQ, + STATE(1034), 1, + sym_comment, + [42924] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1865), 1, + sym_identifier, + STATE(1035), 1, + sym_comment, + [42937] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1867), 1, + anon_sym_RBRACK, + STATE(1036), 1, + sym_comment, + [42950] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1869), 1, + anon_sym_EQ, + STATE(1037), 1, + sym_comment, + [42963] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1871), 1, + anon_sym_EQ, + STATE(1038), 1, + sym_comment, + [42976] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1873), 1, + anon_sym_LPAREN, + STATE(1039), 1, + sym_comment, + [42989] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1024), 1, + anon_sym_EQ_GT, + STATE(1040), 1, + sym_comment, + [43002] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1875), 1, + sym_identifier, + STATE(1041), 1, + sym_comment, + [43015] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1877), 1, + sym_identifier, + STATE(1042), 1, + sym_comment, + [43028] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1879), 1, + sym_identifier, + STATE(1043), 1, + sym_comment, + [43041] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1881), 1, + anon_sym_SLASH, + STATE(1044), 1, + sym_comment, + [43054] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1883), 1, + sym_identifier, + STATE(1045), 1, + sym_comment, + [43067] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1885), 1, + anon_sym_EQ_GT, + STATE(1046), 1, + sym_comment, + [43080] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1467), 1, + anon_sym_if, + STATE(1047), 1, + sym_comment, + [43093] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1705), 1, + anon_sym_COMMA, + STATE(1048), 1, + sym_comment, + [43106] = 4, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1887), 1, + aux_sym_import_path_token1, + STATE(1049), 1, + sym_comment, + [43119] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1889), 1, + sym__dedent, + STATE(1050), 1, + sym_comment, + [43132] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1891), 1, + sym_identifier, + STATE(1051), 1, + sym_comment, + [43145] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1893), 1, + sym__dedent, + STATE(1052), 1, + sym_comment, + [43158] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1895), 1, + anon_sym_EQ, + STATE(1053), 1, + sym_comment, + [43171] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1897), 1, + anon_sym_EQ, + STATE(1054), 1, + sym_comment, + [43184] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1899), 1, + sym_identifier, + STATE(1055), 1, + sym_comment, + [43197] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1901), 1, + anon_sym_EQ, + STATE(1056), 1, + sym_comment, + [43210] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1903), 1, + anon_sym_EQ_GT, + STATE(1057), 1, + sym_comment, + [43223] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1905), 1, + anon_sym_EQ, + STATE(1058), 1, + sym_comment, + [43236] = 4, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1907), 1, + aux_sym_import_path_token1, + STATE(1059), 1, + sym_comment, + [43249] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1909), 1, + anon_sym_EQ, + STATE(1060), 1, + sym_comment, + [43262] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1911), 1, + sym_identifier, + STATE(1061), 1, + sym_comment, + [43275] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1913), 1, + anon_sym_EQ_GT, + STATE(1062), 1, + sym_comment, + [43288] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1915), 1, + anon_sym_EQ, + STATE(1063), 1, + sym_comment, + [43301] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1917), 1, + sym_identifier, + STATE(1064), 1, + sym_comment, + [43314] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1919), 1, + anon_sym_EQ, + STATE(1065), 1, + sym_comment, + [43327] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1921), 1, + anon_sym_SLASH, + STATE(1066), 1, + sym_comment, + [43340] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1923), 1, + sym_identifier, + STATE(1067), 1, + sym_comment, + [43353] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1925), 1, + anon_sym_EQ_GT, + STATE(1068), 1, + sym_comment, + [43366] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1927), 1, + sym__indent, + STATE(1069), 1, + sym_comment, + [43379] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1929), 1, + anon_sym_EQ_GT, + STATE(1070), 1, + sym_comment, + [43392] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1931), 1, + sym_identifier, + STATE(1071), 1, + sym_comment, + [43405] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1933), 1, + anon_sym_EQ, + STATE(1072), 1, + sym_comment, + [43418] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1935), 1, + sym_identifier, + STATE(1073), 1, + sym_comment, + [43431] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1937), 1, + sym_identifier, + STATE(1074), 1, + sym_comment, + [43444] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1939), 1, + anon_sym_EQ, + STATE(1075), 1, + sym_comment, + [43457] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1941), 1, + anon_sym_EQ, + STATE(1076), 1, + sym_comment, + [43470] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1943), 1, + sym_identifier, + STATE(1077), 1, + sym_comment, + [43483] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1945), 1, + sym_identifier, + STATE(1078), 1, + sym_comment, + [43496] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1947), 1, + sym_identifier, + STATE(1079), 1, + sym_comment, + [43509] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1949), 1, + anon_sym_EQ_GT, + STATE(1080), 1, + sym_comment, + [43522] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1951), 1, + sym_identifier, + STATE(1081), 1, + sym_comment, + [43535] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1953), 1, + sym_identifier, + STATE(1082), 1, + sym_comment, + [43548] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1955), 1, + anon_sym_EQ, + STATE(1083), 1, + sym_comment, + [43561] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1957), 1, + anon_sym_EQ, + STATE(1084), 1, + sym_comment, + [43574] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1959), 1, + sym_identifier, + STATE(1085), 1, + sym_comment, + [43587] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1961), 1, + sym_identifier, + STATE(1086), 1, + sym_comment, + [43600] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1963), 1, + sym__dedent, + STATE(1087), 1, + sym_comment, + [43613] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1965), 1, + sym_identifier, + STATE(1088), 1, + sym_comment, + [43626] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1967), 1, + sym__dedent, + STATE(1089), 1, + sym_comment, + [43639] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1508), 1, + sym_identifier, + STATE(1090), 1, + sym_comment, + [43652] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1969), 1, + sym__dedent, + STATE(1091), 1, + sym_comment, + [43665] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1971), 1, + sym_identifier, + STATE(1092), 1, + sym_comment, + [43678] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1973), 1, + anon_sym_RBRACK, + STATE(1093), 1, + sym_comment, + [43691] = 4, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(1975), 1, + aux_sym_import_path_token1, + STATE(1094), 1, + sym_comment, + [43704] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1977), 1, + sym_identifier, + STATE(1095), 1, + sym_comment, + [43717] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1979), 1, + anon_sym_EQ_GT, + STATE(1096), 1, + sym_comment, + [43730] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1981), 1, + ts_builtin_sym_end, + STATE(1097), 1, + sym_comment, + [43743] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1983), 1, + anon_sym_EQ_GT, + STATE(1098), 1, + sym_comment, + [43756] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1985), 1, + anon_sym_EQ_GT, + STATE(1099), 1, + sym_comment, + [43769] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1987), 1, + sym_identifier, + STATE(1100), 1, + sym_comment, + [43782] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1989), 1, + anon_sym_EQ, + STATE(1101), 1, + sym_comment, + [43795] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1991), 1, + anon_sym_EQ, + STATE(1102), 1, + sym_comment, + [43808] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1993), 1, + sym_identifier, + STATE(1103), 1, + sym_comment, + [43821] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1449), 1, + anon_sym_if, + STATE(1104), 1, + sym_comment, + [43834] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1995), 1, + sym_identifier, + STATE(1105), 1, + sym_comment, + [43847] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1997), 1, + sym__indent, + STATE(1106), 1, + sym_comment, + [43860] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1999), 1, + sym__indent, + STATE(1107), 1, + sym_comment, + [43873] = 4, + ACTIONS(5), 1, + sym_line_continuation, + ACTIONS(1420), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2001), 1, + aux_sym_import_path_token1, + STATE(1108), 1, + sym_comment, + [43886] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2003), 1, + sym_identifier, + STATE(1109), 1, + sym_comment, + [43899] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2005), 1, + anon_sym_in, + STATE(1110), 1, + sym_comment, + [43912] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2007), 1, + sym_identifier, + STATE(1111), 1, + sym_comment, + [43925] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2009), 1, + anon_sym_in, + STATE(1112), 1, + sym_comment, + [43938] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2011), 1, + anon_sym_EQ_GT, + STATE(1113), 1, + sym_comment, + [43951] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2013), 1, + anon_sym_EQ_GT, + STATE(1114), 1, + sym_comment, + [43964] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2015), 1, + sym_identifier, + STATE(1115), 1, + sym_comment, + [43977] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2017), 1, + anon_sym_EQ_GT, + STATE(1116), 1, + sym_comment, + [43990] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2019), 1, + sym_identifier, + STATE(1117), 1, + sym_comment, + [44003] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2021), 1, + sym__indent, + STATE(1118), 1, + sym_comment, + [44016] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2023), 1, + sym__indent, + STATE(1119), 1, + sym_comment, + [44029] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2025), 1, + anon_sym_EQ_GT, + STATE(1120), 1, + sym_comment, + [44042] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2027), 1, + anon_sym_in, + STATE(1121), 1, + sym_comment, + [44055] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2029), 1, + sym_identifier, + STATE(1122), 1, + sym_comment, + [44068] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2031), 1, + anon_sym_EQ_GT, + STATE(1123), 1, + sym_comment, + [44081] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2033), 1, + sym_identifier, + STATE(1124), 1, + sym_comment, + [44094] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2035), 1, + anon_sym_EQ_GT, + STATE(1125), 1, + sym_comment, + [44107] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2037), 1, + sym_identifier, + STATE(1126), 1, + sym_comment, + [44120] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2039), 1, + anon_sym_EQ_GT, + STATE(1127), 1, + sym_comment, + [44133] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2041), 1, + anon_sym_in, + STATE(1128), 1, + sym_comment, + [44146] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2043), 1, + anon_sym_EQ_GT, + STATE(1129), 1, + sym_comment, + [44159] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2045), 1, + sym_identifier, + STATE(1130), 1, + sym_comment, + [44172] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2047), 1, + sym_identifier, + STATE(1131), 1, + sym_comment, + [44185] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2049), 1, + anon_sym_SLASH, + STATE(1132), 1, + sym_comment, + [44198] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2051), 1, + anon_sym_EQ_GT, + STATE(1133), 1, + sym_comment, + [44211] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2053), 1, + anon_sym_RBRACK, + STATE(1134), 1, + sym_comment, + [44224] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2055), 1, + anon_sym_EQ_GT, + STATE(1135), 1, + sym_comment, + [44237] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2057), 1, + sym_identifier, + STATE(1136), 1, + sym_comment, + [44250] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2059), 1, + sym_identifier, + STATE(1137), 1, + sym_comment, + [44263] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2061), 1, + anon_sym_EQ_GT, + STATE(1138), 1, + sym_comment, + [44276] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2063), 1, + anon_sym_RBRACK, + STATE(1139), 1, + sym_comment, + [44289] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2065), 1, + anon_sym_EQ_GT, + STATE(1140), 1, + sym_comment, + [44302] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(1202), 1, + anon_sym_COMMA, + STATE(1141), 1, + sym_comment, + [44315] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2067), 1, + anon_sym_RBRACK, + STATE(1142), 1, + sym_comment, + [44328] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2069), 1, + sym_identifier, + STATE(1143), 1, + sym_comment, + [44341] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2071), 1, + sym_identifier, + STATE(1144), 1, + sym_comment, + [44354] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2073), 1, + sym_identifier, + STATE(1145), 1, + sym_comment, + [44367] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2075), 1, + anon_sym_COMMA, + STATE(1146), 1, + sym_comment, + [44380] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2077), 1, + anon_sym_COMMA, + STATE(1147), 1, + sym_comment, + [44393] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2079), 1, + anon_sym_COMMA, + STATE(1148), 1, + sym_comment, + [44406] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(49), 1, + sym_line_continuation, + ACTIONS(2081), 1, + sym_identifier, + STATE(1149), 1, + sym_comment, + [44419] = 1, + ACTIONS(2083), 1, + ts_builtin_sym_end, + [44423] = 1, + ACTIONS(2085), 1, + ts_builtin_sym_end, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(42)] = 0, + [SMALL_STATE(43)] = 122, + [SMALL_STATE(44)] = 246, + [SMALL_STATE(45)] = 370, + [SMALL_STATE(46)] = 494, + [SMALL_STATE(47)] = 594, + [SMALL_STATE(48)] = 694, + [SMALL_STATE(49)] = 761, + [SMALL_STATE(50)] = 828, + [SMALL_STATE(51)] = 890, + [SMALL_STATE(52)] = 952, + [SMALL_STATE(53)] = 1009, + [SMALL_STATE(54)] = 1066, + [SMALL_STATE(55)] = 1123, + [SMALL_STATE(56)] = 1180, + [SMALL_STATE(57)] = 1237, + [SMALL_STATE(58)] = 1314, + [SMALL_STATE(59)] = 1375, + [SMALL_STATE(60)] = 1436, + [SMALL_STATE(61)] = 1493, + [SMALL_STATE(62)] = 1550, + [SMALL_STATE(63)] = 1607, + [SMALL_STATE(64)] = 1664, + [SMALL_STATE(65)] = 1721, + [SMALL_STATE(66)] = 1778, + [SMALL_STATE(67)] = 1835, + [SMALL_STATE(68)] = 1912, + [SMALL_STATE(69)] = 1969, + [SMALL_STATE(70)] = 2026, + [SMALL_STATE(71)] = 2083, + [SMALL_STATE(72)] = 2140, + [SMALL_STATE(73)] = 2196, + [SMALL_STATE(74)] = 2268, + [SMALL_STATE(75)] = 2324, + [SMALL_STATE(76)] = 2380, + [SMALL_STATE(77)] = 2436, + [SMALL_STATE(78)] = 2492, + [SMALL_STATE(79)] = 2548, + [SMALL_STATE(80)] = 2614, + [SMALL_STATE(81)] = 2682, + [SMALL_STATE(82)] = 2738, + [SMALL_STATE(83)] = 2794, + [SMALL_STATE(84)] = 2850, + [SMALL_STATE(85)] = 2906, + [SMALL_STATE(86)] = 2962, + [SMALL_STATE(87)] = 3018, + [SMALL_STATE(88)] = 3074, + [SMALL_STATE(89)] = 3140, + [SMALL_STATE(90)] = 3202, + [SMALL_STATE(91)] = 3274, + [SMALL_STATE(92)] = 3334, + [SMALL_STATE(93)] = 3402, + [SMALL_STATE(94)] = 3458, + [SMALL_STATE(95)] = 3514, + [SMALL_STATE(96)] = 3570, + [SMALL_STATE(97)] = 3626, + [SMALL_STATE(98)] = 3686, + [SMALL_STATE(99)] = 3742, + [SMALL_STATE(100)] = 3798, + [SMALL_STATE(101)] = 3860, + [SMALL_STATE(102)] = 3916, + [SMALL_STATE(103)] = 3972, + [SMALL_STATE(104)] = 4028, + [SMALL_STATE(105)] = 4126, + [SMALL_STATE(106)] = 4219, + [SMALL_STATE(107)] = 4312, + [SMALL_STATE(108)] = 4405, + [SMALL_STATE(109)] = 4498, + [SMALL_STATE(110)] = 4591, + [SMALL_STATE(111)] = 4684, + [SMALL_STATE(112)] = 4777, + [SMALL_STATE(113)] = 4870, + [SMALL_STATE(114)] = 4963, + [SMALL_STATE(115)] = 5056, + [SMALL_STATE(116)] = 5149, + [SMALL_STATE(117)] = 5242, + [SMALL_STATE(118)] = 5335, + [SMALL_STATE(119)] = 5428, + [SMALL_STATE(120)] = 5521, + [SMALL_STATE(121)] = 5614, + [SMALL_STATE(122)] = 5707, + [SMALL_STATE(123)] = 5800, + [SMALL_STATE(124)] = 5893, + [SMALL_STATE(125)] = 5986, + [SMALL_STATE(126)] = 6079, + [SMALL_STATE(127)] = 6172, + [SMALL_STATE(128)] = 6265, + [SMALL_STATE(129)] = 6358, + [SMALL_STATE(130)] = 6451, + [SMALL_STATE(131)] = 6544, + [SMALL_STATE(132)] = 6637, + [SMALL_STATE(133)] = 6730, + [SMALL_STATE(134)] = 6823, + [SMALL_STATE(135)] = 6916, + [SMALL_STATE(136)] = 7009, + [SMALL_STATE(137)] = 7102, + [SMALL_STATE(138)] = 7195, + [SMALL_STATE(139)] = 7288, + [SMALL_STATE(140)] = 7381, + [SMALL_STATE(141)] = 7474, + [SMALL_STATE(142)] = 7558, + [SMALL_STATE(143)] = 7644, + [SMALL_STATE(144)] = 7730, + [SMALL_STATE(145)] = 7816, + [SMALL_STATE(146)] = 7898, + [SMALL_STATE(147)] = 7984, + [SMALL_STATE(148)] = 8070, + [SMALL_STATE(149)] = 8156, + [SMALL_STATE(150)] = 8211, + [SMALL_STATE(151)] = 8266, + [SMALL_STATE(152)] = 8349, + [SMALL_STATE(153)] = 8404, + [SMALL_STATE(154)] = 8459, + [SMALL_STATE(155)] = 8509, + [SMALL_STATE(156)] = 8589, + [SMALL_STATE(157)] = 8669, + [SMALL_STATE(158)] = 8719, + [SMALL_STATE(159)] = 8799, + [SMALL_STATE(160)] = 8879, + [SMALL_STATE(161)] = 8959, + [SMALL_STATE(162)] = 9039, + [SMALL_STATE(163)] = 9119, + [SMALL_STATE(164)] = 9168, + [SMALL_STATE(165)] = 9217, + [SMALL_STATE(166)] = 9264, + [SMALL_STATE(167)] = 9311, + [SMALL_STATE(168)] = 9360, + [SMALL_STATE(169)] = 9409, + [SMALL_STATE(170)] = 9462, + [SMALL_STATE(171)] = 9539, + [SMALL_STATE(172)] = 9613, + [SMALL_STATE(173)] = 9657, + [SMALL_STATE(174)] = 9731, + [SMALL_STATE(175)] = 9805, + [SMALL_STATE(176)] = 9869, + [SMALL_STATE(177)] = 9943, + [SMALL_STATE(178)] = 10017, + [SMALL_STATE(179)] = 10091, + [SMALL_STATE(180)] = 10165, + [SMALL_STATE(181)] = 10239, + [SMALL_STATE(182)] = 10313, + [SMALL_STATE(183)] = 10387, + [SMALL_STATE(184)] = 10431, + [SMALL_STATE(185)] = 10505, + [SMALL_STATE(186)] = 10579, + [SMALL_STATE(187)] = 10653, + [SMALL_STATE(188)] = 10697, + [SMALL_STATE(189)] = 10741, + [SMALL_STATE(190)] = 10815, + [SMALL_STATE(191)] = 10889, + [SMALL_STATE(192)] = 10933, + [SMALL_STATE(193)] = 11007, + [SMALL_STATE(194)] = 11081, + [SMALL_STATE(195)] = 11155, + [SMALL_STATE(196)] = 11229, + [SMALL_STATE(197)] = 11273, + [SMALL_STATE(198)] = 11347, + [SMALL_STATE(199)] = 11421, + [SMALL_STATE(200)] = 11495, + [SMALL_STATE(201)] = 11569, + [SMALL_STATE(202)] = 11613, + [SMALL_STATE(203)] = 11657, + [SMALL_STATE(204)] = 11731, + [SMALL_STATE(205)] = 11805, + [SMALL_STATE(206)] = 11849, + [SMALL_STATE(207)] = 11923, + [SMALL_STATE(208)] = 11997, + [SMALL_STATE(209)] = 12071, + [SMALL_STATE(210)] = 12145, + [SMALL_STATE(211)] = 12219, + [SMALL_STATE(212)] = 12293, + [SMALL_STATE(213)] = 12357, + [SMALL_STATE(214)] = 12431, + [SMALL_STATE(215)] = 12505, + [SMALL_STATE(216)] = 12579, + [SMALL_STATE(217)] = 12653, + [SMALL_STATE(218)] = 12727, + [SMALL_STATE(219)] = 12801, + [SMALL_STATE(220)] = 12875, + [SMALL_STATE(221)] = 12949, + [SMALL_STATE(222)] = 13023, + [SMALL_STATE(223)] = 13097, + [SMALL_STATE(224)] = 13171, + [SMALL_STATE(225)] = 13245, + [SMALL_STATE(226)] = 13319, + [SMALL_STATE(227)] = 13393, + [SMALL_STATE(228)] = 13467, + [SMALL_STATE(229)] = 13541, + [SMALL_STATE(230)] = 13615, + [SMALL_STATE(231)] = 13689, + [SMALL_STATE(232)] = 13763, + [SMALL_STATE(233)] = 13837, + [SMALL_STATE(234)] = 13881, + [SMALL_STATE(235)] = 13955, + [SMALL_STATE(236)] = 14029, + [SMALL_STATE(237)] = 14103, + [SMALL_STATE(238)] = 14177, + [SMALL_STATE(239)] = 14251, + [SMALL_STATE(240)] = 14325, + [SMALL_STATE(241)] = 14399, + [SMALL_STATE(242)] = 14473, + [SMALL_STATE(243)] = 14547, + [SMALL_STATE(244)] = 14621, + [SMALL_STATE(245)] = 14695, + [SMALL_STATE(246)] = 14769, + [SMALL_STATE(247)] = 14843, + [SMALL_STATE(248)] = 14917, + [SMALL_STATE(249)] = 14991, + [SMALL_STATE(250)] = 15065, + [SMALL_STATE(251)] = 15139, + [SMALL_STATE(252)] = 15203, + [SMALL_STATE(253)] = 15277, + [SMALL_STATE(254)] = 15351, + [SMALL_STATE(255)] = 15425, + [SMALL_STATE(256)] = 15499, + [SMALL_STATE(257)] = 15573, + [SMALL_STATE(258)] = 15647, + [SMALL_STATE(259)] = 15721, + [SMALL_STATE(260)] = 15795, + [SMALL_STATE(261)] = 15869, + [SMALL_STATE(262)] = 15913, + [SMALL_STATE(263)] = 15987, + [SMALL_STATE(264)] = 16061, + [SMALL_STATE(265)] = 16135, + [SMALL_STATE(266)] = 16209, + [SMALL_STATE(267)] = 16283, + [SMALL_STATE(268)] = 16357, + [SMALL_STATE(269)] = 16421, + [SMALL_STATE(270)] = 16495, + [SMALL_STATE(271)] = 16569, + [SMALL_STATE(272)] = 16643, + [SMALL_STATE(273)] = 16717, + [SMALL_STATE(274)] = 16791, + [SMALL_STATE(275)] = 16865, + [SMALL_STATE(276)] = 16939, + [SMALL_STATE(277)] = 17013, + [SMALL_STATE(278)] = 17087, + [SMALL_STATE(279)] = 17161, + [SMALL_STATE(280)] = 17235, + [SMALL_STATE(281)] = 17309, + [SMALL_STATE(282)] = 17383, + [SMALL_STATE(283)] = 17457, + [SMALL_STATE(284)] = 17531, + [SMALL_STATE(285)] = 17605, + [SMALL_STATE(286)] = 17679, + [SMALL_STATE(287)] = 17753, + [SMALL_STATE(288)] = 17827, + [SMALL_STATE(289)] = 17901, + [SMALL_STATE(290)] = 17945, + [SMALL_STATE(291)] = 18019, + [SMALL_STATE(292)] = 18093, + [SMALL_STATE(293)] = 18167, + [SMALL_STATE(294)] = 18241, + [SMALL_STATE(295)] = 18315, + [SMALL_STATE(296)] = 18389, + [SMALL_STATE(297)] = 18463, + [SMALL_STATE(298)] = 18537, + [SMALL_STATE(299)] = 18611, + [SMALL_STATE(300)] = 18685, + [SMALL_STATE(301)] = 18759, + [SMALL_STATE(302)] = 18803, + [SMALL_STATE(303)] = 18877, + [SMALL_STATE(304)] = 18951, + [SMALL_STATE(305)] = 19025, + [SMALL_STATE(306)] = 19099, + [SMALL_STATE(307)] = 19173, + [SMALL_STATE(308)] = 19217, + [SMALL_STATE(309)] = 19291, + [SMALL_STATE(310)] = 19365, + [SMALL_STATE(311)] = 19439, + [SMALL_STATE(312)] = 19513, + [SMALL_STATE(313)] = 19587, + [SMALL_STATE(314)] = 19661, + [SMALL_STATE(315)] = 19735, + [SMALL_STATE(316)] = 19809, + [SMALL_STATE(317)] = 19853, + [SMALL_STATE(318)] = 19897, + [SMALL_STATE(319)] = 19971, + [SMALL_STATE(320)] = 20015, + [SMALL_STATE(321)] = 20089, + [SMALL_STATE(322)] = 20137, + [SMALL_STATE(323)] = 20211, + [SMALL_STATE(324)] = 20255, + [SMALL_STATE(325)] = 20299, + [SMALL_STATE(326)] = 20373, + [SMALL_STATE(327)] = 20447, + [SMALL_STATE(328)] = 20521, + [SMALL_STATE(329)] = 20595, + [SMALL_STATE(330)] = 20669, + [SMALL_STATE(331)] = 20713, + [SMALL_STATE(332)] = 20787, + [SMALL_STATE(333)] = 20831, + [SMALL_STATE(334)] = 20905, + [SMALL_STATE(335)] = 20979, + [SMALL_STATE(336)] = 21053, + [SMALL_STATE(337)] = 21127, + [SMALL_STATE(338)] = 21201, + [SMALL_STATE(339)] = 21245, + [SMALL_STATE(340)] = 21319, + [SMALL_STATE(341)] = 21393, + [SMALL_STATE(342)] = 21467, + [SMALL_STATE(343)] = 21541, + [SMALL_STATE(344)] = 21584, + [SMALL_STATE(345)] = 21627, + [SMALL_STATE(346)] = 21670, + [SMALL_STATE(347)] = 21713, + [SMALL_STATE(348)] = 21756, + [SMALL_STATE(349)] = 21799, + [SMALL_STATE(350)] = 21842, + [SMALL_STATE(351)] = 21885, + [SMALL_STATE(352)] = 21928, + [SMALL_STATE(353)] = 21971, + [SMALL_STATE(354)] = 22014, + [SMALL_STATE(355)] = 22057, + [SMALL_STATE(356)] = 22100, + [SMALL_STATE(357)] = 22143, + [SMALL_STATE(358)] = 22186, + [SMALL_STATE(359)] = 22229, + [SMALL_STATE(360)] = 22272, + [SMALL_STATE(361)] = 22315, + [SMALL_STATE(362)] = 22358, + [SMALL_STATE(363)] = 22401, + [SMALL_STATE(364)] = 22448, + [SMALL_STATE(365)] = 22491, + [SMALL_STATE(366)] = 22534, + [SMALL_STATE(367)] = 22577, + [SMALL_STATE(368)] = 22620, + [SMALL_STATE(369)] = 22663, + [SMALL_STATE(370)] = 22706, + [SMALL_STATE(371)] = 22749, + [SMALL_STATE(372)] = 22792, + [SMALL_STATE(373)] = 22835, + [SMALL_STATE(374)] = 22878, + [SMALL_STATE(375)] = 22921, + [SMALL_STATE(376)] = 22964, + [SMALL_STATE(377)] = 23007, + [SMALL_STATE(378)] = 23050, + [SMALL_STATE(379)] = 23093, + [SMALL_STATE(380)] = 23136, + [SMALL_STATE(381)] = 23179, + [SMALL_STATE(382)] = 23222, + [SMALL_STATE(383)] = 23265, + [SMALL_STATE(384)] = 23308, + [SMALL_STATE(385)] = 23351, + [SMALL_STATE(386)] = 23394, + [SMALL_STATE(387)] = 23437, + [SMALL_STATE(388)] = 23480, + [SMALL_STATE(389)] = 23523, + [SMALL_STATE(390)] = 23566, + [SMALL_STATE(391)] = 23609, + [SMALL_STATE(392)] = 23652, + [SMALL_STATE(393)] = 23695, + [SMALL_STATE(394)] = 23738, + [SMALL_STATE(395)] = 23781, + [SMALL_STATE(396)] = 23824, + [SMALL_STATE(397)] = 23867, + [SMALL_STATE(398)] = 23910, + [SMALL_STATE(399)] = 23953, + [SMALL_STATE(400)] = 23996, + [SMALL_STATE(401)] = 24039, + [SMALL_STATE(402)] = 24082, + [SMALL_STATE(403)] = 24125, + [SMALL_STATE(404)] = 24168, + [SMALL_STATE(405)] = 24211, + [SMALL_STATE(406)] = 24254, + [SMALL_STATE(407)] = 24297, + [SMALL_STATE(408)] = 24340, + [SMALL_STATE(409)] = 24383, + [SMALL_STATE(410)] = 24426, + [SMALL_STATE(411)] = 24469, + [SMALL_STATE(412)] = 24512, + [SMALL_STATE(413)] = 24555, + [SMALL_STATE(414)] = 24618, + [SMALL_STATE(415)] = 24661, + [SMALL_STATE(416)] = 24704, + [SMALL_STATE(417)] = 24747, + [SMALL_STATE(418)] = 24790, + [SMALL_STATE(419)] = 24833, + [SMALL_STATE(420)] = 24876, + [SMALL_STATE(421)] = 24919, + [SMALL_STATE(422)] = 24980, + [SMALL_STATE(423)] = 25023, + [SMALL_STATE(424)] = 25066, + [SMALL_STATE(425)] = 25109, + [SMALL_STATE(426)] = 25152, + [SMALL_STATE(427)] = 25195, + [SMALL_STATE(428)] = 25238, + [SMALL_STATE(429)] = 25281, + [SMALL_STATE(430)] = 25324, + [SMALL_STATE(431)] = 25366, + [SMALL_STATE(432)] = 25408, + [SMALL_STATE(433)] = 25466, + [SMALL_STATE(434)] = 25514, + [SMALL_STATE(435)] = 25556, + [SMALL_STATE(436)] = 25616, + [SMALL_STATE(437)] = 25662, + [SMALL_STATE(438)] = 25704, + [SMALL_STATE(439)] = 25758, + [SMALL_STATE(440)] = 25800, + [SMALL_STATE(441)] = 25852, + [SMALL_STATE(442)] = 25894, + [SMALL_STATE(443)] = 25936, + [SMALL_STATE(444)] = 25978, + [SMALL_STATE(445)] = 26020, + [SMALL_STATE(446)] = 26062, + [SMALL_STATE(447)] = 26104, + [SMALL_STATE(448)] = 26155, + [SMALL_STATE(449)] = 26205, + [SMALL_STATE(450)] = 26252, + [SMALL_STATE(451)] = 26291, + [SMALL_STATE(452)] = 26333, + [SMALL_STATE(453)] = 26393, + [SMALL_STATE(454)] = 26431, + [SMALL_STATE(455)] = 26468, + [SMALL_STATE(456)] = 26504, + [SMALL_STATE(457)] = 26540, + [SMALL_STATE(458)] = 26576, + [SMALL_STATE(459)] = 26620, + [SMALL_STATE(460)] = 26656, + [SMALL_STATE(461)] = 26692, + [SMALL_STATE(462)] = 26732, + [SMALL_STATE(463)] = 26768, + [SMALL_STATE(464)] = 26804, + [SMALL_STATE(465)] = 26840, + [SMALL_STATE(466)] = 26881, + [SMALL_STATE(467)] = 26926, + [SMALL_STATE(468)] = 26971, + [SMALL_STATE(469)] = 27014, + [SMALL_STATE(470)] = 27053, + [SMALL_STATE(471)] = 27098, + [SMALL_STATE(472)] = 27143, + [SMALL_STATE(473)] = 27188, + [SMALL_STATE(474)] = 27233, + [SMALL_STATE(475)] = 27276, + [SMALL_STATE(476)] = 27310, + [SMALL_STATE(477)] = 27348, + [SMALL_STATE(478)] = 27382, + [SMALL_STATE(479)] = 27420, + [SMALL_STATE(480)] = 27454, + [SMALL_STATE(481)] = 27488, + [SMALL_STATE(482)] = 27522, + [SMALL_STATE(483)] = 27556, + [SMALL_STATE(484)] = 27596, + [SMALL_STATE(485)] = 27634, + [SMALL_STATE(486)] = 27668, + [SMALL_STATE(487)] = 27702, + [SMALL_STATE(488)] = 27736, + [SMALL_STATE(489)] = 27780, + [SMALL_STATE(490)] = 27822, + [SMALL_STATE(491)] = 27856, + [SMALL_STATE(492)] = 27904, + [SMALL_STATE(493)] = 27938, + [SMALL_STATE(494)] = 27972, + [SMALL_STATE(495)] = 28005, + [SMALL_STATE(496)] = 28038, + [SMALL_STATE(497)] = 28071, + [SMALL_STATE(498)] = 28104, + [SMALL_STATE(499)] = 28145, + [SMALL_STATE(500)] = 28186, + [SMALL_STATE(501)] = 28219, + [SMALL_STATE(502)] = 28254, + [SMALL_STATE(503)] = 28291, + [SMALL_STATE(504)] = 28324, + [SMALL_STATE(505)] = 28357, + [SMALL_STATE(506)] = 28390, + [SMALL_STATE(507)] = 28423, + [SMALL_STATE(508)] = 28475, + [SMALL_STATE(509)] = 28507, + [SMALL_STATE(510)] = 28539, + [SMALL_STATE(511)] = 28575, + [SMALL_STATE(512)] = 28611, + [SMALL_STATE(513)] = 28643, + [SMALL_STATE(514)] = 28695, + [SMALL_STATE(515)] = 28727, + [SMALL_STATE(516)] = 28763, + [SMALL_STATE(517)] = 28795, + [SMALL_STATE(518)] = 28827, + [SMALL_STATE(519)] = 28879, + [SMALL_STATE(520)] = 28931, + [SMALL_STATE(521)] = 28963, + [SMALL_STATE(522)] = 28995, + [SMALL_STATE(523)] = 29027, + [SMALL_STATE(524)] = 29059, + [SMALL_STATE(525)] = 29091, + [SMALL_STATE(526)] = 29123, + [SMALL_STATE(527)] = 29159, + [SMALL_STATE(528)] = 29191, + [SMALL_STATE(529)] = 29223, + [SMALL_STATE(530)] = 29272, + [SMALL_STATE(531)] = 29323, + [SMALL_STATE(532)] = 29354, + [SMALL_STATE(533)] = 29403, + [SMALL_STATE(534)] = 29434, + [SMALL_STATE(535)] = 29465, + [SMALL_STATE(536)] = 29516, + [SMALL_STATE(537)] = 29547, + [SMALL_STATE(538)] = 29596, + [SMALL_STATE(539)] = 29635, + [SMALL_STATE(540)] = 29670, + [SMALL_STATE(541)] = 29703, + [SMALL_STATE(542)] = 29754, + [SMALL_STATE(543)] = 29795, + [SMALL_STATE(544)] = 29844, + [SMALL_STATE(545)] = 29893, + [SMALL_STATE(546)] = 29928, + [SMALL_STATE(547)] = 29965, + [SMALL_STATE(548)] = 30014, + [SMALL_STATE(549)] = 30063, + [SMALL_STATE(550)] = 30112, + [SMALL_STATE(551)] = 30161, + [SMALL_STATE(552)] = 30210, + [SMALL_STATE(553)] = 30259, + [SMALL_STATE(554)] = 30308, + [SMALL_STATE(555)] = 30359, + [SMALL_STATE(556)] = 30390, + [SMALL_STATE(557)] = 30439, + [SMALL_STATE(558)] = 30488, + [SMALL_STATE(559)] = 30539, + [SMALL_STATE(560)] = 30588, + [SMALL_STATE(561)] = 30637, + [SMALL_STATE(562)] = 30686, + [SMALL_STATE(563)] = 30721, + [SMALL_STATE(564)] = 30752, + [SMALL_STATE(565)] = 30801, + [SMALL_STATE(566)] = 30850, + [SMALL_STATE(567)] = 30899, + [SMALL_STATE(568)] = 30948, + [SMALL_STATE(569)] = 30979, + [SMALL_STATE(570)] = 31028, + [SMALL_STATE(571)] = 31077, + [SMALL_STATE(572)] = 31126, + [SMALL_STATE(573)] = 31157, + [SMALL_STATE(574)] = 31188, + [SMALL_STATE(575)] = 31219, + [SMALL_STATE(576)] = 31250, + [SMALL_STATE(577)] = 31299, + [SMALL_STATE(578)] = 31348, + [SMALL_STATE(579)] = 31397, + [SMALL_STATE(580)] = 31446, + [SMALL_STATE(581)] = 31495, + [SMALL_STATE(582)] = 31544, + [SMALL_STATE(583)] = 31595, + [SMALL_STATE(584)] = 31644, + [SMALL_STATE(585)] = 31679, + [SMALL_STATE(586)] = 31724, + [SMALL_STATE(587)] = 31775, + [SMALL_STATE(588)] = 31826, + [SMALL_STATE(589)] = 31875, + [SMALL_STATE(590)] = 31924, + [SMALL_STATE(591)] = 31973, + [SMALL_STATE(592)] = 32022, + [SMALL_STATE(593)] = 32071, + [SMALL_STATE(594)] = 32120, + [SMALL_STATE(595)] = 32169, + [SMALL_STATE(596)] = 32218, + [SMALL_STATE(597)] = 32267, + [SMALL_STATE(598)] = 32316, + [SMALL_STATE(599)] = 32365, + [SMALL_STATE(600)] = 32414, + [SMALL_STATE(601)] = 32463, + [SMALL_STATE(602)] = 32507, + [SMALL_STATE(603)] = 32537, + [SMALL_STATE(604)] = 32567, + [SMALL_STATE(605)] = 32611, + [SMALL_STATE(606)] = 32641, + [SMALL_STATE(607)] = 32671, + [SMALL_STATE(608)] = 32715, + [SMALL_STATE(609)] = 32745, + [SMALL_STATE(610)] = 32789, + [SMALL_STATE(611)] = 32819, + [SMALL_STATE(612)] = 32849, + [SMALL_STATE(613)] = 32879, + [SMALL_STATE(614)] = 32923, + [SMALL_STATE(615)] = 32959, + [SMALL_STATE(616)] = 32993, + [SMALL_STATE(617)] = 33033, + [SMALL_STATE(618)] = 33071, + [SMALL_STATE(619)] = 33115, + [SMALL_STATE(620)] = 33145, + [SMALL_STATE(621)] = 33175, + [SMALL_STATE(622)] = 33205, + [SMALL_STATE(623)] = 33235, + [SMALL_STATE(624)] = 33279, + [SMALL_STATE(625)] = 33309, + [SMALL_STATE(626)] = 33339, + [SMALL_STATE(627)] = 33369, + [SMALL_STATE(628)] = 33399, + [SMALL_STATE(629)] = 33429, + [SMALL_STATE(630)] = 33473, + [SMALL_STATE(631)] = 33511, + [SMALL_STATE(632)] = 33555, + [SMALL_STATE(633)] = 33585, + [SMALL_STATE(634)] = 33615, + [SMALL_STATE(635)] = 33655, + [SMALL_STATE(636)] = 33699, + [SMALL_STATE(637)] = 33733, + [SMALL_STATE(638)] = 33769, + [SMALL_STATE(639)] = 33799, + [SMALL_STATE(640)] = 33829, + [SMALL_STATE(641)] = 33859, + [SMALL_STATE(642)] = 33903, + [SMALL_STATE(643)] = 33947, + [SMALL_STATE(644)] = 33991, + [SMALL_STATE(645)] = 34021, + [SMALL_STATE(646)] = 34065, + [SMALL_STATE(647)] = 34095, + [SMALL_STATE(648)] = 34125, + [SMALL_STATE(649)] = 34155, + [SMALL_STATE(650)] = 34185, + [SMALL_STATE(651)] = 34229, + [SMALL_STATE(652)] = 34273, + [SMALL_STATE(653)] = 34317, + [SMALL_STATE(654)] = 34347, + [SMALL_STATE(655)] = 34391, + [SMALL_STATE(656)] = 34421, + [SMALL_STATE(657)] = 34451, + [SMALL_STATE(658)] = 34481, + [SMALL_STATE(659)] = 34525, + [SMALL_STATE(660)] = 34555, + [SMALL_STATE(661)] = 34585, + [SMALL_STATE(662)] = 34628, + [SMALL_STATE(663)] = 34657, + [SMALL_STATE(664)] = 34686, + [SMALL_STATE(665)] = 34715, + [SMALL_STATE(666)] = 34758, + [SMALL_STATE(667)] = 34787, + [SMALL_STATE(668)] = 34830, + [SMALL_STATE(669)] = 34859, + [SMALL_STATE(670)] = 34888, + [SMALL_STATE(671)] = 34917, + [SMALL_STATE(672)] = 34946, + [SMALL_STATE(673)] = 34975, + [SMALL_STATE(674)] = 35004, + [SMALL_STATE(675)] = 35033, + [SMALL_STATE(676)] = 35062, + [SMALL_STATE(677)] = 35091, + [SMALL_STATE(678)] = 35120, + [SMALL_STATE(679)] = 35149, + [SMALL_STATE(680)] = 35178, + [SMALL_STATE(681)] = 35207, + [SMALL_STATE(682)] = 35236, + [SMALL_STATE(683)] = 35279, + [SMALL_STATE(684)] = 35308, + [SMALL_STATE(685)] = 35337, + [SMALL_STATE(686)] = 35366, + [SMALL_STATE(687)] = 35395, + [SMALL_STATE(688)] = 35424, + [SMALL_STATE(689)] = 35453, + [SMALL_STATE(690)] = 35482, + [SMALL_STATE(691)] = 35511, + [SMALL_STATE(692)] = 35554, + [SMALL_STATE(693)] = 35583, + [SMALL_STATE(694)] = 35612, + [SMALL_STATE(695)] = 35641, + [SMALL_STATE(696)] = 35670, + [SMALL_STATE(697)] = 35699, + [SMALL_STATE(698)] = 35728, + [SMALL_STATE(699)] = 35757, + [SMALL_STATE(700)] = 35786, + [SMALL_STATE(701)] = 35829, + [SMALL_STATE(702)] = 35858, + [SMALL_STATE(703)] = 35887, + [SMALL_STATE(704)] = 35930, + [SMALL_STATE(705)] = 35959, + [SMALL_STATE(706)] = 36002, + [SMALL_STATE(707)] = 36045, + [SMALL_STATE(708)] = 36088, + [SMALL_STATE(709)] = 36131, + [SMALL_STATE(710)] = 36174, + [SMALL_STATE(711)] = 36217, + [SMALL_STATE(712)] = 36260, + [SMALL_STATE(713)] = 36303, + [SMALL_STATE(714)] = 36346, + [SMALL_STATE(715)] = 36389, + [SMALL_STATE(716)] = 36432, + [SMALL_STATE(717)] = 36475, + [SMALL_STATE(718)] = 36518, + [SMALL_STATE(719)] = 36561, + [SMALL_STATE(720)] = 36604, + [SMALL_STATE(721)] = 36647, + [SMALL_STATE(722)] = 36690, + [SMALL_STATE(723)] = 36733, + [SMALL_STATE(724)] = 36776, + [SMALL_STATE(725)] = 36819, + [SMALL_STATE(726)] = 36848, + [SMALL_STATE(727)] = 36877, + [SMALL_STATE(728)] = 36920, + [SMALL_STATE(729)] = 36963, + [SMALL_STATE(730)] = 37006, + [SMALL_STATE(731)] = 37049, + [SMALL_STATE(732)] = 37092, + [SMALL_STATE(733)] = 37135, + [SMALL_STATE(734)] = 37178, + [SMALL_STATE(735)] = 37221, + [SMALL_STATE(736)] = 37264, + [SMALL_STATE(737)] = 37307, + [SMALL_STATE(738)] = 37341, + [SMALL_STATE(739)] = 37372, + [SMALL_STATE(740)] = 37403, + [SMALL_STATE(741)] = 37436, + [SMALL_STATE(742)] = 37469, + [SMALL_STATE(743)] = 37500, + [SMALL_STATE(744)] = 37531, + [SMALL_STATE(745)] = 37562, + [SMALL_STATE(746)] = 37593, + [SMALL_STATE(747)] = 37624, + [SMALL_STATE(748)] = 37656, + [SMALL_STATE(749)] = 37684, + [SMALL_STATE(750)] = 37716, + [SMALL_STATE(751)] = 37748, + [SMALL_STATE(752)] = 37780, + [SMALL_STATE(753)] = 37808, + [SMALL_STATE(754)] = 37835, + [SMALL_STATE(755)] = 37858, + [SMALL_STATE(756)] = 37887, + [SMALL_STATE(757)] = 37916, + [SMALL_STATE(758)] = 37945, + [SMALL_STATE(759)] = 37974, + [SMALL_STATE(760)] = 38003, + [SMALL_STATE(761)] = 38026, + [SMALL_STATE(762)] = 38047, + [SMALL_STATE(763)] = 38076, + [SMALL_STATE(764)] = 38100, + [SMALL_STATE(765)] = 38124, + [SMALL_STATE(766)] = 38150, + [SMALL_STATE(767)] = 38176, + [SMALL_STATE(768)] = 38202, + [SMALL_STATE(769)] = 38228, + [SMALL_STATE(770)] = 38254, + [SMALL_STATE(771)] = 38278, + [SMALL_STATE(772)] = 38296, + [SMALL_STATE(773)] = 38320, + [SMALL_STATE(774)] = 38338, + [SMALL_STATE(775)] = 38362, + [SMALL_STATE(776)] = 38380, + [SMALL_STATE(777)] = 38404, + [SMALL_STATE(778)] = 38428, + [SMALL_STATE(779)] = 38454, + [SMALL_STATE(780)] = 38472, + [SMALL_STATE(781)] = 38490, + [SMALL_STATE(782)] = 38514, + [SMALL_STATE(783)] = 38540, + [SMALL_STATE(784)] = 38564, + [SMALL_STATE(785)] = 38588, + [SMALL_STATE(786)] = 38612, + [SMALL_STATE(787)] = 38636, + [SMALL_STATE(788)] = 38660, + [SMALL_STATE(789)] = 38684, + [SMALL_STATE(790)] = 38710, + [SMALL_STATE(791)] = 38728, + [SMALL_STATE(792)] = 38752, + [SMALL_STATE(793)] = 38776, + [SMALL_STATE(794)] = 38794, + [SMALL_STATE(795)] = 38818, + [SMALL_STATE(796)] = 38842, + [SMALL_STATE(797)] = 38865, + [SMALL_STATE(798)] = 38888, + [SMALL_STATE(799)] = 38911, + [SMALL_STATE(800)] = 38934, + [SMALL_STATE(801)] = 38959, + [SMALL_STATE(802)] = 38982, + [SMALL_STATE(803)] = 39005, + [SMALL_STATE(804)] = 39028, + [SMALL_STATE(805)] = 39051, + [SMALL_STATE(806)] = 39074, + [SMALL_STATE(807)] = 39097, + [SMALL_STATE(808)] = 39122, + [SMALL_STATE(809)] = 39145, + [SMALL_STATE(810)] = 39168, + [SMALL_STATE(811)] = 39191, + [SMALL_STATE(812)] = 39214, + [SMALL_STATE(813)] = 39236, + [SMALL_STATE(814)] = 39258, + [SMALL_STATE(815)] = 39276, + [SMALL_STATE(816)] = 39292, + [SMALL_STATE(817)] = 39312, + [SMALL_STATE(818)] = 39332, + [SMALL_STATE(819)] = 39354, + [SMALL_STATE(820)] = 39376, + [SMALL_STATE(821)] = 39398, + [SMALL_STATE(822)] = 39420, + [SMALL_STATE(823)] = 39442, + [SMALL_STATE(824)] = 39464, + [SMALL_STATE(825)] = 39486, + [SMALL_STATE(826)] = 39508, + [SMALL_STATE(827)] = 39530, + [SMALL_STATE(828)] = 39552, + [SMALL_STATE(829)] = 39572, + [SMALL_STATE(830)] = 39594, + [SMALL_STATE(831)] = 39616, + [SMALL_STATE(832)] = 39636, + [SMALL_STATE(833)] = 39658, + [SMALL_STATE(834)] = 39680, + [SMALL_STATE(835)] = 39702, + [SMALL_STATE(836)] = 39724, + [SMALL_STATE(837)] = 39746, + [SMALL_STATE(838)] = 39768, + [SMALL_STATE(839)] = 39790, + [SMALL_STATE(840)] = 39812, + [SMALL_STATE(841)] = 39834, + [SMALL_STATE(842)] = 39854, + [SMALL_STATE(843)] = 39876, + [SMALL_STATE(844)] = 39898, + [SMALL_STATE(845)] = 39916, + [SMALL_STATE(846)] = 39938, + [SMALL_STATE(847)] = 39958, + [SMALL_STATE(848)] = 39976, + [SMALL_STATE(849)] = 39998, + [SMALL_STATE(850)] = 40020, + [SMALL_STATE(851)] = 40042, + [SMALL_STATE(852)] = 40064, + [SMALL_STATE(853)] = 40086, + [SMALL_STATE(854)] = 40108, + [SMALL_STATE(855)] = 40130, + [SMALL_STATE(856)] = 40152, + [SMALL_STATE(857)] = 40174, + [SMALL_STATE(858)] = 40193, + [SMALL_STATE(859)] = 40212, + [SMALL_STATE(860)] = 40231, + [SMALL_STATE(861)] = 40248, + [SMALL_STATE(862)] = 40265, + [SMALL_STATE(863)] = 40284, + [SMALL_STATE(864)] = 40301, + [SMALL_STATE(865)] = 40318, + [SMALL_STATE(866)] = 40335, + [SMALL_STATE(867)] = 40354, + [SMALL_STATE(868)] = 40373, + [SMALL_STATE(869)] = 40390, + [SMALL_STATE(870)] = 40409, + [SMALL_STATE(871)] = 40428, + [SMALL_STATE(872)] = 40445, + [SMALL_STATE(873)] = 40462, + [SMALL_STATE(874)] = 40481, + [SMALL_STATE(875)] = 40500, + [SMALL_STATE(876)] = 40519, + [SMALL_STATE(877)] = 40538, + [SMALL_STATE(878)] = 40557, + [SMALL_STATE(879)] = 40576, + [SMALL_STATE(880)] = 40595, + [SMALL_STATE(881)] = 40612, + [SMALL_STATE(882)] = 40631, + [SMALL_STATE(883)] = 40650, + [SMALL_STATE(884)] = 40669, + [SMALL_STATE(885)] = 40688, + [SMALL_STATE(886)] = 40703, + [SMALL_STATE(887)] = 40722, + [SMALL_STATE(888)] = 40741, + [SMALL_STATE(889)] = 40760, + [SMALL_STATE(890)] = 40777, + [SMALL_STATE(891)] = 40796, + [SMALL_STATE(892)] = 40815, + [SMALL_STATE(893)] = 40834, + [SMALL_STATE(894)] = 40853, + [SMALL_STATE(895)] = 40872, + [SMALL_STATE(896)] = 40891, + [SMALL_STATE(897)] = 40910, + [SMALL_STATE(898)] = 40929, + [SMALL_STATE(899)] = 40948, + [SMALL_STATE(900)] = 40967, + [SMALL_STATE(901)] = 40986, + [SMALL_STATE(902)] = 41005, + [SMALL_STATE(903)] = 41022, + [SMALL_STATE(904)] = 41041, + [SMALL_STATE(905)] = 41060, + [SMALL_STATE(906)] = 41079, + [SMALL_STATE(907)] = 41096, + [SMALL_STATE(908)] = 41115, + [SMALL_STATE(909)] = 41132, + [SMALL_STATE(910)] = 41151, + [SMALL_STATE(911)] = 41170, + [SMALL_STATE(912)] = 41189, + [SMALL_STATE(913)] = 41203, + [SMALL_STATE(914)] = 41219, + [SMALL_STATE(915)] = 41233, + [SMALL_STATE(916)] = 41247, + [SMALL_STATE(917)] = 41263, + [SMALL_STATE(918)] = 41279, + [SMALL_STATE(919)] = 41295, + [SMALL_STATE(920)] = 41309, + [SMALL_STATE(921)] = 41323, + [SMALL_STATE(922)] = 41339, + [SMALL_STATE(923)] = 41355, + [SMALL_STATE(924)] = 41371, + [SMALL_STATE(925)] = 41387, + [SMALL_STATE(926)] = 41401, + [SMALL_STATE(927)] = 41417, + [SMALL_STATE(928)] = 41433, + [SMALL_STATE(929)] = 41449, + [SMALL_STATE(930)] = 41463, + [SMALL_STATE(931)] = 41477, + [SMALL_STATE(932)] = 41493, + [SMALL_STATE(933)] = 41509, + [SMALL_STATE(934)] = 41525, + [SMALL_STATE(935)] = 41541, + [SMALL_STATE(936)] = 41555, + [SMALL_STATE(937)] = 41569, + [SMALL_STATE(938)] = 41585, + [SMALL_STATE(939)] = 41601, + [SMALL_STATE(940)] = 41615, + [SMALL_STATE(941)] = 41631, + [SMALL_STATE(942)] = 41645, + [SMALL_STATE(943)] = 41661, + [SMALL_STATE(944)] = 41677, + [SMALL_STATE(945)] = 41693, + [SMALL_STATE(946)] = 41709, + [SMALL_STATE(947)] = 41725, + [SMALL_STATE(948)] = 41741, + [SMALL_STATE(949)] = 41757, + [SMALL_STATE(950)] = 41773, + [SMALL_STATE(951)] = 41789, + [SMALL_STATE(952)] = 41805, + [SMALL_STATE(953)] = 41821, + [SMALL_STATE(954)] = 41837, + [SMALL_STATE(955)] = 41853, + [SMALL_STATE(956)] = 41869, + [SMALL_STATE(957)] = 41885, + [SMALL_STATE(958)] = 41901, + [SMALL_STATE(959)] = 41917, + [SMALL_STATE(960)] = 41933, + [SMALL_STATE(961)] = 41949, + [SMALL_STATE(962)] = 41963, + [SMALL_STATE(963)] = 41977, + [SMALL_STATE(964)] = 41993, + [SMALL_STATE(965)] = 42007, + [SMALL_STATE(966)] = 42021, + [SMALL_STATE(967)] = 42037, + [SMALL_STATE(968)] = 42053, + [SMALL_STATE(969)] = 42066, + [SMALL_STATE(970)] = 42079, + [SMALL_STATE(971)] = 42092, + [SMALL_STATE(972)] = 42105, + [SMALL_STATE(973)] = 42118, + [SMALL_STATE(974)] = 42131, + [SMALL_STATE(975)] = 42144, + [SMALL_STATE(976)] = 42157, + [SMALL_STATE(977)] = 42170, + [SMALL_STATE(978)] = 42183, + [SMALL_STATE(979)] = 42196, + [SMALL_STATE(980)] = 42209, + [SMALL_STATE(981)] = 42222, + [SMALL_STATE(982)] = 42235, + [SMALL_STATE(983)] = 42248, + [SMALL_STATE(984)] = 42261, + [SMALL_STATE(985)] = 42274, + [SMALL_STATE(986)] = 42287, + [SMALL_STATE(987)] = 42300, + [SMALL_STATE(988)] = 42313, + [SMALL_STATE(989)] = 42326, + [SMALL_STATE(990)] = 42339, + [SMALL_STATE(991)] = 42352, + [SMALL_STATE(992)] = 42365, + [SMALL_STATE(993)] = 42378, + [SMALL_STATE(994)] = 42391, + [SMALL_STATE(995)] = 42404, + [SMALL_STATE(996)] = 42417, + [SMALL_STATE(997)] = 42430, + [SMALL_STATE(998)] = 42443, + [SMALL_STATE(999)] = 42456, + [SMALL_STATE(1000)] = 42469, + [SMALL_STATE(1001)] = 42482, + [SMALL_STATE(1002)] = 42495, + [SMALL_STATE(1003)] = 42508, + [SMALL_STATE(1004)] = 42521, + [SMALL_STATE(1005)] = 42534, + [SMALL_STATE(1006)] = 42547, + [SMALL_STATE(1007)] = 42560, + [SMALL_STATE(1008)] = 42573, + [SMALL_STATE(1009)] = 42586, + [SMALL_STATE(1010)] = 42599, + [SMALL_STATE(1011)] = 42612, + [SMALL_STATE(1012)] = 42625, + [SMALL_STATE(1013)] = 42638, + [SMALL_STATE(1014)] = 42651, + [SMALL_STATE(1015)] = 42664, + [SMALL_STATE(1016)] = 42677, + [SMALL_STATE(1017)] = 42690, + [SMALL_STATE(1018)] = 42703, + [SMALL_STATE(1019)] = 42716, + [SMALL_STATE(1020)] = 42729, + [SMALL_STATE(1021)] = 42742, + [SMALL_STATE(1022)] = 42755, + [SMALL_STATE(1023)] = 42768, + [SMALL_STATE(1024)] = 42781, + [SMALL_STATE(1025)] = 42794, + [SMALL_STATE(1026)] = 42807, + [SMALL_STATE(1027)] = 42820, + [SMALL_STATE(1028)] = 42833, + [SMALL_STATE(1029)] = 42846, + [SMALL_STATE(1030)] = 42859, + [SMALL_STATE(1031)] = 42872, + [SMALL_STATE(1032)] = 42885, + [SMALL_STATE(1033)] = 42898, + [SMALL_STATE(1034)] = 42911, + [SMALL_STATE(1035)] = 42924, + [SMALL_STATE(1036)] = 42937, + [SMALL_STATE(1037)] = 42950, + [SMALL_STATE(1038)] = 42963, + [SMALL_STATE(1039)] = 42976, + [SMALL_STATE(1040)] = 42989, + [SMALL_STATE(1041)] = 43002, + [SMALL_STATE(1042)] = 43015, + [SMALL_STATE(1043)] = 43028, + [SMALL_STATE(1044)] = 43041, + [SMALL_STATE(1045)] = 43054, + [SMALL_STATE(1046)] = 43067, + [SMALL_STATE(1047)] = 43080, + [SMALL_STATE(1048)] = 43093, + [SMALL_STATE(1049)] = 43106, + [SMALL_STATE(1050)] = 43119, + [SMALL_STATE(1051)] = 43132, + [SMALL_STATE(1052)] = 43145, + [SMALL_STATE(1053)] = 43158, + [SMALL_STATE(1054)] = 43171, + [SMALL_STATE(1055)] = 43184, + [SMALL_STATE(1056)] = 43197, + [SMALL_STATE(1057)] = 43210, + [SMALL_STATE(1058)] = 43223, + [SMALL_STATE(1059)] = 43236, + [SMALL_STATE(1060)] = 43249, + [SMALL_STATE(1061)] = 43262, + [SMALL_STATE(1062)] = 43275, + [SMALL_STATE(1063)] = 43288, + [SMALL_STATE(1064)] = 43301, + [SMALL_STATE(1065)] = 43314, + [SMALL_STATE(1066)] = 43327, + [SMALL_STATE(1067)] = 43340, + [SMALL_STATE(1068)] = 43353, + [SMALL_STATE(1069)] = 43366, + [SMALL_STATE(1070)] = 43379, + [SMALL_STATE(1071)] = 43392, + [SMALL_STATE(1072)] = 43405, + [SMALL_STATE(1073)] = 43418, + [SMALL_STATE(1074)] = 43431, + [SMALL_STATE(1075)] = 43444, + [SMALL_STATE(1076)] = 43457, + [SMALL_STATE(1077)] = 43470, + [SMALL_STATE(1078)] = 43483, + [SMALL_STATE(1079)] = 43496, + [SMALL_STATE(1080)] = 43509, + [SMALL_STATE(1081)] = 43522, + [SMALL_STATE(1082)] = 43535, + [SMALL_STATE(1083)] = 43548, + [SMALL_STATE(1084)] = 43561, + [SMALL_STATE(1085)] = 43574, + [SMALL_STATE(1086)] = 43587, + [SMALL_STATE(1087)] = 43600, + [SMALL_STATE(1088)] = 43613, + [SMALL_STATE(1089)] = 43626, + [SMALL_STATE(1090)] = 43639, + [SMALL_STATE(1091)] = 43652, + [SMALL_STATE(1092)] = 43665, + [SMALL_STATE(1093)] = 43678, + [SMALL_STATE(1094)] = 43691, + [SMALL_STATE(1095)] = 43704, + [SMALL_STATE(1096)] = 43717, + [SMALL_STATE(1097)] = 43730, + [SMALL_STATE(1098)] = 43743, + [SMALL_STATE(1099)] = 43756, + [SMALL_STATE(1100)] = 43769, + [SMALL_STATE(1101)] = 43782, + [SMALL_STATE(1102)] = 43795, + [SMALL_STATE(1103)] = 43808, + [SMALL_STATE(1104)] = 43821, + [SMALL_STATE(1105)] = 43834, + [SMALL_STATE(1106)] = 43847, + [SMALL_STATE(1107)] = 43860, + [SMALL_STATE(1108)] = 43873, + [SMALL_STATE(1109)] = 43886, + [SMALL_STATE(1110)] = 43899, + [SMALL_STATE(1111)] = 43912, + [SMALL_STATE(1112)] = 43925, + [SMALL_STATE(1113)] = 43938, + [SMALL_STATE(1114)] = 43951, + [SMALL_STATE(1115)] = 43964, + [SMALL_STATE(1116)] = 43977, + [SMALL_STATE(1117)] = 43990, + [SMALL_STATE(1118)] = 44003, + [SMALL_STATE(1119)] = 44016, + [SMALL_STATE(1120)] = 44029, + [SMALL_STATE(1121)] = 44042, + [SMALL_STATE(1122)] = 44055, + [SMALL_STATE(1123)] = 44068, + [SMALL_STATE(1124)] = 44081, + [SMALL_STATE(1125)] = 44094, + [SMALL_STATE(1126)] = 44107, + [SMALL_STATE(1127)] = 44120, + [SMALL_STATE(1128)] = 44133, + [SMALL_STATE(1129)] = 44146, + [SMALL_STATE(1130)] = 44159, + [SMALL_STATE(1131)] = 44172, + [SMALL_STATE(1132)] = 44185, + [SMALL_STATE(1133)] = 44198, + [SMALL_STATE(1134)] = 44211, + [SMALL_STATE(1135)] = 44224, + [SMALL_STATE(1136)] = 44237, + [SMALL_STATE(1137)] = 44250, + [SMALL_STATE(1138)] = 44263, + [SMALL_STATE(1139)] = 44276, + [SMALL_STATE(1140)] = 44289, + [SMALL_STATE(1141)] = 44302, + [SMALL_STATE(1142)] = 44315, + [SMALL_STATE(1143)] = 44328, + [SMALL_STATE(1144)] = 44341, + [SMALL_STATE(1145)] = 44354, + [SMALL_STATE(1146)] = 44367, + [SMALL_STATE(1147)] = 44380, + [SMALL_STATE(1148)] = 44393, + [SMALL_STATE(1149)] = 44406, + [SMALL_STATE(1150)] = 44419, + [SMALL_STATE(1151)] = 44423, +}; + +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(828), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(46), + [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(922), + [152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(234), + [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(204), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(862), + [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1130), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1103), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(966), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(660), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(837), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(854), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(47), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(932), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(890), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1122), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1109), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1141), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(815), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(285), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(957), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1100), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(435), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(486), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), SHIFT_REPEAT(827), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(315), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(304), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(190), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(190), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(50), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(93), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(93), + [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(818), + [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(823), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(206), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(232), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(214), + [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(214), + [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(51), + [333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(95), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(95), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(849), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(850), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(934), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, 0, 5), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, 0, 5), + [362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2, 0, 0), + [364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2, 0, 0), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 20), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, 0, 20), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 32), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 32), + [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 2, 0, 1), + [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 2, 0, 1), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, 0, 0), + [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, 0, 0), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, 0, 0), + [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, 0, 0), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, 0, 0), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, 0, 0), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_expression, 5, 0, 58), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5, 0, 58), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 4, 0, 0), + [444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 4, 0, 0), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3, 0, 0), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3, 0, 0), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quotted_string, 3, 0, 0), + [452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quotted_string, 3, 0, 0), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operation, 3, 0, 19), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operation, 3, 0, 19), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logical_operation, 3, 0, 19), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logical_operation, 3, 0, 19), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quotted_string, 2, 0, 0), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quotted_string, 2, 0, 0), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quotted_string, 2, 0, 0), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quotted_string, 2, 0, 0), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quotted_string, 3, 0, 0), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quotted_string, 3, 0, 0), + [474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operation, 2, 0, 4), + [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operation, 2, 0, 4), + [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operation, 3, 0, 19), + [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operation, 3, 0, 19), + [482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literals, 1, 0, 0), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literals, 1, 0, 0), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(276), + [513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(277), + [516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(198), + [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(198), + [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(321), + [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(437), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(437), + [531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(813), + [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_switch_statement, 1, 0, 0), SHIFT(855), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(239), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), + [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(285), + [561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(180), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(180), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(451), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(486), + [573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(486), + [576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(824), + [579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 2, 0, 26), SHIFT_REPEAT(827), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 24), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 24), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 9), + [622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 9), + [624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 39), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 39), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1104), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1047), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 2, 0, 2), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 2, 0, 2), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 12), + [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 12), + [658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 13), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 13), + [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 13), SHIFT_REPEAT(143), + [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 13), SHIFT_REPEAT(148), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_base_type, 1, 0, 0), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs, 1, 0, 0), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1064), + [704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_base_type, 1, 0, 0), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_base_type, 1, 0, 0), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 22), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 22), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1, 0, 0), + [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1, 0, 0), + [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__suite, 2, 0, 0), + [755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__suite, 2, 0, 0), + [757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 3, 0, 25), + [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat2, 3, 0, 25), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 10), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 10), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__suite, 1, 0, 8), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__suite, 1, 0, 8), + [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 4, 0, 40), + [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat2, 4, 0, 40), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if_clause, 4, 0, 74), + [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if_clause, 4, 0, 74), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 5, 0, 61), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat2, 5, 0, 61), + [817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_statement, 6, 0, 65), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration_statement, 6, 0, 65), + [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 6, 0, 72), + [823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 6, 0, 72), + [825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 5, 0, 59), + [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 5, 0, 59), + [829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 75), + [831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 75), + [833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 85), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 85), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 9, 0, 84), + [839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 9, 0, 84), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 5, 0, 56), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 5, 0, 56), + [845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 5, 0, 54), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 5, 0, 54), + [849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_statement, 6, 0, 64), + [851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_statement, 6, 0, 64), + [853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration_statement, 5, 0, 48), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_statement, 5, 0, 48), + [857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_statement, 5, 0, 46), + [859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_statement, 5, 0, 46), + [861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration_statement, 5, 0, 45), + [863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_statement, 5, 0, 45), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_declaration_statement, 5, 0, 43), + [871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_declaration_statement, 5, 0, 43), + [873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 5, 0, 42), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 5, 0, 42), + [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_declaration_statement, 6, 0, 62), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_declaration_statement, 6, 0, 62), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 38), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 38), + [885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 37), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 37), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statements, 3, 0, 0), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statements, 3, 0, 0), + [893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 4, 0, 35), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 4, 0, 35), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 4, 0, 33), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 4, 0, 33), + [909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 4, 0, 30), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 4, 0, 30), + [913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration_statement, 4, 0, 29), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration_statement, 4, 0, 29), + [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 2, 0, 0), + [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 2, 0, 0), + [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statements, 2, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statements, 2, 0, 0), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 14), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 14), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_definition_statement, 3, 0, 15), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition_statement, 3, 0, 15), + [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reassignment_statement, 3, 0, 17), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reassignment_statement, 3, 0, 17), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 23), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 23), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(739), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1046), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_simple_statements_repeat1, 2, 0, 0), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(993), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(992), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1083), + [992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1034), + [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1072), + [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(987), + [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1023), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 2, 0, 0), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [1048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(977), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 49), SHIFT(739), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 49), SHIFT(1113), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat2, 2, 0, 13), SHIFT_REPEAT(144), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 5, 0, 55), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 6, 0, 73), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 4, 0, 68), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 5, 0, 60), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reassignment, 3, 0, 18), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 5, 0, 77), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 5, 0, 78), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 6, 0, 83), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, 0, 49), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 5, 0, 57), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2, 0, 0), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 4, 0, 31), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 4, 0, 34), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 4, 0, 36), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_definition, 3, 0, 16), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_stmt, 1, 0, 0), + [1204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 3, 0, 41), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 3, 0, 41), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_statement_repeat1, 1, 0, 11), + [1244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_switch_statement_repeat1, 1, 0, 11), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 1, 0, 0), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 3, 0, 53), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 2, 0, 28), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_statement_repeat1, 2, 0, 47), SHIFT_REPEAT(754), + [1311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_statement_repeat1, 2, 0, 47), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_type, 2, 0, 0), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_base_type_repeat1, 2, 0, 0), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_base_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1064), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2, 0, 0), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_mode, 1, 0, 0), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quotted_string_repeat1, 2, 0, 0), + [1433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quotted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [1436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quotted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(868), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quotted_string_repeat1, 2, 0, 0), + [1441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quotted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quotted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 39), SHIFT_REPEAT(1000), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_declaration, 6, 0, 63), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_declaration, 5, 0, 44), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 2, 0, 51), SHIFT_REPEAT(739), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 2, 0, 51), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(993), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_declaration_repeat1, 2, 0, 0), + [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 4, 0, 71), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [1567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quotted_string_repeat1, 1, 0, 0), + [1569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quotted_string_repeat1, 1, 0, 0), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(947), + [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_argument_list_repeat1, 2, 0, 0), + [1582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quotted_string_repeat1, 1, 0, 0), + [1584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_single_quotted_string_repeat1, 1, 0, 0), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_path, 5, 0, 67), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 2, 0, 3), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), + [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 1, 0, 0), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__argument_list_with_type_optional_repeat1, 3, 0, 52), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [1660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 3, 0, 0), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_statement_repeat1, 5, 0, 80), + [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_statement_repeat1, 3, 0, 66), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 4, 0, 27), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_argument_list, 4, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 21), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 7), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_function, 2, 0, 6), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 3, 0, 28), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 4, 0, 50), + [1981] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 4, 0, 52), + [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 4, 0, 53), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_qualifier, 1, 0, 0), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 5, 0, 68), + [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 5, 0, 69), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 5, 0, 70), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 5, 0, 71), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 6, 0, 76), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 6, 0, 77), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 6, 0, 78), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 6, 0, 79), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 7, 0, 81), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 7, 0, 82), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 7, 0, 83), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument_list_with_type_optional, 8, 0, 86), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3, 0, 0), +}; + +enum ts_external_scanner_symbol_identifiers { + ts_external_token__indent = 0, + ts_external_token__dedent = 1, + ts_external_token__newline = 2, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token__newline] = sym__newline, +}; + +static const bool ts_external_scanner_states[7][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token__newline] = true, + }, + [2] = { + [ts_external_token__dedent] = true, + }, + [3] = { + [ts_external_token__indent] = true, + [ts_external_token__newline] = true, + }, + [4] = { + [ts_external_token__newline] = true, + }, + [5] = { + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + }, + [6] = { + [ts_external_token__indent] = true, + }, +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_pine_external_scanner_create(void); +void tree_sitter_pine_external_scanner_destroy(void *); +bool tree_sitter_pine_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_pine_external_scanner_serialize(void *, char *); +void tree_sitter_pine_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) +#define TS_PUBLIC __declspec(dllexport) +#else +#define TS_PUBLIC __attribute__((visibility("default"))) +#endif + +TS_PUBLIC const TSLanguage *tree_sitter_pine(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, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_pine_external_scanner_create, + tree_sitter_pine_external_scanner_destroy, + tree_sitter_pine_external_scanner_scan, + tree_sitter_pine_external_scanner_serialize, + tree_sitter_pine_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/internal/cbm/vendored/grammars/pine/scanner.c b/internal/cbm/vendored/grammars/pine/scanner.c new file mode 100644 index 00000000..4660c40e --- /dev/null +++ b/internal/cbm/vendored/grammars/pine/scanner.c @@ -0,0 +1,148 @@ +#include "tree_sitter/alloc.h" +#include "tree_sitter/array.h" +#include "tree_sitter/parser.h" + +enum TokenType { + INDENT, + DEDENT, + NEWLINE, +}; + +typedef struct { + Array(uint16_t) indents; +} Scanner; + +static inline void advance(TSLexer *lexer) { + lexer->advance(lexer, false); +} + +static inline void skip(TSLexer *lexer) { + lexer->advance(lexer, true); +} + +bool tree_sitter_pine_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + Scanner *scanner = (Scanner *)payload; + + lexer->mark_end(lexer); + + bool found_end_of_line = false; + uint32_t indent_length = 0; + + for (;;) { + switch (lexer->lookahead) { + case '\n': { + found_end_of_line = true; + indent_length = 0; + skip(lexer); + break; + } + case ' ': { + indent_length++; + skip(lexer); + break; + } + case '\r': + case '\f': { + indent_length = 0; + skip(lexer); + break; + } + case '\t': { + indent_length += 4; + skip(lexer); + break; + } + case '\\': { + skip(lexer); + if (lexer->lookahead == '\r') { + skip(lexer); + } + if (lexer->lookahead == '\n' || lexer->eof(lexer)) { + skip(lexer); + } else { + return false; + } + break; + } + default: { + if (lexer->eof(lexer)) { + indent_length = 0; + found_end_of_line = true; + } + goto next; + } + } + } + +next: + if (indent_length % 4 != 0) { + // line continue + return false; + } + + if (found_end_of_line) { + if (scanner->indents.size > 0) { + uint16_t current_indent_length = *array_back(&scanner->indents); + + if (valid_symbols[INDENT] && indent_length > current_indent_length) { + array_push(&scanner->indents, indent_length); + lexer->result_symbol = INDENT; + return true; + } + + if (valid_symbols[DEDENT] && indent_length < current_indent_length) { + array_pop(&scanner->indents); + lexer->result_symbol = DEDENT; + return true; + } + } + + if (valid_symbols[NEWLINE]) { + lexer->result_symbol = NEWLINE; + return true; + } + } + + return false; +} + + +unsigned tree_sitter_pine_external_scanner_serialize(void *payload, char *buffer) { + Scanner *scanner = (Scanner *)payload; + + size_t size = 0; + + for (uint32_t i = 1; i < scanner->indents.size && size < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; i ++) { + buffer[size++] = (char)*array_get(&scanner->indents, i); + } + return size; +} + +void tree_sitter_pine_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { + Scanner *scanner = (Scanner *)payload; + + array_delete(&scanner->indents); + array_push(&scanner->indents, 0); + + if (length <= 0) { + return; + } + + for (size_t size = 0; size < length; size ++) { + array_push(&scanner->indents, (unsigned char)buffer[size]); + } +} + +void *tree_sitter_pine_external_scanner_create() { + Scanner *scanner = (Scanner *)ts_calloc(1, sizeof(Scanner)); + array_init(&scanner->indents); + tree_sitter_pine_external_scanner_deserialize(scanner, NULL, 0); + return scanner; +} + +void tree_sitter_pine_external_scanner_destroy(void *payload) { + Scanner *scanner = (Scanner *)payload; + array_delete(&scanner->indents); + free(scanner); +} + diff --git a/internal/cbm/vendored/grammars/pine/tree_sitter/alloc.h b/internal/cbm/vendored/grammars/pine/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/internal/cbm/vendored/grammars/pine/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/internal/cbm/vendored/grammars/pine/tree_sitter/array.h b/internal/cbm/vendored/grammars/pine/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/internal/cbm/vendored/grammars/pine/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/internal/cbm/vendored/grammars/pine/tree_sitter/parser.h b/internal/cbm/vendored/grammars/pine/tree_sitter/parser.h new file mode 100644 index 00000000..17f0e94b --- /dev/null +++ b/internal/cbm/vendored/grammars/pine/tree_sitter/parser.h @@ -0,0 +1,265 @@ +#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; + +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + +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; +}; + +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + +/* + * Lexer Macros + */ + +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + UNUSED \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + 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_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/src/discover/language.c b/src/discover/language.c index 951597c5..93ae2e0f 100644 --- a/src/discover/language.c +++ b/src/discover/language.c @@ -464,6 +464,9 @@ static const ext_entry_t EXT_TABLE[] = { /* Pkl */ {".pkl", CBM_LANG_PKL}, + /* Pine Script */ + {".pine", CBM_LANG_PINE}, + /* PO */ {".po", CBM_LANG_PO}, @@ -714,6 +717,7 @@ static const char *LANG_NAMES[CBM_LANG_COUNT] = { [CBM_LANG_WOLFRAM] = "Wolfram", [CBM_LANG_KUSTOMIZE] = "Kustomize", [CBM_LANG_K8S] = "Kubernetes", + [CBM_LANG_PINE] = "PineScript", [CBM_LANG_SOLIDITY] = "Solidity", [CBM_LANG_TYPST] = "Typst", [CBM_LANG_GDSCRIPT] = "GDScript",